.btn {
  border-width: 2px;
}
.btn {
  border-radius: 50px;
}
body {
  font-family: 'Raleway', sans-serif;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Raleway', 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.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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.875rem 1.3125rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #ff4433 !important;
}
.bg-success {
  background-color: #000000 !important;
}
.bg-info {
  background-color: #fab901 !important;
}
.bg-warning {
  background-color: #0746c0 !important;
}
.bg-danger {
  background-color: #5e5e5e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff4433 !important;
  border-color: #ff4433 !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: #db1200 !important;
  border-color: #db1200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary .btn-success:hover {
  background-color: #ff4433;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #db1200 !important;
  border-color: #db1200 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
  color: #666666 !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: #bababa !important;
  border-color: #bababa !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary .btn-success:hover {
  background-color: #ff4433;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #666666 !important;
  background-color: #bababa !important;
  border-color: #bababa !important;
}
.btn-info,
.btn-info:active {
  background-color: #fab901 !important;
  border-color: #fab901 !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: #a47901 !important;
  border-color: #a47901 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info .btn-success:hover {
  background-color: #ff4433;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a47901 !important;
  border-color: #a47901 !important;
}
.btn-success,
.btn-success:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.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-success .btn-success:hover {
  background-color: #ff4433;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0746c0 !important;
  border-color: #0746c0 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #04286c !important;
  border-color: #04286c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning .btn-success:hover {
  background-color: #ff4433;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #04286c !important;
  border-color: #04286c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #5e5e5e !important;
  border-color: #5e5e5e !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: #333333 !important;
  border-color: #333333 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger .btn-success:hover {
  background-color: #ff4433;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !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 .btn-success:hover {
  background-color: #ff4433;
}
.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 .btn-success:hover {
  background-color: #ff4433;
}
.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: #ff4433;
  color: #ff4433;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #db1200 !important;
  background-color: transparent!important;
  border-color: #db1200 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4433 !important;
  border-color: #ff4433 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #e5e5e5;
  color: #e5e5e5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bababa !important;
  background-color: transparent!important;
  border-color: #bababa !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #666666 !important;
  background-color: #e5e5e5 !important;
  border-color: #e5e5e5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #fab901;
  color: #fab901;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a47901 !important;
  background-color: transparent!important;
  border-color: #a47901 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fab901 !important;
  border-color: #fab901 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #0746c0;
  color: #0746c0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #04286c !important;
  background-color: transparent!important;
  border-color: #04286c !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0746c0 !important;
  border-color: #0746c0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #5e5e5e;
  color: #5e5e5e;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #333333 !important;
  background-color: transparent!important;
  border-color: #333333 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #5e5e5e !important;
  border-color: #5e5e5e !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: #ff4433 !important;
}
.text-secondary {
  color: #e5e5e5 !important;
}
.text-success {
  color: #000000 !important;
}
.text-info {
  color: #fab901 !important;
}
.text-warning {
  color: #0746c0 !important;
}
.text-danger {
  color: #5e5e5e !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cc1100 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #b2b2b2 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #4d4d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #946e01 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #03225e !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #2b2b2b !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: #ff4433;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fab901;
}
.alert-warning {
  background-color: #0746c0;
}
.alert-danger {
  background-color: #5e5e5e;
}
.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: #ff4433;
  border-color: #ff4433;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff4433;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff1c8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #4e88f9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #9e9e9e;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #ff4433 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ff4433;
}
/* 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: #ff4433;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff4433;
}
.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: #ff4433;
  border-bottom-color: #ff4433;
}
.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: #ff4433 !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: #e5e5e5 !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='%23ff4433' %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;
  font-weight: 500;
}
.btn {
  margin: 0;
}
body {
  font-family: Jost;
}
p {
  margin-bottom: 0;
}
.btn.btn-success:hover {
  background-color: #ff4433 !important;
  transition: all 0.2s ease-in-out;
  border-color: #ff4433 !important;
}
*:focus-visible {
  outline: #004de6 solid 3px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sBkqT8vCC2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBkqT8vCC2 nav.navbar {
  position: fixed;
}
.cid-sBkqT8vCC2 .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-sBkqT8vCC2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover,
.cid-sBkqT8vCC2 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-sBkqT8vCC2 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBkqT8vCC2 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sBkqT8vCC2 .container {
  display: flex;
  margin: auto;
}
.cid-sBkqT8vCC2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown-menu,
.cid-sBkqT8vCC2 .navbar.opened {
  background: #051455 !important;
}
.cid-sBkqT8vCC2 .nav-item:focus,
.cid-sBkqT8vCC2 .nav-link:focus {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBkqT8vCC2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-sBkqT8vCC2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBkqT8vCC2 .navbar .navbar-logo img {
  width: auto;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar.collapsed {
  justify-content: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBkqT8vCC2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBkqT8vCC2 .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-sBkqT8vCC2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBkqT8vCC2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBkqT8vCC2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBkqT8vCC2 .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-sBkqT8vCC2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBkqT8vCC2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBkqT8vCC2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBkqT8vCC2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBkqT8vCC2 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown-item.active,
.cid-sBkqT8vCC2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBkqT8vCC2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBkqT8vCC2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBkqT8vCC2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBkqT8vCC2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBkqT8vCC2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBkqT8vCC2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBkqT8vCC2 .navbar {
    height: 70px;
  }
  .cid-sBkqT8vCC2 .navbar.opened {
    height: auto;
  }
  .cid-sBkqT8vCC2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBkqT8vCC2 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sBkqT8vCC2 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sBkqT8vCC2 a {
  display: inline;
  font-weight: bold;
}
.cid-sBkqT8vCC2 img {
  display: inline;
  padding-right: 10px;
}
.cid-sBkqT8vCC2 .dropdown-toggle:after {
  display: none;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sBkqT8vCC2 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sBkqT8vCC2 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-sBkqT8vCC2 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-sBkqT8vCC2 .btn {
  display: inline !important;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-sBkqT8vCC2 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sBkqT8vCC2 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sBkqT8vCC2 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sBkqT8vCC2 .btn {
  border-radius: 50px;
}
.cid-tEx6WNhASu {
  overflow: hidden;
  background-image: url("../../../assets/images/bcg01-2000x1402.png");
}
.cid-tEx6WNhASu .position {
  z-index: 10;
}
.cid-tEx6WNhASu .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #efefef;
}
.cid-tEx6WNhASu .mbr-section-title {
  margin-bottom: 0;
}
.cid-tEx6WNhASu .mbr-text {
  margin-top: 30px;
}
.cid-tEx6WNhASu .mbr-section-btn {
  margin-top: 30px;
}
.cid-tEx6WNhASu .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-tEx6WNhASu .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-tEx6WNhASu .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-tEx6WNhASu .info__block-item {
    margin-right: 10px;
  }
}
.cid-tEx6WNhASu .title__item,
.cid-tEx6WNhASu .text__item {
  margin-bottom: 0;
}
.cid-tEx6WNhASu .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-tEx6WNhASu .animated-element {
  color: #ffbf4f;
}
.cid-tEx6WNhASu .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-tEx6WNhASu .mbr-section-title,
.cid-tEx6WNhASu .typed-text {
  color: #ffffff;
}
.cid-tEx6WNhASu .title__item {
  color: #073b4c;
}
.cid-t5g7ACmFyV {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/83cd5e9b-1ed0-4d4b-af85-69f31a90faad-1024x1024.jpg");
}
.cid-t5g7ACmFyV .mbr-section-title {
  color: #ffffff;
}
.cid-sX3GBK9AkF {
  background-image: url("../../../assets/images/tlo-text-640x1296.jpg");
}
.cid-sX3GBK9AkF .row {
  align-items: center;
}
.cid-sX3GBK9AkF .main_title {
  margin-bottom: 2.5rem;
}
.cid-sX3GBK9AkF .card_subtitle {
  margin-bottom: .75rem;
}
.cid-sX3GBK9AkF .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-sX3GBK9AkF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sX3GBK9AkF .card-wrapper {
    padding-right: 4rem;
    padding-left: 5rem;
  }
}
@media (max-width: 991px) {
  .cid-sX3GBK9AkF .row {
    flex-direction: column-reverse;
  }
  .cid-sX3GBK9AkF .card-wrapper {
    padding: 0;
  }
  .cid-sX3GBK9AkF .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-sX3GBK9AkF .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-sX3GBK9AkF .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-sX3GBK9AkF .image-wrapper {
    margin-bottom: 3rem;
  }
}
.cid-sX3GBK9AkF .card-title {
  color: #051455;
}
.cid-sX3GBK9AkF .mbr-text,
.cid-sX3GBK9AkF .linkBtn {
  color: #000000;
}
.cid-uD4Cql14wW {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/tlo-zap2-1279x720.jpg");
}
.cid-uD4Cql14wW .mbr-section-title {
  color: #ffffff;
}
.cid-uD4BEGMB03 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uD4BEGMB03 .container {
  max-width: 1000px;
}
.cid-uD4BEGMB03 .mbr-text {
  color: #071f55;
  text-align: left;
}
.cid-uD4Apg3Flc {
  background-color: #ffffff;
}
.cid-uD4Apg3Flc .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  display: flex;
  justify-content: center;
}
.cid-uD4Apg3Flc h3 {
  font-size: 23px;
  font-weight: 400;
}
.cid-uD4Apg3Flc .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uD4Apg3Flc .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-uD4Apg3Flc .form-group {
  padding-right: 0;
}
.cid-uD4Apg3Flc .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-uD4Apg3Flc .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-uD4Apg3Flc .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uD4Apg3Flc .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uD4Apg3Flc .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uD4Apg3Flc .map-placeholder {
  display: none;
}
.cid-uD4Apg3Flc .btn-primary {
  border: 1px solid #ff4433 !important;
}
.cid-uD4Apg3Flc .btn-primary:hover {
  border: 1px solid #ff4433 !important;
}
.cid-uD4Apg3Flc .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uD4Apg3Flc .mbr-text {
  color: #132c70;
  margin-bottom: 0.5rem;
}
.cid-uD4Apg3Flc h5 {
  margin-bottom: 0;
}
.cid-uD4Apg3Flc .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uD4Apg3Flc .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uD4Apg3Flc .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-uD4Apg3Flc .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uD4Apg3Flc .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uD4Apg3Flc .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uD4Apg3Flc .social-list a:hover {
  opacity: 0.4;
}
.cid-uD4Apg3Flc .media-container-row > div {
  padding: 0px;
}
.cid-uD4Apg3Flc .text2 {
  color: #132c70;
  text-align: left;
}
.cid-uD4Apg3Flc .group-title {
  text-align: left;
  color: #132c70;
  padding-bottom: 0.2rem;
  margin-top: 2.8rem;
  margin-bottom: 0;
}
.cid-uD4Apg3Flc .links {
  color: #132c70;
  line-height: 0.1;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uD4Apg3Flc .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uD4Apg3Flc h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-uD4Apg3Flc .form-group {
    max-width: 180px;
  }
}
.cid-uD4Apg3Flc .links span {
  color: #132c70;
}
.cid-uD4Apg3Flc .logo-title,
.cid-uD4Apg3Flc .logo-sub-title {
  text-align: center;
}
.cid-uD4Apg3Flc .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uD4Apg3Flc .jewelry_img {
  width: 100%;
}
.cid-uD4Apg3Flc .day_week {
  display: flex;
  flex-direction: column;
}
.cid-uD4Apg3Flc .day_p {
  width: 15rem;
  display: flex;
  justify-content: space-between;
  margin: 0;
  line-height: 0.8;
}
.cid-uD4Apg3Flc .container-fluid {
  max-width: 1300px;
}
.cid-uD4Apg3Flc .btn-line {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-uD4Apg3Flc {
    padding-top: 0px;
    padding-bottom: 4px;
  }
  .cid-uD4Apg3Flc .card {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .cid-uD4Apg3Flc .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uD4Apg3Flc {
    padding-top: 0px;
    padding-bottom: 30px;
  }
  .cid-uD4Apg3Flc .maps {
    padding-left: 0;
  }
  .cid-uD4Apg3Flc .card {
    padding-bottom: 3rem;
    padding-right: 0;
  }
  .cid-uD4Apg3Flc .container-fluid {
    padding: 0 2rem;
  }
  .cid-uD4Apg3Flc .map-day {
    margin-left: 2rem;
  }
}
.cid-uD4Apg3Flc .mbr-section-subtitle {
  margin: 1rem 0;
  padding-right: 3rem;
}
.cid-uD4Apg3Flc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uD4Apg3Flc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uD4CnQMNyg {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/tlo-zap2-1279x720.jpg");
}
.cid-uD4CnQMNyg .mbr-section-title {
  color: #ffffff;
}
.cid-uCRz4TsPyA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tlo-text-640x1296.jpg");
}
.cid-uCRz4TsPyA .right {
  display: flex;
  flex-direction: column;
}
.cid-uCRz4TsPyA .card-heading {
  padding-bottom: 15px;
  color: #051455;
  font-weight: 600;
}
.cid-uCRz4TsPyA .row {
  justify-content: center;
}
.cid-uCRz4TsPyA ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.cid-sZ25MpXxwW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/tlo-zap2-1279x720.jpg");
}
.cid-sZ25MpXxwW .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-u4WnqZ5mo4 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4WnqZ5mo4 .mbr-iconfont {
  font-size: 150px;
  color: #1430a0;
}
.cid-u4WnqZ5mo4 .iconfont-wrapper {
  text-align: center;
  margin: 0 -15px 30px;
}
.cid-u4WnqZ5mo4 .lin {
  padding-bottom: 18px;
  font-weight: 500;
  margin: 0 -15px 0px;
}
.cid-u4WnqZ5mo4 .mbr-section-subtitle {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 -15px 0px;
}
.cid-u4WnqZ5mo4 .btn-align {
  margin: 48px -15px 0px;
}
.cid-u4WnqZ5mo4 .mbr-section-subtitle,
.cid-u4WnqZ5mo4 .btn-align {
  text-align: center;
}
@media (max-width: 690px) {
  .cid-u4WnqZ5mo4 .text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-u4WnqZ5mo4 .btn {
  border-radius: 50px;
}
.cid-u4WnqZ5mo4 .lin,
.cid-u4WnqZ5mo4 .iconfont-wrapper {
  color: #051455;
}
.cid-u4WnEvkDu6 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u4WnEvkDu6 .right {
  display: flex;
  flex-direction: column;
}
.cid-u4WnEvkDu6 .card-heading {
  padding-bottom: 15px;
  color: #000000;
  font-weight: 600;
}
.cid-u4WnEvkDu6 .row {
  justify-content: center;
}
.cid-u4WnEvkDu6 ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.cid-t5g7pJzIjI {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/tlo-zap2-1279x720.jpg");
}
.cid-t5g7pJzIjI .mbr-section-title {
  color: #ffffff;
}
.cid-uDDi1GKf3G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #051455;
}
.cid-uDDi1GKf3G .container {
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 169px 92px;
  border-radius: 50px;
  background-color: #051455;
  max-width: 80%;
}
@media (max-width: 767px) {
  .cid-uDDi1GKf3G .container {
    padding: 140px 15px;
  }
}
.cid-uDDi1GKf3G section {
  position: relative;
}
.cid-uDDi1GKf3G .mbr-section-title {
  z-index: 70;
  color: #ff4433;
}
.cid-uDDi1GKf3G .mbr-text,
.cid-uDDi1GKf3G .mbr-section-btn {
  color: #ffffff;
  z-index: 70;
}
.cid-uDDi1GKf3G img {
  max-width: 100%;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
.cid-uDDi1GKf3G .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uDDi1GKf3G .image-1 {
  position: absolute;
  left: -95px;
  bottom: -3px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
.cid-uDDi1GKf3G .image-2 {
  position: absolute;
  left: -23%;
  top: -75%;
  right: auto;
  bottom: auto;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-uDDi1GKf3G .image-3 {
  position: absolute;
  left: 209px;
  bottom: -131px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-uDDi1GKf3G .image-4 {
  position: absolute;
  right: -61px;
  bottom: -52px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-uDDi1GKf3G .image-5 {
  position: absolute;
  left: 77px;
  top: 175px;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-uDDi1GKf3G .image-6 {
  position: absolute;
  left: -295px;
  top: 290px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-uDDi1GKf3G .image-6 {
    left: -165px;
    top: 290px;
  }
}
@media (max-width: 992px) {
  .cid-uDDi1GKf3G .image-1 {
    bottom: -323px;
  }
  .cid-uDDi1GKf3G .image-2 {
    left: -53%;
  }
  .cid-uDDi1GKf3G .image-3 {
    bottom: 29px;
  }
  .cid-uDDi1GKf3G .image-5 {
    left: 337px;
    top: -65px;
  }
  .cid-uDDi1GKf3G .image-6 {
    top: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uDDi1GKf3G .image-1 {
    left: 205px;
    bottom: -273px;
  }
  .cid-uDDi1GKf3G .image-2 {
    left: -27%;
  }
  .cid-uDDi1GKf3G .image-4 {
    right: -101px;
  }
}
@media (max-width: 767px) {
  .cid-uDDi1GKf3G .align-left {
    text-align: center;
  }
}
.cid-uDDi1GKf3G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDDi1GKf3G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDDi1GKf3G H3 {
  color: #ffbf4f;
}
.cid-uDDikdLKXs {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/tlo-zap2-1279x720.jpg");
}
.cid-uDDikdLKXs .mbr-section-title {
  color: #ffffff;
}
.cid-sX3Yzw4qT6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x905.jpg");
}
.cid-sX3Yzw4qT6 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sX3Yzw4qT6 .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #eeeeee;
}
.cid-sX3Yzw4qT6 .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sX3Yzw4qT6 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sX3Yzw4qT6 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sX3Yzw4qT6 .mbr-iconfont {
  font-size: 3rem;
  padding-right: 2rem;
  color: #ff4433;
}
@media (max-width: 767px) {
  .cid-sX3Yzw4qT6 .mbr-iconfont {
    font-size: 2.1rem;
  }
}
.cid-sX3Yzw4qT6 .mbr-section-subtitle {
  color: #696969;
}
.cid-sX3Yzw4qT6 .mbr-section-title {
  color: #1a7a90;
}
.cid-tHWzWk64If {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tHWzWk64If .mbr-section-subtitle {
  color: #767676;
}
.cid-tHWzWk64If H2 {
  color: #1a7a90;
}
.cid-sX3Sz28Xaw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-sX3Sz28Xaw .mbr-text {
  color: #eae8e4;
}
.cid-sX3Sz28Xaw .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-sX3Sz28Xaw a {
  font-weight: 400 !important;
}
.cid-sBkqT8vCC2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sBkqT8vCC2 nav.navbar {
  position: fixed;
}
.cid-sBkqT8vCC2 .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-sBkqT8vCC2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover,
.cid-sBkqT8vCC2 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-sBkqT8vCC2 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sBkqT8vCC2 .nav-link {
  position: relative;
  padding: 0;
}
.cid-sBkqT8vCC2 .container {
  display: flex;
  margin: auto;
}
.cid-sBkqT8vCC2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown-menu,
.cid-sBkqT8vCC2 .navbar.opened {
  background: #051455 !important;
}
.cid-sBkqT8vCC2 .nav-item:focus,
.cid-sBkqT8vCC2 .nav-link:focus {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sBkqT8vCC2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sBkqT8vCC2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBkqT8vCC2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-sBkqT8vCC2 .navbar.opened {
  transition: all 0.3s;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sBkqT8vCC2 .navbar .navbar-logo img {
  width: auto;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar.collapsed {
  justify-content: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBkqT8vCC2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBkqT8vCC2 .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-sBkqT8vCC2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBkqT8vCC2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sBkqT8vCC2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sBkqT8vCC2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBkqT8vCC2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBkqT8vCC2 .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-sBkqT8vCC2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sBkqT8vCC2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBkqT8vCC2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sBkqT8vCC2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sBkqT8vCC2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sBkqT8vCC2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sBkqT8vCC2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sBkqT8vCC2 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBkqT8vCC2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBkqT8vCC2 .dropdown-item.active,
.cid-sBkqT8vCC2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBkqT8vCC2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-sBkqT8vCC2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBkqT8vCC2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBkqT8vCC2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sBkqT8vCC2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sBkqT8vCC2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sBkqT8vCC2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sBkqT8vCC2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sBkqT8vCC2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sBkqT8vCC2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sBkqT8vCC2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBkqT8vCC2 .navbar {
    height: 70px;
  }
  .cid-sBkqT8vCC2 .navbar.opened {
    height: auto;
  }
  .cid-sBkqT8vCC2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBkqT8vCC2 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sBkqT8vCC2 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sBkqT8vCC2 a {
  display: inline;
  font-weight: bold;
}
.cid-sBkqT8vCC2 img {
  display: inline;
  padding-right: 10px;
}
.cid-sBkqT8vCC2 .dropdown-toggle:after {
  display: none;
}
.cid-sBkqT8vCC2 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sBkqT8vCC2 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sBkqT8vCC2 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sBkqT8vCC2 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-sBkqT8vCC2 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sBkqT8vCC2 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-sBkqT8vCC2 .btn {
  display: inline !important;
}
.cid-sBkqT8vCC2 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-sBkqT8vCC2 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-sBkqT8vCC2 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sBkqT8vCC2 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sBkqT8vCC2 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sBkqT8vCC2 .btn {
  border-radius: 50px;
}
.cid-sWMv9tJDyf {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-sWMv9tJDyf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sWMv9tJDyf .row {
    flex-direction: column-reverse;
  }
  .cid-sWMv9tJDyf .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sWMv9tJDyf .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sWMv9tJDyf .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sWMv9tJDyf .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-sWMv9tJDyf .card-title {
  color: #051455;
}
.cid-sWMv9tJDyf .mbr-text,
.cid-sWMv9tJDyf .mbr-section-btn {
  color: #6c758f;
}
.cid-sYQDpAIdAm {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQDpAIdAm .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sYQDpAIdAm .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sYQDpAIdAm .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff4433;
}
.cid-sYQDpAIdAm .panel-body,
.cid-sYQDpAIdAm .card-header {
  padding: 1rem 0;
}
.cid-sYQDpAIdAm .panel-title-edit {
  color: #000000;
}
.cid-sYQDpAIdAm H3 {
  text-align: left;
}
.cid-sYQwnhxIzK {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYQwnhxIzK .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sYQwnhxIzK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sYQwnhxIzK .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff4433;
}
.cid-sYQwnhxIzK .panel-body,
.cid-sYQwnhxIzK .card-header {
  padding: 1rem 0;
}
.cid-sYQwnhxIzK .panel-title-edit {
  color: #000000;
}
.cid-sX3Sz28Xaw {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-sX3Sz28Xaw .mbr-text {
  color: #eae8e4;
}
.cid-sX3Sz28Xaw .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-sX3Sz28Xaw a {
  font-weight: 400 !important;
}
.cid-sYQIhUizGk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sYQIhUizGk nav.navbar {
  position: fixed;
}
.cid-sYQIhUizGk .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-sYQIhUizGk .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sYQIhUizGk .dropdown-item:hover,
.cid-sYQIhUizGk .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-sYQIhUizGk .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-sYQIhUizGk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sYQIhUizGk .nav-link {
  position: relative;
  padding: 0;
}
.cid-sYQIhUizGk .container {
  display: flex;
  margin: auto;
}
.cid-sYQIhUizGk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sYQIhUizGk .dropdown-menu,
.cid-sYQIhUizGk .navbar.opened {
  background: #051455 !important;
}
.cid-sYQIhUizGk .nav-item:focus,
.cid-sYQIhUizGk .nav-link:focus {
  outline: none;
}
.cid-sYQIhUizGk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sYQIhUizGk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYQIhUizGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sYQIhUizGk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sYQIhUizGk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYQIhUizGk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYQIhUizGk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-sYQIhUizGk .navbar.opened {
  transition: all 0.3s;
}
.cid-sYQIhUizGk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sYQIhUizGk .navbar .navbar-logo img {
  width: auto;
}
.cid-sYQIhUizGk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYQIhUizGk .navbar.collapsed {
  justify-content: center;
}
.cid-sYQIhUizGk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYQIhUizGk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYQIhUizGk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sYQIhUizGk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYQIhUizGk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYQIhUizGk .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-sYQIhUizGk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYQIhUizGk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sYQIhUizGk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sYQIhUizGk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYQIhUizGk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYQIhUizGk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYQIhUizGk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYQIhUizGk .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-sYQIhUizGk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sYQIhUizGk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYQIhUizGk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYQIhUizGk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sYQIhUizGk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sYQIhUizGk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sYQIhUizGk .navbar.navbar-short {
  min-height: 60px;
}
.cid-sYQIhUizGk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sYQIhUizGk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sYQIhUizGk .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sYQIhUizGk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYQIhUizGk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYQIhUizGk .dropdown-item.active,
.cid-sYQIhUizGk .dropdown-item:active {
  background-color: transparent;
}
.cid-sYQIhUizGk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYQIhUizGk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYQIhUizGk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYQIhUizGk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-sYQIhUizGk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYQIhUizGk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYQIhUizGk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sYQIhUizGk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sYQIhUizGk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sYQIhUizGk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sYQIhUizGk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sYQIhUizGk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYQIhUizGk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sYQIhUizGk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sYQIhUizGk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYQIhUizGk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sYQIhUizGk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sYQIhUizGk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sYQIhUizGk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sYQIhUizGk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sYQIhUizGk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYQIhUizGk .navbar {
    height: 70px;
  }
  .cid-sYQIhUizGk .navbar.opened {
    height: auto;
  }
  .cid-sYQIhUizGk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYQIhUizGk .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sYQIhUizGk .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sYQIhUizGk a {
  display: inline;
  font-weight: bold;
}
.cid-sYQIhUizGk img {
  display: inline;
  padding-right: 10px;
}
.cid-sYQIhUizGk .dropdown-toggle:after {
  display: none;
}
.cid-sYQIhUizGk .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sYQIhUizGk .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-sYQIhUizGk .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sYQIhUizGk .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-sYQIhUizGk .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sYQIhUizGk .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-sYQIhUizGk .btn {
  display: inline !important;
}
.cid-sYQIhUizGk .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-sYQIhUizGk .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-sYQIhUizGk .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sYQIhUizGk .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sYQIhUizGk .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sYQIhUizGk .btn {
  border-radius: 50px;
}
.cid-sYQIhUTAG8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f2f3f7;
}
.cid-sYQIhUTAG8 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sYQIhUTAG8 .row {
    flex-direction: column-reverse;
  }
  .cid-sYQIhUTAG8 .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sYQIhUTAG8 .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sYQIhUTAG8 .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sYQIhUTAG8 .image-wrapper img {
  width: 100%;
  box-shadow: 0.6em 0.6em 1.2em #d2dce9, -0.5em -0.5em 1em #ffffff;
  object-fit: cover;
  border-radius: 3rem;
}
.cid-sYQIhUTAG8 .card-title {
  color: #1a7a90;
}
.cid-sYQIhUTAG8 .mbr-text,
.cid-sYQIhUTAG8 .mbr-section-btn {
  color: #6c758f;
}
.cid-sYQIhVgezY {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYQIhVgezY .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sYQIhVgezY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sYQIhVgezY .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff4433;
}
.cid-sYQIhVgezY .panel-body,
.cid-sYQIhVgezY .card-header {
  padding: 1rem 0;
}
.cid-sYQIhVgezY .panel-title-edit {
  color: #000000;
}
.cid-sYQIhVgezY H3 {
  text-align: left;
}
.cid-sYQIhVHFaX {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYQIhVHFaX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sYQIhVHFaX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sYQIhVHFaX .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #ff4433;
}
.cid-sYQIhVHFaX .panel-body,
.cid-sYQIhVHFaX .card-header {
  padding: 1rem 0;
}
.cid-sYQIhVHFaX .panel-title-edit {
  color: #000000;
}
.cid-sYQIhWiw1L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-sYQIhWiw1L .mbr-text {
  color: #eae8e4;
}
.cid-sYQIhWiw1L .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-sYQIhWiw1L a {
  font-weight: 400 !important;
}
.cid-u3wElBHmv2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u3wElBHmv2 nav.navbar {
  position: fixed;
}
.cid-u3wElBHmv2 .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-u3wElBHmv2 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u3wElBHmv2 .dropdown-item:hover,
.cid-u3wElBHmv2 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u3wElBHmv2 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u3wElBHmv2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u3wElBHmv2 .nav-link {
  position: relative;
  padding: 0;
}
.cid-u3wElBHmv2 .container {
  display: flex;
  margin: auto;
}
.cid-u3wElBHmv2 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u3wElBHmv2 .dropdown-menu,
.cid-u3wElBHmv2 .navbar.opened {
  background: #051455 !important;
}
.cid-u3wElBHmv2 .nav-item:focus,
.cid-u3wElBHmv2 .nav-link:focus {
  outline: none;
}
.cid-u3wElBHmv2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u3wElBHmv2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u3wElBHmv2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u3wElBHmv2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u3wElBHmv2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u3wElBHmv2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u3wElBHmv2 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-u3wElBHmv2 .navbar.opened {
  transition: all 0.3s;
}
.cid-u3wElBHmv2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u3wElBHmv2 .navbar .navbar-logo img {
  width: auto;
}
.cid-u3wElBHmv2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u3wElBHmv2 .navbar.collapsed {
  justify-content: center;
}
.cid-u3wElBHmv2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u3wElBHmv2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u3wElBHmv2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u3wElBHmv2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u3wElBHmv2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u3wElBHmv2 .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-u3wElBHmv2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u3wElBHmv2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u3wElBHmv2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u3wElBHmv2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u3wElBHmv2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u3wElBHmv2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u3wElBHmv2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u3wElBHmv2 .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-u3wElBHmv2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u3wElBHmv2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u3wElBHmv2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u3wElBHmv2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u3wElBHmv2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u3wElBHmv2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u3wElBHmv2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u3wElBHmv2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u3wElBHmv2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u3wElBHmv2 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u3wElBHmv2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u3wElBHmv2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u3wElBHmv2 .dropdown-item.active,
.cid-u3wElBHmv2 .dropdown-item:active {
  background-color: transparent;
}
.cid-u3wElBHmv2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u3wElBHmv2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u3wElBHmv2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u3wElBHmv2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-u3wElBHmv2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u3wElBHmv2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u3wElBHmv2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u3wElBHmv2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u3wElBHmv2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u3wElBHmv2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u3wElBHmv2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u3wElBHmv2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3wElBHmv2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u3wElBHmv2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u3wElBHmv2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3wElBHmv2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u3wElBHmv2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u3wElBHmv2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u3wElBHmv2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u3wElBHmv2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u3wElBHmv2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u3wElBHmv2 .navbar {
    height: 70px;
  }
  .cid-u3wElBHmv2 .navbar.opened {
    height: auto;
  }
  .cid-u3wElBHmv2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u3wElBHmv2 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u3wElBHmv2 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u3wElBHmv2 a {
  display: inline;
  font-weight: bold;
}
.cid-u3wElBHmv2 img {
  display: inline;
  padding-right: 10px;
}
.cid-u3wElBHmv2 .dropdown-toggle:after {
  display: none;
}
.cid-u3wElBHmv2 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u3wElBHmv2 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u3wElBHmv2 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u3wElBHmv2 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u3wElBHmv2 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u3wElBHmv2 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u3wElBHmv2 .btn {
  display: inline !important;
}
.cid-u3wElBHmv2 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u3wElBHmv2 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u3wElBHmv2 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-u3wElBHmv2 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u3wElBHmv2 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u3wElBHmv2 .btn {
  border-radius: 50px;
}
.cid-u3wElC9v0A {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bcg02-2000x1117.png");
}
.cid-u3wElC9v0A .position {
  z-index: 10;
}
.cid-u3wElC9v0A .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
}
.cid-u3wElC9v0A .mbr-section-title {
  margin-bottom: 0;
}
.cid-u3wElC9v0A .mbr-text {
  margin-top: 30px;
}
.cid-u3wElC9v0A .mbr-section-btn {
  margin-top: 30px;
}
.cid-u3wElC9v0A .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-u3wElC9v0A .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-u3wElC9v0A .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u3wElC9v0A .info__block-item {
    margin-right: 10px;
  }
}
.cid-u3wElC9v0A .title__item,
.cid-u3wElC9v0A .text__item {
  margin-bottom: 0;
}
.cid-u3wElC9v0A .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-u3wElC9v0A .animated-element {
  color: #ffbf4f;
}
.cid-u3wElC9v0A .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-u3wElC9v0A .mbr-section-title,
.cid-u3wElC9v0A .typed-text {
  color: #ffffff;
}
.cid-u3wElC9v0A .title__item {
  color: #073b4c;
}
.cid-u3wElC9v0A .color_rej {
  color: ba872d;
}
.cid-u3wElOV7ej {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #eae8e4;
}
.cid-u3wElOV7ej .mbr-figure {
  margin: 0 auto;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u3wElOV7ej .mbr-figure img {
  height: 275px;
  width: 275px;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 3rem;
  border-radius: 100%;
}
.cid-u3wElOV7ej .mbr-text,
.cid-u3wElOV7ej .mbr-section-btn {
  color: #888888;
}
@media (max-width: 767px) {
  .cid-u3wElOV7ej img {
    height: 250px!important;
    width: 250px!important;
  }
}
.cid-u3wElOV7ej H1 {
  color: #051455;
}
.cid-u3wElPwbkp {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #eae8e4;
}
.cid-u3wElPwbkp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u3wElPwbkp .form-control,
.cid-u3wElPwbkp .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3wElPwbkp .form-control::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input::-webkit-input-placeholder,
.cid-u3wElPwbkp .form-control::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input::-webkit-input-placeholder {
  color: #888888;
}
.cid-u3wElPwbkp .form-control:-moz-placeholder,
.cid-u3wElPwbkp .field-input:-moz-placeholder,
.cid-u3wElPwbkp .form-control:-moz-placeholder,
.cid-u3wElPwbkp .field-input:-moz-placeholder {
  color: #888888;
}
.cid-u3wElPwbkp .form-control:hover,
.cid-u3wElPwbkp .field-input:hover,
.cid-u3wElPwbkp .form-control:focus,
.cid-u3wElPwbkp .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-u3wElPwbkp .form-control:hover::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input:hover::-webkit-input-placeholder,
.cid-u3wElPwbkp .form-control:focus::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input:focus::-webkit-input-placeholder,
.cid-u3wElPwbkp .form-control:hover::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input:hover::-webkit-input-placeholder,
.cid-u3wElPwbkp .form-control:focus::-webkit-input-placeholder,
.cid-u3wElPwbkp .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u3wElPwbkp .form-control:hover:-moz-placeholder,
.cid-u3wElPwbkp .field-input:hover:-moz-placeholder,
.cid-u3wElPwbkp .form-control:focus:-moz-placeholder,
.cid-u3wElPwbkp .field-input:focus:-moz-placeholder,
.cid-u3wElPwbkp .form-control:hover:-moz-placeholder,
.cid-u3wElPwbkp .field-input:hover:-moz-placeholder,
.cid-u3wElPwbkp .form-control:focus:-moz-placeholder,
.cid-u3wElPwbkp .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u3wElPwbkp .jq-number__spin:hover,
.cid-u3wElPwbkp .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-u3wElPwbkp .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u3wElPwbkp .jq-selectbox li,
.cid-u3wElPwbkp .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u3wElPwbkp .jq-selectbox li:hover,
.cid-u3wElPwbkp .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-u3wElPwbkp .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u3wElPwbkp .jq-number__spin.minus:hover:after,
.cid-u3wElPwbkp .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-u3wElPwbkp .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u3wElPwbkp .jq-number__spin.minus:after,
.cid-u3wElPwbkp .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-u3wElPwbkp input::-webkit-clear-button {
  display: none;
}
.cid-u3wElPwbkp input::-webkit-inner-spin-button {
  display: none;
}
.cid-u3wElPwbkp input::-webkit-outer-spin-button {
  display: none;
}
.cid-u3wElPwbkp input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-u3wElPwbkp LABEL {
  text-align: left;
}
.cid-u3wElXrEkN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-u3wElXrEkN .mbr-text {
  color: #eae8e4;
}
.cid-u3wElXrEkN .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-u3wElXrEkN a {
  font-weight: 400 !important;
}
.cid-u4WosP9Cvo {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-u4WosP9Cvo nav.navbar {
  position: fixed;
}
.cid-u4WosP9Cvo .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-u4WosP9Cvo .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-u4WosP9Cvo .dropdown-item:hover,
.cid-u4WosP9Cvo .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-u4WosP9Cvo .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-u4WosP9Cvo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u4WosP9Cvo .nav-link {
  position: relative;
  padding: 0;
}
.cid-u4WosP9Cvo .container {
  display: flex;
  margin: auto;
}
.cid-u4WosP9Cvo .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u4WosP9Cvo .dropdown-menu,
.cid-u4WosP9Cvo .navbar.opened {
  background: #051455 !important;
}
.cid-u4WosP9Cvo .nav-item:focus,
.cid-u4WosP9Cvo .nav-link:focus {
  outline: none;
}
.cid-u4WosP9Cvo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u4WosP9Cvo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u4WosP9Cvo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u4WosP9Cvo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u4WosP9Cvo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u4WosP9Cvo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u4WosP9Cvo .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-u4WosP9Cvo .navbar.opened {
  transition: all 0.3s;
}
.cid-u4WosP9Cvo .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u4WosP9Cvo .navbar .navbar-logo img {
  width: auto;
}
.cid-u4WosP9Cvo .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u4WosP9Cvo .navbar.collapsed {
  justify-content: center;
}
.cid-u4WosP9Cvo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u4WosP9Cvo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u4WosP9Cvo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-u4WosP9Cvo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u4WosP9Cvo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u4WosP9Cvo .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-u4WosP9Cvo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u4WosP9Cvo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u4WosP9Cvo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u4WosP9Cvo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u4WosP9Cvo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u4WosP9Cvo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u4WosP9Cvo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u4WosP9Cvo .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-u4WosP9Cvo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u4WosP9Cvo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u4WosP9Cvo .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u4WosP9Cvo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u4WosP9Cvo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u4WosP9Cvo .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u4WosP9Cvo .navbar.navbar-short {
  min-height: 60px;
}
.cid-u4WosP9Cvo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u4WosP9Cvo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u4WosP9Cvo .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u4WosP9Cvo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u4WosP9Cvo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u4WosP9Cvo .dropdown-item.active,
.cid-u4WosP9Cvo .dropdown-item:active {
  background-color: transparent;
}
.cid-u4WosP9Cvo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u4WosP9Cvo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u4WosP9Cvo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u4WosP9Cvo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-u4WosP9Cvo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u4WosP9Cvo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u4WosP9Cvo ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u4WosP9Cvo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u4WosP9Cvo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u4WosP9Cvo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u4WosP9Cvo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u4WosP9Cvo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4WosP9Cvo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u4WosP9Cvo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u4WosP9Cvo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4WosP9Cvo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u4WosP9Cvo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u4WosP9Cvo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u4WosP9Cvo .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u4WosP9Cvo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u4WosP9Cvo .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u4WosP9Cvo .navbar {
    height: 70px;
  }
  .cid-u4WosP9Cvo .navbar.opened {
    height: auto;
  }
  .cid-u4WosP9Cvo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u4WosP9Cvo .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-u4WosP9Cvo .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-u4WosP9Cvo a {
  display: inline;
  font-weight: bold;
}
.cid-u4WosP9Cvo img {
  display: inline;
  padding-right: 10px;
}
.cid-u4WosP9Cvo .dropdown-toggle:after {
  display: none;
}
.cid-u4WosP9Cvo .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-u4WosP9Cvo .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-u4WosP9Cvo .dropdown-menu {
    margin-top: 0px;
  }
  .cid-u4WosP9Cvo .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-u4WosP9Cvo .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-u4WosP9Cvo .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-u4WosP9Cvo .btn {
  display: inline !important;
}
.cid-u4WosP9Cvo .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-u4WosP9Cvo .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-u4WosP9Cvo .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-u4WosP9Cvo .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-u4WosP9Cvo .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-u4WosP9Cvo .btn {
  border-radius: 50px;
}
.cid-u4WosPsSNk {
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/bcg02-2000x1117.png");
}
.cid-u4WosPsSNk .position {
  z-index: 10;
}
.cid-u4WosPsSNk .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
}
.cid-u4WosPsSNk .mbr-section-title {
  margin-bottom: 0;
}
.cid-u4WosPsSNk .mbr-text {
  margin-top: 30px;
}
.cid-u4WosPsSNk .mbr-section-btn {
  margin-top: 30px;
}
.cid-u4WosPsSNk .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-u4WosPsSNk .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-u4WosPsSNk .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-u4WosPsSNk .info__block-item {
    margin-right: 10px;
  }
}
.cid-u4WosPsSNk .title__item,
.cid-u4WosPsSNk .text__item {
  margin-bottom: 0;
}
.cid-u4WosPsSNk .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-u4WosPsSNk .animated-element {
  color: #ffbf4f;
}
.cid-u4WosPsSNk .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-u4WosPsSNk .mbr-section-title,
.cid-u4WosPsSNk .typed-text {
  color: #ffffff;
}
.cid-u4WosPsSNk .title__item {
  color: #073b4c;
}
.cid-u4WoHGPPDL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u4WoHGPPDL .mbr-section-title {
  color: #b62519;
  text-align: center;
  margin-bottom: 0;
}
.cid-u4WoHGPPDL .mbr-section-subtitle {
  color: #051455;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-u4WoHGPPDL .row {
  align-items: center;
  height: 100%;
}
.cid-uCRPdbfspU {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCRPdbfspU .right {
  display: flex;
  flex-direction: column;
}
.cid-uCRPdbfspU .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
}
.cid-uCRPdbfspU .p {
  padding-bottom: 30px;
  color: #000000;
}
.cid-uCRPdbfspU .last-p {
  padding-bottom: 0;
}
.cid-uCRPdbfspU .row {
  justify-content: center;
}
.cid-uCRPdbfspU .blues {
  color: #060270;
}
.cid-uCRPdbfspU .reds {
  color: #b90c0d;
}
.cid-uCRPdbfspU .sky {
  color: #1861c0;
}
.cid-uCRP5xAQJB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uCRP5xAQJB .mbr-section-title {
  color: #b62519;
  text-align: center;
  margin-bottom: 0;
}
.cid-uCRP5xAQJB .mbr-section-subtitle {
  color: #051455;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 0;
  font-weight: 600;
}
.cid-uCRP5xAQJB .row {
  align-items: center;
  height: 100%;
}
.cid-uCRQ4h8xIg {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uCRQ4h8xIg .right {
  display: flex;
  flex-direction: column;
}
.cid-uCRQ4h8xIg .card-heading {
  padding-bottom: 45px;
  color: #000000;
  font-weight: 600;
}
.cid-uCRQ4h8xIg .p {
  padding-bottom: 30px;
  color: #000000;
}
.cid-uCRQ4h8xIg .last-p {
  padding-bottom: 0;
}
.cid-uCRQ4h8xIg .row {
  justify-content: center;
}
.cid-uCRQ4h8xIg .blues {
  color: #060270;
}
.cid-uCRQ4h8xIg .reds {
  color: #b90c0d;
}
.cid-uCRQ4h8xIg .sky {
  color: #1861c0;
}
.cid-u4WosQeWRY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-u4WosQeWRY .mbr-text {
  color: #eae8e4;
}
.cid-u4WosQeWRY .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-u4WosQeWRY a {
  font-weight: 400 !important;
}
.cid-uCS7zuRqR5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCS7zuRqR5 nav.navbar {
  position: fixed;
}
.cid-uCS7zuRqR5 .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-uCS7zuRqR5 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uCS7zuRqR5 .dropdown-item:hover,
.cid-uCS7zuRqR5 .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-uCS7zuRqR5 .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uCS7zuRqR5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCS7zuRqR5 .nav-link {
  position: relative;
  padding: 0;
}
.cid-uCS7zuRqR5 .container {
  display: flex;
  margin: auto;
}
.cid-uCS7zuRqR5 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCS7zuRqR5 .dropdown-menu,
.cid-uCS7zuRqR5 .navbar.opened {
  background: #051455 !important;
}
.cid-uCS7zuRqR5 .nav-item:focus,
.cid-uCS7zuRqR5 .nav-link:focus {
  outline: none;
}
.cid-uCS7zuRqR5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCS7zuRqR5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCS7zuRqR5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCS7zuRqR5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCS7zuRqR5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCS7zuRqR5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCS7zuRqR5 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-uCS7zuRqR5 .navbar.opened {
  transition: all 0.3s;
}
.cid-uCS7zuRqR5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCS7zuRqR5 .navbar .navbar-logo img {
  width: auto;
}
.cid-uCS7zuRqR5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCS7zuRqR5 .navbar.collapsed {
  justify-content: center;
}
.cid-uCS7zuRqR5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCS7zuRqR5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCS7zuRqR5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uCS7zuRqR5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCS7zuRqR5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCS7zuRqR5 .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-uCS7zuRqR5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCS7zuRqR5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCS7zuRqR5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCS7zuRqR5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCS7zuRqR5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCS7zuRqR5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCS7zuRqR5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCS7zuRqR5 .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-uCS7zuRqR5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCS7zuRqR5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCS7zuRqR5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCS7zuRqR5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCS7zuRqR5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCS7zuRqR5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCS7zuRqR5 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCS7zuRqR5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCS7zuRqR5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCS7zuRqR5 .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCS7zuRqR5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCS7zuRqR5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCS7zuRqR5 .dropdown-item.active,
.cid-uCS7zuRqR5 .dropdown-item:active {
  background-color: transparent;
}
.cid-uCS7zuRqR5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCS7zuRqR5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCS7zuRqR5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCS7zuRqR5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-uCS7zuRqR5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCS7zuRqR5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCS7zuRqR5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCS7zuRqR5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCS7zuRqR5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCS7zuRqR5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCS7zuRqR5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCS7zuRqR5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCS7zuRqR5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCS7zuRqR5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCS7zuRqR5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCS7zuRqR5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCS7zuRqR5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCS7zuRqR5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCS7zuRqR5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCS7zuRqR5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCS7zuRqR5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCS7zuRqR5 .navbar {
    height: 70px;
  }
  .cid-uCS7zuRqR5 .navbar.opened {
    height: auto;
  }
  .cid-uCS7zuRqR5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCS7zuRqR5 .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uCS7zuRqR5 .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uCS7zuRqR5 a {
  display: inline;
  font-weight: bold;
}
.cid-uCS7zuRqR5 img {
  display: inline;
  padding-right: 10px;
}
.cid-uCS7zuRqR5 .dropdown-toggle:after {
  display: none;
}
.cid-uCS7zuRqR5 .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uCS7zuRqR5 .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-uCS7zuRqR5 .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uCS7zuRqR5 .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uCS7zuRqR5 .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uCS7zuRqR5 .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uCS7zuRqR5 .btn {
  display: inline !important;
}
.cid-uCS7zuRqR5 .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uCS7zuRqR5 .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uCS7zuRqR5 .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uCS7zuRqR5 .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uCS7zuRqR5 .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uCS7zuRqR5 .btn {
  border-radius: 50px;
}
.cid-uCS7zvdwXf {
  overflow: hidden;
  background-image: url("../../../assets/images/bcg02-2000x1117.png");
}
.cid-uCS7zvdwXf .position {
  z-index: 10;
}
.cid-uCS7zvdwXf .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #fab901;
  text-align: center;
}
.cid-uCS7zvdwXf .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCS7zvdwXf .mbr-text {
  margin-top: 30px;
}
.cid-uCS7zvdwXf .mbr-section-btn {
  margin-top: 30px;
}
.cid-uCS7zvdwXf .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-uCS7zvdwXf .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-uCS7zvdwXf .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uCS7zvdwXf .info__block-item {
    margin-right: 10px;
  }
}
.cid-uCS7zvdwXf .title__item,
.cid-uCS7zvdwXf .text__item {
  margin-bottom: 0;
}
.cid-uCS7zvdwXf .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-uCS7zvdwXf .animated-element {
  color: #ffbf4f;
}
.cid-uCS7zvdwXf .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uCS7zvdwXf .mbr-section-title,
.cid-uCS7zvdwXf .typed-text {
  color: #ffffff;
  text-align: center;
}
.cid-uCS7zvdwXf .title__item {
  color: #073b4c;
}
.cid-uCSaA6eLyR {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uCSaA6eLyR nav.navbar {
  position: fixed;
}
.cid-uCSaA6eLyR .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-uCSaA6eLyR .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-uCSaA6eLyR .dropdown-item:hover,
.cid-uCSaA6eLyR .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-uCSaA6eLyR .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-uCSaA6eLyR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCSaA6eLyR .nav-link {
  position: relative;
  padding: 0;
}
.cid-uCSaA6eLyR .container {
  display: flex;
  margin: auto;
}
.cid-uCSaA6eLyR .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCSaA6eLyR .dropdown-menu,
.cid-uCSaA6eLyR .navbar.opened {
  background: #051455 !important;
}
.cid-uCSaA6eLyR .nav-item:focus,
.cid-uCSaA6eLyR .nav-link:focus {
  outline: none;
}
.cid-uCSaA6eLyR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCSaA6eLyR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCSaA6eLyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCSaA6eLyR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCSaA6eLyR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCSaA6eLyR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCSaA6eLyR .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-uCSaA6eLyR .navbar.opened {
  transition: all 0.3s;
}
.cid-uCSaA6eLyR .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCSaA6eLyR .navbar .navbar-logo img {
  width: auto;
}
.cid-uCSaA6eLyR .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCSaA6eLyR .navbar.collapsed {
  justify-content: center;
}
.cid-uCSaA6eLyR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCSaA6eLyR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCSaA6eLyR .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uCSaA6eLyR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCSaA6eLyR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCSaA6eLyR .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-uCSaA6eLyR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCSaA6eLyR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCSaA6eLyR .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCSaA6eLyR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCSaA6eLyR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCSaA6eLyR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCSaA6eLyR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCSaA6eLyR .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-uCSaA6eLyR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCSaA6eLyR .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCSaA6eLyR .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCSaA6eLyR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCSaA6eLyR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCSaA6eLyR .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCSaA6eLyR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCSaA6eLyR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCSaA6eLyR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCSaA6eLyR .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCSaA6eLyR .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCSaA6eLyR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCSaA6eLyR .dropdown-item.active,
.cid-uCSaA6eLyR .dropdown-item:active {
  background-color: transparent;
}
.cid-uCSaA6eLyR .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCSaA6eLyR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCSaA6eLyR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCSaA6eLyR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-uCSaA6eLyR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCSaA6eLyR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCSaA6eLyR ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCSaA6eLyR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCSaA6eLyR button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCSaA6eLyR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uCSaA6eLyR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCSaA6eLyR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCSaA6eLyR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCSaA6eLyR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCSaA6eLyR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCSaA6eLyR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCSaA6eLyR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCSaA6eLyR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCSaA6eLyR .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCSaA6eLyR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCSaA6eLyR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCSaA6eLyR .navbar {
    height: 70px;
  }
  .cid-uCSaA6eLyR .navbar.opened {
    height: auto;
  }
  .cid-uCSaA6eLyR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCSaA6eLyR .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-uCSaA6eLyR .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-uCSaA6eLyR a {
  display: inline;
  font-weight: bold;
}
.cid-uCSaA6eLyR img {
  display: inline;
  padding-right: 10px;
}
.cid-uCSaA6eLyR .dropdown-toggle:after {
  display: none;
}
.cid-uCSaA6eLyR .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-uCSaA6eLyR .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-uCSaA6eLyR .dropdown-menu {
    margin-top: 0px;
  }
  .cid-uCSaA6eLyR .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-uCSaA6eLyR .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-uCSaA6eLyR .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-uCSaA6eLyR .btn {
  display: inline !important;
}
.cid-uCSaA6eLyR .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-uCSaA6eLyR .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-uCSaA6eLyR .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-uCSaA6eLyR .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uCSaA6eLyR .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uCSaA6eLyR .btn {
  border-radius: 50px;
}
.cid-uCSaA6FPQM {
  overflow: hidden;
  background-image: url("../../../assets/images/bcg02-2000x1117.png");
}
.cid-uCSaA6FPQM .position {
  z-index: 10;
}
.cid-uCSaA6FPQM .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #fab901;
  text-align: center;
}
.cid-uCSaA6FPQM .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCSaA6FPQM .mbr-text {
  margin-top: 30px;
}
.cid-uCSaA6FPQM .mbr-section-btn {
  margin-top: 30px;
}
.cid-uCSaA6FPQM .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-uCSaA6FPQM .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-uCSaA6FPQM .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uCSaA6FPQM .info__block-item {
    margin-right: 10px;
  }
}
.cid-uCSaA6FPQM .title__item,
.cid-uCSaA6FPQM .text__item {
  margin-bottom: 0;
}
.cid-uCSaA6FPQM .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-uCSaA6FPQM .animated-element {
  color: #ffbf4f;
}
.cid-uCSaA6FPQM .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-uCSaA6FPQM .mbr-section-title,
.cid-uCSaA6FPQM .typed-text {
  color: #ffffff;
  text-align: center;
}
.cid-uCSaA6FPQM .title__item {
  color: #073b4c;
}
.cid-vhNjr7fkFn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-vhNjr7fkFn nav.navbar {
  position: fixed;
}
.cid-vhNjr7fkFn .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-vhNjr7fkFn .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-vhNjr7fkFn .dropdown-item:hover,
.cid-vhNjr7fkFn .dropdown-item:focus {
  color: #ff4433 !important;
}
.cid-vhNjr7fkFn .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-vhNjr7fkFn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vhNjr7fkFn .nav-link {
  position: relative;
  padding: 0;
}
.cid-vhNjr7fkFn .container {
  display: flex;
  margin: auto;
}
.cid-vhNjr7fkFn .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vhNjr7fkFn .dropdown-menu,
.cid-vhNjr7fkFn .navbar.opened {
  background: #051455 !important;
}
.cid-vhNjr7fkFn .nav-item:focus,
.cid-vhNjr7fkFn .nav-link:focus {
  outline: none;
}
.cid-vhNjr7fkFn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vhNjr7fkFn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vhNjr7fkFn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vhNjr7fkFn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vhNjr7fkFn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vhNjr7fkFn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vhNjr7fkFn .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #051455;
}
.cid-vhNjr7fkFn .navbar.opened {
  transition: all 0.3s;
}
.cid-vhNjr7fkFn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vhNjr7fkFn .navbar .navbar-logo img {
  width: auto;
}
.cid-vhNjr7fkFn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vhNjr7fkFn .navbar.collapsed {
  justify-content: center;
}
.cid-vhNjr7fkFn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vhNjr7fkFn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vhNjr7fkFn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vhNjr7fkFn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vhNjr7fkFn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vhNjr7fkFn .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-vhNjr7fkFn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vhNjr7fkFn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vhNjr7fkFn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vhNjr7fkFn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vhNjr7fkFn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vhNjr7fkFn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vhNjr7fkFn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vhNjr7fkFn .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-vhNjr7fkFn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vhNjr7fkFn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vhNjr7fkFn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vhNjr7fkFn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vhNjr7fkFn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vhNjr7fkFn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-vhNjr7fkFn .navbar.navbar-short {
  min-height: 60px;
}
.cid-vhNjr7fkFn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vhNjr7fkFn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vhNjr7fkFn .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vhNjr7fkFn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vhNjr7fkFn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vhNjr7fkFn .dropdown-item.active,
.cid-vhNjr7fkFn .dropdown-item:active {
  background-color: transparent;
}
.cid-vhNjr7fkFn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vhNjr7fkFn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vhNjr7fkFn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vhNjr7fkFn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #051455;
}
.cid-vhNjr7fkFn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vhNjr7fkFn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vhNjr7fkFn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vhNjr7fkFn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vhNjr7fkFn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vhNjr7fkFn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vhNjr7fkFn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vhNjr7fkFn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhNjr7fkFn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vhNjr7fkFn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vhNjr7fkFn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhNjr7fkFn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vhNjr7fkFn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vhNjr7fkFn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vhNjr7fkFn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vhNjr7fkFn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vhNjr7fkFn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vhNjr7fkFn .navbar {
    height: 70px;
  }
  .cid-vhNjr7fkFn .navbar.opened {
    height: auto;
  }
  .cid-vhNjr7fkFn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vhNjr7fkFn .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-vhNjr7fkFn .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-vhNjr7fkFn a {
  display: inline;
  font-weight: bold;
}
.cid-vhNjr7fkFn img {
  display: inline;
  padding-right: 10px;
}
.cid-vhNjr7fkFn .dropdown-toggle:after {
  display: none;
}
.cid-vhNjr7fkFn .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-vhNjr7fkFn .dropdown-item:hover {
  color: #0746c0 !important;
}
@media (max-width: 990px) {
  .cid-vhNjr7fkFn .dropdown-menu {
    margin-top: 0px;
  }
  .cid-vhNjr7fkFn .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-vhNjr7fkFn .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-vhNjr7fkFn .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-vhNjr7fkFn .btn {
  display: inline !important;
}
.cid-vhNjr7fkFn .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-vhNjr7fkFn .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-vhNjr7fkFn .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-vhNjr7fkFn .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-vhNjr7fkFn .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-vhNjr7fkFn .btn {
  border-radius: 50px;
}
.cid-vhNjr7tLYI {
  overflow: hidden;
  background-image: url("../../../assets/images/bcg02-2000x1117.png");
}
.cid-vhNjr7tLYI .position {
  z-index: 10;
}
.cid-vhNjr7tLYI .mbr-section-subtitle {
  margin: 10px 0 15px;
  line-height: 1.55;
  color: #efefef;
}
.cid-vhNjr7tLYI .mbr-section-title {
  margin-bottom: 0;
}
.cid-vhNjr7tLYI .mbr-text {
  margin-top: 30px;
}
.cid-vhNjr7tLYI .mbr-section-btn {
  margin-top: 30px;
}
.cid-vhNjr7tLYI .info__block {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.cid-vhNjr7tLYI .divider {
  background-color: #191f23;
  width: 100%;
  height: 1px;
  display: inline-block;
}
.cid-vhNjr7tLYI .info__block-item {
  width: 130px;
  padding-top: 25px;
  margin-right: 25px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-vhNjr7tLYI .info__block-item {
    margin-right: 10px;
  }
}
.cid-vhNjr7tLYI .title__item,
.cid-vhNjr7tLYI .text__item {
  margin-bottom: 0;
}
.cid-vhNjr7tLYI .text__item {
  line-height: 1.35;
  text-align: left;
  color: #465052;
}
.cid-vhNjr7tLYI .animated-element {
  color: #ffbf4f;
}
.cid-vhNjr7tLYI .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffbf4f;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-vhNjr7tLYI .mbr-section-title,
.cid-vhNjr7tLYI .typed-text {
  color: #efefef;
}
.cid-vhNjr7tLYI .title__item {
  color: #073b4c;
}
.cid-vhNjr8Qom5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/tlo-text-640x1296.jpg");
}
.cid-vhNjr8Qom5 .right {
  display: flex;
  flex-direction: column;
}
.cid-vhNjr8Qom5 .card-heading {
  padding-bottom: 15px;
  color: #051455;
  font-weight: 600;
}
.cid-vhNjr8Qom5 .row {
  justify-content: center;
}
.cid-vhNjr8Qom5 ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.cid-vhNjraR56W {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #051455;
}
.cid-vhNjraR56W .mbr-text {
  color: #eae8e4;
}
.cid-vhNjraR56W .line {
  height: 1px;
  width: 100%;
  background-color: #e5e6ef;
  margin-bottom: 32px;
}
.cid-vhNjraR56W a {
  font-weight: 400 !important;
}
