body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #171b41 !important;
}
.bg-success {
  background-color: #10158a !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #171b41 !important;
  border-color: #171b41 !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: #000001 !important;
  border-color: #000001 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000001 !important;
  border-color: #000001 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #10158a !important;
  border-color: #10158a !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: #07093c !important;
  border-color: #07093c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #07093c !important;
  border-color: #07093c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #171b41;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000001 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #171b41 !important;
  border-color: #171b41 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #10158a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #07093c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #10158a !important;
  border-color: #10158a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #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: transparent!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: #171b41 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #10158a !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #05072f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #171b41;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #171b41;
  border-color: #171b41;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #171b41;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #717acd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #323ae7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #171b41 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #171b41;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #171b41;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #171b41;
}
.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: #171b41;
  border-bottom-color: #171b41;
}
.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: #171b41 !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: #ffffff !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='%23171b41' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sTEI0WAxXO {
  height: 0 !important;
}
.cid-sTEI0WAxXO .navbar {
  background: #ffffff;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-sTEI0WAxXO .navbar .show {
  height: 100vh;
}
.cid-sTEI0WAxXO .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sTEI0WAxXO .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sTEI0WAxXO .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-sTEI0WAxXO .bottom {
  padding-bottom: 2rem;
}
.cid-sTEI0WAxXO a {
  font-style: normal;
}
.cid-sTEI0WAxXO .dropdown-backdrop {
  display: none;
}
.cid-sTEI0WAxXO .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-sTEI0WAxXO .nav-dropdown {
  padding-top: 8rem;
}
.cid-sTEI0WAxXO .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-sTEI0WAxXO .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-sTEI0WAxXO .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-sTEI0WAxXO .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-sTEI0WAxXO .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sTEI0WAxXO .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-sTEI0WAxXO .navbar-nav {
  width: 100% !important;
}
.cid-sTEI0WAxXO .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sTEI0WAxXO .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sTEI0WAxXO .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-sTEI0WAxXO .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-sTEI0WAxXO .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-sTEI0WAxXO .dropdown-item:hover,
.cid-sTEI0WAxXO .dropdown-item:active {
  color: #ffffff !important;
}
.cid-sTEI0WAxXO .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-sTEI0WAxXO .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-sTEI0WAxXO .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-sTEI0WAxXO .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-sTEI0WAxXO .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-sTEI0WAxXO .navbar-logo {
  margin-right: 0 !important;
}
.cid-sTEI0WAxXO .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-sTEI0WAxXO .menu-logo {
  position: absolute !important;
}
.cid-sTEI0WAxXO .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sTEI0WAxXO .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-sTEI0WAxXO .navbar-toggler {
  background: #ffffff;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-sTEI0WAxXO .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-sTEI0WAxXO .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-sTEI0WAxXO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sTEI0WAxXO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sTEI0WAxXO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sTEI0WAxXO .opened,
.cid-sTEI0WAxXO .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-sTEI0WAxXO .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-sTEI0WAxXO .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-sTEI0WAxXO .opened,
  .cid-sTEI0WAxXO .show,
  .cid-sTEI0WAxXO .navbar {
    width: 100% !important;
  }
  .cid-sTEI0WAxXO .dropdown-toggle {
    margin: auto !important;
  }
  .cid-sTEI0WAxXO .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-sTEI0WAxXO .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-sTEI0WAxXO .nav-item:focus,
.cid-sTEI0WAxXO .nav-link:focus {
  outline: none;
}
.cid-sTEI0WAxXO .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-sTEI0WAxXO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sTEI0WAxXO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sTEI0WAxXO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sTEI0WAxXO .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sTEI0WAxXO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sTEI0WAxXO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sTEI0WAxXO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sTEI0WAxXO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sTEI0WAxXO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sTEI0WAxXO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-sTEI0WAxXO button.navbar-toggler:focus {
  outline: none;
}
.cid-sTEI0WAxXO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-sTEI0WAxXO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sTEI0WAxXO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTEI0WAxXO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sTEI0WAxXO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sTEI0WAxXO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTEI0WAxXO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sTEI0WAxXO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sTEI0WAxXO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sTEI0WAxXO .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sTEI0WAxXO .collapsed .btn {
  display: -webkit-flex;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.collapsing,
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sTEI0WAxXO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sTEI0WAxXO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sTEI0WAxXO .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 89.6875vh;
  }
}
.cid-sTEI0WAxXO .collapsed button.navbar-toggler {
  display: block;
}
.cid-sTEI0WAxXO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sTEI0WAxXO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sTEI0WAxXO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sTEI0WAxXO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sTEI0WAxXO .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sTEI0WAxXO img {
    height: 3.8rem !important;
  }
  .cid-sTEI0WAxXO .btn {
    display: -webkit-flex;
  }
  .cid-sTEI0WAxXO button.navbar-toggler {
    display: block;
  }
  .cid-sTEI0WAxXO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sTEI0WAxXO .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sTEI0WAxXO .navbar-collapse.collapsing,
  .cid-sTEI0WAxXO .navbar-collapse.show {
    display: block !important;
  }
  .cid-sTEI0WAxXO .navbar-collapse.collapsing .navbar-nav,
  .cid-sTEI0WAxXO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sTEI0WAxXO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sTEI0WAxXO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sTEI0WAxXO .navbar-collapse.collapsing .navbar-buttons,
  .cid-sTEI0WAxXO .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sTEI0WAxXO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sTEI0WAxXO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sTEI0WAxXO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sTEI0WAxXO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sTEI0WAxXO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-sTEI0WAxXO .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sTEJn1dtIv .modal-body .close {
  background: #1b1b1b;
}
.cid-sTEJn1dtIv .modal-body .close span {
  font-style: normal;
}
.cid-sTEJn1dtIv .carousel-inner > .active,
.cid-sTEJn1dtIv .carousel-inner > .next,
.cid-sTEJn1dtIv .carousel-inner > .prev {
  display: table;
}
.cid-sTEJn1dtIv .carousel-control .icon-next,
.cid-sTEJn1dtIv .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sTEJn1dtIv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sTEJn1dtIv .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sTEJn1dtIv .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sTEJn1dtIv .boxed-slider > div {
  position: relative;
}
.cid-sTEJn1dtIv .container img {
  width: 100%;
}
.cid-sTEJn1dtIv .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sTEJn1dtIv .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sTEJn1dtIv .mbr-table-cell {
  padding: 0;
}
.cid-sTEJn1dtIv .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sTEJn1dtIv .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sTEJn1dtIv .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sTEJn1dtIv .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-sTEJn1dtIv .carousel-item .container {
    width: 100%;
  }
}
.cid-sTEJn1dtIv .carousel-item-next.carousel-item-left,
.cid-sTEJn1dtIv .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-sTEJn1dtIv .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sTEJn1dtIv .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators li.active,
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators li::after,
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sTEJn1dtIv .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sTEJn1dtIv .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sTEJn1dtIv .mbr-slider > .container img {
  width: 100%;
}
.cid-sTEJn1dtIv .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sTEJn1dtIv .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sTEJn1dtIv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sTEJn1dtIv .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sTEJn1dtIv .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sTEJn1dtIv .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-sTEJn1dtIv .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sTEJn1dtIv .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sTEJn1dtIv .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sTEJn1dtIv .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sTEJn1dtIv .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sTEJn1dtIv .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sTEJn1dtIv .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sTENXCXML6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sTENXCXML6 .mbr-section-title {
  color: #171b41;
}
.cid-uMxR8Jb4gz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #171b41;
}
.cid-uMxR8Jb4gz .mbr-section-head,
.cid-uMxR8Jb4gz .gallery_item {
  margin-bottom: 6rem;
}
.cid-uMxR8Jb4gz .mbr-section-subtitle {
  margin-bottom: 0.5rem;
}
.cid-uMxR8Jb4gz .mbr-section-title {
  line-height: .95;
  color: #ffffff;
}
.cid-uMxR8Jb4gz .box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.cid-uMxR8Jb4gz .gallery-wrap-left {
  padding-right: 2rem;
  max-width: 66%;
  width: 66%;
}
.cid-uMxR8Jb4gz .gallery-wrap-right {
  padding-left: 2rem;
  max-width: 33%;
  width: 33%;
}
.cid-uMxR8Jb4gz .item-img,
.cid-uMxR8Jb4gz img {
  max-width: 100%;
  object-fit: cover;
}
.cid-uMxR8Jb4gz .gallery-wrap-50 .item_left {
  padding-right: 1rem;
}
.cid-uMxR8Jb4gz .gallery-wrap-50 .item_right {
  padding-left: 1rem;
}
.cid-uMxR8Jb4gz .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.5rem;
}
.cid-uMxR8Jb4gz .item-title {
  text-align: left;
  flex: 1 1 0;
  color: #ffffff;
}
.cid-uMxR8Jb4gz .item-subtitle {
  text-align: right;
  flex: 1 1 0;
  color: #8cbf20;
}
@media (max-width: 991px) {
  .cid-uMxR8Jb4gz .gallery-wrap-left {
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .cid-uMxR8Jb4gz .gallery-wrap-right {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uMxR8Jb4gz .mbr-section-head,
  .cid-uMxR8Jb4gz .gallery_item {
    margin-bottom: 3rem;
  }
  .cid-uMxR8Jb4gz .gallery-wrap-50 .item_left {
    padding-right: 0;
  }
  .cid-uMxR8Jb4gz .gallery-wrap-50 .item_right {
    padding-left: 0;
  }
}
.cid-sTF5fOOZ7F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sTF5fOOZ7F .mbr-section-title {
  color: #171b41;
}
.cid-uLSNNvfCRr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #8cbf20;
}
.cid-uLSNNvfCRr img {
  width: 180px;
  margin: auto;
}
.cid-uLSNNvfCRr .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-uLSNNvfCRr .card:hover {
  transform: scale(0.9);
}
@media (min-width: 992px) {
  .cid-uLSNNvfCRr .card {
    max-width: 20%;
  }
}
.cid-uLSNNvfCRr .mbr-section-title {
  color: #171b41;
}
.cid-sTFiy2yOqQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #171b41;
}
@media (max-width: 767px) {
  .cid-sTFiy2yOqQ .content {
    text-align: center;
  }
  .cid-sTFiy2yOqQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sTFiy2yOqQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sTFiy2yOqQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sTFiy2yOqQ .media-wrap img {
  height: 6rem;
}
.cid-sTFiy2yOqQ .mbr-text {
  color: #8d97ad;
}
.cid-sTFiy2yOqQ .p-title {
  font-size: 17px;
}
.cid-sTFiy2yOqQ .p-title span {
  color: #111111;
}
.cid-sTFiy2yOqQ .title-card {
  font-size: 1.3rem;
}
.cid-sTFiy2yOqQ .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sTFiy2yOqQ .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sTFiy2yOqQ .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sTFiy2yOqQ .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sTFiy2yOqQ .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sTFiy2yOqQ .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sTFiy2yOqQ .copyright img {
  margin-right: 10px;
}
.cid-sTFiy2yOqQ .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sTFiy2yOqQ .icon-transition span:hover {
  background-color: #0cef46;
}
@media (max-width: 767px) {
  .cid-sTFiy2yOqQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sTFiy2yOqQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sTFiy2yOqQ .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sTFiy2yOqQ H5 {
  color: #ffffff;
}
.cid-sTFiy2yOqQ .p-title,
.cid-sTFiy2yOqQ .social-media {
  color: #ffffff;
}
.cid-uDOE0b2XEh {
  height: 0 !important;
}
.cid-uDOE0b2XEh .navbar {
  background: #ffffff;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-uDOE0b2XEh .navbar .show {
  height: 100vh;
}
.cid-uDOE0b2XEh .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uDOE0b2XEh .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uDOE0b2XEh .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uDOE0b2XEh .bottom {
  padding-bottom: 2rem;
}
.cid-uDOE0b2XEh a {
  font-style: normal;
}
.cid-uDOE0b2XEh .dropdown-backdrop {
  display: none;
}
.cid-uDOE0b2XEh .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-uDOE0b2XEh .nav-dropdown {
  padding-top: 8rem;
}
.cid-uDOE0b2XEh .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uDOE0b2XEh .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uDOE0b2XEh .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uDOE0b2XEh .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uDOE0b2XEh .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uDOE0b2XEh .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-uDOE0b2XEh .navbar-nav {
  width: 100% !important;
}
.cid-uDOE0b2XEh .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uDOE0b2XEh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uDOE0b2XEh .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uDOE0b2XEh .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-uDOE0b2XEh .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uDOE0b2XEh .dropdown-item:hover,
.cid-uDOE0b2XEh .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uDOE0b2XEh .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uDOE0b2XEh .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uDOE0b2XEh .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uDOE0b2XEh .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uDOE0b2XEh .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uDOE0b2XEh .navbar-logo {
  margin-right: 0 !important;
}
.cid-uDOE0b2XEh .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uDOE0b2XEh .menu-logo {
  position: absolute !important;
}
.cid-uDOE0b2XEh .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uDOE0b2XEh .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uDOE0b2XEh .navbar-toggler {
  background: #ffffff;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uDOE0b2XEh .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-uDOE0b2XEh .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uDOE0b2XEh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uDOE0b2XEh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uDOE0b2XEh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uDOE0b2XEh .opened,
.cid-uDOE0b2XEh .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uDOE0b2XEh .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uDOE0b2XEh .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uDOE0b2XEh .opened,
  .cid-uDOE0b2XEh .show,
  .cid-uDOE0b2XEh .navbar {
    width: 100% !important;
  }
  .cid-uDOE0b2XEh .dropdown-toggle {
    margin: auto !important;
  }
  .cid-uDOE0b2XEh .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-uDOE0b2XEh .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uDOE0b2XEh .nav-item:focus,
.cid-uDOE0b2XEh .nav-link:focus {
  outline: none;
}
.cid-uDOE0b2XEh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uDOE0b2XEh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uDOE0b2XEh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uDOE0b2XEh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uDOE0b2XEh .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uDOE0b2XEh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uDOE0b2XEh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDOE0b2XEh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uDOE0b2XEh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDOE0b2XEh .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uDOE0b2XEh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uDOE0b2XEh button.navbar-toggler:focus {
  outline: none;
}
.cid-uDOE0b2XEh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uDOE0b2XEh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDOE0b2XEh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDOE0b2XEh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDOE0b2XEh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDOE0b2XEh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDOE0b2XEh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDOE0b2XEh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDOE0b2XEh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDOE0b2XEh .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDOE0b2XEh .collapsed .btn {
  display: -webkit-flex;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.collapsing,
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uDOE0b2XEh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uDOE0b2XEh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uDOE0b2XEh .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uDOE0b2XEh .collapsed button.navbar-toggler {
  display: block;
}
.cid-uDOE0b2XEh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uDOE0b2XEh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uDOE0b2XEh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uDOE0b2XEh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uDOE0b2XEh .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDOE0b2XEh img {
    height: 3.8rem !important;
  }
  .cid-uDOE0b2XEh .btn {
    display: -webkit-flex;
  }
  .cid-uDOE0b2XEh button.navbar-toggler {
    display: block;
  }
  .cid-uDOE0b2XEh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uDOE0b2XEh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uDOE0b2XEh .navbar-collapse.collapsing,
  .cid-uDOE0b2XEh .navbar-collapse.show {
    display: block !important;
  }
  .cid-uDOE0b2XEh .navbar-collapse.collapsing .navbar-nav,
  .cid-uDOE0b2XEh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uDOE0b2XEh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uDOE0b2XEh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uDOE0b2XEh .navbar-collapse.collapsing .navbar-buttons,
  .cid-uDOE0b2XEh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uDOE0b2XEh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uDOE0b2XEh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uDOE0b2XEh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uDOE0b2XEh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uDOE0b2XEh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uDOE0b2XEh .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMxWGbGHPO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eae8e4;
}
.cid-uMxWGbGHPO .row {
  align-items: center;
}
.cid-uMxWGbGHPO .card:hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -2.5rem) scale(0.75);
}
.cid-uMxWGbGHPO .card .square_fill {
  background-color: #10158a;
  transform: translate(-2.5rem, 0rem);
}
.cid-uMxWGbGHPO .card .square_null {
  transform: rotate(45deg) translate(-1rem, -1.5rem);
}
.cid-uMxWGbGHPO .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uMxWGbGHPO .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uMxWGbGHPO .square_animation .square_null {
  z-index: 1;
  border: 1px solid #171b41;
}
.cid-uMxWGbGHPO .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uMxWGbGHPO .main_title {
  margin-bottom: 2.5rem;
}
.cid-uMxWGbGHPO .card_subtitle {
  margin-bottom: .75rem;
}
.cid-uMxWGbGHPO .mbr-text {
  margin-bottom: 2.5rem;
  line-height: 1.23;
}
.cid-uMxWGbGHPO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uMxWGbGHPO .card-wrapper {
    padding-right: 4rem;
    padding-left: 5rem;
    padding-top: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uMxWGbGHPO .row {
    flex-direction: column-reverse;
  }
  .cid-uMxWGbGHPO .card-wrapper {
    padding: 0;
    padding-top: 2rem;
  }
  .cid-uMxWGbGHPO .main_title {
    margin-bottom: 1.5rem;
  }
  .cid-uMxWGbGHPO .card_subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMxWGbGHPO .mbr-text {
    margin-bottom: 1.5rem;
  }
  .cid-uMxWGbGHPO .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uMxWGbGHPO .square_animation {
    margin-bottom: 2.5rem;
  }
  .cid-uMxWGbGHPO .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uMxWGbGHPO .card:hover .square_fill {
    transform: rotate(-45deg) translate(-1.75rem, -1.5rem) scale(0.75);
  }
  .cid-uMxWGbGHPO .card .square_fill {
    transform: translate(-1.75rem, 1.25rem);
  }
  .cid-uMxWGbGHPO .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
}
@media (max-width: 767px) {
  .cid-uMxWGbGHPO .card-wrapper {
    padding-top: 1rem;
  }
  .cid-uMxWGbGHPO .image-wrapper {
    margin-bottom: 1rem;
  }
  .cid-uMxWGbGHPO .card:hover .square_fill {
    transform: none;
  }
  .cid-uMxWGbGHPO .card .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uMxWGbGHPO .card .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uMxWGbGHPO .square_animation {
    margin-bottom: 2rem;
  }
  .cid-uMxWGbGHPO .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.cid-uMAqrHcphz {
  background-color: #8cbf20;
}
.cid-uMAqrHcphz .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-uMAqrHcphz .mbr-text {
  line-height: 1.15;
}
.cid-uMAqrHcphz .bottom_box {
  margin-top: 4rem;
}
.cid-uMAqrHcphz .title {
  position: relative;
  z-index: 1;
}
.cid-uMAqrHcphz .name {
  margin-bottom: 1rem;
}
.cid-uMAqrHcphz b,
.cid-uMAqrHcphz strong {
  font-weight: 500;
  color: #ffffff;
}
.cid-uMAqrHcphz .linkBtn {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uMAqrHcphz .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-uMAqrHcphz .bottom_box {
    margin-top: 2rem;
    text-align: left;
  }
  .cid-uMAqrHcphz .linkBtn {
    margin-top: 1.5rem;
  }
  .cid-uMAqrHcphz .name {
    margin-bottom: .5rem;
  }
}
.cid-uMAqrHcphz .mbr-text,
.cid-uMAqrHcphz .linkBtn {
  color: #171b41;
}
.cid-uMGQ5CaIYC {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #eae8e4;
}
.cid-uMGQ5CaIYC .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMGQ5CaIYC .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
  color: #8cbf20;
}
@media (max-width: 767px) {
  .cid-uMGQ5CaIYC .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMGQ5CaIYC .mbr-text {
    margin-top: .75rem;
  }
}
.cid-uMGQ5CaIYC .mbr-section-title {
  color: #171b41;
}
.cid-uMDUesYrsm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #171b41;
}
@media (max-width: 767px) {
  .cid-uMDUesYrsm .content {
    text-align: center;
  }
  .cid-uMDUesYrsm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMDUesYrsm .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uMDUesYrsm .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uMDUesYrsm .media-wrap img {
  height: 6rem;
}
.cid-uMDUesYrsm .mbr-text {
  color: #8d97ad;
}
.cid-uMDUesYrsm .p-title {
  font-size: 17px;
}
.cid-uMDUesYrsm .p-title span {
  color: #111111;
}
.cid-uMDUesYrsm .title-card {
  font-size: 1.3rem;
}
.cid-uMDUesYrsm .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMDUesYrsm .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMDUesYrsm .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-uMDUesYrsm .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-uMDUesYrsm .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-uMDUesYrsm .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMDUesYrsm .copyright img {
  margin-right: 10px;
}
.cid-uMDUesYrsm .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMDUesYrsm .icon-transition span:hover {
  background-color: #0cef46;
}
@media (max-width: 767px) {
  .cid-uMDUesYrsm .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uMDUesYrsm .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uMDUesYrsm .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMDUesYrsm H5 {
  color: #ffffff;
}
.cid-uMDUesYrsm .p-title,
.cid-uMDUesYrsm .social-media {
  color: #ffffff;
}
.cid-uLXNiS2ewM {
  height: 0 !important;
}
.cid-uLXNiS2ewM .navbar {
  background: #ffffff;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-uLXNiS2ewM .navbar .show {
  height: 100vh;
}
.cid-uLXNiS2ewM .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uLXNiS2ewM .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uLXNiS2ewM .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uLXNiS2ewM .bottom {
  padding-bottom: 2rem;
}
.cid-uLXNiS2ewM a {
  font-style: normal;
}
.cid-uLXNiS2ewM .dropdown-backdrop {
  display: none;
}
.cid-uLXNiS2ewM .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-uLXNiS2ewM .nav-dropdown {
  padding-top: 8rem;
}
.cid-uLXNiS2ewM .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uLXNiS2ewM .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uLXNiS2ewM .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uLXNiS2ewM .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uLXNiS2ewM .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uLXNiS2ewM .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-uLXNiS2ewM .navbar-nav {
  width: 100% !important;
}
.cid-uLXNiS2ewM .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uLXNiS2ewM .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uLXNiS2ewM .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uLXNiS2ewM .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-uLXNiS2ewM .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uLXNiS2ewM .dropdown-item:hover,
.cid-uLXNiS2ewM .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uLXNiS2ewM .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uLXNiS2ewM .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uLXNiS2ewM .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uLXNiS2ewM .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uLXNiS2ewM .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uLXNiS2ewM .navbar-logo {
  margin-right: 0 !important;
}
.cid-uLXNiS2ewM .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uLXNiS2ewM .menu-logo {
  position: absolute !important;
}
.cid-uLXNiS2ewM .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uLXNiS2ewM .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uLXNiS2ewM .navbar-toggler {
  background: #ffffff;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uLXNiS2ewM .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-uLXNiS2ewM .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uLXNiS2ewM .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uLXNiS2ewM .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uLXNiS2ewM .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uLXNiS2ewM .opened,
.cid-uLXNiS2ewM .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uLXNiS2ewM .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uLXNiS2ewM .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uLXNiS2ewM .opened,
  .cid-uLXNiS2ewM .show,
  .cid-uLXNiS2ewM .navbar {
    width: 100% !important;
  }
  .cid-uLXNiS2ewM .dropdown-toggle {
    margin: auto !important;
  }
  .cid-uLXNiS2ewM .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-uLXNiS2ewM .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uLXNiS2ewM .nav-item:focus,
.cid-uLXNiS2ewM .nav-link:focus {
  outline: none;
}
.cid-uLXNiS2ewM .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uLXNiS2ewM .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uLXNiS2ewM .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLXNiS2ewM .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uLXNiS2ewM .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uLXNiS2ewM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uLXNiS2ewM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLXNiS2ewM .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uLXNiS2ewM .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLXNiS2ewM .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uLXNiS2ewM button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uLXNiS2ewM button.navbar-toggler:focus {
  outline: none;
}
.cid-uLXNiS2ewM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uLXNiS2ewM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLXNiS2ewM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLXNiS2ewM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLXNiS2ewM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLXNiS2ewM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLXNiS2ewM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLXNiS2ewM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLXNiS2ewM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLXNiS2ewM .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uLXNiS2ewM .collapsed .btn {
  display: -webkit-flex;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.collapsing,
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uLXNiS2ewM .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uLXNiS2ewM .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uLXNiS2ewM .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 89.6875vh;
  }
}
.cid-uLXNiS2ewM .collapsed button.navbar-toggler {
  display: block;
}
.cid-uLXNiS2ewM .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uLXNiS2ewM .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uLXNiS2ewM .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uLXNiS2ewM .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uLXNiS2ewM .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uLXNiS2ewM img {
    height: 3.8rem !important;
  }
  .cid-uLXNiS2ewM .btn {
    display: -webkit-flex;
  }
  .cid-uLXNiS2ewM button.navbar-toggler {
    display: block;
  }
  .cid-uLXNiS2ewM .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uLXNiS2ewM .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uLXNiS2ewM .navbar-collapse.collapsing,
  .cid-uLXNiS2ewM .navbar-collapse.show {
    display: block !important;
  }
  .cid-uLXNiS2ewM .navbar-collapse.collapsing .navbar-nav,
  .cid-uLXNiS2ewM .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uLXNiS2ewM .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uLXNiS2ewM .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uLXNiS2ewM .navbar-collapse.collapsing .navbar-buttons,
  .cid-uLXNiS2ewM .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uLXNiS2ewM .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uLXNiS2ewM .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uLXNiS2ewM .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uLXNiS2ewM .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uLXNiS2ewM .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uLXNiS2ewM .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMAsgKYYVB {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #8cbf20;
}
.cid-uMAsgKYYVB .main_header {
  margin-bottom: 8rem;
}
.cid-uMAsgKYYVB .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAsgKYYVB .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-uMAsgKYYVB .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-uMAsgKYYVB .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-uMAsgKYYVB .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-uMAsgKYYVB .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #ff9966;
}
.cid-uMAsgKYYVB .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-uMAsgKYYVB .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-uMAsgKYYVB .card_item:nth-child(2) .square_fill {
  background-color: #10158a;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-uMAsgKYYVB .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-uMAsgKYYVB .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uMAsgKYYVB .card_item:nth-child(3) .square_fill {
  background-color: #47b5ed;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uMAsgKYYVB .card-box {
  height: 100%;
}
.cid-uMAsgKYYVB .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-uMAsgKYYVB .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uMAsgKYYVB .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uMAsgKYYVB .square_animation .square_null {
  z-index: 1;
  border: 1px solid #171b41;
}
.cid-uMAsgKYYVB .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uMAsgKYYVB .card-title {
  margin-bottom: 1.75rem;
}
.cid-uMAsgKYYVB .card-text {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uMAsgKYYVB .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-uMAsgKYYVB .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-uMAsgKYYVB .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uMAsgKYYVB .item-wrapper {
    padding: 0;
  }
  .cid-uMAsgKYYVB .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-uMAsgKYYVB .main_header {
    margin-bottom: 4rem;
  }
  .cid-uMAsgKYYVB .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAsgKYYVB .mbr-text {
    margin-top: .75rem;
  }
  .cid-uMAsgKYYVB .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uMAsgKYYVB .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-uMAsgKYYVB .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uMAsgKYYVB .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-uMAsgKYYVB .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uMAsgKYYVB .card-title {
    margin-bottom: 1.25rem;
  }
  .cid-uMAsgKYYVB .card-text {
    margin-bottom: 1.25rem;
  }
}
.cid-uMAsgKYYVB .mbr-section-title {
  color: #ffffff;
}
.cid-uLXNOMwFrq {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLXNOMwFrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLXNOMwFrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLXNOMwFrq .mbr-text {
  color: #767676;
}
.cid-uLXNOMwFrq .mbr-section-subtitle {
  color: #767676;
}
.cid-uLXNOMwFrq .title .num {
  width: 100%;
  display: block;
}
.cid-uLXNOMwFrq .title .card-title {
  z-index: 1;
}
.cid-uLXNOMwFrq .num {
  color: #8cbf20;
}
@media (max-width: 767px) {
  .cid-uLXNOMwFrq * {
    text-align: center !important;
  }
  .cid-uLXNOMwFrq .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uLXNOMwFrq .card-title,
.cid-uLXNOMwFrq .card-img {
  color: #171b41;
}
.cid-uLXO5rGlQW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLXO5rGlQW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLXO5rGlQW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLXO5rGlQW .mbr-text {
  color: #767676;
}
.cid-uLXO5rGlQW .mbr-section-subtitle {
  color: #767676;
}
.cid-uLXO5rGlQW .title .num {
  width: 100%;
  display: block;
}
.cid-uLXO5rGlQW .title .card-title {
  z-index: 1;
}
.cid-uLXO5rGlQW .num {
  color: #8cbf20;
}
@media (max-width: 767px) {
  .cid-uLXO5rGlQW * {
    text-align: center !important;
  }
  .cid-uLXO5rGlQW .content-column {
    margin-bottom: 2rem;
  }
}
.cid-uLXO5rGlQW .card-title,
.cid-uLXO5rGlQW .card-img {
  color: #171b41;
}
.cid-uLY653YWzL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uLY653YWzL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLY653YWzL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLY653YWzL .mbr-section-title {
  color: #171b41;
}
.cid-uMDUtNqsBC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #171b41;
}
@media (max-width: 767px) {
  .cid-uMDUtNqsBC .content {
    text-align: center;
  }
  .cid-uMDUtNqsBC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMDUtNqsBC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uMDUtNqsBC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uMDUtNqsBC .media-wrap img {
  height: 6rem;
}
.cid-uMDUtNqsBC .mbr-text {
  color: #8d97ad;
}
.cid-uMDUtNqsBC .p-title {
  font-size: 17px;
}
.cid-uMDUtNqsBC .p-title span {
  color: #111111;
}
.cid-uMDUtNqsBC .title-card {
  font-size: 1.3rem;
}
.cid-uMDUtNqsBC .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMDUtNqsBC .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMDUtNqsBC .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-uMDUtNqsBC .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-uMDUtNqsBC .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-uMDUtNqsBC .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMDUtNqsBC .copyright img {
  margin-right: 10px;
}
.cid-uMDUtNqsBC .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMDUtNqsBC .icon-transition span:hover {
  background-color: #0cef46;
}
@media (max-width: 767px) {
  .cid-uMDUtNqsBC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uMDUtNqsBC .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uMDUtNqsBC .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMDUtNqsBC H5 {
  color: #ffffff;
}
.cid-uMDUtNqsBC .p-title,
.cid-uMDUtNqsBC .social-media {
  color: #ffffff;
}
.cid-uLY7eOd3Hz {
  height: 0 !important;
}
.cid-uLY7eOd3Hz .navbar {
  background: #ffffff;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-uLY7eOd3Hz .navbar .show {
  height: 100vh;
}
.cid-uLY7eOd3Hz .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uLY7eOd3Hz .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uLY7eOd3Hz .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uLY7eOd3Hz .bottom {
  padding-bottom: 2rem;
}
.cid-uLY7eOd3Hz a {
  font-style: normal;
}
.cid-uLY7eOd3Hz .dropdown-backdrop {
  display: none;
}
.cid-uLY7eOd3Hz .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-uLY7eOd3Hz .nav-dropdown {
  padding-top: 8rem;
}
.cid-uLY7eOd3Hz .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uLY7eOd3Hz .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uLY7eOd3Hz .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uLY7eOd3Hz .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uLY7eOd3Hz .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uLY7eOd3Hz .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-uLY7eOd3Hz .navbar-nav {
  width: 100% !important;
}
.cid-uLY7eOd3Hz .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uLY7eOd3Hz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uLY7eOd3Hz .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uLY7eOd3Hz .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-uLY7eOd3Hz .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uLY7eOd3Hz .dropdown-item:hover,
.cid-uLY7eOd3Hz .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uLY7eOd3Hz .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uLY7eOd3Hz .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uLY7eOd3Hz .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uLY7eOd3Hz .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uLY7eOd3Hz .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uLY7eOd3Hz .navbar-logo {
  margin-right: 0 !important;
}
.cid-uLY7eOd3Hz .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uLY7eOd3Hz .menu-logo {
  position: absolute !important;
}
.cid-uLY7eOd3Hz .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uLY7eOd3Hz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uLY7eOd3Hz .navbar-toggler {
  background: #ffffff;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uLY7eOd3Hz .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-uLY7eOd3Hz .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uLY7eOd3Hz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uLY7eOd3Hz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uLY7eOd3Hz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uLY7eOd3Hz .opened,
.cid-uLY7eOd3Hz .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uLY7eOd3Hz .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uLY7eOd3Hz .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uLY7eOd3Hz .opened,
  .cid-uLY7eOd3Hz .show,
  .cid-uLY7eOd3Hz .navbar {
    width: 100% !important;
  }
  .cid-uLY7eOd3Hz .dropdown-toggle {
    margin: auto !important;
  }
  .cid-uLY7eOd3Hz .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-uLY7eOd3Hz .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uLY7eOd3Hz .nav-item:focus,
.cid-uLY7eOd3Hz .nav-link:focus {
  outline: none;
}
.cid-uLY7eOd3Hz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uLY7eOd3Hz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uLY7eOd3Hz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uLY7eOd3Hz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uLY7eOd3Hz .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uLY7eOd3Hz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uLY7eOd3Hz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLY7eOd3Hz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uLY7eOd3Hz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLY7eOd3Hz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uLY7eOd3Hz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uLY7eOd3Hz button.navbar-toggler:focus {
  outline: none;
}
.cid-uLY7eOd3Hz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uLY7eOd3Hz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLY7eOd3Hz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLY7eOd3Hz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLY7eOd3Hz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLY7eOd3Hz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLY7eOd3Hz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLY7eOd3Hz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLY7eOd3Hz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLY7eOd3Hz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uLY7eOd3Hz .collapsed .btn {
  display: -webkit-flex;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.collapsing,
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uLY7eOd3Hz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uLY7eOd3Hz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 92.5vh;
  }
}
.cid-uLY7eOd3Hz .collapsed button.navbar-toggler {
  display: block;
}
.cid-uLY7eOd3Hz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uLY7eOd3Hz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uLY7eOd3Hz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uLY7eOd3Hz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uLY7eOd3Hz .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uLY7eOd3Hz img {
    height: 3.8rem !important;
  }
  .cid-uLY7eOd3Hz .btn {
    display: -webkit-flex;
  }
  .cid-uLY7eOd3Hz button.navbar-toggler {
    display: block;
  }
  .cid-uLY7eOd3Hz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uLY7eOd3Hz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uLY7eOd3Hz .navbar-collapse.collapsing,
  .cid-uLY7eOd3Hz .navbar-collapse.show {
    display: block !important;
  }
  .cid-uLY7eOd3Hz .navbar-collapse.collapsing .navbar-nav,
  .cid-uLY7eOd3Hz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uLY7eOd3Hz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uLY7eOd3Hz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uLY7eOd3Hz .navbar-collapse.collapsing .navbar-buttons,
  .cid-uLY7eOd3Hz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uLY7eOd3Hz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uLY7eOd3Hz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uLY7eOd3Hz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uLY7eOd3Hz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uLY7eOd3Hz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uLY7eOd3Hz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMAtDl7UaX {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #171b41;
}
.cid-uMAtDl7UaX .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAtDl7UaX .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
@media (max-width: 767px) {
  .cid-uMAtDl7UaX .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAtDl7UaX .mbr-text {
    margin-top: .75rem;
  }
}
.cid-uMAtDl7UaX .mbr-section-title {
  color: #ffffff;
}
.cid-uMAvrqQdxA {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #eae8e4;
}
.cid-uMAvrqQdxA .main_header {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-uMAvrqQdxA .main_header {
    margin-bottom: 3rem;
  }
}
.cid-uMAvrqQdxA .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAvrqQdxA .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-uMAvrqQdxA .mbr-text {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.cid-uMAvrqQdxA .content_box {
  max-width: 42rem;
}
.cid-uMAvrqQdxA img,
.cid-uMAvrqQdxA .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uMAvrqQdxA .item:focus,
.cid-uMAvrqQdxA span:focus {
  outline: none;
}
.cid-uMAvrqQdxA .item-img {
  position: relative;
}
.cid-uMAvrqQdxA .item_descr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
  text-align: center;
  cursor: default;
  padding: 0 1rem;
}
.cid-uMAvrqQdxA .item {
  cursor: pointer;
}
.cid-uMAvrqQdxA .item:nth-child(odd) .item-wrapper {
  padding-right: 1rem;
}
.cid-uMAvrqQdxA .item:nth-child(even) .item-wrapper {
  padding-left: 1rem;
}
.cid-uMAvrqQdxA .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-uMAvrqQdxA .item-wrapper {
    padding: 0 0 3rem 0 !important;
  }
}
.cid-uMAvrqQdxA .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uMAvrqQdxA .item-title {
  text-align: left;
  flex: 1 1 0;
}
.cid-uMAvrqQdxA .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 767px) {
  .cid-uMAvrqQdxA .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAvrqQdxA .mbr-text {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .cid-uMAvrqQdxA .item-content {
    margin-bottom: .75rem;
  }
}
.cid-uMAwLFi850 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #eae8e4;
}
.cid-uMAwLFi850 .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAwLFi850 .mbr-section-title {
  margin-bottom: 1.5rem;
}
.cid-uMAwLFi850 .mbr-text {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.cid-uMAwLFi850 .content_box {
  max-width: 42rem;
}
.cid-uMAwLFi850 img,
.cid-uMAwLFi850 .item-img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.cid-uMAwLFi850 .item:focus,
.cid-uMAwLFi850 span:focus {
  outline: none;
}
.cid-uMAwLFi850 .item-img {
  position: relative;
}
.cid-uMAwLFi850 .item_descr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  width: 100%;
  text-align: center;
  cursor: default;
  padding: 0 1rem;
}
.cid-uMAwLFi850 .item {
  cursor: pointer;
}
.cid-uMAwLFi850 .item:nth-child(odd) .item-wrapper {
  padding-right: 1rem;
}
.cid-uMAwLFi850 .item:nth-child(even) .item-wrapper {
  padding-left: 1rem;
}
.cid-uMAwLFi850 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  padding-bottom: 6rem;
}
@media (max-width: 991px) {
  .cid-uMAwLFi850 .item-wrapper {
    padding: 0 0 3rem 0 !important;
  }
}
.cid-uMAwLFi850 .item-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-uMAwLFi850 .item-title {
  text-align: left;
  flex: 1 1 0;
}
.cid-uMAwLFi850 .item-subtitle {
  text-align: right;
  flex: 1 1 0;
}
@media (max-width: 767px) {
  .cid-uMAwLFi850 .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAwLFi850 .mbr-text {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .cid-uMAwLFi850 .item-content {
    margin-bottom: .75rem;
  }
}
.cid-uMDUkSQH3F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #171b41;
}
@media (max-width: 767px) {
  .cid-uMDUkSQH3F .content {
    text-align: center;
  }
  .cid-uMDUkSQH3F .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMDUkSQH3F .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uMDUkSQH3F .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uMDUkSQH3F .media-wrap img {
  height: 6rem;
}
.cid-uMDUkSQH3F .mbr-text {
  color: #8d97ad;
}
.cid-uMDUkSQH3F .p-title {
  font-size: 17px;
}
.cid-uMDUkSQH3F .p-title span {
  color: #111111;
}
.cid-uMDUkSQH3F .title-card {
  font-size: 1.3rem;
}
.cid-uMDUkSQH3F .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMDUkSQH3F .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMDUkSQH3F .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-uMDUkSQH3F .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-uMDUkSQH3F .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-uMDUkSQH3F .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMDUkSQH3F .copyright img {
  margin-right: 10px;
}
.cid-uMDUkSQH3F .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMDUkSQH3F .icon-transition span:hover {
  background-color: #0cef46;
}
@media (max-width: 767px) {
  .cid-uMDUkSQH3F .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uMDUkSQH3F .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uMDUkSQH3F .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMDUkSQH3F H5 {
  color: #ffffff;
}
.cid-uMDUkSQH3F .p-title,
.cid-uMDUkSQH3F .social-media {
  color: #ffffff;
}
.cid-uMAx0e2hSZ {
  height: 0 !important;
}
.cid-uMAx0e2hSZ .navbar {
  background: #ffffff;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-uMAx0e2hSZ .navbar .show {
  height: 100vh;
}
.cid-uMAx0e2hSZ .navbar-collapse {
  max-height: 100vh !important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uMAx0e2hSZ .navbar-buttons {
  flex-wrap: wrap;
}
.cid-uMAx0e2hSZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uMAx0e2hSZ .bottom {
  padding-bottom: 2rem;
}
.cid-uMAx0e2hSZ a {
  font-style: normal;
}
.cid-uMAx0e2hSZ .dropdown-backdrop {
  display: none;
}
.cid-uMAx0e2hSZ .dropdown-toggle::after {
  border-top: 0 !important;
  margin-left: 10px !important;
}
.cid-uMAx0e2hSZ .nav-dropdown {
  padding-top: 8rem;
}
.cid-uMAx0e2hSZ .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-uMAx0e2hSZ .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 2px;
}
.cid-uMAx0e2hSZ .nav-link:after {
  content: '';
  color: #333;
  transition: all 0.3s;
  width: 20px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #1c1c1c;
  margin-left: 10px;
}
.cid-uMAx0e2hSZ .nav-link:hover:after {
  margin-left: -15px !important;
}
.cid-uMAx0e2hSZ .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uMAx0e2hSZ .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem 0.65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-uMAx0e2hSZ .navbar-nav {
  width: 100% !important;
}
.cid-uMAx0e2hSZ .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uMAx0e2hSZ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uMAx0e2hSZ .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-uMAx0e2hSZ .dropdown-menu {
  position: absolute !important;
  width: fit-content !important;
}
.cid-uMAx0e2hSZ .dropdown-item {
  background: #1c1c1c;
  color: #ffffff !important;
}
.cid-uMAx0e2hSZ .dropdown-item:hover,
.cid-uMAx0e2hSZ .dropdown-item:active {
  color: #ffffff !important;
}
.cid-uMAx0e2hSZ .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-uMAx0e2hSZ .soc-item {
  width: 45px;
  height: 45px;
  background: #232323;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-uMAx0e2hSZ .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  padding-top: 4px;
  display: block;
}
.cid-uMAx0e2hSZ .soc-item:hover span {
  color: #c1c1c1 !important;
}
.cid-uMAx0e2hSZ .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #1c1c1c;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-uMAx0e2hSZ .navbar-logo {
  margin-right: 0 !important;
}
.cid-uMAx0e2hSZ .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-uMAx0e2hSZ .menu-logo {
  position: absolute !important;
}
.cid-uMAx0e2hSZ .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uMAx0e2hSZ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uMAx0e2hSZ .navbar-toggler {
  background: #ffffff;
  width: 75px !important;
  height: 75px !important;
  border-radius: 0 !important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-uMAx0e2hSZ .navbar-brand {
  background: transparent;
  margin: 0 !important;
  padding: 10px !important;
  padding-top: 20px;
}
.cid-uMAx0e2hSZ .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-uMAx0e2hSZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uMAx0e2hSZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uMAx0e2hSZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uMAx0e2hSZ .opened,
.cid-uMAx0e2hSZ .show {
  height: 100%;
  width: 300px !important;
  right: 0;
  transition: none;
  background: #ffffff !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-uMAx0e2hSZ .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-uMAx0e2hSZ .nav-dropdown {
    padding-top: 4rem;
  }
  .cid-uMAx0e2hSZ .opened,
  .cid-uMAx0e2hSZ .show,
  .cid-uMAx0e2hSZ .navbar {
    width: 100% !important;
  }
  .cid-uMAx0e2hSZ .dropdown-toggle {
    margin: auto !important;
  }
  .cid-uMAx0e2hSZ .dropdown-menu {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: auto;
  }
  .cid-uMAx0e2hSZ .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-uMAx0e2hSZ .nav-item:focus,
.cid-uMAx0e2hSZ .nav-link:focus {
  outline: none;
}
.cid-uMAx0e2hSZ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-uMAx0e2hSZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uMAx0e2hSZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMAx0e2hSZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uMAx0e2hSZ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uMAx0e2hSZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uMAx0e2hSZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMAx0e2hSZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uMAx0e2hSZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMAx0e2hSZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uMAx0e2hSZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-uMAx0e2hSZ button.navbar-toggler:focus {
  outline: none;
}
.cid-uMAx0e2hSZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #1c1c1c;
}
.cid-uMAx0e2hSZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMAx0e2hSZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMAx0e2hSZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMAx0e2hSZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMAx0e2hSZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMAx0e2hSZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMAx0e2hSZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMAx0e2hSZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMAx0e2hSZ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMAx0e2hSZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.collapsing,
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uMAx0e2hSZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uMAx0e2hSZ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 89.6875vh;
  }
}
.cid-uMAx0e2hSZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uMAx0e2hSZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uMAx0e2hSZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-uMAx0e2hSZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uMAx0e2hSZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uMAx0e2hSZ .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMAx0e2hSZ img {
    height: 3.8rem !important;
  }
  .cid-uMAx0e2hSZ .btn {
    display: -webkit-flex;
  }
  .cid-uMAx0e2hSZ button.navbar-toggler {
    display: block;
  }
  .cid-uMAx0e2hSZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uMAx0e2hSZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uMAx0e2hSZ .navbar-collapse.collapsing,
  .cid-uMAx0e2hSZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uMAx0e2hSZ .navbar-collapse.collapsing .navbar-nav,
  .cid-uMAx0e2hSZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uMAx0e2hSZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uMAx0e2hSZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uMAx0e2hSZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uMAx0e2hSZ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uMAx0e2hSZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uMAx0e2hSZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uMAx0e2hSZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-uMAx0e2hSZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uMAx0e2hSZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-uMAx0e2hSZ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uMAx0eUKYU {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #171b41;
}
.cid-uMAx0eUKYU .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAx0eUKYU .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
@media (max-width: 767px) {
  .cid-uMAx0eUKYU .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAx0eUKYU .mbr-text {
    margin-top: .75rem;
  }
}
.cid-uMAx0eUKYU .mbr-section-title {
  color: #ffffff;
}
.cid-uMAxxH4ngT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #eae8e4;
}
.cid-uMAxxH4ngT .mbr-section-subtitle {
  margin-bottom: .75rem;
  line-height: 1;
}
.cid-uMAxxH4ngT .mbr-text {
  margin-top: 1.5rem;
  letter-spacing: -0.025rem;
}
.cid-uMAxxH4ngT form {
  margin-top: 2.5rem;
}
.cid-uMAxxH4ngT input::-webkit-input-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-uMAxxH4ngT input::-moz-placeholder {
  color: #373c42;
  opacity: .8;
}
.cid-uMAxxH4ngT .mbr-form .form-group {
  margin-bottom: 1rem;
}
.cid-uMAxxH4ngT .mbr-form .form-control {
  padding: .75rem 1rem;
  line-height: 1.5;
  border: 1px solid #dddddd;
  border-radius: 0 !important;
  background-color: #ffffff;
}
.cid-uMAxxH4ngT .mbr-form .form-control:focus {
  border-color: #111111;
}
.cid-uMAxxH4ngT .mbr-form textarea {
  height: 120px;
  background-color: #ffffff;
}
.cid-uMAxxH4ngT .mbr-form .btn {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none;
  min-height: auto !important;
  font-weight: 400;
}
.cid-uMAxxH4ngT .mbr-form .btn-primary-outline {
  padding: 0 !important;
  border-bottom: 1px solid currentColor !important;
}
.cid-uMAxxH4ngT .card_item {
  border-radius: 0 !important;
}
@media (min-width: 768px) {
  .cid-uMAxxH4ngT .card_item:nth-child(1) .card-box {
    padding: 2.5rem 0 2.5rem 2rem;
    padding: 2.5rem 2rem;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(2) .card-box {
    padding: 12rem 0 2.5rem 2rem;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(3) .card-box {
    padding: 6rem 2rem 2.5rem 2rem;
  }
}
.cid-uMAxxH4ngT .card_item:nth-child(1) .square_null {
  transform: translateX(2rem);
}
.cid-uMAxxH4ngT .card_item:nth-child(1) .square_fill {
  transform: translate(-5rem, -2rem);
  background-color: #ff9966;
}
.cid-uMAxxH4ngT .card_item:nth-child(1):hover .square_fill {
  transform: rotate(45deg) translate(-2rem, 2rem);
}
.cid-uMAxxH4ngT .card_item:nth-child(2):hover .square_fill {
  transform: rotate(-45deg) translate(0.25rem, -3rem) scale(0.75);
}
.cid-uMAxxH4ngT .card_item:nth-child(2) .square_fill {
  background-color: #10158a;
  transform: translate(-2.5rem, -0.5rem);
}
.cid-uMAxxH4ngT .card_item:nth-child(2) .square_null {
  transform: rotate(45deg) translate(-1rem, -2rem);
}
.cid-uMAxxH4ngT .card_item:nth-child(3):hover .square_fill {
  transform: scale(1) translateX(-5rem) rotate(45deg);
}
.cid-uMAxxH4ngT .card_item:nth-child(3) .square_fill {
  background-color: #47b5ed;
  transform: scale(0.8) translateX(-6.25rem);
}
.cid-uMAxxH4ngT .card_item .card-box {
  border-left: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-uMAxxH4ngT .card_item:nth-child(1) .card-box {
  border-right: 1px dotted rgba(55, 60, 66, 0.5);
}
.cid-uMAxxH4ngT .card-box {
  height: 100%;
}
.cid-uMAxxH4ngT .item-wrapper {
  height: 100%;
  padding: 0 1rem;
}
.cid-uMAxxH4ngT .square_animation {
  display: flex;
  position: relative;
  margin-bottom: 1.75rem;
}
.cid-uMAxxH4ngT .square_animation .square {
  width: 5rem;
  height: 5rem;
}
.cid-uMAxxH4ngT .square_animation .square_null {
  z-index: 1;
  border: 1px solid #171b41;
}
.cid-uMAxxH4ngT .square_animation .square_fill {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uMAxxH4ngT .card-title {
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .cid-uMAxxH4ngT .square_animation .square {
    width: 4rem;
    height: 4rem;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(1) .square_null {
    transform: translateX(1rem);
  }
  .cid-uMAxxH4ngT .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-4.75rem);
  }
  .cid-uMAxxH4ngT .card_item:nth-child(3):hover .square_fill {
    transform: scale(1) translateX(-4rem) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .cid-uMAxxH4ngT .item-wrapper {
    padding: 0;
  }
  .cid-uMAxxH4ngT .card-box {
    padding: 2rem 0 2.5rem;
  }
  .cid-uMAxxH4ngT .mbr-section-subtitle {
    margin-bottom: .25rem;
  }
  .cid-uMAxxH4ngT .mbr-text {
    margin-top: .75rem;
  }
  .cid-uMAxxH4ngT .square_animation {
    margin-bottom: 1rem;
  }
  .cid-uMAxxH4ngT .square_animation .square {
    width: 2.5rem;
    height: 2.5rem;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(1):hover .square_fill {
    transform: none;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(1) .square_fill {
    transform: translate(-2rem, -1rem) !important;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(1) .square_null {
    transform: translateX(1.5rem);
  }
  .cid-uMAxxH4ngT .card_item:nth-child(2):hover .square_fill {
    transform: none;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(2) .square_fill {
    transform: translate(-1.75rem, 0.75rem) !important;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(2) .square_null {
    margin-left: 1rem;
    transform: rotate(45deg) translate(0);
  }
  .cid-uMAxxH4ngT .card_item:nth-child(3):hover .square_fill {
    transform: none;
  }
  .cid-uMAxxH4ngT .card_item:nth-child(3) .square_fill {
    transform: scale(0.8) translateX(-3.15rem) !important;
  }
  .cid-uMAxxH4ngT .card_item .card-box {
    border-left: none;
    border-bottom: 1px dotted rgba(55, 60, 66, 0.5);
  }
  .cid-uMAxxH4ngT .card_item:nth-child(1) .card-box {
    border-right: none;
    border-bottom: none;
  }
  .cid-uMAxxH4ngT .card-title {
    margin-bottom: 1.25rem;
  }
}
.cid-uMAxxH4ngT .textGDPR {
  font-size: 14px;
}
.cid-uMDUoYa8yo {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #171b41;
}
@media (max-width: 767px) {
  .cid-uMDUoYa8yo .content {
    text-align: center;
  }
  .cid-uMDUoYa8yo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uMDUoYa8yo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uMDUoYa8yo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uMDUoYa8yo .media-wrap img {
  height: 6rem;
}
.cid-uMDUoYa8yo .mbr-text {
  color: #8d97ad;
}
.cid-uMDUoYa8yo .p-title {
  font-size: 17px;
}
.cid-uMDUoYa8yo .p-title span {
  color: #111111;
}
.cid-uMDUoYa8yo .title-card {
  font-size: 1.3rem;
}
.cid-uMDUoYa8yo .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-uMDUoYa8yo .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-uMDUoYa8yo .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-uMDUoYa8yo .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-uMDUoYa8yo .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-uMDUoYa8yo .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uMDUoYa8yo .copyright img {
  margin-right: 10px;
}
.cid-uMDUoYa8yo .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uMDUoYa8yo .icon-transition span:hover {
  background-color: #0cef46;
}
@media (max-width: 767px) {
  .cid-uMDUoYa8yo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uMDUoYa8yo .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-uMDUoYa8yo .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uMDUoYa8yo H5 {
  color: #ffffff;
}
.cid-uMDUoYa8yo .p-title,
.cid-uMDUoYa8yo .social-media {
  color: #ffffff;
}
