.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.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.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0c5ceb !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0c5ceb !important;
  border-color: #0c5ceb !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: #083c99 !important;
  border-color: #083c99 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #083c99 !important;
  border-color: #083c99 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #0c5ceb;
  color: #0c5ceb;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #083c99 !important;
  background-color: transparent!important;
  border-color: #083c99 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0c5ceb !important;
  border-color: #0c5ceb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: #ff0f0f !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0c5ceb !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #07368a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  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: #0c5ceb;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0c5ceb;
  border-color: #0c5ceb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0c5ceb;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c7dafc;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0c5ceb !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #0c5ceb;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0c5ceb;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0c5ceb;
}
.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: #0c5ceb;
  border-bottom-color: #0c5ceb;
}
.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: #0c5ceb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%230c5ceb' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uuXFmJFe6S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uuXFmJFe6S H1 {
  color: #232323;
}
.cid-uuXFmJFe6S .mbr-text,
.cid-uuXFmJFe6S .mbr-section-btn {
  color: #000000;
}
.cid-uuXFmJFe6S .relative {
  position: relative;
}
.cid-uuXFmJFe6S .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uuXFmJFe6S .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uuXFmJFe6S .card-img2 .img2 {
  width: 80%;
}
.cid-uuXFmJFe6S .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uuXFmJFe6S .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uuXFmJFe6S .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uuXFphF6ed {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.cid-uuXFphF6ed .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXFphF6ed .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/stoughton-3000x2250.webp");
}
.cid-uuXFphF6ed .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-uuXFphF6ed .mbr-section-title {
  color: #FFFFFF;
}
.cid-uuXFphF6ed .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uuXFphF6ed .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uuXFphF6ed .mbr-section-btn {
  margin-top: 28px;
}
.cid-uuXFphF6ed iframe,
.cid-uuXFphF6ed img,
.cid-uuXFphF6ed video {
  width: 100%;
}
.cid-uuXFphF6ed .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-uuXFphF6ed .mbr-media span {
  font-size: 1.5rem;
  color: #000000;
  transition: all 0.2s;
}
.cid-uuXFphF6ed .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-uuXFphF6ed .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-uuXFphF6ed .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-uuXFphF6ed .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uuXFphF6ed .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-uuXFphF6ed .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uuXFphF6ed .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-uuXFphF6ed .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uuXFphF6ed .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uuXHBrNo5Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #0066ff;
}
.cid-uuXHBrNo5Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXHBrNo5Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXHBrNo5Q .container-fluid {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-uuXHBrNo5Q .container-fluid {
    padding: 0 12px;
  }
}
.cid-uuXHBrNo5Q .row {
  margin-top: -3px;
  display: flex;
  justify-content: center;
  padding: 64px 28px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uuXHBrNo5Q .row {
    padding: 48px 20px;
  }
}
.cid-uuXHBrNo5Q .row:before {
  content: '';
  position: absolute;
  top: 8rem;
  width: 200vh;
  height: 300px;
  display: block;
  background-color: transparent;
  border: 5px solid #b3ff3d;
  border-radius: 100%;
}
.cid-uuXHBrNo5Q .card {
  border-right: 0;
  transform: rotate(17deg);
}
@media (max-width: 992px) {
  .cid-uuXHBrNo5Q .card {
    margin: 0 !important;
  }
}
.cid-uuXHBrNo5Q .card:nth-child(2) {
  transform: rotate(347deg);
  margin-top: 5rem;
}
.cid-uuXHBrNo5Q .card:last-child {
  transform: rotate(1deg);
  margin-left: -3rem;
  margin-top: -2.5rem;
}
.cid-uuXHBrNo5Q .card .image-wrapper {
  padding: 20px;
  border-radius: 16px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uuXHBrNo5Q .card .image-wrapper {
    margin-bottom: 48px;
  }
}
.cid-uuXHBrNo5Q .card .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
.cid-uuXHBrNo5Q .card .image-wrapper .mbr-text {
  margin-bottom: 0;
  margin-top: 10px;
}
.cid-uuXHBrNo5Q .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uuXHBrNo5Q H2 {
  text-align: center;
}
.cid-uuXHSbumdX {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #0066ff;
}
.cid-uuXHSbumdX::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 25%;
  background-image: linear-gradient(transparent, #1026ae 50%);
  z-index: 1;
}
.cid-uuXHSbumdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXHSbumdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXHSbumdX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 1200px) {
  .cid-uuXHSbumdX .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uuXHSbumdX .container-fluid {
    padding: 0 22px;
  }
}
@media (max-width: 992px) {
  .cid-uuXHSbumdX .container {
    padding: 0 22px;
  }
}
.cid-uuXHSbumdX .row {
  justify-content: center;
}
.cid-uuXHSbumdX .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
@media (max-width: 992px) {
  .cid-uuXHSbumdX .content-wrapper {
    padding: 0;
  }
}
.cid-uuXHSbumdX .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uuXHSbumdX .content-wrapper .mbr-desc {
  margin-bottom: 30px;
}
.cid-uuXHSbumdX .mbr-section-title {
  color: #ffffff;
}
.cid-uuXHSbumdX .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-uuXHSbumdX .mbr-section-title,
.cid-uuXHSbumdX .mbr-section-btn {
  text-align: center;
}
.cid-uuXGvjBsnU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/background4.webp");
  position: relative;
  overflow: hidden;
}
.cid-uuXGvjBsnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXGvjBsnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXGvjBsnU .col-text {
  position: relative;
  width: 34vw;
}
@media (max-width: 991px) {
  .cid-uuXGvjBsnU .col-text {
    width: 62vw;
  }
}
@media (max-width: 767px) {
  .cid-uuXGvjBsnU .col-text {
    width: 70vw;
  }
}
@media (max-width: 575px) {
  .cid-uuXGvjBsnU .col-text {
    width: 100%;
  }
}
.cid-uuXGvjBsnU .text-wrap {
  position: relative;
  z-index: 3;
  padding: 3%;
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  .cid-uuXGvjBsnU .text-wrap {
    padding: 0;
  }
}
@media (max-width: 575px) {
  .cid-uuXGvjBsnU .text-wrap {
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
    margin-bottom: 10%;
  }
}
.cid-uuXGvjBsnU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 70px;
  color: #181817;
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.cid-uuXGvjBsnU .mbr-section-title {
  color: #181817;
  opacity: 0.8;
}
.cid-uuXGvjBsnU .mbr-section-subtitle {
  color: #f1f100;
}
.cid-uuXGvjBsnU .mbr-text {
  color: #181817;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.cid-uuXGvjBsnU .mbr-section-btn {
  margin-top: 1rem;
}
.cid-uuXGvjBsnU .img-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0066ff;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-uuXGvjBsnU .img-bg {
    width: 380px;
  }
}
@media (max-width: 575px) {
  .cid-uuXGvjBsnU .img-bg {
    width: calc(100% - 2rem);
  }
}
.cid-uuXHzJ9ltA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uuXHzJ9ltA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXHzJ9ltA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXHzJ9ltA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .container {
    padding: 0 30px;
  }
}
.cid-uuXHzJ9ltA .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uuXHzJ9ltA .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uuXHzJ9ltA .item-title {
  color: #144031;
}
.cid-uuXHzJ9ltA .item-text {
  color: #144031;
}
.cid-uuXGHtS5Lk {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uuXGHtS5Lk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXGHtS5Lk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXGHtS5Lk .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .container {
    padding: 0 30px;
  }
}
.cid-uuXGHtS5Lk .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-uuXGHtS5Lk .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-uuXGHtS5Lk .item-title {
  color: #144031;
}
.cid-uuXGHtS5Lk .item-text {
  color: #144031;
}
.cid-uuXGKkbawP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uuXGKkbawP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXGKkbawP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXGKkbawP .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uuXGKkbawP .container {
    padding: 10px 8px;
  }
}
.cid-uuXGKkbawP .row {
  margin: 0;
}
.cid-uuXGKkbawP .row .card {
  padding: 0;
}
.cid-uuXGKkbawP .box {
  margin-left: 8px;
}
@media (max-width: 992px) {
  .cid-uuXGKkbawP .box {
    margin: 0;
  }
}
.cid-uuXGKkbawP .box .mbr-media {
  position: relative;
  overflow: hidden;
  height: 570px;
  border-radius: 25px !important;
}
@media (max-width: 992px) {
  .cid-uuXGKkbawP .box .mbr-media {
    height: 350px;
  }
}
.cid-uuXGKkbawP .box .mbr-media img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.cid-uuXGKkbawP .box .mbr-media .mbr-iconfont {
  font-size: 32px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  margin-left: 8px;
}
.cid-uuXGKkbawP .mbr-media {
  position: relative;
}
.cid-uuXGKkbawP .mbr-media img {
  object-fit: cover;
}
.cid-uuXGKkbawP a:hover {
  background-image: none !important;
}
.cid-uuXGKkbawP .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background-color: #3283fb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cid-uuXGKkbawP .icon-wrap:hover,
.cid-uuXGKkbawP .icon-wrap:focus {
  cursor: pointer;
  background-color: #ffffff;
}
.cid-uuXGKkbawP .icon-wrap:hover .mbr-iconfont,
.cid-uuXGKkbawP .icon-wrap:focus .mbr-iconfont {
  color: #3283fb;
}
.cid-uuXGKkbawP .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uuXGKkbawP .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uuXGKkbawP .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uuXGKkbawP .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uuXGKkbawP .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uuXGKkbawP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uuXGKkbawP .content-wrapper {
  display: flex;
  align-items: center;
  padding: 50px 40px;
  background-color: #ffffff;
  border-radius: 25px;
  margin-right: 8px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uuXGKkbawP .content-wrapper {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 768px) {
  .cid-uuXGKkbawP .content-wrapper {
    padding: 50px 10px;
  }
}
.cid-uuXGKkbawP .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uuXGKkbawP .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uuXGKkbawP .content-wrapper .content-wrap .mbr-section-title span {
  opacity: .5;
}
.cid-uuXGKkbawP .mbr-section-title {
  color: #222222;
}
.cid-uuXGKkbawP .mbr-section-title,
.cid-uuXGKkbawP .mbr-section-btn {
  text-align: center;
}
.cid-uuXIzgrrQT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uuXIzgrrQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXIzgrrQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXIzgrrQT .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uuXIzgrrQT .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uuXIzgrrQT .container {
    padding: 0 24px;
  }
}
.cid-uuXIzgrrQT .row {
  justify-content: center;
}
.cid-uuXIzgrrQT .items-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uuXIzgrrQT .items-wrapper {
    flex-direction: column;
  }
}
.cid-uuXIzgrrQT .items-wrapper .item {
  padding: 0 16px;
}
.cid-uuXIzgrrQT .items-wrapper .item .item-wrapper .item-img img {
  height: 150px;
  object-fit: contain;
}
.cid-uuXIzgrrQT .decor-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uuXIzgrrQT .decor-wrapper .decor-wrap {
  width: 400px;
  height: 400px;
  border-radius: 100%;
  filter: blur(80px);
}
.cid-uuXIzgrrQT .decor-wrapper .decor_1 {
  background-color: #0091ff;
}
.cid-uuXIzgrrQT .decor-wrapper .decor_2 {
  background-color: #ffd300;
}
.cid-uuXIzgrrQT .decor-wrapper .decor_3 {
  background-color: #0091ff;
}
.cid-uuXIzgrrQT .decor-wrapper .decor_4 {
  background-color: #ffd400;
}
.cid-uvUKviwBTY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvUKviwBTY P {
  color: #767676;
}
.cid-uvUKviwBTY .mbr-text,
.cid-uvUKviwBTY .mbr-section-btn {
  color: #232323;
}
.cid-uvUKviwBTY H1 {
  color: #001fff;
}
.cid-uuXJpzzqKF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uuXJpzzqKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJpzzqKF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXJpzzqKF .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uuXJpzzqKF .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uuXJpzzqKF .container {
    padding: 0 24px;
  }
}
.cid-uuXJpzzqKF .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-uuXJpzzqKF .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uuXJpzzqKF .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .item .item-wrapper {
    min-height: 400px;
    padding: 24px;
  }
}
.cid-uuXJpzzqKF .item .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uuXJpzzqKF .item .item-wrapper .card-box {
  position: relative;
  padding: 20px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
}
.cid-uuXJpzzqKF .item .item-wrapper .card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
.cid-uuXJpzzqKF .item .item-wrapper .card-box .item-name {
  margin-bottom: 0;
}
.cid-uuXJpzzqKF .item .item-wrapper .card-box .item-role {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uuXJpzzqKF .item .card-main {
  height: 100%;
  display: block;
  min-height: 630px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .item .card-main {
    min-height: 400px;
    padding: 0;
  }
}
.cid-uuXJpzzqKF .item .card-main .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fbfaf9;
  border-radius: 2rem;
  border: 1px solid #edeceb;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uuXJpzzqKF .item .card-main .card-box {
    padding: 24px;
  }
}
.cid-uuXJpzzqKF .item .card-main .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uuXJpzzqKF .item .card-main .card-box .item-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uuXJpzzqKF .item-title {
  color: #18212d;
}
.cid-uuXJpzzqKF .item-text {
  color: #18212d;
}
.cid-uuXJpzzqKF .item-name {
  color: #ffffff;
}
.cid-uuXJpzzqKF .item-role {
  color: #ffffff;
}
.cid-uuXJsTVajW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  background-image: url("../../../assets/images/background1-4.webp");
}
.cid-uuXJsTVajW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJsTVajW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXJsTVajW .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uuXJsTVajW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uuXJsTVajW .container {
    padding: 0 24px;
  }
}
.cid-uuXJsTVajW .row {
  position: relative;
  justify-content: center;
}
.cid-uuXJsTVajW .content-wrapper {
  position: sticky;
  top: 16px;
  padding-right: 48px;
}
@media (max-width: 992px) {
  .cid-uuXJsTVajW .content-wrapper {
    margin-bottom: 32px;
    padding: 0;
  }
}
.cid-uuXJsTVajW .content-wrapper .mbr-desc {
  margin-bottom: 24px;
}
.cid-uuXJsTVajW .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uuXJsTVajW .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJsTVajW .item {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uuXJsTVajW .item {
    margin-bottom: 32px;
  }
}
.cid-uuXJsTVajW .item:last-child {
  margin-bottom: 0;
}
.cid-uuXJsTVajW .item .item-wrapper .card-box .card-number {
  margin-bottom: 16px;
}
.cid-uuXJsTVajW .item .item-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uuXJsTVajW .mbr-section-title {
  color: #fafafa;
}
.cid-uuXJsTVajW .mbr-desc {
  color: #fafafa;
}
.cid-uuXJsTVajW .mbr-text {
  color: #fafafa;
}
.cid-uuXJsTVajW .card-number {
  color: #fafafa;
}
.cid-uuXJsTVajW .card-title {
  color: #fafafa;
}
.cid-uuXJtX00Gc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1-7.webp");
}
.cid-uuXJtX00Gc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJtX00Gc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXJtX00Gc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uuXJtX00Gc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uuXJtX00Gc .container {
    padding: 0 24px;
  }
}
.cid-uuXJtX00Gc .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uuXJtX00Gc .items .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
  margin-left: -1rem;
  border: 1px solid #72716b;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uuXJtX00Gc .items .item {
    width: 245px;
    height: 245px;
    margin: -1rem 0 0 0;
  }
}
.cid-uuXJtX00Gc .items .item:first-child {
  margin-left: 0;
}
.cid-uuXJtX00Gc .items .item .item-wrapper .card-box .title-wrapper {
  padding: 0 24px;
}
.cid-uuXJtX00Gc .items .item .item-wrapper .card-box .title-wrapper .card-number {
  margin-bottom: 20px;
}
.cid-uuXJtX00Gc .items .item .item-wrapper .card-box .title-wrapper .card-title {
  margin-bottom: 0;
}
.cid-uuXJtX00Gc .card-number {
  color: #8AA29E;
  text-align: center;
}
.cid-uuXJtX00Gc .card-title {
  color: #F9F6E0;
  text-align: center;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv5oMwQfgI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uv5oMwQfgI H1 {
  color: #232323;
}
.cid-uv5oMwQfgI .mbr-text,
.cid-uv5oMwQfgI .mbr-section-btn {
  color: #000000;
}
.cid-uv5oMwQfgI .relative {
  position: relative;
}
.cid-uv5oMwQfgI .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uv5oMwQfgI .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uv5oMwQfgI .card-img2 .img2 {
  width: 80%;
}
.cid-uv5oMwQfgI .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uv5oMwQfgI .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uv5oMwQfgI .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uv08J9HeJ7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0066ff;
}
.cid-uv08J9HeJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv08J9HeJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv08J9HeJ7 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uv08J9HeJ7 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv08J9HeJ7 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uv08J9HeJ7 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uv08J9HeJ7 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv08J9HeJ7 .mbr-section-title {
  text-align: center;
  color: #ffe885;
}
.cid-uv08J9HeJ7 .mbr-text,
.cid-uv08J9HeJ7 .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-uv0arFOLEZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0arFOLEZ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uv0arFOLEZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0arFOLEZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv0arFOLEZ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv0arFOLEZ .content-wrap .card {
  justify-content: space-between;
}
.cid-uv0arFOLEZ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv0arFOLEZ .content-wrapper {
    padding: 0;
  }
}
.cid-uv0arFOLEZ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv0arFOLEZ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv0arFOLEZ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv0arFOLEZ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv0arFOLEZ .mbr-desc,
.cid-uv0arFOLEZ .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv0arFOLEZ .mbr-section-title,
.cid-uv0arFOLEZ .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv0iIbNi77 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uv0iIbNi77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0iIbNi77 .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-uv0iIbNi77 .container {
    padding: 0 15px;
  }
}
.cid-uv0iIbNi77 .content-wrapper {
  position: relative;
}
.cid-uv0iIbNi77 .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uv0iIbNi77 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uv0iIbNi77 .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uv0iIbNi77 .content-wrapper .content-wrap .text-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #68707c;
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .image-wrapper {
  position: relative;
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uv0iIbNi77 .content-wrapper .content-wrap .image-wrapper {
    width: 100%;
  }
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 0;
  height: 25%;
  width: 65%;
  background-color: #0c5ceb;
  transform: skewX(-20deg);
}
.cid-uv0iIbNi77 .content-wrapper .content-wrap .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 660px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0iIbNi77 .content-wrapper .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uv0iIbNi77 .mbr-text {
  color: #f7f5f6;
}
.cid-uv0iIbNi77 .mbr-section-title {
  color: #ffe161;
}
.cid-uv0kuVJozb {
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0kuVJozb .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #e6c63b;
}
.cid-uv0kuVJozb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0kuVJozb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv0kuVJozb .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv0kuVJozb .content-wrap .card {
  justify-content: space-between;
}
.cid-uv0kuVJozb .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv0kuVJozb .content-wrapper {
    padding: 0;
  }
}
.cid-uv0kuVJozb .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv0kuVJozb .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv0kuVJozb .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv0kuVJozb .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv0kuVJozb .mbr-desc,
.cid-uv0kuVJozb .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv0kuVJozb .mbr-section-title,
.cid-uv0kuVJozb .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv0lDnCKoD {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #0041b6;
  overflow: hidden;
}
.cid-uv0lDnCKoD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0lDnCKoD .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-uv0lDnCKoD .container {
    padding: 0 22px;
  }
}
.cid-uv0lDnCKoD .card {
  justify-content: center;
}
.cid-uv0lDnCKoD .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uv0lDnCKoD .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uv0lDnCKoD .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv0lDnCKoD .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv0lDnCKoD .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uv0lDnCKoD .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c63b;
}
@media (max-width: 1440px) {
  .cid-uv0lDnCKoD .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uv0lDnCKoD .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uv0lDnCKoD .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uv0lDnCKoD .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uv0lDnCKoD .mbr-section-title {
  color: #ffe161;
}
.cid-uv0lDnCKoD .mbr-text {
  color: #ffffff;
}
.cid-uv0lRny8mH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0lRny8mH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0lRny8mH .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-uv0lRny8mH .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0lRny8mH .container {
    padding: 0 12px;
  }
}
.cid-uv0lRny8mH .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0lRny8mH .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #6592e6;
  border-radius: 10rem;
}
.cid-uv0lRny8mH .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0lRny8mH .image-wrapper {
  margin-top: 50px;
  border: 10px solid #6592e6;
  transform: rotate(5deg);
  background-color: #6592e6;
  border-radius: 2rem;
}
.cid-uv0lRny8mH .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0lRny8mH .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0lRny8mH .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0lRny8mH .image-wrap {
  border: 10px solid #6592e6;
  transform: rotate(-20deg);
  background-color: #6592e6;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0lRny8mH .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0lRny8mH .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0lRny8mH .image-wrap img {
    height: 350px;
  }
}
.cid-uv0lRny8mH .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0lRny8mH .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv0wc66Uaz {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0wc66Uaz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0wc66Uaz .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-uv0wc66Uaz .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0wc66Uaz .container {
    padding: 0 12px;
  }
}
.cid-uv0wc66Uaz .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0wc66Uaz .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv0wc66Uaz .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0wc66Uaz .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv0wc66Uaz .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0wc66Uaz .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0wc66Uaz .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0wc66Uaz .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0wc66Uaz .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0wc66Uaz .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0wc66Uaz .image-wrap img {
    height: 350px;
  }
}
.cid-uv0wc66Uaz .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0wc66Uaz .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv0ykgEhzJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0ykgEhzJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0ykgEhzJ .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-uv0ykgEhzJ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0ykgEhzJ .container {
    padding: 0 12px;
  }
}
.cid-uv0ykgEhzJ .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0ykgEhzJ .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #6592e6;
  border-radius: 10rem;
}
.cid-uv0ykgEhzJ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0ykgEhzJ .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv0ykgEhzJ .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0ykgEhzJ .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0ykgEhzJ .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0ykgEhzJ .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0ykgEhzJ .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0ykgEhzJ .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0ykgEhzJ .image-wrap img {
    height: 350px;
  }
}
.cid-uv0ykgEhzJ .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0ykgEhzJ .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv0yVkW6H4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0yVkW6H4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0yVkW6H4 .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-uv0yVkW6H4 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0yVkW6H4 .container {
    padding: 0 12px;
  }
}
.cid-uv0yVkW6H4 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0yVkW6H4 .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #4479d9;
  border-radius: 10rem;
}
.cid-uv0yVkW6H4 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0yVkW6H4 .image-wrapper {
  margin-top: 50px;
  border: 10px solid #6592e6;
  transform: rotate(-5deg);
  background-color: #6592e6;
  border-radius: 2rem;
}
.cid-uv0yVkW6H4 .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0yVkW6H4 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0yVkW6H4 .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0yVkW6H4 .image-wrap {
  border: 10px solid #6592e6;
  transform: rotate(-20deg);
  background-color: #6592e6;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0yVkW6H4 .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0yVkW6H4 .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0yVkW6H4 .image-wrap img {
    height: 350px;
  }
}
.cid-uv0yVkW6H4 .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0yVkW6H4 .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv0BrNjExa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0BrNjExa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0BrNjExa .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-uv0BrNjExa .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0BrNjExa .container {
    padding: 0 12px;
  }
}
.cid-uv0BrNjExa .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0BrNjExa .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe161;
  border-radius: 10rem;
}
.cid-uv0BrNjExa .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0BrNjExa .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv0BrNjExa .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0BrNjExa .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0BrNjExa .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0BrNjExa .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0BrNjExa .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0BrNjExa .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0BrNjExa .image-wrap img {
    height: 350px;
  }
}
.cid-uv0BrNjExa .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0BrNjExa .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv0DwcAlBF {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv0DwcAlBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv0DwcAlBF .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-uv0DwcAlBF .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv0DwcAlBF .container {
    padding: 0 12px;
  }
}
.cid-uv0DwcAlBF .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv0DwcAlBF .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #6592e6;
  border-radius: 10rem;
}
.cid-uv0DwcAlBF .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv0DwcAlBF .image-wrapper {
  margin-top: 50px;
  border: 10px solid #8caff0;
  transform: rotate(5deg);
  background-color: #8caff0;
  border-radius: 2rem;
}
.cid-uv0DwcAlBF .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv0DwcAlBF .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv0DwcAlBF .image-wrapper img {
    height: 250px;
  }
}
.cid-uv0DwcAlBF .image-wrap {
  border: 10px solid #8caff0;
  transform: rotate(-10deg);
  background-color: #8caff0;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv0DwcAlBF .image-wrap {
    margin-top: 0;
  }
}
.cid-uv0DwcAlBF .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv0DwcAlBF .image-wrap img {
    height: 350px;
  }
}
.cid-uv0DwcAlBF .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv0DwcAlBF .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
.cid-uv45H69Y6E {
  z-index: 1000;
  width: 100%;
}
.cid-uv45H69Y6E nav.navbar {
  position: fixed;
}
.cid-uv45H69Y6E .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-uv45H69Y6E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv45H69Y6E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv45H69Y6E .dropdown-item:hover,
.cid-uv45H69Y6E .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-uv45H69Y6E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv45H69Y6E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv45H69Y6E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv45H69Y6E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv45H69Y6E .nav-link {
  position: relative;
}
.cid-uv45H69Y6E .container {
  display: flex;
  margin: auto;
}
.cid-uv45H69Y6E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uv45H69Y6E .dropdown-menu,
.cid-uv45H69Y6E .navbar.opened {
  background: #fafafa !important;
}
.cid-uv45H69Y6E .nav-item:focus,
.cid-uv45H69Y6E .nav-link:focus {
  outline: none;
}
.cid-uv45H69Y6E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv45H69Y6E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv45H69Y6E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv45H69Y6E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv45H69Y6E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv45H69Y6E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv45H69Y6E .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uv45H69Y6E .navbar.opened {
  transition: all 0.3s;
}
.cid-uv45H69Y6E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv45H69Y6E .navbar .navbar-logo img {
  width: auto;
}
.cid-uv45H69Y6E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv45H69Y6E .navbar.collapsed {
  justify-content: center;
}
.cid-uv45H69Y6E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv45H69Y6E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uv45H69Y6E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv45H69Y6E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv45H69Y6E .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-uv45H69Y6E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv45H69Y6E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uv45H69Y6E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uv45H69Y6E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv45H69Y6E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv45H69Y6E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv45H69Y6E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv45H69Y6E .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-uv45H69Y6E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv45H69Y6E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv45H69Y6E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv45H69Y6E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv45H69Y6E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uv45H69Y6E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uv45H69Y6E .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv45H69Y6E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv45H69Y6E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv45H69Y6E .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-uv45H69Y6E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv45H69Y6E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv45H69Y6E .dropdown-item.active,
.cid-uv45H69Y6E .dropdown-item:active {
  background-color: transparent;
}
.cid-uv45H69Y6E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv45H69Y6E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv45H69Y6E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv45H69Y6E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uv45H69Y6E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv45H69Y6E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv45H69Y6E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv45H69Y6E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv45H69Y6E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv45H69Y6E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uv45H69Y6E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv45H69Y6E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45H69Y6E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45H69Y6E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv45H69Y6E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45H69Y6E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv45H69Y6E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv45H69Y6E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45H69Y6E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv45H69Y6E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uv45H69Y6E .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-uv45H69Y6E .navbar {
    height: 70px;
  }
  .cid-uv45H69Y6E .navbar.opened {
    height: auto;
  }
  .cid-uv45H69Y6E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv5oPFDatM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uv5oPFDatM H1 {
  color: #232323;
}
.cid-uv5oPFDatM .mbr-text,
.cid-uv5oPFDatM .mbr-section-btn {
  color: #000000;
}
.cid-uv5oPFDatM .relative {
  position: relative;
}
.cid-uv5oPFDatM .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uv5oPFDatM .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uv5oPFDatM .card-img2 .img2 {
  width: 80%;
}
.cid-uv5oPFDatM .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uv5oPFDatM .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uv5oPFDatM .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uv45H6AQiG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #0066ff;
}
.cid-uv45H6AQiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H6AQiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45H6AQiG .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uv45H6AQiG .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45H6AQiG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uv45H6AQiG .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uv45H6AQiG .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45H6AQiG .mbr-section-title {
  text-align: center;
  color: #ffe885;
}
.cid-uv45H6AQiG .mbr-text,
.cid-uv45H6AQiG .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45H6VLPn {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H6VLPn .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uv45H6VLPn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H6VLPn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45H6VLPn .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45H6VLPn .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45H6VLPn .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45H6VLPn .content-wrapper {
    padding: 0;
  }
}
.cid-uv45H6VLPn .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45H6VLPn .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45H6VLPn .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45H6VLPn .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45H6VLPn .mbr-desc,
.cid-uv45H6VLPn .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45H6VLPn .mbr-section-title,
.cid-uv45H6VLPn .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45H7egEt {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uv45H7egEt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H7egEt .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-uv45H7egEt .container {
    padding: 0 15px;
  }
}
.cid-uv45H7egEt .content-wrapper {
  position: relative;
}
.cid-uv45H7egEt .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uv45H7egEt .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uv45H7egEt .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uv45H7egEt .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uv45H7egEt .content-wrapper .content-wrap .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uv45H7egEt .content-wrapper .content-wrap .text-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uv45H7egEt .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uv45H7egEt .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #68707c;
}
.cid-uv45H7egEt .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45H7egEt .content-wrapper .content-wrap .image-wrapper {
  position: relative;
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uv45H7egEt .content-wrapper .content-wrap .image-wrapper {
    width: 100%;
  }
}
.cid-uv45H7egEt .content-wrapper .content-wrap .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 0;
  height: 25%;
  width: 65%;
  background-color: #0c5ceb;
  transform: skewX(-20deg);
}
.cid-uv45H7egEt .content-wrapper .content-wrap .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 660px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45H7egEt .content-wrapper .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uv45H7egEt .mbr-text {
  color: #f7f5f6;
}
.cid-uv45H7egEt .mbr-section-title {
  color: #ffe161;
}
.cid-uv45H7Bcgu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H7Bcgu .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #e6c63b;
}
.cid-uv45H7Bcgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H7Bcgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45H7Bcgu .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45H7Bcgu .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45H7Bcgu .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45H7Bcgu .content-wrapper {
    padding: 0;
  }
}
.cid-uv45H7Bcgu .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45H7Bcgu .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45H7Bcgu .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45H7Bcgu .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45H7Bcgu .mbr-desc,
.cid-uv45H7Bcgu .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45H7Bcgu .mbr-section-title,
.cid-uv45H7Bcgu .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45H7Uygv {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #0041b6;
  overflow: hidden;
}
.cid-uv45H7Uygv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H7Uygv .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-uv45H7Uygv .container {
    padding: 0 22px;
  }
}
.cid-uv45H7Uygv .card {
  justify-content: center;
}
.cid-uv45H7Uygv .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uv45H7Uygv .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uv45H7Uygv .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45H7Uygv .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45H7Uygv .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uv45H7Uygv .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c63b;
}
@media (max-width: 1440px) {
  .cid-uv45H7Uygv .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uv45H7Uygv .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uv45H7Uygv .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H7Uygv .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uv45H7Uygv .mbr-section-title {
  color: #ffe161;
}
.cid-uv45H7Uygv .mbr-text {
  color: #ffffff;
}
.cid-uv4l0JZxeN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4l0JZxeN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4l0JZxeN .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-uv4l0JZxeN .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4l0JZxeN .container {
    padding: 0 12px;
  }
}
.cid-uv4l0JZxeN .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4l0JZxeN .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #8caff0;
  border-radius: 10rem;
}
.cid-uv4l0JZxeN .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4l0JZxeN .image-wrapper {
  margin-top: 50px;
  border: 10px solid #6592e6;
  transform: rotate(5deg);
  background-color: #6592e6;
  border-radius: 2rem;
}
.cid-uv4l0JZxeN .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 25%) {
  .cid-uv4l0JZxeN .image-wrapper img {
    height: 250px;
  }
}
@media (max-width: 384px) {
  .cid-uv4l0JZxeN .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4l0JZxeN .image-wrap {
  border: 10px solid #6592e6;
  transform: rotate(-20deg);
  background-color: #6592e6;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4l0JZxeN .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4l0JZxeN .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4l0JZxeN .image-wrap img {
    height: 350px;
  }
}
.cid-uv4l0JZxeN .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4l0JZxeN .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45H8Dw6L {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H8Dw6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H8Dw6L .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-uv45H8Dw6L .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H8Dw6L .container {
    padding: 0 12px;
  }
}
.cid-uv45H8Dw6L .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45H8Dw6L .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45H8Dw6L .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45H8Dw6L .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45H8Dw6L .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45H8Dw6L .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H8Dw6L .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45H8Dw6L .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45H8Dw6L .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45H8Dw6L .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45H8Dw6L .image-wrap img {
    height: 350px;
  }
}
.cid-uv45H8Dw6L .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45H8Dw6L .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45H915Y8 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H915Y8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H915Y8 .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-uv45H915Y8 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H915Y8 .container {
    padding: 0 12px;
  }
}
.cid-uv45H915Y8 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45H915Y8 .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0c5ceb;
  border-radius: 10rem;
}
.cid-uv45H915Y8 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45H915Y8 .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv45H915Y8 .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45H915Y8 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H915Y8 .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45H915Y8 .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45H915Y8 .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45H915Y8 .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45H915Y8 .image-wrap img {
    height: 350px;
  }
}
.cid-uv45H915Y8 .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45H915Y8 .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45H9qUr1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H9qUr1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H9qUr1 .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-uv45H9qUr1 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H9qUr1 .container {
    padding: 0 12px;
  }
}
.cid-uv45H9qUr1 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45H9qUr1 .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45H9qUr1 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45H9qUr1 .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45H9qUr1 .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45H9qUr1 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H9qUr1 .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45H9qUr1 .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45H9qUr1 .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45H9qUr1 .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45H9qUr1 .image-wrap img {
    height: 350px;
  }
}
.cid-uv45H9qUr1 .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45H9qUr1 .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45H9Pvuc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45H9Pvuc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45H9Pvuc .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-uv45H9Pvuc .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H9Pvuc .container {
    padding: 0 12px;
  }
}
.cid-uv45H9Pvuc .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45H9Pvuc .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0c5ceb;
  border-radius: 10rem;
}
.cid-uv45H9Pvuc .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45H9Pvuc .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv45H9Pvuc .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45H9Pvuc .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45H9Pvuc .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45H9Pvuc .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45H9Pvuc .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45H9Pvuc .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45H9Pvuc .image-wrap img {
    height: 350px;
  }
}
.cid-uv45H9Pvuc .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45H9Pvuc .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45HaegPT {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45HaegPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45HaegPT .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-uv45HaegPT .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45HaegPT .container {
    padding: 0 12px;
  }
}
.cid-uv45HaegPT .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45HaegPT .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45HaegPT .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45HaegPT .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45HaegPT .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45HaegPT .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45HaegPT .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45HaegPT .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-10deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45HaegPT .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45HaegPT .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45HaegPT .image-wrap img {
    height: 350px;
  }
}
.cid-uv45HaegPT .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45HaegPT .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45HaDHCA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uv45HaDHCA::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uv45HaDHCA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45HaDHCA .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-uv45HaDHCA .container {
    padding: 0 22px;
  }
}
.cid-uv45HaDHCA .row {
  position: relative;
  z-index: 1;
}
.cid-uv45HaDHCA .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uv45HaDHCA .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45HaDHCA .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45HaDHCA .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45HaDHCA .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45HaDHCA .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45HaDHCA .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uv45HaDHCA .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uv45HaDHCA .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap:hover,
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap:hover::before,
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uv45HaDHCA .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45HaDHCA .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45HaDHCA .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45HaDHCA .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45HaDHCA .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uv45HaDHCA .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uv45HaDHCA .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uv45HaDHCA .mbr-section-title {
  color: #00d0f3;
}
.cid-uv45HaDHCA .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45HaDHCA .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uv45HaDHCA .list {
  color: #ffffff;
}
.cid-uv45HaDHCA .mbr-contact {
  color: #ffffff;
}
.cid-uv45HaDHCA .mbr-desc {
  color: #ffffff;
}
.cid-uv45HaDHCA .a href {
  color: #47b5ed;
}
.cid-uv45MzyCJ1 {
  z-index: 1000;
  width: 100%;
}
.cid-uv45MzyCJ1 nav.navbar {
  position: fixed;
}
.cid-uv45MzyCJ1 .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-uv45MzyCJ1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv45MzyCJ1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv45MzyCJ1 .dropdown-item:hover,
.cid-uv45MzyCJ1 .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-uv45MzyCJ1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv45MzyCJ1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv45MzyCJ1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv45MzyCJ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv45MzyCJ1 .nav-link {
  position: relative;
}
.cid-uv45MzyCJ1 .container {
  display: flex;
  margin: auto;
}
.cid-uv45MzyCJ1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uv45MzyCJ1 .dropdown-menu,
.cid-uv45MzyCJ1 .navbar.opened {
  background: #fafafa !important;
}
.cid-uv45MzyCJ1 .nav-item:focus,
.cid-uv45MzyCJ1 .nav-link:focus {
  outline: none;
}
.cid-uv45MzyCJ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv45MzyCJ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv45MzyCJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv45MzyCJ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv45MzyCJ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv45MzyCJ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv45MzyCJ1 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uv45MzyCJ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uv45MzyCJ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv45MzyCJ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uv45MzyCJ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv45MzyCJ1 .navbar.collapsed {
  justify-content: center;
}
.cid-uv45MzyCJ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv45MzyCJ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uv45MzyCJ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv45MzyCJ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv45MzyCJ1 .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-uv45MzyCJ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv45MzyCJ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uv45MzyCJ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uv45MzyCJ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv45MzyCJ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv45MzyCJ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv45MzyCJ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv45MzyCJ1 .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-uv45MzyCJ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv45MzyCJ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv45MzyCJ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv45MzyCJ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv45MzyCJ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uv45MzyCJ1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uv45MzyCJ1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv45MzyCJ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv45MzyCJ1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv45MzyCJ1 .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-uv45MzyCJ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv45MzyCJ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv45MzyCJ1 .dropdown-item.active,
.cid-uv45MzyCJ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uv45MzyCJ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv45MzyCJ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv45MzyCJ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv45MzyCJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uv45MzyCJ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv45MzyCJ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv45MzyCJ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv45MzyCJ1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv45MzyCJ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv45MzyCJ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uv45MzyCJ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv45MzyCJ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45MzyCJ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45MzyCJ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv45MzyCJ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45MzyCJ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv45MzyCJ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv45MzyCJ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45MzyCJ1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv45MzyCJ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uv45MzyCJ1 .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-uv45MzyCJ1 .navbar {
    height: 70px;
  }
  .cid-uv45MzyCJ1 .navbar.opened {
    height: auto;
  }
  .cid-uv45MzyCJ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv5oSnzmoS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uv5oSnzmoS H1 {
  color: #232323;
}
.cid-uv5oSnzmoS .mbr-text,
.cid-uv5oSnzmoS .mbr-section-btn {
  color: #000000;
}
.cid-uv5oSnzmoS .relative {
  position: relative;
}
.cid-uv5oSnzmoS .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uv5oSnzmoS .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uv5oSnzmoS .card-img2 .img2 {
  width: 80%;
}
.cid-uv5oSnzmoS .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uv5oSnzmoS .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uv5oSnzmoS .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uv45MzX1mK {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #0066ff;
}
.cid-uv45MzX1mK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MzX1mK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45MzX1mK .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uv45MzX1mK .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45MzX1mK .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uv45MzX1mK .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uv45MzX1mK .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45MzX1mK .mbr-section-title {
  text-align: center;
  color: #ffe885;
}
.cid-uv45MzX1mK .mbr-text,
.cid-uv45MzX1mK .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45MAjUZr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MAjUZr .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uv45MAjUZr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MAjUZr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45MAjUZr .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45MAjUZr .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45MAjUZr .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45MAjUZr .content-wrapper {
    padding: 0;
  }
}
.cid-uv45MAjUZr .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45MAjUZr .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45MAjUZr .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45MAjUZr .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45MAjUZr .mbr-desc,
.cid-uv45MAjUZr .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45MAjUZr .mbr-section-title,
.cid-uv45MAjUZr .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45MACP13 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uv45MACP13 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MACP13 .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-uv45MACP13 .container {
    padding: 0 15px;
  }
}
.cid-uv45MACP13 .content-wrapper {
  position: relative;
}
.cid-uv45MACP13 .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uv45MACP13 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uv45MACP13 .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uv45MACP13 .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uv45MACP13 .content-wrapper .content-wrap .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uv45MACP13 .content-wrapper .content-wrap .text-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uv45MACP13 .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uv45MACP13 .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #68707c;
}
.cid-uv45MACP13 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45MACP13 .content-wrapper .content-wrap .image-wrapper {
  position: relative;
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uv45MACP13 .content-wrapper .content-wrap .image-wrapper {
    width: 100%;
  }
}
.cid-uv45MACP13 .content-wrapper .content-wrap .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 0;
  height: 25%;
  width: 65%;
  background-color: #0c5ceb;
  transform: skewX(-20deg);
}
.cid-uv45MACP13 .content-wrapper .content-wrap .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 660px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MACP13 .content-wrapper .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uv45MACP13 .mbr-text {
  color: #f7f5f6;
}
.cid-uv45MACP13 .mbr-section-title {
  color: #ffe161;
}
.cid-uv45MB1vMv {
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MB1vMv .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #e6c63b;
}
.cid-uv45MB1vMv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MB1vMv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45MB1vMv .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45MB1vMv .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45MB1vMv .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45MB1vMv .content-wrapper {
    padding: 0;
  }
}
.cid-uv45MB1vMv .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45MB1vMv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45MB1vMv .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45MB1vMv .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45MB1vMv .mbr-desc,
.cid-uv45MB1vMv .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45MB1vMv .mbr-section-title,
.cid-uv45MB1vMv .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45MBnkoh {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #0041b6;
  overflow: hidden;
}
.cid-uv45MBnkoh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MBnkoh .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-uv45MBnkoh .container {
    padding: 0 22px;
  }
}
.cid-uv45MBnkoh .card {
  justify-content: center;
}
.cid-uv45MBnkoh .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uv45MBnkoh .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uv45MBnkoh .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45MBnkoh .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45MBnkoh .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uv45MBnkoh .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c63b;
}
@media (max-width: 1440px) {
  .cid-uv45MBnkoh .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uv45MBnkoh .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uv45MBnkoh .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MBnkoh .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uv45MBnkoh .mbr-section-title {
  color: #ffe161;
}
.cid-uv45MBnkoh .mbr-text {
  color: #ffffff;
}
.cid-uv45MBJ98K {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MBJ98K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MBJ98K .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-uv45MBJ98K .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MBJ98K .container {
    padding: 0 12px;
  }
}
.cid-uv45MBJ98K .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MBJ98K .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0c5ceb;
  border-radius: 10rem;
}
.cid-uv45MBJ98K .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MBJ98K .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv45MBJ98K .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MBJ98K .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MBJ98K .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MBJ98K .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MBJ98K .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MBJ98K .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MBJ98K .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MBJ98K .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MBJ98K .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MC8ZGl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MC8ZGl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MC8ZGl .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-uv45MC8ZGl .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MC8ZGl .container {
    padding: 0 12px;
  }
}
.cid-uv45MC8ZGl .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MC8ZGl .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45MC8ZGl .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MC8ZGl .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45MC8ZGl .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MC8ZGl .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MC8ZGl .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MC8ZGl .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MC8ZGl .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MC8ZGl .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MC8ZGl .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MC8ZGl .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MC8ZGl .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MCxNPP {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MCxNPP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MCxNPP .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-uv45MCxNPP .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MCxNPP .container {
    padding: 0 12px;
  }
}
.cid-uv45MCxNPP .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MCxNPP .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0066ff;
  border-radius: 10rem;
}
.cid-uv45MCxNPP .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MCxNPP .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0066ff;
  transform: rotate(5deg);
  background-color: #0066ff;
  border-radius: 2rem;
}
.cid-uv45MCxNPP .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MCxNPP .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MCxNPP .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MCxNPP .image-wrap {
  border: 10px solid #0066ff;
  transform: rotate(-20deg);
  background-color: #0066ff;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MCxNPP .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MCxNPP .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MCxNPP .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MCxNPP .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MCxNPP .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MCXouE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MCXouE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MCXouE .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-uv45MCXouE .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MCXouE .container {
    padding: 0 12px;
  }
}
.cid-uv45MCXouE .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MCXouE .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45MCXouE .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MCXouE .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45MCXouE .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MCXouE .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MCXouE .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MCXouE .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MCXouE .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MCXouE .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MCXouE .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MCXouE .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MCXouE .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MDogqA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MDogqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MDogqA .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-uv45MDogqA .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MDogqA .container {
    padding: 0 12px;
  }
}
.cid-uv45MDogqA .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MDogqA .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0066ff;
  border-radius: 10rem;
}
.cid-uv45MDogqA .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MDogqA .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv45MDogqA .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MDogqA .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MDogqA .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MDogqA .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MDogqA .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MDogqA .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MDogqA .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MDogqA .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MDogqA .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MDNdkk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45MDNdkk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MDNdkk .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-uv45MDNdkk .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MDNdkk .container {
    padding: 0 12px;
  }
}
.cid-uv45MDNdkk .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv45MDNdkk .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv45MDNdkk .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv45MDNdkk .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv45MDNdkk .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv45MDNdkk .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv45MDNdkk .image-wrapper img {
    height: 250px;
  }
}
.cid-uv45MDNdkk .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-10deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv45MDNdkk .image-wrap {
    margin-top: 0;
  }
}
.cid-uv45MDNdkk .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45MDNdkk .image-wrap img {
    height: 350px;
  }
}
.cid-uv45MDNdkk .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv45MDNdkk .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4CjLDFLZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4CjLDFLZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4CjLDFLZ .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-uv4CjLDFLZ .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CjLDFLZ .container {
    padding: 0 12px;
  }
}
.cid-uv4CjLDFLZ .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4CjLDFLZ .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0066ff;
  border-radius: 10rem;
}
.cid-uv4CjLDFLZ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4CjLDFLZ .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0066ff;
  transform: rotate(5deg);
  background-color: #0066ff;
  border-radius: 2rem;
}
.cid-uv4CjLDFLZ .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4CjLDFLZ .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CjLDFLZ .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4CjLDFLZ .image-wrap {
  border: 10px solid #0066ff;
  transform: rotate(-20deg);
  background-color: #0066ff;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4CjLDFLZ .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4CjLDFLZ .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4CjLDFLZ .image-wrap img {
    height: 350px;
  }
}
.cid-uv4CjLDFLZ .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4CjLDFLZ .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4CoDkzLt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4CoDkzLt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4CoDkzLt .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-uv4CoDkzLt .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CoDkzLt .container {
    padding: 0 12px;
  }
}
.cid-uv4CoDkzLt .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4CoDkzLt .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv4CoDkzLt .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4CoDkzLt .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe161;
  transform: rotate(-5deg);
  background-color: #ffe161;
  border-radius: 2rem;
}
.cid-uv4CoDkzLt .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4CoDkzLt .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CoDkzLt .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4CoDkzLt .image-wrap {
  border: 10px solid #ffe161;
  transform: rotate(-20deg);
  background-color: #ffe161;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4CoDkzLt .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4CoDkzLt .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4CoDkzLt .image-wrap img {
    height: 350px;
  }
}
.cid-uv4CoDkzLt .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4CoDkzLt .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4Co3k8po {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4Co3k8po .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4Co3k8po .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-uv4Co3k8po .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4Co3k8po .container {
    padding: 0 12px;
  }
}
.cid-uv4Co3k8po .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4Co3k8po .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0066ff;
  border-radius: 10rem;
}
.cid-uv4Co3k8po .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4Co3k8po .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv4Co3k8po .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4Co3k8po .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4Co3k8po .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4Co3k8po .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4Co3k8po .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4Co3k8po .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4Co3k8po .image-wrap img {
    height: 350px;
  }
}
.cid-uv4Co3k8po .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4Co3k8po .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4CtjBHYL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4CtjBHYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4CtjBHYL .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-uv4CtjBHYL .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CtjBHYL .container {
    padding: 0 12px;
  }
}
.cid-uv4CtjBHYL .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4CtjBHYL .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv4CtjBHYL .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4CtjBHYL .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv4CtjBHYL .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4CtjBHYL .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CtjBHYL .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4CtjBHYL .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4CtjBHYL .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4CtjBHYL .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4CtjBHYL .image-wrap img {
    height: 350px;
  }
}
.cid-uv4CtjBHYL .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4CtjBHYL .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4CucFaP0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4CucFaP0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4CucFaP0 .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-uv4CucFaP0 .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CucFaP0 .container {
    padding: 0 12px;
  }
}
.cid-uv4CucFaP0 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4CucFaP0 .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #0066ff;
  border-radius: 10rem;
}
.cid-uv4CucFaP0 .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4CucFaP0 .image-wrapper {
  margin-top: 50px;
  border: 10px solid #0c5ceb;
  transform: rotate(5deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
}
.cid-uv4CucFaP0 .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4CucFaP0 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4CucFaP0 .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4CucFaP0 .image-wrap {
  border: 10px solid #0c5ceb;
  transform: rotate(-20deg);
  background-color: #0c5ceb;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4CucFaP0 .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4CucFaP0 .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4CucFaP0 .image-wrap img {
    height: 350px;
  }
}
.cid-uv4CucFaP0 .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4CucFaP0 .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv4Cv0nrjb {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv4Cv0nrjb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv4Cv0nrjb .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-uv4Cv0nrjb .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-uv4Cv0nrjb .container {
    padding: 0 12px;
  }
}
.cid-uv4Cv0nrjb .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  position: relative;
}
.cid-uv4Cv0nrjb .content-wrapper .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  opacity: .85;
  background-color: #ffe885;
  border-radius: 10rem;
}
.cid-uv4Cv0nrjb .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uv4Cv0nrjb .image-wrapper {
  margin-top: 50px;
  border: 10px solid #ffe885;
  transform: rotate(-5deg);
  background-color: #ffe885;
  border-radius: 2rem;
}
.cid-uv4Cv0nrjb .image-wrapper img {
  height: 300px;
  object-fit: cover;
}
@media (max-width: 1500px) {
  .cid-uv4Cv0nrjb .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .cid-uv4Cv0nrjb .image-wrapper img {
    height: 250px;
  }
}
.cid-uv4Cv0nrjb .image-wrap {
  border: 10px solid #ffe885;
  transform: rotate(-20deg);
  background-color: #ffe885;
  border-radius: 2rem;
  margin-top: -120px;
}
@media (max-width: 992px) {
  .cid-uv4Cv0nrjb .image-wrap {
    margin-top: 0;
  }
}
.cid-uv4Cv0nrjb .image-wrap img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv4Cv0nrjb .image-wrap img {
    height: 350px;
  }
}
.cid-uv4Cv0nrjb .mbr-section-title {
  color: #1D1D1F;
}
.cid-uv4Cv0nrjb .mbr-text {
  color: #1D1D1F;
  text-align: justify;
}
.cid-uv45MEfctf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uv45MEfctf::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uv45MEfctf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45MEfctf .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-uv45MEfctf .container {
    padding: 0 22px;
  }
}
.cid-uv45MEfctf .row {
  position: relative;
  z-index: 1;
}
.cid-uv45MEfctf .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uv45MEfctf .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45MEfctf .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45MEfctf .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45MEfctf .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45MEfctf .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45MEfctf .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uv45MEfctf .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uv45MEfctf .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uv45MEfctf .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45MEfctf .nav-wrapper .list .item-wrap:hover,
.cid-uv45MEfctf .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uv45MEfctf .nav-wrapper .list .item-wrap:hover::before,
.cid-uv45MEfctf .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uv45MEfctf .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45MEfctf .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45MEfctf .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45MEfctf .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45MEfctf .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uv45MEfctf .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uv45MEfctf .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uv45MEfctf .mbr-section-title {
  color: #00d0f3;
}
.cid-uv45MEfctf .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45MEfctf .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uv45MEfctf .list {
  color: #ffffff;
}
.cid-uv45MEfctf .mbr-contact {
  color: #ffffff;
}
.cid-uv45MEfctf .mbr-desc {
  color: #ffffff;
}
.cid-uv45MEfctf .a href {
  color: #47b5ed;
}
.cid-uv45V9mDMt {
  z-index: 1000;
  width: 100%;
}
.cid-uv45V9mDMt nav.navbar {
  position: fixed;
}
.cid-uv45V9mDMt .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-uv45V9mDMt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv45V9mDMt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv45V9mDMt .dropdown-item:hover,
.cid-uv45V9mDMt .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-uv45V9mDMt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv45V9mDMt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv45V9mDMt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv45V9mDMt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv45V9mDMt .nav-link {
  position: relative;
}
.cid-uv45V9mDMt .container {
  display: flex;
  margin: auto;
}
.cid-uv45V9mDMt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uv45V9mDMt .dropdown-menu,
.cid-uv45V9mDMt .navbar.opened {
  background: #fafafa !important;
}
.cid-uv45V9mDMt .nav-item:focus,
.cid-uv45V9mDMt .nav-link:focus {
  outline: none;
}
.cid-uv45V9mDMt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv45V9mDMt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv45V9mDMt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv45V9mDMt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv45V9mDMt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv45V9mDMt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv45V9mDMt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uv45V9mDMt .navbar.opened {
  transition: all 0.3s;
}
.cid-uv45V9mDMt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv45V9mDMt .navbar .navbar-logo img {
  width: auto;
}
.cid-uv45V9mDMt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv45V9mDMt .navbar.collapsed {
  justify-content: center;
}
.cid-uv45V9mDMt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv45V9mDMt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uv45V9mDMt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv45V9mDMt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv45V9mDMt .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-uv45V9mDMt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv45V9mDMt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uv45V9mDMt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uv45V9mDMt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv45V9mDMt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv45V9mDMt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv45V9mDMt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv45V9mDMt .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-uv45V9mDMt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv45V9mDMt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv45V9mDMt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv45V9mDMt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv45V9mDMt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uv45V9mDMt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uv45V9mDMt .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv45V9mDMt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv45V9mDMt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv45V9mDMt .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-uv45V9mDMt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv45V9mDMt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv45V9mDMt .dropdown-item.active,
.cid-uv45V9mDMt .dropdown-item:active {
  background-color: transparent;
}
.cid-uv45V9mDMt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv45V9mDMt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv45V9mDMt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv45V9mDMt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uv45V9mDMt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv45V9mDMt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv45V9mDMt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv45V9mDMt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv45V9mDMt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv45V9mDMt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uv45V9mDMt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv45V9mDMt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45V9mDMt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv45V9mDMt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv45V9mDMt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45V9mDMt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv45V9mDMt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv45V9mDMt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv45V9mDMt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv45V9mDMt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uv45V9mDMt .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-uv45V9mDMt .navbar {
    height: 70px;
  }
  .cid-uv45V9mDMt .navbar.opened {
    height: auto;
  }
  .cid-uv45V9mDMt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv5q4OMJDA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uv5q4OMJDA H1 {
  color: #232323;
}
.cid-uv5q4OMJDA .mbr-text,
.cid-uv5q4OMJDA .mbr-section-btn {
  color: #000000;
}
.cid-uv5q4OMJDA .relative {
  position: relative;
}
.cid-uv5q4OMJDA .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uv5q4OMJDA .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uv5q4OMJDA .card-img2 .img2 {
  width: 80%;
}
.cid-uv5q4OMJDA .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uv5q4OMJDA .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uv5q4OMJDA .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uv45V9OXvi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0066ff;
}
.cid-uv45V9OXvi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45V9OXvi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45V9OXvi .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uv45V9OXvi .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45V9OXvi .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uv45V9OXvi .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uv45V9OXvi .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv45V9OXvi .mbr-section-title {
  text-align: center;
  color: #ffe885;
}
.cid-uv45V9OXvi .mbr-text,
.cid-uv45V9OXvi .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45Va9pRQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45Va9pRQ .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uv45Va9pRQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45Va9pRQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45Va9pRQ .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45Va9pRQ .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45Va9pRQ .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45Va9pRQ .content-wrapper {
    padding: 0;
  }
}
.cid-uv45Va9pRQ .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45Va9pRQ .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45Va9pRQ .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45Va9pRQ .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45Va9pRQ .mbr-desc,
.cid-uv45Va9pRQ .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45Va9pRQ .mbr-section-title,
.cid-uv45Va9pRQ .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45Vat3AI {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uv45Vat3AI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45Vat3AI .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-uv45Vat3AI .container {
    padding: 0 15px;
  }
}
.cid-uv45Vat3AI .content-wrapper {
  position: relative;
}
.cid-uv45Vat3AI .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uv45Vat3AI .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uv45Vat3AI .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uv45Vat3AI .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uv45Vat3AI .content-wrapper .content-wrap .text-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #68707c;
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .image-wrapper {
  position: relative;
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uv45Vat3AI .content-wrapper .content-wrap .image-wrapper {
    width: 100%;
  }
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 0;
  height: 25%;
  width: 65%;
  background-color: #0c5ceb;
  transform: skewX(-20deg);
}
.cid-uv45Vat3AI .content-wrapper .content-wrap .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 660px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv45Vat3AI .content-wrapper .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uv45Vat3AI .mbr-text {
  color: #f7f5f6;
}
.cid-uv45Vat3AI .mbr-section-title {
  color: #ffe161;
}
.cid-uv45VaRkbC {
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv45VaRkbC .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #e6c63b;
}
.cid-uv45VaRkbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45VaRkbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv45VaRkbC .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv45VaRkbC .content-wrap .card {
  justify-content: space-between;
}
.cid-uv45VaRkbC .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv45VaRkbC .content-wrapper {
    padding: 0;
  }
}
.cid-uv45VaRkbC .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv45VaRkbC .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv45VaRkbC .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv45VaRkbC .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv45VaRkbC .mbr-desc,
.cid-uv45VaRkbC .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv45VaRkbC .mbr-section-title,
.cid-uv45VaRkbC .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv45VbdHXm {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #0041b6;
  overflow: hidden;
}
.cid-uv45VbdHXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45VbdHXm .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-uv45VbdHXm .container {
    padding: 0 22px;
  }
}
.cid-uv45VbdHXm .card {
  justify-content: center;
}
.cid-uv45VbdHXm .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uv45VbdHXm .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uv45VbdHXm .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45VbdHXm .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45VbdHXm .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uv45VbdHXm .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c63b;
}
@media (max-width: 1440px) {
  .cid-uv45VbdHXm .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uv45VbdHXm .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uv45VbdHXm .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uv45VbdHXm .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uv45VbdHXm .mbr-section-title {
  color: #ffe161;
}
.cid-uv45VbdHXm .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv5w1zBOiI {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #0041b6;
  overflow: hidden;
}
.cid-uv5w1zBOiI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv5w1zBOiI .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-uv5w1zBOiI .container {
    padding: 0 22px;
  }
}
.cid-uv5w1zBOiI .card {
  justify-content: center;
}
.cid-uv5w1zBOiI .content-wrapper {
  padding-right: 32px;
  padding-right: 0;
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uv5w1zBOiI .content-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uv5w1zBOiI .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uv5w1zBOiI .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv5w1zBOiI .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv5w1zBOiI .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uv5w1zBOiI .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #e6c63b;
}
@media (max-width: 1440px) {
  .cid-uv5w1zBOiI .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uv5w1zBOiI .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uv5w1zBOiI .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uv5w1zBOiI .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uv5w1zBOiI .mbr-section-title {
  color: #ffe161;
}
.cid-uv5w1zBOiI .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv5Ll8GByE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background: #fafafa;
}
.cid-uv5Ll8GByE .wrapp {
  border-radius: 10px;
}
@media (max-width: 991px) {
  .cid-uv5Ll8GByE .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-uv5Ll8GByE .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-uv5Ll8GByE .wrapper {
  height: 100%;
}
.cid-uv5Ll8GByE img {
  width: 80%;
  margin: 0 auto;
  border-radius: 30px;
}
.cid-uv5Ll8GByE .mbr-text {
  text-align: justify;
  color: #000000;
}
.cid-uv5Ll8GByE .mbr-section-subtitle {
  text-align: justify;
  color: #232323;
}
.cid-uv5Ll8GByE .mbr-section-title {
  color: #0041b6;
}
.cid-uv45Ve8Kdh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uv45Ve8Kdh::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uv45Ve8Kdh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv45Ve8Kdh .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-uv45Ve8Kdh .container {
    padding: 0 22px;
  }
}
.cid-uv45Ve8Kdh .row {
  position: relative;
  z-index: 1;
}
.cid-uv45Ve8Kdh .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uv45Ve8Kdh .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45Ve8Kdh .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv45Ve8Kdh .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45Ve8Kdh .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv45Ve8Kdh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv45Ve8Kdh .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uv45Ve8Kdh .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uv45Ve8Kdh .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap:hover,
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap:hover::before,
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uv45Ve8Kdh .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45Ve8Kdh .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv45Ve8Kdh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv45Ve8Kdh .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv45Ve8Kdh .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uv45Ve8Kdh .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uv45Ve8Kdh .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uv45Ve8Kdh .mbr-section-title {
  color: #00d0f3;
}
.cid-uv45Ve8Kdh .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv45Ve8Kdh .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uv45Ve8Kdh .list {
  color: #ffffff;
}
.cid-uv45Ve8Kdh .mbr-contact {
  color: #ffffff;
}
.cid-uv45Ve8Kdh .mbr-desc {
  color: #ffffff;
}
.cid-uv45Ve8Kdh .a href {
  color: #47b5ed;
}
.cid-uv465KExxq {
  z-index: 1000;
  width: 100%;
}
.cid-uv465KExxq nav.navbar {
  position: fixed;
}
.cid-uv465KExxq .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-uv465KExxq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uv465KExxq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uv465KExxq .dropdown-item:hover,
.cid-uv465KExxq .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-uv465KExxq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uv465KExxq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uv465KExxq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uv465KExxq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uv465KExxq .nav-link {
  position: relative;
}
.cid-uv465KExxq .container {
  display: flex;
  margin: auto;
}
.cid-uv465KExxq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uv465KExxq .dropdown-menu,
.cid-uv465KExxq .navbar.opened {
  background: #fafafa !important;
}
.cid-uv465KExxq .nav-item:focus,
.cid-uv465KExxq .nav-link:focus {
  outline: none;
}
.cid-uv465KExxq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uv465KExxq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uv465KExxq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uv465KExxq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uv465KExxq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uv465KExxq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uv465KExxq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-uv465KExxq .navbar.opened {
  transition: all 0.3s;
}
.cid-uv465KExxq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uv465KExxq .navbar .navbar-logo img {
  width: auto;
}
.cid-uv465KExxq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uv465KExxq .navbar.collapsed {
  justify-content: center;
}
.cid-uv465KExxq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uv465KExxq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uv465KExxq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uv465KExxq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uv465KExxq .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-uv465KExxq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uv465KExxq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uv465KExxq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uv465KExxq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uv465KExxq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uv465KExxq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uv465KExxq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uv465KExxq .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-uv465KExxq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uv465KExxq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uv465KExxq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uv465KExxq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uv465KExxq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uv465KExxq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uv465KExxq .navbar.navbar-short {
  min-height: 60px;
}
.cid-uv465KExxq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uv465KExxq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uv465KExxq .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-uv465KExxq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uv465KExxq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uv465KExxq .dropdown-item.active,
.cid-uv465KExxq .dropdown-item:active {
  background-color: transparent;
}
.cid-uv465KExxq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uv465KExxq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uv465KExxq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uv465KExxq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-uv465KExxq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uv465KExxq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uv465KExxq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uv465KExxq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uv465KExxq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uv465KExxq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uv465KExxq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uv465KExxq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv465KExxq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uv465KExxq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uv465KExxq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv465KExxq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uv465KExxq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uv465KExxq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uv465KExxq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uv465KExxq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uv465KExxq .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-uv465KExxq .navbar {
    height: 70px;
  }
  .cid-uv465KExxq .navbar.opened {
    height: auto;
  }
  .cid-uv465KExxq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uv8QvcDEWT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uv8QvcDEWT H1 {
  color: #232323;
}
.cid-uv8QvcDEWT .mbr-text,
.cid-uv8QvcDEWT .mbr-section-btn {
  color: #000000;
}
.cid-uv8QvcDEWT .relative {
  position: relative;
}
.cid-uv8QvcDEWT .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uv8QvcDEWT .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uv8QvcDEWT .card-img2 .img2 {
  width: 80%;
}
.cid-uv8QvcDEWT .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uv8QvcDEWT .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uv8QvcDEWT .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uv465L4Yf6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #0066ff;
}
.cid-uv465L4Yf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv465L4Yf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv465L4Yf6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-uv465L4Yf6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv465L4Yf6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uv465L4Yf6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uv465L4Yf6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uv465L4Yf6 .mbr-section-title {
  text-align: center;
  color: #ffe885;
}
.cid-uv465L4Yf6 .mbr-text,
.cid-uv465L4Yf6 .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-uv465LqIqF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv465LqIqF .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uv465LqIqF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv465LqIqF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv465LqIqF .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv465LqIqF .content-wrap .card {
  justify-content: space-between;
}
.cid-uv465LqIqF .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv465LqIqF .content-wrapper {
    padding: 0;
  }
}
.cid-uv465LqIqF .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv465LqIqF .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv465LqIqF .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv465LqIqF .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv465LqIqF .mbr-desc,
.cid-uv465LqIqF .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv465LqIqF .mbr-section-title,
.cid-uv465LqIqF .mbr-section-btn {
  color: #0c5ceb;
}
.cid-uv465LK2dh {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uv465LK2dh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv465LK2dh .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-uv465LK2dh .container {
    padding: 0 15px;
  }
}
.cid-uv465LK2dh .content-wrapper {
  position: relative;
}
.cid-uv465LK2dh .content-wrapper .mbr-section-title {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .cid-uv465LK2dh .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uv465LK2dh .content-wrapper .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uv465LK2dh .content-wrapper .content-wrap {
    display: block;
  }
}
.cid-uv465LK2dh .content-wrapper .content-wrap .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uv465LK2dh .content-wrapper .content-wrap .text-wrapper {
    width: 100%;
    margin-bottom: 60px;
  }
}
.cid-uv465LK2dh .content-wrapper .content-wrap .text-wrapper .icon-wrapper {
  margin-bottom: 30px;
}
.cid-uv465LK2dh .content-wrapper .content-wrap .text-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 50px;
  display: inline-flex;
  color: #68707c;
}
.cid-uv465LK2dh .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv465LK2dh .content-wrapper .content-wrap .image-wrapper {
  position: relative;
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uv465LK2dh .content-wrapper .content-wrap .image-wrapper {
    width: 100%;
  }
}
.cid-uv465LK2dh .content-wrapper .content-wrap .image-wrapper .decor-wrap {
  position: absolute;
  top: -5%;
  left: 0;
  height: 25%;
  width: 65%;
  background-color: #0c5ceb;
  transform: skewX(-20deg);
}
.cid-uv465LK2dh .content-wrapper .content-wrap .image-wrapper img {
  position: relative;
  z-index: 1;
  height: 660px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uv465LK2dh .content-wrapper .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-uv465LK2dh .mbr-text {
  color: #f7f5f6;
}
.cid-uv465LK2dh .mbr-section-title {
  color: #ffe161;
}
.cid-uv465M9VPU {
  padding-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uv465M9VPU .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #e6c63b;
}
.cid-uv465M9VPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv465M9VPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uv465M9VPU .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uv465M9VPU .content-wrap .card {
  justify-content: space-between;
}
.cid-uv465M9VPU .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uv465M9VPU .content-wrapper {
    padding: 0;
  }
}
.cid-uv465M9VPU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uv465M9VPU .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uv465M9VPU .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uv465M9VPU .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uv465M9VPU .mbr-desc,
.cid-uv465M9VPU .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uv465M9VPU .mbr-section-title,
.cid-uv465M9VPU .mbr-section-btn {
  color: #0041b6;
}
.cid-uvVfxlXV7L {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uvVfxlXV7L .wrapper {
    padding: 0 28px;
  }
}
.cid-uvVfxlXV7L .mbr-section-head {
  margin-bottom: 210px;
}
@media (min-width: 992px) {
  .cid-uvVfxlXV7L .mbr-section-head {
    margin-bottom: 268px;
  }
}
@media (min-width: 1400px) {
  .cid-uvVfxlXV7L .image-wrapper {
    height: 385px;
  }
}
@media (max-width: 767px) {
  .cid-uvVfxlXV7L .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-uvVfxlXV7L .image-wrapper img {
  max-height: 385px;
  width: 100%;
  object-fit: cover;
}
.cid-uvVfxlXV7L .timeline-element {
  position: relative;
}
.cid-uvVfxlXV7L .timeline-element:after {
  content: "";
  position: absolute;
  background-color: #47b5ed;
  width: 3px;
}
@media (max-width: 767px) {
  .cid-uvVfxlXV7L .timeline-element:after {
    height: calc(100% + 40px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uvVfxlXV7L .timeline-element:after {
    height: calc(100% + 35px);
    top: 28px;
    left: 50%;
  }
}
.cid-uvVfxlXV7L .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uvVfxlXV7L .reverse {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-uvVfxlXV7L .right {
    margin-right: 4rem;
  }
  .cid-uvVfxlXV7L .left {
    margin-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uvVfxlXV7L .image-wrapper,
  .cid-uvVfxlXV7L .timeline-text-wrapper {
    margin-left: 4rem;
  }
}
.cid-uvVfxlXV7L .iconBackground {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #47b5ed;
  background-color: #47b5ed;
  margin-left: -5px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uvVfxlXV7L .iconBackground {
    left: 15px;
    top: 40px;
  }
}
@media (min-width: 768px) {
  .cid-uvVfxlXV7L .iconBackground {
    top: 15px;
    left: 50%;
  }
}
.cid-uvVfxlXV7L .timeline-text-wrapper {
  padding-top: 20px;
}
.cid-uvVfxlXV7L .mbr-timeline-date {
  text-align: left;
  color: #001fff;
}
.cid-uvVfxlXV7L .mbr-timeline-title {
  text-align: left;
}
.cid-uvVfxlXV7L .mbr-text {
  text-align: justify;
}
.cid-uvVfxlXV7L .mbr-timeline-date1 {
  text-align: right;
  color: #001fff;
}
.cid-uvVfxlXV7L .mbr-timeline-title1 {
  text-align: right;
}
.cid-uvVfxlXV7L .mbr-text1 {
  text-align: justify;
}
.cid-uv465Px6aP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uv465Px6aP::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uv465Px6aP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uv465Px6aP .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-uv465Px6aP .container {
    padding: 0 22px;
  }
}
.cid-uv465Px6aP .row {
  position: relative;
  z-index: 1;
}
.cid-uv465Px6aP .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uv465Px6aP .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv465Px6aP .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uv465Px6aP .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv465Px6aP .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uv465Px6aP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uv465Px6aP .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uv465Px6aP .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uv465Px6aP .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uv465Px6aP .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv465Px6aP .nav-wrapper .list .item-wrap:hover,
.cid-uv465Px6aP .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uv465Px6aP .nav-wrapper .list .item-wrap:hover::before,
.cid-uv465Px6aP .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uv465Px6aP .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv465Px6aP .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uv465Px6aP .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uv465Px6aP .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uv465Px6aP .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uv465Px6aP .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uv465Px6aP .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uv465Px6aP .mbr-section-title {
  color: #00d0f3;
}
.cid-uv465Px6aP .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uv465Px6aP .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uv465Px6aP .list {
  color: #ffffff;
}
.cid-uv465Px6aP .mbr-contact {
  color: #ffffff;
}
.cid-uv465Px6aP .mbr-desc {
  color: #ffffff;
}
.cid-uv465Px6aP .a href {
  color: #47b5ed;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uveG21K3DE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uveG21K3DE H1 {
  color: #232323;
}
.cid-uveG21K3DE .mbr-text,
.cid-uveG21K3DE .mbr-section-btn {
  color: #000000;
}
.cid-uveG21K3DE .relative {
  position: relative;
}
.cid-uveG21K3DE .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uveG21K3DE .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uveG21K3DE .card-img2 .img2 {
  width: 80%;
}
.cid-uveG21K3DE .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uveG21K3DE .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uveG21K3DE .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uxC2ZOHEgm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uxC2ZOHEgm .mbr-media {
  position: relative;
}
.cid-uxC2ZOHEgm .mbr-media img {
  width: 100%;
  object-fit: cover;
  max-height: 700px;
}
.cid-uxC2ZOHEgm a:hover {
  background-image: none !important;
}
.cid-uxC2ZOHEgm .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uxC2ZOHEgm .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uxC2ZOHEgm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uxC2ZOHEgm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uxC2ZOHEgm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uxC2ZOHEgm .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uxC2ZOHEgm .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uxC2ZOHEgm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxC2ZOHEgm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxC2ZOHEgm .content-head {
  max-width: 800px;
}
.cid-uxC2ZOHEgm .mbr-section-title {
  color: #000000;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvfjfUL3Aj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uvfjfUL3Aj H1 {
  color: #232323;
}
.cid-uvfjfUL3Aj .mbr-text,
.cid-uvfjfUL3Aj .mbr-section-btn {
  color: #000000;
}
.cid-uvfjfUL3Aj .relative {
  position: relative;
}
.cid-uvfjfUL3Aj .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uvfjfUL3Aj .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uvfjfUL3Aj .card-img2 .img2 {
  width: 80%;
}
.cid-uvfjfUL3Aj .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uvfjfUL3Aj .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uvfjfUL3Aj .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uvfI9cG8Rs {
  padding-top: 1rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uvfI9cG8Rs .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uvfI9cG8Rs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfI9cG8Rs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfI9cG8Rs .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uvfI9cG8Rs .content-wrap .card {
  justify-content: space-between;
}
.cid-uvfI9cG8Rs .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uvfI9cG8Rs .content-wrapper {
    padding: 0;
  }
}
.cid-uvfI9cG8Rs .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uvfI9cG8Rs .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uvfI9cG8Rs .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uvfI9cG8Rs .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uvfI9cG8Rs .mbr-desc,
.cid-uvfI9cG8Rs .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uvfFZi49ZD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #0066ff;
}
.cid-uvfFZi49ZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfFZi49ZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uvfFZi49ZD .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-uvfFZi49ZD .d-flex .team-m {
    margin: 0;
    margin-top: -1rem;
  }
}
.cid-uvfFZi49ZD .wrapper-inner {
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfFZi49ZD .wrapper-inner {
    padding: 1rem 1rem;
  }
}
.cid-uvfFZi49ZD .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uvfFZi49ZD .team {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.cid-uvfFZi49ZD .team-m {
  margin-left: -1rem;
}
.cid-uvfFZi49ZD .row {
  flex-direction: row-reverse;
}
.cid-uvfFZi49ZD .text-wrapper {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfFZi49ZD .text-wrapper {
    padding: 1rem 1rem;
  }
}
.cid-uvfFZi49ZD .image-wrapper {
  padding: 0;
}
.cid-uvfFZi49ZD .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.cid-uvfFZi49ZD .mbr-section-title {
  text-align: justify;
}
.cid-uvfI2fwYRK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #0066ff;
}
.cid-uvfI2fwYRK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfI2fwYRK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uvfI2fwYRK .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-uvfI2fwYRK .d-flex .team-m {
    margin: 0;
    margin-top: -1rem;
  }
}
.cid-uvfI2fwYRK .wrapper-inner {
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfI2fwYRK .wrapper-inner {
    padding: 3rem 1rem;
  }
}
.cid-uvfI2fwYRK .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uvfI2fwYRK .team {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.cid-uvfI2fwYRK .team-m {
  margin-left: -1rem;
}
.cid-uvfI2fwYRK .text-wrapper {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfI2fwYRK .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvfI2fwYRK .image-wrapper {
  padding: 0;
}
.cid-uvfI2fwYRK .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.cid-uvfI2fwYRK .mbr-section-title {
  text-align: justify;
}
.cid-uvfIpuD1Rp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #0066ff;
}
.cid-uvfIpuD1Rp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfIpuD1Rp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uvfIpuD1Rp .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-uvfIpuD1Rp .d-flex .team-m {
    margin: 0;
    margin-top: -1rem;
  }
}
.cid-uvfIpuD1Rp .wrapper-inner {
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfIpuD1Rp .wrapper-inner {
    padding: 3rem 1rem;
  }
}
.cid-uvfIpuD1Rp .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uvfIpuD1Rp .team {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.cid-uvfIpuD1Rp .team-m {
  margin-left: -1rem;
}
.cid-uvfIpuD1Rp .row {
  flex-direction: row-reverse;
}
.cid-uvfIpuD1Rp .text-wrapper {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfIpuD1Rp .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvfIpuD1Rp .image-wrapper {
  padding: 0;
}
.cid-uvfIpuD1Rp .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.cid-uvfIpuD1Rp .mbr-section-title {
  text-align: justify;
}
.cid-uvfIqfZHfu {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #0066ff;
}
.cid-uvfIqfZHfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfIqfZHfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-uvfIqfZHfu .d-flex {
    flex-direction: column;
    align-items: center;
  }
  .cid-uvfIqfZHfu .d-flex .team-m {
    margin: 0;
    margin-top: -1rem;
  }
}
.cid-uvfIqfZHfu .wrapper-inner {
  background: #f4f4f4;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfIqfZHfu .wrapper-inner {
    padding: 3rem 1rem;
  }
}
.cid-uvfIqfZHfu .wrapper {
  background: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.cid-uvfIqfZHfu .team {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.cid-uvfIqfZHfu .team-m {
  margin-left: -1rem;
}
.cid-uvfIqfZHfu .text-wrapper {
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uvfIqfZHfu .text-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uvfIqfZHfu .image-wrapper {
  padding: 0;
}
.cid-uvfIqfZHfu .image-wrapper img {
  height: 100%;
  border-radius: 2rem;
  object-fit: cover;
}
.cid-uvfIqfZHfu .mbr-section-title {
  text-align: justify;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvfjm4uWlq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uvfjm4uWlq H1 {
  color: #232323;
}
.cid-uvfjm4uWlq .mbr-text,
.cid-uvfjm4uWlq .mbr-section-btn {
  color: #000000;
}
.cid-uvfjm4uWlq .relative {
  position: relative;
}
.cid-uvfjm4uWlq .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uvfjm4uWlq .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uvfjm4uWlq .card-img2 .img2 {
  width: 80%;
}
.cid-uvfjm4uWlq .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uvfjm4uWlq .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uvfjm4uWlq .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uxCljH1FuQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-uxCljH1FuQ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uxCljH1FuQ .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
@media (max-width: 991px) {
  .cid-uxCljH1FuQ .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uxCljH1FuQ .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uxCljH1FuQ .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #0c5ceb;
}
@media (max-width: 767px) {
  .cid-uxCljH1FuQ .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-uxCljH1FuQ .mbr-section-subtitle {
  color: #696969;
}
.cid-uxCljH1FuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCljH1FuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxClg2Po9e {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #8caff0;
}
.cid-uxClg2Po9e .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #0196e3;
  margin-bottom: 1.5rem;
}
.cid-uxClg2Po9e .col-lg-4,
.cid-uxClg2Po9e .col-12 {
  padding: 0 2rem;
}
.cid-uxClg2Po9e .row {
  margin: 0 -2rem;
  justify-content: center;
}
.cid-uxClg2Po9e .card-wrapper {
  padding: 3rem 2rem;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  border-radius: 3rem;
}
.cid-uxClg2Po9e .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 767px) {
  .cid-uxClg2Po9e .card-wrapper {
    padding: 4rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-uxClg2Po9e .card-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-uxClg2Po9e .card-title,
.cid-uxClg2Po9e .iconfont-wrapper {
  color: #36187d;
  text-align: center;
}
.cid-uxClg2Po9e .card-text {
  color: #6c758f;
  text-align: center;
}
.cid-uxClg2Po9e .mbr-section-subtitle {
  color: #6c758f;
}
.cid-uxClg2Po9e .mbr-section-title {
  color: #36187d;
}
.cid-uxClg2Po9e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxClg2Po9e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxC4X8d4nF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uxC4X8d4nF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxC4X8d4nF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uxC4X8d4nF .google-map {
  height: 350px;
  position: relative;
}
.cid-uxC4X8d4nF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uxC4X8d4nF .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uxC4X8d4nF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uxC4X8d4nF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uxCd35EesF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fdfcfa;
}
.cid-uxCd35EesF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uxCd35EesF .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-uxCd35EesF .container {
    padding: 0;
  }
}
.cid-uxCd35EesF .row {
  justify-content: center;
}
.cid-uxCd35EesF .title-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uxCd35EesF .title-wrapper {
    padding: 0 16px;
  }
}
.cid-uxCd35EesF .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uxCd35EesF .google-map iframe {
  height: 550px;
}
@media (max-width: 992px) {
  .cid-uxCd35EesF .google-map iframe {
    height: 300px;
  }
}
.cid-uxCd35EesF .mbr-section-title {
  color: #263652;
  text-align: center;
}
.cid-uzm4QVtXLH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/background5.webp");
}
.cid-uzm4QVtXLH .card-box {
  z-index: 10;
  position: relative;
}
.cid-uzm4QVtXLH .link-wrap {
  width: 100%;
}
.cid-uzm4QVtXLH .link {
  display: inline-block;
}
.cid-uzm4QVtXLH .link a {
  position: relative;
  width: fit-content;
  display: inline-block;
  font-weight: 600;
}
.cid-uzm4QVtXLH .link a:hover {
  text-decoration: underline;
}
.cid-uzm4QVtXLH .card {
  margin: auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-uzm4QVtXLH .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #0095ff;
  margin-bottom: 2rem;
}
.cid-uzm4QVtXLH .card-wrapper {
  background-position: center;
  padding: 5rem 5rem;
  background: #ffe161;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-uzm4QVtXLH .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uzm4QVtXLH .link,
.cid-uzm4QVtXLH .link-wrap {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uzm4QVtXLH .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uzm4QVtXLH .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-uzm4QVtXLH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzm4QVtXLH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
.cid-uzjwkjpmlG.popup-builder {
  background-color: #ffffff;
}
.cid-uzjwkjpmlG.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uzjwkjpmlG.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uzjwkjpmlG .modal-content,
.cid-uzjwkjpmlG .modal-dialog {
  height: auto;
}
.cid-uzjwkjpmlG .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uzjwkjpmlG .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uzjwkjpmlG .form-wrapper .mbr-form .form-group,
  .cid-uzjwkjpmlG .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uzjwkjpmlG .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uzjwkjpmlG .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uzjwkjpmlG .mbr-text {
  text-align: center;
}
.cid-uzjwkjpmlG .pt-0 {
  padding-top: 0 !important;
}
.cid-uzjwkjpmlG .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uzjwkjpmlG .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uzjwkjpmlG .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uzjwkjpmlG .modal-open {
  overflow: hidden;
}
.cid-uzjwkjpmlG .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uzjwkjpmlG .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uzjwkjpmlG .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uzjwkjpmlG .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uzjwkjpmlG .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uzjwkjpmlG .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uzjwkjpmlG .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uzjwkjpmlG .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uzjwkjpmlG .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uzjwkjpmlG .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uzjwkjpmlG .modal-backdrop.fade {
  opacity: 0;
}
.cid-uzjwkjpmlG .modal-backdrop.show {
  opacity: .5;
}
.cid-uzjwkjpmlG .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uzjwkjpmlG .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjwkjpmlG .modal-header {
    padding: 1rem;
  }
}
.cid-uzjwkjpmlG .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uzjwkjpmlG .modal-header .close svg {
  fill: #353535;
}
.cid-uzjwkjpmlG .modal-header .close:hover {
  opacity: 1;
}
.cid-uzjwkjpmlG .modal-header .close:focus {
  outline: none;
}
.cid-uzjwkjpmlG .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uzjwkjpmlG .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uzjwkjpmlG .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjwkjpmlG .modal-body {
    padding: 1rem;
  }
}
.cid-uzjwkjpmlG .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uzjwkjpmlG .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzjwkjpmlG .modal-footer {
    padding: 1rem;
  }
}
.cid-uzjwkjpmlG .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uzjwkjpmlG .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uzjwkjpmlG .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uzjwkjpmlG .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uzjwkjpmlG .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uzjwkjpmlG .modal-lg,
  .cid-uzjwkjpmlG .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uzjwkjpmlG .modal-xl {
    max-width: 1140px;
  }
}
.cid-uzjwkjpmlG .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uzjwkjpmlG .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uzjwkjpmlG .form-group {
  margin-bottom: 1rem;
}
.cid-uzjwkjpmlG .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uzjwkjpmlG .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uzjwkjpmlG .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uzjwkjpmlG .mbr-section-btn {
  margin: 0;
}
.cid-uzjwkjpmlG .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFCw1qGFAI {
  z-index: 1000;
  width: 100%;
}
.cid-sFCw1qGFAI nav.navbar {
  position: fixed;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFCw1qGFAI .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFCw1qGFAI .dropdown-item:hover,
.cid-sFCw1qGFAI .dropdown-item:focus {
  background: #0c5ceb !important;
  color: white !important;
}
.cid-sFCw1qGFAI .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFCw1qGFAI .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFCw1qGFAI .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFCw1qGFAI .nav-link {
  position: relative;
}
.cid-sFCw1qGFAI .container {
  display: flex;
  margin: auto;
}
.cid-sFCw1qGFAI .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown-menu,
.cid-sFCw1qGFAI .navbar.opened {
  background: #fafafa !important;
}
.cid-sFCw1qGFAI .nav-item:focus,
.cid-sFCw1qGFAI .nav-link:focus {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFCw1qGFAI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFCw1qGFAI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFCw1qGFAI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFCw1qGFAI .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  position: absolute;
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.opened {
  transition: all 0.3s;
}
.cid-sFCw1qGFAI .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFCw1qGFAI .navbar .navbar-logo img {
  width: auto;
}
.cid-sFCw1qGFAI .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFCw1qGFAI .navbar.collapsed {
  justify-content: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFCw1qGFAI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFCw1qGFAI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFCw1qGFAI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFCw1qGFAI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFCw1qGFAI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFCw1qGFAI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFCw1qGFAI .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFCw1qGFAI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFCw1qGFAI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFCw1qGFAI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFCw1qGFAI .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFCw1qGFAI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFCw1qGFAI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFCw1qGFAI .dropdown-item.active,
.cid-sFCw1qGFAI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFCw1qGFAI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFCw1qGFAI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fafafa;
}
.cid-sFCw1qGFAI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFCw1qGFAI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFCw1qGFAI ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFCw1qGFAI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFCw1qGFAI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFCw1qGFAI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFCw1qGFAI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFCw1qGFAI .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFCw1qGFAI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFCw1qGFAI .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-sFCw1qGFAI .navbar {
    height: 70px;
  }
  .cid-sFCw1qGFAI .navbar.opened {
    height: auto;
  }
  .cid-sFCw1qGFAI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uvfjoW6pCV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #0066ff;
  overflow: hidden;
}
.cid-uvfjoW6pCV H1 {
  color: #232323;
}
.cid-uvfjoW6pCV .mbr-text,
.cid-uvfjoW6pCV .mbr-section-btn {
  color: #000000;
}
.cid-uvfjoW6pCV .relative {
  position: relative;
}
.cid-uvfjoW6pCV .card-img {
  width: 100%;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uvfjoW6pCV .card-img2 {
  display: inline-block;
  width: 50%;
  float: left;
}
.cid-uvfjoW6pCV .card-img2 .img2 {
  width: 80%;
}
.cid-uvfjoW6pCV .card-img1 {
  display: inline-block;
  width: 50%;
  float: right;
}
.cid-uvfjoW6pCV .card-img1 .img1 {
  width: 180%;
  transform: translateX(-45%);
}
.cid-uvfjoW6pCV .img2 {
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
  margin-top: 4rem;
  object-fit: cover;
  position: relative;
  border-radius: 10px;
  animation: line 3s ease-in-out infinite;
}
.cid-uvfUaPrum1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uvfUaPrum1 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uvfUaPrum1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfUaPrum1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfUaPrum1 .content-wrap {
  align-items: center;
  justify-content: space-between;
}
.cid-uvfUaPrum1 .content-wrap .card {
  justify-content: space-between;
}
.cid-uvfUaPrum1 .content-wrapper {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uvfUaPrum1 .content-wrapper {
    padding: 0;
  }
}
.cid-uvfUaPrum1 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uvfUaPrum1 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px;
  -webkit-text-stroke-color: #150764;
  box-shadow: 4px 4px 0 0 #150764;
  border: 2px solid #150764;
  background-color: #4188ff;
  -webkit-text-stroke-width: .15rem;
}
@media (max-width: 992px) {
  .cid-uvfUaPrum1 .content-wrapper .desc-wrapper .mbr-desc {
    -webkit-text-stroke-width: .12rem;
  }
}
.cid-uvfUaPrum1 .mbr-section-title {
  color: #150764;
  text-align: center;
}
.cid-uvfUaPrum1 .mbr-desc,
.cid-uvfUaPrum1 .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uvfWiS3BIq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeef7;
}
.cid-uvfWiS3BIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfWiS3BIq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfWiS3BIq .panel-group .card {
  position: relative;
  padding: 60px 0;
  border: none;
  margin-top: 0;
  border-top: 2px solid #0066ff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card {
    padding: 32px 0;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .desc-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .desc-wrapper {
    width: 100%;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
    margin-bottom: 22px;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 15%;
  padding-left: 32px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid #0066ff;
  border-radius: 100%;
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffe161;
  background-color: #0041b6;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uvfWiS3BIq .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .icon-wrap .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uvfWiS3BIq .panel-group .card .panel-collapse .panel-body {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .panel-collapse .panel-body {
    margin-top: 32px;
  }
}
.cid-uvfWiS3BIq .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
  padding-right: 15%;
}
@media (max-width: 992px) {
  .cid-uvfWiS3BIq .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uvfWiS3BIq .panel-title-edit {
  color: #191c25;
}
.cid-uvfWiS3BIq .panel-desc {
  color: #191c25;
}
.cid-uvfWiS3BIq .panel-text {
  color: #191c25;
}
.cid-uvfWHPweBL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeef7;
}
.cid-uvfWHPweBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfWHPweBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfWHPweBL .panel-group .card {
  position: relative;
  padding: 60px 0;
  border: none;
  margin-top: 0;
  border-top: 2px solid #0066ff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card {
    padding: 32px 0;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .desc-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title .desc-wrapper {
    width: 100%;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
    margin-bottom: 22px;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 15%;
  padding-left: 32px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid #0066ff;
  border-radius: 100%;
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffe161;
  background-color: #0041b6;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uvfWHPweBL .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .icon-wrap .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uvfWHPweBL .panel-group .card .panel-collapse .panel-body {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .panel-collapse .panel-body {
    margin-top: 32px;
  }
}
.cid-uvfWHPweBL .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
  padding-right: 15%;
}
@media (max-width: 992px) {
  .cid-uvfWHPweBL .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uvfWHPweBL .panel-title-edit {
  color: #191c25;
}
.cid-uvfWHPweBL .panel-desc {
  color: #191c25;
}
.cid-uvfWHPweBL .panel-text {
  color: #191c25;
}
.cid-uvfXbDLVP8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeef7;
}
.cid-uvfXbDLVP8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfXbDLVP8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfXbDLVP8 .panel-group .card {
  position: relative;
  padding: 60px 0;
  border: none;
  margin-top: 0;
  border-top: 2px solid #0066ff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card {
    padding: 32px 0;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .desc-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .desc-wrapper {
    width: 100%;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
    margin-bottom: 22px;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 15%;
  padding-left: 32px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid #0066ff;
  border-radius: 100%;
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffe161;
  background-color: #0041b6;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uvfXbDLVP8 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .icon-wrap .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uvfXbDLVP8 .panel-group .card .panel-collapse .panel-body {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .panel-collapse .panel-body {
    margin-top: 32px;
  }
}
.cid-uvfXbDLVP8 .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
  padding-right: 15%;
}
@media (max-width: 992px) {
  .cid-uvfXbDLVP8 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uvfXbDLVP8 .panel-title-edit {
  color: #191c25;
}
.cid-uvfXbDLVP8 .panel-desc {
  color: #191c25;
}
.cid-uvfXbDLVP8 .panel-text {
  color: #191c25;
}
.cid-uvfXcuwUZL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeef7;
}
.cid-uvfXcuwUZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfXcuwUZL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfXcuwUZL .panel-group .card {
  position: relative;
  padding: 60px 0;
  border: none;
  margin-top: 0;
  border-top: 2px solid #0066ff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card {
    padding: 32px 0;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .desc-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .desc-wrapper {
    width: 100%;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
    margin-bottom: 22px;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 15%;
  padding-left: 32px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid #0066ff;
  border-radius: 100%;
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffe161;
  background-color: #0041b6;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uvfXcuwUZL .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .icon-wrap .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uvfXcuwUZL .panel-group .card .panel-collapse .panel-body {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .panel-collapse .panel-body {
    margin-top: 32px;
  }
}
.cid-uvfXcuwUZL .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
  padding-right: 15%;
}
@media (max-width: 992px) {
  .cid-uvfXcuwUZL .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uvfXcuwUZL .panel-title-edit {
  color: #191c25;
}
.cid-uvfXcuwUZL .panel-desc {
  color: #191c25;
}
.cid-uvfXcuwUZL .panel-text {
  color: #191c25;
}
.cid-uvfX9unDFv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eeeef7;
}
.cid-uvfX9unDFv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uvfX9unDFv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uvfX9unDFv .panel-group .card {
  position: relative;
  padding: 60px 0;
  border: none;
  margin-top: 0;
  border-top: 2px solid #0066ff;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card {
    padding: 32px 0;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title {
    display: block;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 50%;
  margin-bottom: 0;
  padding-right: 60px;
  width: 100%;
}
@media (max-width: 1440px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 100%;
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .desc-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title .desc-wrapper {
    width: 100%;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title .desc-wrapper .panel-desc {
    margin-bottom: 22px;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 15%;
  padding-left: 32px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .card-header .panel-title .icon-wrapper {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid #0066ff;
  border-radius: 100%;
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #ffe161;
  background-color: #0041b6;
  font-size: 16px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}
.cid-uvfX9unDFv .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .icon-wrap .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uvfX9unDFv .panel-group .card .panel-collapse .panel-body {
  display: flex;
  justify-content: flex-end;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .panel-collapse .panel-body {
    margin-top: 32px;
  }
}
.cid-uvfX9unDFv .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
  padding-right: 15%;
}
@media (max-width: 992px) {
  .cid-uvfX9unDFv .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uvfX9unDFv .panel-title-edit {
  color: #191c25;
}
.cid-uvfX9unDFv .panel-desc {
  color: #191c25;
}
.cid-uvfX9unDFv .panel-text {
  color: #191c25;
}
.cid-uuXJzov99G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-image: url("../../../assets/images/lock-unlocks-logo-high-rez-black-1545x515.webp");
}
.cid-uuXJzov99G::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  z-index: 1;
}
.cid-uuXJzov99G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uuXJzov99G .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-uuXJzov99G .container {
    padding: 0 22px;
  }
}
.cid-uuXJzov99G .row {
  position: relative;
  z-index: 1;
}
.cid-uuXJzov99G .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uuXJzov99G .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uuXJzov99G .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uuXJzov99G .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uuXJzov99G .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before,
.cid-uuXJzov99G .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uuXJzov99G .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uuXJzov99G .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uuXJzov99G .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uuXJzov99G .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uuXJzov99G .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #ffffff;
  text-align: center;
}
.cid-uuXJzov99G .mbr-section-title {
  color: #00d0f3;
}
.cid-uuXJzov99G .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-uuXJzov99G .mbr-section-subtitle {
  color: #ffe161;
}
.cid-uuXJzov99G .list {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-contact {
  color: #ffffff;
}
.cid-uuXJzov99G .mbr-desc {
  color: #ffffff;
}
.cid-uuXJzov99G .a href {
  color: #47b5ed;
}
