body {
  font-family: Work Sans;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.8rem;
  line-height: 1.22;
}
.display-1 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.38rem;
  line-height: 1.7;
}
.display-7 > .mbr-iconfont {
  font-size: 1.725rem;
}
/* ---- 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.04rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.66rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.98rem + (3.8 - 1.98) * ((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.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((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: #81acb3 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary,
.btn-primary:active {
  background-color: #81acb3 !important;
  border-color: #81acb3 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-primary::before,
.btn-primary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #81acb3 !important;
  background-color: transparent !important;
  border-color: #81acb3;
  box-shadow: none;
}
.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary.focus::before,
.btn-primary.active::before {
  width: 100%;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2d464a !important;
  border-color: #2d464a !important;
}
.btn-secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-secondary::before,
.btn-secondary:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #f2bb2c !important;
  background-color: transparent !important;
  border-color: #f2bb2c;
  box-shadow: none;
}
.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary.focus::before,
.btn-secondary.active::before {
  width: 100%;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #5c4406 !important;
  border-color: #5c4406 !important;
}
.btn-info {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-info::before,
.btn-info:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #47b5ed !important;
  background-color: transparent !important;
  border-color: #47b5ed;
  box-shadow: none;
}
.btn-info:hover::before,
.btn-info:focus::before,
.btn-info.focus::before,
.btn-info.active::before {
  width: 100%;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0b4c6d !important;
  border-color: #0b4c6d !important;
}
.btn-success {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-success::before,
.btn-success:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #40b0bf !important;
  background-color: transparent !important;
  border-color: #40b0bf;
  box-shadow: none;
}
.btn-success:hover::before,
.btn-success:focus::before,
.btn-success.focus::before,
.btn-success.active::before {
  width: 100%;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #112e32 !important;
  border-color: #112e32 !important;
}
.btn-warning {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: none;
}
.btn-warning::before,
.btn-warning:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #614f00 !important;
  transition: all .3s;
  z-index: -1;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffe161 !important;
  background-color: transparent !important;
  border-color: #ffe161;
  box-shadow: none;
}
.btn-warning:hover::before,
.btn-warning:focus::before,
.btn-warning.focus::before,
.btn-warning.active::before {
  width: 100%;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #a38400 !important;
  border-color: #a38400 !important;
}
.btn-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-danger::before,
.btn-danger:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ff9966 !important;
  background-color: transparent !important;
  border-color: #ff9966;
  box-shadow: none;
}
.btn-danger:hover::before,
.btn-danger:focus::before,
.btn-danger.focus::before,
.btn-danger.active::before {
  width: 100%;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a83800 !important;
  border-color: #a83800 !important;
}
.btn-white {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: none;
}
.btn-white::before,
.btn-white:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #7a7a7a !important;
  transition: all .3s;
  z-index: -1;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #fafafa !important;
  background-color: transparent !important;
  border-color: #fafafa;
  box-shadow: none;
}
.btn-white:hover::before,
.btn-white:focus::before,
.btn-white.focus::before,
.btn-white.active::before {
  width: 100%;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-black {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: none;
}
.btn-black::before,
.btn-black:active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #ffffff !important;
  transition: all .3s;
  z-index: -1;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #232323 !important;
  background-color: transparent !important;
  border-color: #232323;
  box-shadow: none;
}
.btn-black:hover::before,
.btn-black:focus::before,
.btn-black.focus::before,
.btn-black.active::before {
  width: 100%;
}
.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: #81acb3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #53828a !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: #81acb3 !important;
  border-color: #81acb3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2bb2c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #bc8b0c !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2bb2c !important;
  border-color: #f2bb2c !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: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: 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: #81acb3 !important;
}
.text-secondary {
  color: #f2bb2c !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #f2bb2c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f8da8c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #f2bb2c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #f2bb2c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #f2bb2c !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ffddcc !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #f2bb2c !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #f2bb2c !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: #81acb3;
}
.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: #81acb3;
  border-color: #81acb3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #81acb3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d1e0e3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Work Sans', 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: #81acb3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Work Sans', 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: #81acb3;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #81acb3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #81acb3;
}
.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: #81acb3;
  border-bottom-color: #81acb3;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #81acb3 !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: #f2bb2c !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='%2381acb3' %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-sPNHiorTzz {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPNHiorTzz .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sPNHiorTzz .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sPNHiorTzz .card {
  cursor: pointer;
}
.cid-sPNHiorTzz .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sPNHiorTzz .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sPNHiorTzz .card-box {
  background: #689bb2;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sPNHiorTzz .mbr-section-title {
  color: #689bb2;
}
.cid-sPNHiorTzz .mbr-section-subtitle {
  color: #cce4f0;
}
.cid-sPNHiorTzz .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sPNHiorTzz .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sPNHiorTzz .card-title,
.cid-sPNHiorTzz .card-box {
  text-align: center;
  color: #8d8d8d;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNY1c5VCZ.popup-builder {
  background-color: #ffffff;
}
.cid-sPNY1c5VCZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPNY1c5VCZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPNY1c5VCZ .modal-content,
.cid-sPNY1c5VCZ .modal-dialog {
  height: auto;
}
.cid-sPNY1c5VCZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPNY1c5VCZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPNY1c5VCZ .form-wrapper .mbr-form .form-group,
  .cid-sPNY1c5VCZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPNY1c5VCZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPNY1c5VCZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNY1c5VCZ .mbr-text {
  text-align: center;
}
.cid-sPNY1c5VCZ .pt-0 {
  padding-top: 0 !important;
}
.cid-sPNY1c5VCZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPNY1c5VCZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPNY1c5VCZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPNY1c5VCZ .modal-open {
  overflow: hidden;
}
.cid-sPNY1c5VCZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPNY1c5VCZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPNY1c5VCZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPNY1c5VCZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPNY1c5VCZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPNY1c5VCZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPNY1c5VCZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPNY1c5VCZ .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sPNY1c5VCZ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPNY1c5VCZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPNY1c5VCZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPNY1c5VCZ .modal-backdrop.show {
  opacity: .5;
}
.cid-sPNY1c5VCZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPNY1c5VCZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNY1c5VCZ .modal-header {
    padding: 1rem;
  }
}
.cid-sPNY1c5VCZ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPNY1c5VCZ .modal-header .close svg {
  fill: #353535;
}
.cid-sPNY1c5VCZ .modal-header .close:hover {
  opacity: 1;
}
.cid-sPNY1c5VCZ .modal-header .close:focus {
  outline: none;
}
.cid-sPNY1c5VCZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPNY1c5VCZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPNY1c5VCZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNY1c5VCZ .modal-body {
    padding: 1rem;
  }
}
.cid-sPNY1c5VCZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPNY1c5VCZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNY1c5VCZ .modal-footer {
    padding: 1rem;
  }
}
.cid-sPNY1c5VCZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPNY1c5VCZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPNY1c5VCZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPNY1c5VCZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPNY1c5VCZ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPNY1c5VCZ .modal-lg,
  .cid-sPNY1c5VCZ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPNY1c5VCZ .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPNY1c5VCZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPNY1c5VCZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPNY1c5VCZ .form-group {
  margin-bottom: 1rem;
}
.cid-sPNY1c5VCZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPNY1c5VCZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPNY1c5VCZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPNY1c5VCZ .mbr-section-btn {
  margin: 0;
}
.cid-sPNY1c5VCZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPNIkMvmOy {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sPNIkMvmOy .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPNIkMvmOy .form-control,
.cid-sPNIkMvmOy .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPNIkMvmOy .form-control::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input::-webkit-input-placeholder,
.cid-sPNIkMvmOy .form-control::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sPNIkMvmOy .form-control:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:-moz-placeholder,
.cid-sPNIkMvmOy .form-control:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sPNIkMvmOy .form-control:hover,
.cid-sPNIkMvmOy .field-input:hover,
.cid-sPNIkMvmOy .form-control:focus,
.cid-sPNIkMvmOy .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sPNIkMvmOy .form-control:hover::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input:hover::-webkit-input-placeholder,
.cid-sPNIkMvmOy .form-control:focus::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input:focus::-webkit-input-placeholder,
.cid-sPNIkMvmOy .form-control:hover::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input:hover::-webkit-input-placeholder,
.cid-sPNIkMvmOy .form-control:focus::-webkit-input-placeholder,
.cid-sPNIkMvmOy .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sPNIkMvmOy .form-control:hover:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:hover:-moz-placeholder,
.cid-sPNIkMvmOy .form-control:focus:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:focus:-moz-placeholder,
.cid-sPNIkMvmOy .form-control:hover:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:hover:-moz-placeholder,
.cid-sPNIkMvmOy .form-control:focus:-moz-placeholder,
.cid-sPNIkMvmOy .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sPNIkMvmOy .jq-number__spin:hover,
.cid-sPNIkMvmOy .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sPNIkMvmOy .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPNIkMvmOy .jq-selectbox li,
.cid-sPNIkMvmOy .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPNIkMvmOy .jq-selectbox li:hover,
.cid-sPNIkMvmOy .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sPNIkMvmOy .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPNIkMvmOy .jq-number__spin.minus:hover:after,
.cid-sPNIkMvmOy .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPNIkMvmOy .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPNIkMvmOy .jq-number__spin.minus:after,
.cid-sPNIkMvmOy .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sPNIkMvmOy input::-webkit-clear-button {
  display: none;
}
.cid-sPNIkMvmOy input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPNIkMvmOy input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPNIkMvmOy input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sPNIkMvmOy H4 {
  color: #81acb3;
}
.cid-sPNKDBkkpE {
  background-color: #fafafa;
}
.cid-sPNKO04JeB.popup-builder {
  background-color: #ffffff;
}
.cid-sPNKO04JeB.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPNKO04JeB.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPNKO04JeB .modal-content,
.cid-sPNKO04JeB .modal-dialog {
  height: auto;
}
.cid-sPNKO04JeB .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPNKO04JeB .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPNKO04JeB .form-wrapper .mbr-form .form-group,
  .cid-sPNKO04JeB .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPNKO04JeB .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPNKO04JeB .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNKO04JeB .mbr-text {
  text-align: center;
}
.cid-sPNKO04JeB .pt-0 {
  padding-top: 0 !important;
}
.cid-sPNKO04JeB .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPNKO04JeB .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPNKO04JeB .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPNKO04JeB .modal-open {
  overflow: hidden;
}
.cid-sPNKO04JeB .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPNKO04JeB .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPNKO04JeB .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPNKO04JeB .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPNKO04JeB .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPNKO04JeB .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPNKO04JeB .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPNKO04JeB .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sPNKO04JeB .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPNKO04JeB .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPNKO04JeB .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPNKO04JeB .modal-backdrop.show {
  opacity: .5;
}
.cid-sPNKO04JeB .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPNKO04JeB .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNKO04JeB .modal-header {
    padding: 1rem;
  }
}
.cid-sPNKO04JeB .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPNKO04JeB .modal-header .close svg {
  fill: #353535;
}
.cid-sPNKO04JeB .modal-header .close:hover {
  opacity: 1;
}
.cid-sPNKO04JeB .modal-header .close:focus {
  outline: none;
}
.cid-sPNKO04JeB .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPNKO04JeB .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPNKO04JeB .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNKO04JeB .modal-body {
    padding: 1rem;
  }
}
.cid-sPNKO04JeB .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPNKO04JeB .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNKO04JeB .modal-footer {
    padding: 1rem;
  }
}
.cid-sPNKO04JeB .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPNKO04JeB .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPNKO04JeB .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPNKO04JeB .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPNKO04JeB .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPNKO04JeB .modal-lg,
  .cid-sPNKO04JeB .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPNKO04JeB .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPNKO04JeB .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPNKO04JeB .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPNKO04JeB .form-group {
  margin-bottom: 1rem;
}
.cid-sPNKO04JeB .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPNKO04JeB .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPNKO04JeB .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPNKO04JeB .mbr-section-btn {
  margin: 0;
}
.cid-sPNKO04JeB .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNLINFTYI {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sPNLINFTYI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNMqL85IZ {
  padding-top: 120px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sPNMqL85IZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPNMqL85IZ .form-control,
.cid-sPNMqL85IZ .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPNMqL85IZ .form-control::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input::-webkit-input-placeholder,
.cid-sPNMqL85IZ .form-control::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sPNMqL85IZ .form-control:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:-moz-placeholder,
.cid-sPNMqL85IZ .form-control:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sPNMqL85IZ .form-control:hover,
.cid-sPNMqL85IZ .field-input:hover,
.cid-sPNMqL85IZ .form-control:focus,
.cid-sPNMqL85IZ .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-sPNMqL85IZ .form-control:hover::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input:hover::-webkit-input-placeholder,
.cid-sPNMqL85IZ .form-control:focus::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input:focus::-webkit-input-placeholder,
.cid-sPNMqL85IZ .form-control:hover::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input:hover::-webkit-input-placeholder,
.cid-sPNMqL85IZ .form-control:focus::-webkit-input-placeholder,
.cid-sPNMqL85IZ .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sPNMqL85IZ .form-control:hover:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:hover:-moz-placeholder,
.cid-sPNMqL85IZ .form-control:focus:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:focus:-moz-placeholder,
.cid-sPNMqL85IZ .form-control:hover:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:hover:-moz-placeholder,
.cid-sPNMqL85IZ .form-control:focus:-moz-placeholder,
.cid-sPNMqL85IZ .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sPNMqL85IZ .jq-number__spin:hover,
.cid-sPNMqL85IZ .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sPNMqL85IZ .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPNMqL85IZ .jq-selectbox li,
.cid-sPNMqL85IZ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPNMqL85IZ .jq-selectbox li:hover,
.cid-sPNMqL85IZ .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sPNMqL85IZ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPNMqL85IZ .jq-number__spin.minus:hover:after,
.cid-sPNMqL85IZ .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPNMqL85IZ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPNMqL85IZ .jq-number__spin.minus:after,
.cid-sPNMqL85IZ .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sPNMqL85IZ input::-webkit-clear-button {
  display: none;
}
.cid-sPNMqL85IZ input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPNMqL85IZ input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPNMqL85IZ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sPNMqL85IZ H4 {
  color: #81acb3;
}
.cid-sPNMqLw22P {
  background-color: #fafafa;
}
.cid-sPNMqLUaXx.popup-builder {
  background-color: #ffffff;
}
.cid-sPNMqLUaXx.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPNMqLUaXx.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPNMqLUaXx .modal-content,
.cid-sPNMqLUaXx .modal-dialog {
  height: auto;
}
.cid-sPNMqLUaXx .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPNMqLUaXx .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPNMqLUaXx .form-wrapper .mbr-form .form-group,
  .cid-sPNMqLUaXx .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPNMqLUaXx .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPNMqLUaXx .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNMqLUaXx .mbr-text {
  text-align: center;
}
.cid-sPNMqLUaXx .pt-0 {
  padding-top: 0 !important;
}
.cid-sPNMqLUaXx .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPNMqLUaXx .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPNMqLUaXx .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPNMqLUaXx .modal-open {
  overflow: hidden;
}
.cid-sPNMqLUaXx .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPNMqLUaXx .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPNMqLUaXx .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPNMqLUaXx .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPNMqLUaXx .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPNMqLUaXx .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPNMqLUaXx .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPNMqLUaXx .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sPNMqLUaXx .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPNMqLUaXx .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPNMqLUaXx .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPNMqLUaXx .modal-backdrop.show {
  opacity: .5;
}
.cid-sPNMqLUaXx .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPNMqLUaXx .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNMqLUaXx .modal-header {
    padding: 1rem;
  }
}
.cid-sPNMqLUaXx .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPNMqLUaXx .modal-header .close svg {
  fill: #353535;
}
.cid-sPNMqLUaXx .modal-header .close:hover {
  opacity: 1;
}
.cid-sPNMqLUaXx .modal-header .close:focus {
  outline: none;
}
.cid-sPNMqLUaXx .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPNMqLUaXx .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPNMqLUaXx .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNMqLUaXx .modal-body {
    padding: 1rem;
  }
}
.cid-sPNMqLUaXx .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPNMqLUaXx .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNMqLUaXx .modal-footer {
    padding: 1rem;
  }
}
.cid-sPNMqLUaXx .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPNMqLUaXx .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPNMqLUaXx .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPNMqLUaXx .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPNMqLUaXx .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPNMqLUaXx .modal-lg,
  .cid-sPNMqLUaXx .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPNMqLUaXx .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPNMqLUaXx .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPNMqLUaXx .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPNMqLUaXx .form-group {
  margin-bottom: 1rem;
}
.cid-sPNMqLUaXx .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPNMqLUaXx .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPNMqLUaXx .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPNMqLUaXx .mbr-section-btn {
  margin: 0;
}
.cid-sPNMqLUaXx .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNNdzJGrB {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPNNdzJGrB .card:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-sPNNdzJGrB .card-wrapper {
  background-color: #fcf5e6;
  border-radius: 16px;
}
.cid-sPNNdzJGrB .image-wrapper {
  height: 100%;
}
.cid-sPNNdzJGrB .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sPNNdzJGrB .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #81acb3;
  transition: all 0.3s;
}
.cid-sPNNdzJGrB .social-row .soc-item .mbr-iconfont {
  display: flex;
  justify-content: center;
  align-content: center;
  color: #81acb3;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.cid-sPNNdzJGrB .social-row .soc-item:hover {
  background-color: #81acb3;
}
.cid-sPNNdzJGrB .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
@media (min-width: 767px) {
  .cid-sPNNdzJGrB .img-order {
    order: 2;
  }
}
@media (min-width: 768px) {
  .cid-sPNNdzJGrB .card-box_left {
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPNNdzJGrB .card-box_left {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.cid-sPNNdzJGrB .mbr-section-title {
  color: #81acb3;
}
.cid-sPNNdzJGrB .card-title {
  color: #81acb3;
}
.cid-sPNNdzJGrB .card-subtitle {
  color: #81acb3;
}
.cid-sPNNdzJGrB .mbr-text,
.cid-sPNNdzJGrB .social-row {
  color: #0b2b5c;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNVc5SMdh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPNVc5SMdh .mbr-section-subtitle {
  color: #767676;
}
.cid-sPNVc5SMdh .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sPNVc5SMdh .table-wrapper {
  margin: 0 auto;
}
.cid-sPNVc5SMdh table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sPNVc5SMdh table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #81acb3;
  color: white;
  vertical-align: middle;
}
.cid-sPNVc5SMdh table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sPNVc5SMdh .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sPNVc5SMdh .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sPNVc5SMdh .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sPNVc5SMdh .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sPNVc5SMdh .dataTables_wrapper {
  display: block;
}
.cid-sPNVc5SMdh .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sPNVc5SMdh .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sPNVc5SMdh .head-item:after,
.cid-sPNVc5SMdh .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-sPNVc5SMdh .dataTables_filter {
    text-align: center;
  }
  .cid-sPNVc5SMdh .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sPNVc5SMdh .dataTables_filter {
    text-align: center;
  }
  .cid-sPNVc5SMdh .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sPNVc5SMdh table th,
  .cid-sPNVc5SMdh table td {
    padding: .75rem;
  }
}
.cid-sPNVs02RHF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-sPNVs02RHF .container-fluid {
  padding: 0 3rem;
}
.cid-sPNVs02RHF .mbr-section-subtitle {
  color: #767676;
}
.cid-sPNVs02RHF .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sPNVs02RHF .table-wrapper {
  margin: 0 auto;
}
.cid-sPNVs02RHF table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sPNVs02RHF table thead tr {
  border: none !important;
}
.cid-sPNVs02RHF table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  border-top: none;
  border-bottom: 1px solid #5b5b5b;
  color: white;
  vertical-align: middle;
  background: #ffffff;
}
.cid-sPNVs02RHF table tr {
  border-bottom: 1px solid #c1c1c1;
  border-top: none;
}
.cid-sPNVs02RHF table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
  border: none;
}
.cid-sPNVs02RHF table.table {
  background: #ffffff;
}
.cid-sPNVs02RHF tr:hover {
  background-color: #90b7bc !important;
}
.cid-sPNVs02RHF .head-item:after,
.cid-sPNVs02RHF .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 767px) {
  .cid-sPNVs02RHF table th,
  .cid-sPNVs02RHF table td {
    padding: .75rem;
  }
}
.cid-sPNVs02RHF .body-item {
  text-align: center;
}
.cid-sPNVs02RHF .head-item {
  color: #000000;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNWcxo8wY {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPNWcxo8wY .mbr-iconfont {
  font-size: 4rem;
  color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.cid-sPNWcxo8wY .card-wrapper {
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-direction: column;
}
.cid-sPNWcxo8wY .card {
  cursor: pointer;
}
.cid-sPNWcxo8wY .card:hover .card-title {
  transform: scale(0.9);
}
.cid-sPNWcxo8wY .card:hover .mbr-iconfont {
  animation: icons-zoom 0.25s ease-out;
}
.cid-sPNWcxo8wY .card-box {
  background: #689bb2;
  width: 155px;
  height: 155px;
  padding: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 50%;
  color: #868378;
  transition: all 0.1s;
}
.cid-sPNWcxo8wY .mbr-section-title {
  color: #689bb2;
}
.cid-sPNWcxo8wY .mbr-section-subtitle {
  color: #cce4f0;
}
.cid-sPNWcxo8wY .subtitle-padding {
  padding-bottom: 3rem;
}
.cid-sPNWcxo8wY .card-title {
  color: #868378;
  transition: all 0.3s;
}
.cid-sPNWcxo8wY .card-title,
.cid-sPNWcxo8wY .card-box {
  text-align: center;
  color: #8d8d8d;
}
@keyframes icons-zoom {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75, 1.75);
  }
}
.cid-sPNWjokMGd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPNWjokMGd .mbr-section-subtitle {
  color: #767676;
}
.cid-sPNWjokMGd .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sPNWjokMGd .table-wrapper {
  margin: 0 auto;
}
.cid-sPNWjokMGd table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sPNWjokMGd table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #81acb3;
  color: white;
  vertical-align: middle;
}
.cid-sPNWjokMGd table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sPNWjokMGd .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sPNWjokMGd .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sPNWjokMGd .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sPNWjokMGd .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sPNWjokMGd .dataTables_wrapper {
  display: block;
}
.cid-sPNWjokMGd .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sPNWjokMGd .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sPNWjokMGd .head-item:after,
.cid-sPNWjokMGd .head-item:before {
  bottom: 1.6em !important;
}
@media (max-width: 992px) {
  .cid-sPNWjokMGd .dataTables_filter {
    text-align: center;
  }
  .cid-sPNWjokMGd .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sPNWjokMGd .dataTables_filter {
    text-align: center;
  }
  .cid-sPNWjokMGd .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sPNWjokMGd table th,
  .cid-sPNWjokMGd table td {
    padding: .75rem;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPNWRblPZE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPNWRblPZE .nav-tabs .nav-item.open .nav-link:focus,
.cid-sPNWRblPZE .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sPNWRblPZE .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 1vw;
  border: none;
}
@media (max-width: 767px) {
  .cid-sPNWRblPZE .nav-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-sPNWRblPZE .nav-item {
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
}
.cid-sPNWRblPZE .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
  height: 100%;
  border-radius: 0 !important;
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
  text-align: center;
  background-color: #81acb3;
}
.cid-sPNWRblPZE .nav-tabs .nav-link:not(.active) {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sPNWRblPZE .nav-tabs .nav-link {
    text-align: left;
    padding: 1rem 2rem;
    border-radius: 30px !important;
  }
}
.cid-sPNWRblPZE .nav-tabs .nav-item {
  width: 100%;
}
.cid-sPNWRblPZE .nav-link,
.cid-sPNWRblPZE .nav-link.active {
  padding: 1rem auto;
  background: #ffffff;
}
.cid-sPNWRblPZE .nav-tabs .nav-link.active {
  color: #81acb3;
}
.cid-sPNWRblPZE .tab-content {
  background: #ffffff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (max-width: 768px) {
  .cid-sPNWRblPZE .tab-content {
    border-radius: 30px !important;
  }
}
.cid-sPNWRblPZE .logo-container img {
  max-width: 180px;
}
@media screen and (min-width: 767px) {
  .cid-sPNWRblPZE .logo-container {
    border-right: 1px solid #81acb3;
  }
}
.cid-sPNWRblPZE H4 {
  text-align: center;
}
.cid-sPNWRblPZE H3 {
  text-align: center;
}
@media (max-width: 992px) and (min-width: 768px) {
  .cid-sPNWRblPZE .nav-link {
    font-size: 1.2rem;
  }
}
.cid-sPNXg4AC8V {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPNXg4AC8V .mbr-section-title {
  margin-bottom: 15px;
}
.cid-sPNXg4AC8V .mbr-text {
  margin-bottom: 35px;
  color: #919dab;
}
.cid-sPNXg4AC8V .icons {
  display: inline-block;
}
.cid-sPNXg4AC8V .icons .mbr-iconfont {
  color: #ebeaed;
  margin-right: 20px;
  width: 22px;
  font-size: 22px;
  transition: all .25s ease;
}
.cid-sPNXg4AC8V .icons .mbr-iconfont:hover {
  color: #c4c1ca;
}
.cid-sPNXg4AC8V .image {
  margin-bottom: 40px;
}
.cid-sPNXg4AC8V .image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.cid-sPNXg4AC8V .form-group {
  margin-bottom: 0;
}
.cid-sPNXg4AC8V .dragArea .form-control {
  color: #ebeaed;
  margin-bottom: 35px;
  border: 2px solid #ebeaed !important;
  font-weight: 700;
  padding: 0 25px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #ffffff !important;
}
.cid-sPNXg4AC8V .dragArea input::placeholder {
  color: #ebeaed;
}
.cid-sPNXg4AC8V .dragArea .form-control-label {
  margin-bottom: 10px;
  font-weight: 500;
}
.cid-sPNXg4AC8V .dragArea .input-group-btn .btn {
  height: 60px;
  min-width: 140px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .cid-sPNXg4AC8V .dragArea .input-group-btn .btn {
    margin-top: 0;
  }
}
.cid-sPNXg4AC8V .or {
  margin: 0 20px 0 20px;
  font-weight: 500;
  color: #ebeaed;
}
@media (max-width: 991px) {
  .cid-sPNXg4AC8V .or {
    margin: 0 20px 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-sPNXg4AC8V .input-group-btn {
    margin-bottom: 10px;
  }
  .cid-sPNXg4AC8V .dragArea .input-group-btn .btn,
  .cid-sPNXg4AC8V .form-control {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .cid-sPNXg4AC8V .input-group-btn {
    justify-content: center;
  }
  .cid-sPNXg4AC8V .btn {
    margin-bottom: 20px;
  }
}
.cid-sPNXkUNxWL {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sPNXkUNxWL .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPNXJuXcgK.popup-builder {
  background-color: #ffffff;
}
.cid-sPNXJuXcgK.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPNXJuXcgK.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPNXJuXcgK .modal-content,
.cid-sPNXJuXcgK .modal-dialog {
  height: auto;
}
.cid-sPNXJuXcgK .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPNXJuXcgK .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPNXJuXcgK .form-wrapper .mbr-form .form-group,
  .cid-sPNXJuXcgK .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPNXJuXcgK .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPNXJuXcgK .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNXJuXcgK .mbr-text {
  text-align: center;
}
.cid-sPNXJuXcgK .pt-0 {
  padding-top: 0 !important;
}
.cid-sPNXJuXcgK .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPNXJuXcgK .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPNXJuXcgK .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPNXJuXcgK .modal-open {
  overflow: hidden;
}
.cid-sPNXJuXcgK .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPNXJuXcgK .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPNXJuXcgK .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPNXJuXcgK .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPNXJuXcgK .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPNXJuXcgK .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPNXJuXcgK .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPNXJuXcgK .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sPNXJuXcgK .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPNXJuXcgK .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPNXJuXcgK .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPNXJuXcgK .modal-backdrop.show {
  opacity: .5;
}
.cid-sPNXJuXcgK .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPNXJuXcgK .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNXJuXcgK .modal-header {
    padding: 1rem;
  }
}
.cid-sPNXJuXcgK .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPNXJuXcgK .modal-header .close svg {
  fill: #353535;
}
.cid-sPNXJuXcgK .modal-header .close:hover {
  opacity: 1;
}
.cid-sPNXJuXcgK .modal-header .close:focus {
  outline: none;
}
.cid-sPNXJuXcgK .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPNXJuXcgK .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPNXJuXcgK .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNXJuXcgK .modal-body {
    padding: 1rem;
  }
}
.cid-sPNXJuXcgK .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPNXJuXcgK .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPNXJuXcgK .modal-footer {
    padding: 1rem;
  }
}
.cid-sPNXJuXcgK .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPNXJuXcgK .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPNXJuXcgK .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPNXJuXcgK .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPNXJuXcgK .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPNXJuXcgK .modal-lg,
  .cid-sPNXJuXcgK .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPNXJuXcgK .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPNXJuXcgK .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPNXJuXcgK .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPNXJuXcgK .form-group {
  margin-bottom: 1rem;
}
.cid-sPNXJuXcgK .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPNXJuXcgK .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPNXJuXcgK .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPNXJuXcgK .mbr-section-btn {
  margin: 0;
}
.cid-sPNXJuXcgK .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPO5P1VJ8U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPO5P1VJ8U .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sPO5P1VJ8U .modal-body .close {
  background: #1b1b1b;
}
.cid-sPO5P1VJ8U .modal-body .close span {
  font-style: normal;
}
@media (min-width: 992px) {
  .cid-sPO5P1VJ8U .align-center {
    text-align: left;
    max-width: 850px;
  }
  .cid-sPO5P1VJ8U .carousel-caption {
    justify-content: flex-start !important;
    padding-left: 5rem;
  }
}
.cid-sPO5P1VJ8U .container {
  max-width: 100%;
  padding: 0;
}
.cid-sPO5P1VJ8U .content-slider-wrap {
  width: 100%;
}
.cid-sPO5P1VJ8U .carousel-inner > .active,
.cid-sPO5P1VJ8U .carousel-inner > .next,
.cid-sPO5P1VJ8U .carousel-inner > .prev {
  display: flex;
}
.cid-sPO5P1VJ8U .carousel-control .icon-next,
.cid-sPO5P1VJ8U .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sPO5P1VJ8U .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sPO5P1VJ8U .mbr-iconfont {
  color: black;
  font-size: 1.2rem !important;
  font-weight: 600;
}
.cid-sPO5P1VJ8U .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sPO5P1VJ8U .boxed-slider > div {
  position: relative;
}
.cid-sPO5P1VJ8U .container img {
  width: 100%;
}
.cid-sPO5P1VJ8U .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-sPO5P1VJ8U .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sPO5P1VJ8U .mbr-table-cell {
  padding: 0;
}
.cid-sPO5P1VJ8U .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sPO5P1VJ8U .carousel-caption {
  top: auto;
  right: 0;
  bottom: 2rem;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sPO5P1VJ8U .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sPO5P1VJ8U .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sPO5P1VJ8U .carousel-item.active.right,
.cid-sPO5P1VJ8U .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sPO5P1VJ8U .carousel-item.active.left,
.cid-sPO5P1VJ8U .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sPO5P1VJ8U .carousel-item.active,
.cid-sPO5P1VJ8U .carousel-item.next.left,
.cid-sPO5P1VJ8U .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 35px;
  border-radius: 50%;
  background-color: white;
  transition: all .3s;
  z-index: 11;
}
@media (max-width: 767px) {
  .cid-sPO5P1VJ8U .mbr-slider .carousel-control {
    top: 20%;
  }
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 10px;
  width: 10px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators li.active,
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators li::after,
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sPO5P1VJ8U .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sPO5P1VJ8U .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sPO5P1VJ8U .mbr-slider > .container img {
  width: 100%;
}
.cid-sPO5P1VJ8U .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-sPO5P1VJ8U .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sPO5P1VJ8U .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sPO5P1VJ8U .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sPO5P1VJ8U .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sPO5P1VJ8U .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sPO5P1VJ8U .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sPO5P1VJ8U .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sPO5P1VJ8U .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sPO5P1VJ8U .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sPO5P1VJ8U .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sPO5P1VJ8U .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sPO5P1VJ8U .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sPO5P1VJ8U .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sPO5P1VJ8U .carousel-inner {
  height: 100%;
}
.cid-sPO5P1VJ8U .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sPO5P1VJ8U .image_wrapper {
  height: 950px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sPO5P1VJ8U .image_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sPO5P1VJ8U .carousel-item .container-slide {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sPO5P1VJ8U .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sPO5P1VJ8U .content-slider-wrap {
    width: 100% !important;
  }
  .cid-sPO5P1VJ8U .image_wrapper {
    height: 570px;
  }
}
.cid-sPO6L7epmV {
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-sPO6L7epmV .link-align {
  width: 100%;
}
.cid-sPO6L7epmV .link-wrap {
  display: inline-block;
}
@keyframes hover {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.cid-sPO6L7epmV .link {
  position: relative;
  cursor: pointer;
  width: fit-content;
  letter-spacing: 1px;
  margin-left: 80px;
  color: #ffffff;
}
.cid-sPO6L7epmV .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60px;
  background: currentColor;
  top: 45%;
  transform: translateY(-45%);
  opacity: 0.8;
  left: -80px;
}
.cid-sPO6L7epmV .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  top: 45%;
  transform: translateY(-45%);
  left: -80px;
}
.cid-sPO6L7epmV .link:hover:before {
  width: 60px;
}
.cid-sPO6L7epmV .mbr-text,
.cid-sPO6L7epmV .link-align {
  color: #e5e5e5;
}
.cid-sPO6L7epmV .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  width: 130px;
  height: 130px;
  cursor: pointer;
}
.cid-sPO6L7epmV .icon-wrap:hover {
  animation: 0.6s hover;
}
.cid-sPO6L7epmV .icon-wrap span {
  padding-left: 4px;
}
.cid-sPO6L7epmV .mbr-media span {
  font-size: 2rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sPO6L7epmV .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sPO6L7epmV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sPO6L7epmV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sPO6L7epmV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sPO6L7epmV a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sPO6L7epmV a.close:hover {
  color: #ffffff;
}
.cid-sPO6QFFokj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-sPO6QFFokj .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (max-width: 991px) {
  .cid-sPO6QFFokj .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sPO6QFFokj .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-sPO6QFFokj input {
  padding: .6rem 1.2rem;
  border-radius: 10px;
}
.cid-sPO6QFFokj .btn {
  display: inline-block;
  border-radius: 30px;
}
.cid-sPO6QFFokj img {
  width: 65%;
  margin: 0 auto;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-sPO6QFFokj img {
    margin-top: 3rem;
  }
}
.cid-sPO74y41gz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPO74y41gz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPO74y41gz input,
.cid-sPO74y41gz textarea,
.cid-sPO74y41gz .jqselect {
  font-weight: 300 !important;
}
.cid-sPO74y41gz .col-wrap1 {
  background: #a15547;
  padding: 5rem;
  height: 100%;
}
.cid-sPO74y41gz .col-wrap3 {
  background: #d9b7ab;
  padding: 5rem;
  height: 100%;
}
@media (max-width: 1400px) {
  .cid-sPO74y41gz .col-wrap1,
  .cid-sPO74y41gz .col-wrap3 {
    padding: 3rem 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sPO74y41gz .card {
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPO74y41gz .col-wrap1,
  .cid-sPO74y41gz .col-wrap3 {
    padding: 3rem 1rem;
  }
}
.cid-sPO74y41gz .container {
  max-width: 1800px;
}
.cid-sPO74y41gz img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  min-height: 300px;
}
.cid-sPO74y41gz textarea {
  min-height: 150px !important;
}
.cid-sPO74y41gz form .btn {
  width: 100%;
}
.cid-sPO74y41gz .jq-selectbox__select-text {
  color: #d58f76;
}
.cid-sPO74y41gz .jq-selectbox__select {
  padding: 0.65em 1em;
}
.cid-sPO74y41gz .jq-selectbox li {
  padding: 0.8em 1.4em !important;
  color: #d58f76 !important;
}
.cid-sPO74y41gz .form-control,
.cid-sPO74y41gz .field-input {
  padding: 1.1rem 1.5rem;
  height: auto;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPO74y41gz .form-control::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input::-webkit-input-placeholder,
.cid-sPO74y41gz .form-control::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input::-webkit-input-placeholder {
  color: #d58f76;
}
.cid-sPO74y41gz .form-control:-moz-placeholder,
.cid-sPO74y41gz .field-input:-moz-placeholder,
.cid-sPO74y41gz .form-control:-moz-placeholder,
.cid-sPO74y41gz .field-input:-moz-placeholder {
  color: #d58f76;
}
.cid-sPO74y41gz .form-control:hover,
.cid-sPO74y41gz .field-input:hover,
.cid-sPO74y41gz .form-control:focus,
.cid-sPO74y41gz .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sPO74y41gz .form-control:hover::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input:hover::-webkit-input-placeholder,
.cid-sPO74y41gz .form-control:focus::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input:focus::-webkit-input-placeholder,
.cid-sPO74y41gz .form-control:hover::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input:hover::-webkit-input-placeholder,
.cid-sPO74y41gz .form-control:focus::-webkit-input-placeholder,
.cid-sPO74y41gz .field-input:focus::-webkit-input-placeholder {
  color: #d58f76;
}
.cid-sPO74y41gz .form-control:hover:-moz-placeholder,
.cid-sPO74y41gz .field-input:hover:-moz-placeholder,
.cid-sPO74y41gz .form-control:focus:-moz-placeholder,
.cid-sPO74y41gz .field-input:focus:-moz-placeholder,
.cid-sPO74y41gz .form-control:hover:-moz-placeholder,
.cid-sPO74y41gz .field-input:hover:-moz-placeholder,
.cid-sPO74y41gz .form-control:focus:-moz-placeholder,
.cid-sPO74y41gz .field-input:focus:-moz-placeholder {
  color: #d58f76;
}
.cid-sPO74y41gz textarea {
  padding-top: 1rem !important;
}
.cid-sPO74y41gz .jq-number__spin:hover,
.cid-sPO74y41gz .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sPO74y41gz .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPO74y41gz .jq-selectbox li,
.cid-sPO74y41gz .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO74y41gz .jq-selectbox li:hover,
.cid-sPO74y41gz .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO74y41gz .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPO74y41gz .jq-number__spin.minus:hover:after,
.cid-sPO74y41gz .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO74y41gz .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPO74y41gz .jq-number__spin.minus:after,
.cid-sPO74y41gz .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO74y41gz .jq-selectbox__trigger-arrow {
  border-top-color: #d58f76 !important;
  border-bottom-color: #d58f76 !important;
}
.cid-sPO74y41gz input::-webkit-clear-button {
  display: none;
}
.cid-sPO74y41gz input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPO74y41gz input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPO74y41gz input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sPO74y41gz H5 {
  text-align: center;
  color: #ffffff;
}
.cid-sPO74y41gz h6 {
  color: #d58f76;
}
.cid-sPO74y41gz H3 {
  color: #ffffff;
}
.cid-sPO74y41gz .mbr-text {
  color: #ffffff;
}
.cid-sPO74y41gz .link,
.cid-sPO74y41gz .link-wrap {
  color: #999999;
  text-align: right;
}
.cid-sPO74y41gz H6 {
  text-align: center;
  color: #ffffff;
}
.cid-sPO76sZUiw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fff4e2;
}
.cid-sPO76sZUiw .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sPO76sZUiw input,
.cid-sPO76sZUiw textarea {
  padding: 1rem 1.8rem !important;
  border-radius: 30px;
  font-size: 1.1rem;
}
@media (max-width: 767px) {
  .cid-sPO76sZUiw .img-col {
    order: 2;
    text-align: center;
  }
  .cid-sPO76sZUiw img {
    max-width: 200px;
    margin: auto;
  }
  .cid-sPO76sZUiw .form-row {
    flex-direction: column;
  }
  .cid-sPO76sZUiw .btn {
    width: 100%;
  }
}
.cid-sPO76sZUiw .btn {
  border-radius: 30px;
  margin: 0 !important;
  min-height: 4rem;
}
.cid-sPO76sZUiw .form-control,
.cid-sPO76sZUiw .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  min-height: 4rem;
  box-shadow: none;
  outline: none;
}
.cid-sPO76sZUiw .form-control::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input::-webkit-input-placeholder,
.cid-sPO76sZUiw .form-control::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input::-webkit-input-placeholder {
  color: #808080;
}
.cid-sPO76sZUiw .form-control:-moz-placeholder,
.cid-sPO76sZUiw .field-input:-moz-placeholder,
.cid-sPO76sZUiw .form-control:-moz-placeholder,
.cid-sPO76sZUiw .field-input:-moz-placeholder {
  color: #808080;
}
.cid-sPO76sZUiw .form-control:hover,
.cid-sPO76sZUiw .field-input:hover,
.cid-sPO76sZUiw .form-control:focus,
.cid-sPO76sZUiw .field-input:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  box-shadow: none;
  outline: none;
}
.cid-sPO76sZUiw .form-control:hover::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input:hover::-webkit-input-placeholder,
.cid-sPO76sZUiw .form-control:focus::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input:focus::-webkit-input-placeholder,
.cid-sPO76sZUiw .form-control:hover::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input:hover::-webkit-input-placeholder,
.cid-sPO76sZUiw .form-control:focus::-webkit-input-placeholder,
.cid-sPO76sZUiw .field-input:focus::-webkit-input-placeholder {
  color: #808080;
}
.cid-sPO76sZUiw .form-control:hover:-moz-placeholder,
.cid-sPO76sZUiw .field-input:hover:-moz-placeholder,
.cid-sPO76sZUiw .form-control:focus:-moz-placeholder,
.cid-sPO76sZUiw .field-input:focus:-moz-placeholder,
.cid-sPO76sZUiw .form-control:hover:-moz-placeholder,
.cid-sPO76sZUiw .field-input:hover:-moz-placeholder,
.cid-sPO76sZUiw .form-control:focus:-moz-placeholder,
.cid-sPO76sZUiw .field-input:focus:-moz-placeholder {
  color: #808080;
}
.cid-sPO76sZUiw .jq-number__spin:hover,
.cid-sPO76sZUiw .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sPO76sZUiw .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #808080;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPO76sZUiw .jq-selectbox li,
.cid-sPO76sZUiw .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO76sZUiw .jq-selectbox li:hover,
.cid-sPO76sZUiw .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO76sZUiw .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPO76sZUiw .jq-number__spin.minus:hover:after,
.cid-sPO76sZUiw .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO76sZUiw .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPO76sZUiw .jq-number__spin.minus:after,
.cid-sPO76sZUiw .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO76sZUiw input::-webkit-clear-button {
  display: none;
}
.cid-sPO76sZUiw input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPO76sZUiw input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPO76sZUiw input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sPO76sZUiw .mbr-text,
.cid-sPO76sZUiw .mbr-section-btn {
  color: #808080;
}
.cid-sPO785CPJh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sPO785CPJh .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-sPO785CPJh .select {
  z-index: 999;
}
.cid-sPO785CPJh .mbr-form {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 992px) {
  .cid-sPO785CPJh .mbr-form {
    max-width: 500px;
  }
}
.cid-sPO785CPJh .img-col {
  padding: 0;
}
.cid-sPO785CPJh form {
  padding: 2rem 2rem;
  background: #f2f2f4;
  border-radius: 30px;
}
.cid-sPO785CPJh .jq-selectbox__dropdown,
.cid-sPO785CPJh ul {
  border-radius: 20px !important;
}
.cid-sPO785CPJh .jq-selectbox {
  border-radius: 30px;
}
.cid-sPO785CPJh .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-sPO785CPJh .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-sPO785CPJh input,
.cid-sPO785CPJh textarea,
.cid-sPO785CPJh .select {
  border-radius: 30px;
}
.cid-sPO785CPJh input,
.cid-sPO785CPJh textarea {
  padding: 2rem 3rem;
}
.cid-sPO785CPJh textarea {
  min-height: 10rem;
}
.cid-sPO785CPJh .form-control,
.cid-sPO785CPJh .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPO785CPJh .form-control::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input::-webkit-input-placeholder,
.cid-sPO785CPJh .form-control::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-sPO785CPJh .form-control:-moz-placeholder,
.cid-sPO785CPJh .field-input:-moz-placeholder,
.cid-sPO785CPJh .form-control:-moz-placeholder,
.cid-sPO785CPJh .field-input:-moz-placeholder {
  color: #383838;
}
.cid-sPO785CPJh .form-control:hover,
.cid-sPO785CPJh .field-input:hover,
.cid-sPO785CPJh .form-control:focus,
.cid-sPO785CPJh .field-input:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-sPO785CPJh .form-control:hover::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input:hover::-webkit-input-placeholder,
.cid-sPO785CPJh .form-control:focus::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input:focus::-webkit-input-placeholder,
.cid-sPO785CPJh .form-control:hover::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input:hover::-webkit-input-placeholder,
.cid-sPO785CPJh .form-control:focus::-webkit-input-placeholder,
.cid-sPO785CPJh .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-sPO785CPJh .form-control:hover:-moz-placeholder,
.cid-sPO785CPJh .field-input:hover:-moz-placeholder,
.cid-sPO785CPJh .form-control:focus:-moz-placeholder,
.cid-sPO785CPJh .field-input:focus:-moz-placeholder,
.cid-sPO785CPJh .form-control:hover:-moz-placeholder,
.cid-sPO785CPJh .field-input:hover:-moz-placeholder,
.cid-sPO785CPJh .form-control:focus:-moz-placeholder,
.cid-sPO785CPJh .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-sPO785CPJh .jq-number__spin:hover,
.cid-sPO785CPJh .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ed6436;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sPO785CPJh .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f4;
  color: #181818;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sPO785CPJh .jq-selectbox li,
.cid-sPO785CPJh .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO785CPJh .jq-selectbox li:hover,
.cid-sPO785CPJh .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPO785CPJh .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sPO785CPJh .jq-number__spin.minus:hover:after,
.cid-sPO785CPJh .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO785CPJh .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sPO785CPJh .jq-number__spin.minus:after,
.cid-sPO785CPJh .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sPO785CPJh input::-webkit-clear-button {
  display: none;
}
.cid-sPO785CPJh input::-webkit-inner-spin-button {
  display: none;
}
.cid-sPO785CPJh input::-webkit-outer-spin-button {
  display: none;
}
.cid-sPO785CPJh input::-webkit-calendar-picker-indicator {
  display: none;
}
@media (max-width: 992px) {
  .cid-sPO785CPJh .mbr-form {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sPO785CPJh form {
    padding: 2rem 1rem;
  }
  .cid-sPO785CPJh .col-auto {
    margin: auto;
    width: 100%;
  }
  .cid-sPO785CPJh .mbr-form {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-sPO785CPJh H4 {
  color: #ed6436;
}
.cid-sPOrIgj6UD.popup-builder {
  background-color: #ffffff;
}
.cid-sPOrIgj6UD.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPOrIgj6UD.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sPOrIgj6UD .modal-content,
.cid-sPOrIgj6UD .modal-dialog {
  height: auto;
}
.cid-sPOrIgj6UD .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPOrIgj6UD .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPOrIgj6UD .form-wrapper .mbr-form .form-group,
  .cid-sPOrIgj6UD .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPOrIgj6UD .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPOrIgj6UD .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPOrIgj6UD .mbr-text {
  text-align: center;
}
.cid-sPOrIgj6UD .pt-0 {
  padding-top: 0 !important;
}
.cid-sPOrIgj6UD .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPOrIgj6UD .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOrIgj6UD .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPOrIgj6UD .modal-open {
  overflow: hidden;
}
.cid-sPOrIgj6UD .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPOrIgj6UD .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPOrIgj6UD .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sPOrIgj6UD .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPOrIgj6UD .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPOrIgj6UD .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPOrIgj6UD .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPOrIgj6UD .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sPOrIgj6UD .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPOrIgj6UD .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPOrIgj6UD .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPOrIgj6UD .modal-backdrop.show {
  opacity: .5;
}
.cid-sPOrIgj6UD .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPOrIgj6UD .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOrIgj6UD .modal-header {
    padding: 1rem;
  }
}
.cid-sPOrIgj6UD .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPOrIgj6UD .modal-header .close svg {
  fill: #353535;
}
.cid-sPOrIgj6UD .modal-header .close:hover {
  opacity: 1;
}
.cid-sPOrIgj6UD .modal-header .close:focus {
  outline: none;
}
.cid-sPOrIgj6UD .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPOrIgj6UD .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPOrIgj6UD .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOrIgj6UD .modal-body {
    padding: 1rem;
  }
}
.cid-sPOrIgj6UD .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPOrIgj6UD .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOrIgj6UD .modal-footer {
    padding: 1rem;
  }
}
.cid-sPOrIgj6UD .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPOrIgj6UD .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sPOrIgj6UD .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPOrIgj6UD .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPOrIgj6UD .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPOrIgj6UD .modal-lg,
  .cid-sPOrIgj6UD .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPOrIgj6UD .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPOrIgj6UD .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPOrIgj6UD .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPOrIgj6UD .form-group {
  margin-bottom: 1rem;
}
.cid-sPOrIgj6UD .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPOrIgj6UD .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPOrIgj6UD .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPOrIgj6UD .mbr-section-btn {
  margin: 0;
}
.cid-sPOrIgj6UD .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOs0Yp3p0.popup-builder {
  background-color: #ffffff;
}
.cid-sPOs0Yp3p0.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sPOs0Yp3p0.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
  margin-top: 0;
  margin-bottom: 0;
  margin: 0;
  height: 100%;
}
.cid-sPOs0Yp3p0 .modal-content,
.cid-sPOs0Yp3p0 .modal-dialog {
  height: auto;
}
.cid-sPOs0Yp3p0 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sPOs0Yp3p0 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sPOs0Yp3p0 .form-wrapper .mbr-form .form-group,
  .cid-sPOs0Yp3p0 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sPOs0Yp3p0 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sPOs0Yp3p0 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPOs0Yp3p0 .mbr-text {
  text-align: center;
}
.cid-sPOs0Yp3p0 .pt-0 {
  padding-top: 0 !important;
}
.cid-sPOs0Yp3p0 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sPOs0Yp3p0 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sPOs0Yp3p0 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sPOs0Yp3p0 .modal-open {
  overflow: hidden;
}
.cid-sPOs0Yp3p0 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sPOs0Yp3p0 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sPOs0Yp3p0 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
  max-width: 100%;
  height: 100%;
  margin: 0;
}
.cid-sPOs0Yp3p0 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sPOs0Yp3p0 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sPOs0Yp3p0 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sPOs0Yp3p0 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sPOs0Yp3p0 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0;
  height: 100%;
  overflow: auto;
}
.cid-sPOs0Yp3p0 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-sPOs0Yp3p0 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sPOs0Yp3p0 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sPOs0Yp3p0 .modal-backdrop.show {
  opacity: .5;
}
.cid-sPOs0Yp3p0 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sPOs0Yp3p0 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOs0Yp3p0 .modal-header {
    padding: 1rem;
  }
}
.cid-sPOs0Yp3p0 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sPOs0Yp3p0 .modal-header .close svg {
  fill: #000000;
}
.cid-sPOs0Yp3p0 .modal-header .close:hover {
  opacity: 1;
}
.cid-sPOs0Yp3p0 .modal-header .close:focus {
  outline: none;
}
.cid-sPOs0Yp3p0 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sPOs0Yp3p0 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-sPOs0Yp3p0 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOs0Yp3p0 .modal-body {
    padding: 1rem;
  }
}
.cid-sPOs0Yp3p0 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sPOs0Yp3p0 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOs0Yp3p0 .modal-footer {
    padding: 1rem;
  }
}
.cid-sPOs0Yp3p0 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sPOs0Yp3p0 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sPOs0Yp3p0 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sPOs0Yp3p0 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-sPOs0Yp3p0 .modal-lg,
  .cid-sPOs0Yp3p0 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-sPOs0Yp3p0 .modal-xl {
    max-width: 1140px;
  }
}
.cid-sPOs0Yp3p0 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sPOs0Yp3p0 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sPOs0Yp3p0 .form-group {
  margin-bottom: 1rem;
}
.cid-sPOs0Yp3p0 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sPOs0Yp3p0 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sPOs0Yp3p0 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sPOs0Yp3p0 .mbr-section-btn {
  margin: 0;
}
.cid-sPOs0Yp3p0 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sPOsmdvUzC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sPOsmdvUzC .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #444444 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sPOsmdvUzC .photo-split {
  padding: 0;
}
.cid-sPOsmdvUzC .photo-split img {
  width: 100%;
}
.cid-sPOsmdvUzC .icon-transition span:hover {
  background-color: #ffbc00;
}
.cid-sPOsmdvUzC .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sPOsmdvUzC .counter-container ul li {
  margin-bottom: .5rem;
  list-style: ✓;
}
.cid-sPOsmdvUzC .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  transition: all .2s;
  width: 25px;
  height: 25px;
}
.cid-sPOsmdvUzC .wrap-block {
  padding: 3rem 3rem;
}
.cid-sPOsmdvUzC .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-sPOsmdvUzC .wrap-block ul li {
  display: inline-block;
}
.cid-sPOsmdvUzC .wrap-block ul li span {
  text-align: center;
}
.cid-sPOsmdvUzC .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-sPOsmdvUzC .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sPOsmdvUzC .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-sPOsmdvUzC .mbr-list,
.cid-sPOsmdvUzC .social-media UL {
  text-align: left;
}
@media (max-width: 500px) {
  .cid-sPOsmdvUzC .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sPOsmdvUzC .mbr-section-title,
  .cid-sPOsmdvUzC .mbr-section-subtitle,
  .cid-sPOsmdvUzC .mbr-text {
    text-align: center !important;
  }
  .cid-sPOsmdvUzC .social-list {
    text-align: center !important;
  }
}
.cid-sPOsmdvUzC .mbr-list,
.cid-sPOsmdvUzC .social-media {
  color: #767676;
}
.cid-sPOsqjShNi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-facebook:hover {
  background: #0b60cb;
}
.cid-sPOsqjShNi .socicon-bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-twitter:hover {
  background: #0c85d0;
}
.cid-sPOsqjShNi .socicon-bg-vkontakte {
  background: #4680C2;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-vkontakte:hover {
  background: #3567a0;
}
.cid-sPOsqjShNi .socicon-bg-odnoklassniki {
  background: #ee8208;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-odnoklassniki:hover {
  background: #bd6706;
}
.cid-sPOsqjShNi .socicon-bg-pinterest {
  background: #e60023;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-pinterest:hover {
  background: #b3001b;
}
.cid-sPOsqjShNi .socicon-bg-mail {
  background: #005ff9;
  color: #ffffff;
}
.cid-sPOsqjShNi .socicon-bg-mail:hover {
  background: #004cc6;
}
.cid-sPOsqjShNi .btn-social {
  font-size: 32px;
  border-radius: 50%;
  padding: 0;
  width: 55px;
  height: 55px;
  line-height: 55px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none !important;
}
.cid-sPOsqjShNi .btn-social i {
  top: 0;
  line-height: 55px;
  width: 55px;
}
.cid-sPOsqjShNi [class^="socicon-"]:before,
.cid-sPOsqjShNi [class*=" socicon-"]:before {
  line-height: 55px;
}
#custom-html-3z {
  /* Type valid CSS here */
}
#custom-html-3z div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3z p {
  font-size: 60px;
  color: #777;
}
.cid-sPOsBJWeKI {
  background-image: url("../../../assets/images/bg2.jpg");
}
.cid-sPOsEdbibY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fffdf7;
}
.cid-sPOsEdbibY .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-sPOsEdbibY .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-sPOsEdbibY .row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sPOsEdbibY .item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  min-height: 400px;
}
@media (min-width: 992px) {
  .cid-sPOsEdbibY .item-image {
    min-height: 794px;
  }
}
.cid-sPOsEdbibY .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px;
  background-image: url("../../../assets/images/background4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cid-sPOsHzOnGU {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sPOsHzOnGU .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sPOsHzOnGU .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sPOsHzOnGU .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-sPOsHzOnGU .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-sPOsHzOnGU .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-sPOsHzOnGU .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sPOsHzOnGU .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-sPOsHzOnGU .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-sPOsHzOnGU .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-sPOsHzOnGU .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sPOsIaMb45 {
  padding-top: 3.5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sPOsIaMb45 .image-wrapper {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPOsIaMb45 .image-wrapper {
    width: 49%;
  }
}
.cid-sPOsIaMb45 .text-wrapper {
  text-align: left;
}
@media (max-width: 991px) {
  .cid-sPOsIaMb45 .text-wrapper {
    width: 100%;
    text-align: center;
  }
  .cid-sPOsIaMb45 .text-wrapper h3 {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .cid-sPOsIaMb45 .text-wrapper p {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .cid-sPOsIaMb45 .text-wrapper {
    padding: 0 4rem;
    width: 49%;
  }
  .cid-sPOsIaMb45 .text-wrapper h3 {
    width: 85%;
    margin-bottom: 2.2rem;
  }
  .cid-sPOsIaMb45 .text-wrapper p {
    width: 50%;
    margin-bottom: 1rem;
  }
}
.cid-sPOsIaMb45 .item-btn {
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 5.2rem;
  right: 3.5rem;
}
.cid-sPOsIaMb45 .item-btn:hover {
  opacity: 0.8;
}
.cid-sPOsIaMb45 .item-btn:hover > span {
  transform: scale(1.3) translateY(0.5rem);
}
.cid-sPOsIaMb45 .item-btn span {
  transform: scale(1.3);
  transition: all 0.8s;
}
@media (max-width: 1199px) {
  .cid-sPOsIaMb45 .item-btn {
    width: 7.6rem;
    height: 7.6rem;
    top: 6.2rem;
    right: 2.5rem;
  }
  .cid-sPOsIaMb45 .item-btn:hover > span {
    transform: translateY(0.5rem);
  }
}
@media (max-width: 992px) {
  .cid-sPOsIaMb45 .item-btn {
    width: 4rem;
    height: 4rem;
    position: static;
    display: inline-flex;
    align-self: center;
    margin-bottom: 1.6rem;
  }
  .cid-sPOsIaMb45 .item-btn:hover > span {
    transform: scale(0.6) translateY(0.3rem);
  }
  .cid-sPOsIaMb45 .item-btn span {
    transform: scale(0.6);
    transition: all 0.8s;
  }
}
@media (max-width: 767px) {
  .cid-sPOsIaMb45 .item-btn {
    position: static;
    margin-top: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  .cid-sPOsIaMb45 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sPOsIaMb45 .mbr-section-title a {
  color: #9b9ba5;
}
.cid-sPOsIaMb45 P {
  color: #9b9ba5;
}
.cid-sPOsIaMb45 .mbr-section-subtitle {
  color: #9b9ba5;
}
.cid-sPOsIMXuf0 {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background-color: #ffffff;
}
.cid-sPOsIMXuf0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPOsIMXuf0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPOsIMXuf0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPOsIMXuf0 .align-bottom {
  margin-left: 3px;
  margin-bottom: 13px;
  padding-bottom: 10px;
}
.cid-sPOsIMXuf0 .mbr-overlay {
  z-index: 1;
}
.cid-sPOsIMXuf0 .carousel,
.cid-sPOsIMXuf0 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-sPOsIMXuf0 .item-wrapper {
  width: 100%;
}
.cid-sPOsIMXuf0 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sPOsIMXuf0 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .cid-sPOsIMXuf0 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sPOsIMXuf0 .carousel-control {
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #E8E8E8;
  border-radius: 50%;
  transition: all 0.3s;
  opacity: 1;
}
.cid-sPOsIMXuf0 .carousel-control span {
  color: #101019;
}
.cid-sPOsIMXuf0 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 1rem;
}
@media (max-width: 767px) {
  .cid-sPOsIMXuf0 .carousel-control.carousel-control-prev {
    margin-left: 0.5rem;
  }
}
.cid-sPOsIMXuf0 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .cid-sPOsIMXuf0 .carousel-control.carousel-control-next {
    margin-right: 0.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sPOsIMXuf0 .carousel-indicators {
    margin-left: 0;
    text-align: center;
  }
}
.cid-sPOsIMXuf0 .carousel-indicators li {
  height: 8px;
  max-height: 8px;
  width: 8px;
  max-width: 8px;
  margin: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.cid-sPOsIMXuf0 .carousel-indicators li.active,
.cid-sPOsIMXuf0 .carousel-indicators li:hover {
  opacity: 0.9;
  border: none;
  margin: 13px 3px;
}
.cid-sPOsIMXuf0 .carousel-indicators li::after,
.cid-sPOsIMXuf0 .carousel-indicators li::before {
  content: none;
}
.cid-sPOsIMXuf0 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sPOsIMXuf0 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 600px) {
  .cid-sPOsIMXuf0 .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-sPOsIMXuf0 .mbr-text,
.cid-sPOsIMXuf0 .mbr-section-btn {
  color: #9b9ba5;
}
.cid-sPOsQOAuQR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/motion2.jpg");
}
.cid-sPOsQOAuQR .mbr-section-subtitle {
  margin-bottom: 1.5rem;
}
.cid-sPOsQOAuQR .linkBtn {
  margin-top: 2.5rem;
}
.cid-sPOsQOAuQR b,
.cid-sPOsQOAuQR strong {
  font-weight: 500;
  color: #f2bb2c;
}
@media (max-width: 767px) {
  .cid-sPOsQOAuQR .mbr-section-subtitle {
    margin-bottom: 0.75rem;
  }
  .cid-sPOsQOAuQR .linkBtn {
    margin-top: 1.5rem;
    text-align: left;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOeLVlDg3 {
  background-color: #ffffff;
}
.cid-sPOeLVlDg3 .mbr-section-title {
  margin-bottom: 50px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
}
.cid-sPOeLVlDg3 .line {
  width: 100%;
  background-color: #e9e9e9;
  height: 1px;
  margin: 36px 0;
  padding: 0;
}
.cid-sPOeLVlDg3 .date {
  color: #000000;
  font-weight: 600;
}
.cid-sPOeLVlDg3 .workplace {
  color: #000000;
  padding-left: 50px;
}
.cid-sPOeLVlDg3 .inline {
  align-items: center;
}
.cid-sPOeLVlDg3 .button {
  text-align: end;
}
.cid-sPOeLVlDg3 .btn {
  font-weight: 500;
}
.cid-sPOeLVlDg3 .btn:hover {
  transform: translateY(-5px);
}
.cid-sPOeLVlDg3 .container {
  max-width: 770px;
}
@media (max-width: 575px) {
  .cid-sPOeLVlDg3 .workplace {
    padding-left: 0px;
    text-align: center;
    margin: 15px auto;
  }
  .cid-sPOeLVlDg3 .button {
    text-align: center;
  }
  .cid-sPOeLVlDg3 .date {
    text-align: center;
  }
}
.cid-sPOeY35gAt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sPOeY35gAt .container-fluid {
  padding: 0 3rem;
}
.cid-sPOeY35gAt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #81acb3 50%, #f2bb2c 120%);
  display: inline-block;
}
.cid-sPOeY35gAt .mbr-section-subtitle {
  color: #767676;
}
.cid-sPOeY35gAt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sPOeY35gAt .table-wrapper {
  margin: 0 auto;
}
.cid-sPOeY35gAt table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sPOeY35gAt table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-sPOeY35gAt table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sPOeY35gAt tr:hover {
  background-color: #efefef !important;
}
.cid-sPOeY35gAt .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-sPOeY35gAt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sPOeY35gAt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sPOeY35gAt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sPOeY35gAt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sPOeY35gAt .dataTables_wrapper {
  display: block;
}
.cid-sPOeY35gAt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sPOeY35gAt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sPOeY35gAt .head-item:after,
.cid-sPOeY35gAt .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sPOeY35gAt .dataTables_filter {
    text-align: center;
  }
  .cid-sPOeY35gAt .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sPOeY35gAt .dataTables_filter {
    text-align: center;
  }
  .cid-sPOeY35gAt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sPOeY35gAt .container-fluid {
    padding: 0 1rem;
  }
  .cid-sPOeY35gAt table th,
  .cid-sPOeY35gAt table td {
    padding: .75rem;
  }
}
.cid-sPOeY35gAt .body-item {
  text-align: center;
}
.cid-sPOeY35gAt .head-item {
  color: #000000;
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOggT2T2q {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOggT2T2q .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-sPOggT2T2q .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #133996;
  margin-right: 2rem;
  border-radius: 40px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-sPOggT2T2q .timeline-text-content p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-sPOggT2T2q .timeline-text-content {
    padding: 1.5rem 0.5rem;
  }
}
.cid-sPOggT2T2q .mbr-timeline-title,
.cid-sPOggT2T2q .mbr-timeline-text {
  color: #ffffff;
}
.cid-sPOggT2T2q .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.cid-sPOggT2T2q .timeline-element:hover .timeline-text-content {
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08) !important;
  -webkit-transition: all 0.4s !important;
  transition: all 0.4s !important;
}
.cid-sPOggT2T2q .timeline-element:hover .timeline-text-content h4,
.cid-sPOggT2T2q .timeline-element:hover .timeline-text-content p {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #fc643f !important;
}
.cid-sPOggT2T2q .timeline-element:hover .iconsBackground span {
  -webkit-transition: color 1s !important;
  transition: color 1s !important;
  color: #fc643f !important;
}
.cid-sPOggT2T2q .timeline-element:hover:before {
  -webkit-transition: background-color 1s !important;
  transition: background-color 1s !important;
  background-color: #fc643f !important;
}
.cid-sPOggT2T2q .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sPOggT2T2q .reverse .timeline-text-content {
  margin-left: 2rem;
  margin-right: 0;
}
.cid-sPOggT2T2q .iconsBackground {
  position: absolute;
  left: 50%;
  width: 60px;
  height: 60px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #133996;
  top: 20px;
  margin-left: -30px;
}
.cid-sPOggT2T2q .iconsBackground span {
  color: #ffffff;
}
.cid-sPOggT2T2q .mbr-iconfont {
  position: absolute;
  text-align: center;
  font-size: 35px;
  display: inline-block;
  z-index: 3;
  top: 13px;
  left: 13px;
}
.cid-sPOggT2T2q .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #133996;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
.cid-sPOggT2T2q .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .cid-sPOggT2T2q .iconsBackground {
    left: 1.5rem;
  }
  .cid-sPOggT2T2q .separline:before {
    left: calc(1.5rem - 1px);
  }
  .cid-sPOggT2T2q .timeline-text-content {
    margin-left: 3rem !important;
    margin-right: 0 !important;
  }
  .cid-sPOggT2T2q .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-sPOghHM22b {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #e6ecf2;
}
.cid-sPOghHM22b .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sPOghHM22b .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sPOghHM22b .mbr-section-title {
  color: #130947;
  font-weight: 700;
  text-align: center;
}
.cid-sPOghHM22b .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sPOghHM22b .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
  color: #6d7a8c;
}
.cid-sPOghHM22b .timelines-container {
  margin-top: 60px;
}
.cid-sPOghHM22b .timelines-container .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-date-panel .time-line-date-content .mbr-figure img {
  border-radius: 4px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.04);
}
.cid-sPOghHM22b .timelines-container .timeline-element .date .mbr-timeline-date {
  color: #130947;
  font-weight: 700;
}
.cid-sPOghHM22b .timelines-container .timeline-element .date .display-7 {
  font-size: 20px;
  line-height: 1;
}
.cid-sPOghHM22b .timelines-container .timeline-element .iconBackground {
  position: absolute;
  left: 41%;
  width: 12px;
  height: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  background-color: #4f87fb;
  font-size: 30px;
  display: inline-block;
  top: 0px;
  margin-left: -5px;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-text-content {
  margin-left: 2rem;
  text-align: left;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-text-content .mbr-timeline-title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #130947;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-text-content .mbr-timeline-text {
  margin: 0 0 25px;
  line-height: 1.5;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-text-content .display-5 {
  line-height: 1.09;
  font-size: 22px;
  letter-spacing: -0.5px;
}
.cid-sPOghHM22b .timelines-container .timeline-element .timeline-text-content .display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-sPOghHM22b .container-fluid {
  padding: 0 2rem;
}
.cid-sPOghHM22b .separline:before,
.cid-sPOghHM22b .first-separline:before {
  top: 0rem;
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #ffffff;
  left: calc(41% - 1px);
  height: calc(100% + 3rem);
}
.cid-sPOghHM22b .separline:after {
  top: calc(100% + 3.1rem);
  bottom: 0;
  position: absolute;
  content: '';
  width: 4px;
  background-color: #ffffff;
  left: calc(41% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sPOghHM22b .container-fluid {
    padding: 0 1rem;
  }
  .cid-sPOghHM22b .iconBackground {
    left: -9px !important;
    top: 33px;
  }
  .cid-sPOghHM22b .separline:before,
  .cid-sPOghHM22b .first-separline:before {
    left: -10px !important;
  }
  .cid-sPOghHM22b .separline:after {
    left: -10px !important;
    top: calc(102.4%);
  }
  .cid-sPOghHM22b .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sPOghHM22b .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sPOghHM22b .time-line-date-content p {
    float: left !important;
  }
  .cid-sPOghHM22b .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
  .cid-sPOghHM22b .timelines-container .timeline-element .date .mbr-timeline-date {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.cid-sPOghHM22b .reverseTimeline {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
.cid-sPOgjeqWXq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOgjeqWXq .title__wrap {
  margin-bottom: 30px;
}
.cid-sPOgjeqWXq .title__block {
  margin-bottom: 10px;
}
.cid-sPOgjeqWXq .mbr-section-title,
.cid-sPOgjeqWXq .text__time,
.cid-sPOgjeqWXq .mbr-text,
.cid-sPOgjeqWXq .text__author,
.cid-sPOgjeqWXq .text__hall {
  margin-bottom: 0;
}
.cid-sPOgjeqWXq .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-sPOgjeqWXq .buttons {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.cid-sPOgjeqWXq .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 10px;
  border: none !important;
  background-color: transparent !important;
}
.cid-sPOgjeqWXq .mbr-section-btn .btn-secondary-outline:hover {
  color: #81acb3 !important;
}
.cid-sPOgjeqWXq .wrap {
  margin: 0;
  padding: 25px 0;
  border-top: 1px solid rgba(25, 31, 35, 0.4);
}
.cid-sPOgjeqWXq .wrap:last-child {
  border-bottom: 1px solid rgba(25, 31, 35, 0.4);
}
.cid-sPOgjeqWXq .plpr_0 {
  padding-left: 0;
  padding-right: 0;
}
.cid-sPOgjeqWXq .nav-tabs .nav-item.open .nav-link:focus,
.cid-sPOgjeqWXq .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sPOgjeqWXq .nav-tabs {
  flex-wrap: wrap;
  border-bottom: none;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .cid-sPOgjeqWXq .nav-tabs {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cid-sPOgjeqWXq .nav-tabs .nav-link {
  border-radius: 0 !important;
  color: #17161a;
  font-style: normal;
  font-weight: 700;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  margin-right: 25px;
  padding: 12px 0 !important;
}
.cid-sPOgjeqWXq .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-sPOgjeqWXq .nav-tabs .nav-link.active {
  font-weight: 700;
  font-style: normal;
  background-color: transparent !important;
  border-bottom: 2px solid #d90a2c;
}
.cid-sPOgjeqWXq .nav-tabs .nav-link.active:hover {
  background-color: #d90a2c;
}
@media (max-width: 991px) {
  .cid-sPOgjeqWXq .align-right {
    text-align: left !important;
  }
}
@media (max-width: 575px) {
  .cid-sPOgjeqWXq .buttons {
    justify-content: flex-start;
  }
}
.cid-sPOgjeqWXq .btn:hover .mbr-iconfont {
  animation: animBtn ease-out 0.3s;
}
@keyframes animBtn {
  0% {
    transform: translateX(0px);
  }
  51% {
    transform: translateX(20px);
    opacity: 1;
  }
  52% {
    opacity: 0;
    transform: translateX(-20px);
  }
  53% {
    opacity: 0;
  }
  54% {
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
  }
}
.cid-sPOglkhuJQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOglkhuJQ .container-fluid {
  padding: 0 3rem;
}
.cid-sPOglkhuJQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #81acb3 50%, #f2bb2c 120%);
  display: inline-block;
}
.cid-sPOglkhuJQ .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-sPOglkhuJQ .timeline-text-content p {
  margin-bottom: 0;
}
.cid-sPOglkhuJQ .time-line-date-content {
  margin-right: 2rem;
}
.cid-sPOglkhuJQ .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-sPOglkhuJQ .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.cid-sPOglkhuJQ .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fe525b;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-sPOglkhuJQ .separline:before,
.cid-sPOglkhuJQ .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-sPOglkhuJQ .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sPOglkhuJQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-sPOglkhuJQ .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-sPOglkhuJQ .separline:before,
  .cid-sPOglkhuJQ .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-sPOglkhuJQ .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-sPOglkhuJQ .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sPOglkhuJQ .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sPOglkhuJQ .time-line-date-content p {
    float: left !important;
  }
  .cid-sPOglkhuJQ .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-sPOglkhuJQ .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-sPOgnL2xMm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sPOgnL2xMm .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-sPOgnL2xMm .card-img {
  padding-bottom: 2rem;
}
.cid-sPOgnL2xMm .mbr-text {
  color: #767676;
}
.cid-sPOgnL2xMm span {
  font-size: 14px;
  color: #ffffff;
}
.cid-sPOgnL2xMm .mbr-section-btn {
  margin-left: 0;
}
.cid-sPOgnL2xMm .date span {
  display: inline-block;
  background-color: #f2bb2c;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sPOgnL2xMm .card-title {
    text-align: center;
  }
  .cid-sPOgnL2xMm p.mbr-text,
  .cid-sPOgnL2xMm p.date {
    text-align: center;
  }
}
.cid-sPOgsO7EqG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #ffffff;
  background-color: #141414;
}
.cid-sPOgsO7EqG .timelines-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1180px;
  padding: 0 60px;
}
@media (max-width: 575px) {
  .cid-sPOgsO7EqG .timelines-container {
    padding: 0 24px;
  }
}
.cid-sPOgsO7EqG .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-sPOgsO7EqG .timeline-element {
  position: relative;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .cid-sPOgsO7EqG .timeline-element {
    width: 100%;
  }
}
.cid-sPOgsO7EqG .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sPOgsO7EqG .iconBackground {
  position: absolute;
  left: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  top: 0;
  padding: 0;
}
.cid-sPOgsO7EqG .row:not(:last-child) .separline:before {
  top: 60px;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: 5px;
  height: calc(100% - 60px);
}
.cid-sPOgsO7EqG .mbr-section-title,
.cid-sPOgsO7EqG .mbr-section-subtitle {
  text-align: center;
}
.cid-sPOgsO7EqG .time-line-date-content {
  padding-left: 60px;
}
@media (min-width: 992px) {
  .cid-sPOgsO7EqG .time-line-date-content {
    margin-right: 30px;
    max-width: 350px;
    box-sizing: content-box;
  }
}
.cid-sPOgsO7EqG .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-sPOgsO7EqG .mbr-timeline-date {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 7rem;
  line-height: normal;
}
@media (max-width: 575px) {
  .cid-sPOgsO7EqG .mbr-timeline-date {
    font-size: 4rem;
  }
}
.cid-sPOgsO7EqG .mbr-timeline-text {
  color: #ffffff;
}
.cid-sPOgsO7EqG .mbr-timeline-title {
  color: #ffffff;
}
.cid-sPOgsO7EqG .timeline-date-panel {
  padding: 0;
  position: relative;
}
@media (max-width: 991px) {
  .cid-sPOgsO7EqG .timeline-date-panel {
    margin-bottom: 16px;
  }
}
.cid-sPOgsO7EqG .timeline-img-panel {
  padding: 0;
}
.cid-sPOgsO7EqG .history-image {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-sPOgsO7EqG .container-fluid {
  padding: 0;
  display: flex;
  justify-content: center;
}
.cid-sPOgzYB14M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sPOgzYB14M .wrapper {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-sPOgzYB14M .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sPOgzYB14M .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-sPOgzYB14M .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: 2rem;
}
@media (max-width: 991px) {
  .cid-sPOgzYB14M .social-row .soc-item {
    margin-right: .7rem;
  }
}
.cid-sPOgzYB14M .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #ffa29d;
  transition: all 0.3s;
  color: #ffa29d;
}
.cid-sPOgzYB14M .social-row .soc-item .mbr-iconfont:hover {
  background-color: #ffa29d;
  color: #000000;
}
.cid-sPOgzYB14M .border {
  padding: 2.5rem 2rem;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-sPOgzYB14M .border {
    padding: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOgzYB14M .wrapp {
    padding: 1rem;
  }
}
.cid-sPOgDo0eMW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sPOgDo0eMW .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sPOgDo0eMW .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-sPOgDo0eMW .card-wrapper {
  background-color: #ffffff;
  border-radius: 30px;
  border: 1px solid;
  background: #ffffff;
  transition: all 0.3s;
  position: relative;
  padding: 44px 40px;
}
@media (max-width: 991px) {
  .cid-sPOgDo0eMW .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sPOgDo0eMW .btn {
  border-radius: 30px;
}
@media (max-width: 768px) {
  .cid-sPOgDo0eMW .btn {
    width: 100%;
    margin-left: 0;
  }
}
.cid-sPOgDo0eMW .b1 {
  background-color: #FFA29D;
}
.cid-sPOgDo0eMW .b2 {
  background-color: #cacbcc;
}
.cid-sPOgDo0eMW .b3 {
  background-color: #51add0;
}
.cid-sPOgDo0eMW .info {
  width: 120px;
  height: 120px;
  position: absolute;
  top: -40px;
  right: -40px;
}
@media (max-width: 768px) {
  .cid-sPOgDo0eMW .info {
    right: -10px;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOgKKpwHj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sPOgKKpwHj .wrapper {
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 26px 1px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 26px 1px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 26px 1px rgba(34, 60, 80, 0.2);
}
@media (max-width: 991px) {
  .cid-sPOgKKpwHj .wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPOgKKpwHj .wrapper {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sPOgKKpwHj .wrapp {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sPOgKKpwHj .wrapp {
    padding: 4rem 6rem;
  }
}
.cid-sPOgLQ88oW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sPOgLQ88oW .wrapper {
  background-color: #51add0;
  border-radius: 30px;
  background-size: cover;
  position: relative;
}
.cid-sPOgLQ88oW .wrapper img {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cid-sPOgLQ88oW .wrapper {
    padding: 1rem;
  }
  .cid-sPOgLQ88oW .wrapper img {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .cid-sPOgLQ88oW .wrapper {
    padding: 6rem;
  }
  .cid-sPOgLQ88oW .wrapper img {
    width: 100%;
  }
}
.cid-sPOgLQ88oW .btn-black {
  position: relative;
  border-radius: 20px;
  padding: 2rem 4rem 2rem 1.5rem;
  transition: all .3s;
  transform-style: preserve-3d;
}
@media (max-width: 768px) {
  .cid-sPOgLQ88oW .btn-black {
    width: 100%;
    padding: 2rem 1rem;
  }
  .cid-sPOgLQ88oW .btn-black::after,
  .cid-sPOgLQ88oW .btn-black::before {
    display: none;
  }
}
.cid-sPOgLQ88oW .btn-black::before {
  position: absolute;
  background-color: #ff6a61;
  content: "";
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transition: all .3s;
  left: 0;
  transform: translateZ(-1px);
}
.cid-sPOgLQ88oW .btn-black:hover::before {
  width: 120%;
  height: 100px;
  left: -5px;
}
.cid-sPOgLQ88oW .btn-black::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: all .3s;
  font-size: 20px;
  bottom: 35%;
}
.cid-sPOgLQ88oW .btn-black:hover::after {
  right: -15px;
  font-size: 30px;
  bottom: 28%;
}
@media (min-width: 769px) {
  .cid-sPOgLQ88oW .btn-black:hover {
    padding: 2rem 3.5rem 2rem 2rem;
    margin-right: 40px;
  }
}
.cid-sPOgLQ88oW .color {
  color: #FFA29D;
}
.cid-sPOgLQ88oW .mbr-overlay {
  border-radius: 30px;
  min-height: 100%;
}
.cid-sPOgOs3yq9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sPOgOs3yq9 .google-map {
  height: 30rem;
  position: relative;
}
.cid-sPOgOs3yq9 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPOgOs3yq9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPOgOs3yq9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPOgOs3yq9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPOgQz6w9j {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOgQz6w9j .card-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPOgQz6w9j .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sPOgQz6w9j .line {
  width: calc(100% - 2rem);
  background: currentColor;
  height: 2px;
  margin: auto;
  margin-top: 2rem;
}
.cid-sPOgQz6w9j .card-title {
  padding-right: 1rem;
  margin: 0;
}
.cid-sPOgQz6w9j .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
  padding: 1rem;
  border-radius: 50%;
  background: #fa4529;
  margin-right: 1rem;
}
.cid-sPOgQz6w9j .mbr-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-sPOgQz6w9j .card-wrapper,
  .cid-sPOgQz6w9j .mbr-flex {
    flex-direction: column;
  }
  .cid-sPOgQz6w9j .mbr-iconfont {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .cid-sPOgQz6w9j h4 {
    padding: 0;
  }
}
.cid-sPOgQz6w9j .card-text {
  color: #000000;
}
.cid-sPOgRSuQ27 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #51add0;
}
@media (max-width: 991px) {
  .cid-sPOgRSuQ27 .wrapper {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .cid-sPOgRSuQ27 .wrapper {
    padding: 4rem 6rem;
  }
}
.cid-sPOgRSuQ27 .google-map {
  height: 100%;
  position: relative;
}
.cid-sPOgRSuQ27 .google-map iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
.cid-sPOgRSuQ27 .google-map [data-state-details] {
  color: #fafafa;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPOgRSuQ27 .google-map[data-state] {
  background: #fafafa;
}
.cid-sPOgRSuQ27 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPOgRSuQ27 .card-wrapper {
  display: flex;
  border-radius: 30px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-sPOgRSuQ27 .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPOgRSuQ27 .card-wrapper {
    padding: 44px 40px;
  }
}
.cid-sPOgRSuQ27 .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #81acb3;
}
.cid-sPOh4Yy8qJ {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #111111;
}
.cid-sPOh4Yy8qJ img {
  width: 100%;
  transition: all 0.6s ease-in-out;
  height: 260px;
  object-fit: cover;
}
.cid-sPOh4Yy8qJ .link-wrapper {
  margin-bottom: 1rem;
}
.cid-sPOh4Yy8qJ .link-wrapper .mbr-iconfont {
  border: 1px solid #999999;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem;
  color: #999999;
}
.cid-sPOh4Yy8qJ .img-wrapper .mbr-iconfont {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-bottom: 1rem;
  background: linear-gradient(to left, #f2bb2c, #81acb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-sPOh4Yy8qJ .card-wrapper {
  background: #191919;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-sPOh4Yy8qJ .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sPOh4Yy8qJ .first:hover:before {
  content: none;
}
.cid-sPOh4Yy8qJ .first:before {
  position: absolute;
  top: -1rem;
  z-index: -1;
  left: 0rem;
  width: 300px;
  height: 200px;
  background: linear-gradient(to left, #f2bb2c, #81acb3);
  content: "";
}
.cid-sPOh4Yy8qJ .last:hover:after {
  content: none;
}
.cid-sPOh4Yy8qJ .last:after {
  position: absolute;
  bottom: -1rem;
  right: 0rem;
  width: 300px;
  z-index: -1;
  height: 200px;
  background: linear-gradient(to left, #f2bb2c, #81acb3);
  content: "";
}
.cid-sPOh4Yy8qJ .mbr-section-text {
  color: #999999;
}
.cid-sPOh4Yy8qJ .card {
  z-index: 1;
  min-height: 200px;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s;
}
.cid-sPOh4Yy8qJ .card .img-wrapper {
  overflow: hidden;
}
.cid-sPOh4Yy8qJ .card:hover {
  transform: translateY(-10px);
  cursor: pointer;
}
.cid-sPOh4Yy8qJ .card:hover .mbr-iconfont {
  color: #ffffff !important;
  border-color: #ffffff;
  -webkit-background-clip: transparent;
  -webkit-text-fill-color: unset;
}
.cid-sPOh4Yy8qJ .card:hover .card-wrapper {
  background: linear-gradient(to left, #f2bb2c, #81acb3);
  color: #ffffff !important;
}
.cid-sPOh4Yy8qJ .card:hover .card-wrapper .mbr-section-text {
  color: #ffffff !important;
}
.cid-sPOh7j7qEC {
  padding-top: 135px;
  padding-bottom: 135px;
  background: #1b1b1b;
}
.cid-sPOh7j7qEC .mbr-iconfont-social {
  font-size: 1rem;
  color: #ffffff;
  margin-right: 0.6rem;
}
.cid-sPOh7j7qEC .mbr-iconfont-social:before {
  padding: 1rem;
  border: 2px solid;
  border-radius: 100px;
  border-color: #ff9966;
  transition: all 0.3s;
}
.cid-sPOh7j7qEC .mbr-iconfont-social:hover {
  color: #ff9966;
}
.cid-sPOh7j7qEC .mbr-section-title,
.cid-sPOh7j7qEC .social-list {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.cid-sPOh7j7qEC .social-list a {
  transition: 0.3s;
}
.cid-sPOh7j7qEC .social-list a:hover {
  transform: translateY(-8px);
}
@media (max-width: 992px) {
  .cid-sPOh7j7qEC .block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-sPOh7j7qEC .social-list {
    margin-bottom: 2rem;
  }
  .cid-sPOh7j7qEC .mbr-section-title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sPOh7j7qEC .block-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .cid-sPOh7j7qEC .btn {
    margin-right: 0rem;
    margin-bottom: 0rem;
  }
  .cid-sPOh7j7qEC .row {
    padding: 0 1rem;
  }
}
.cid-sPOh7j7qEC .vertical-line:before {
  content: '';
  background-color: #ff9966;
  height: 60px;
  width: 2px;
  position: absolute;
  top: -30px;
  left: 50%;
}
.cid-sPOhiBLvfj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #181818;
}
.cid-sPOhiBLvfj .mbr-section-title {
  line-height: 1.3;
}
.cid-sPOhiBLvfj .mbr-text {
  font-weight: 300;
  line-height: 1.4;
}
.cid-sPOhiBLvfj .content-card {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 6.24rem 8.76rem;
  border: 1px solid #181818;
  margin: 0.1px;
}
@media (max-width: 768px) {
  .cid-sPOhiBLvfj .content-card {
    padding: 2.5rem 1rem;
  }
}
@media (max-width: 992px) {
  .cid-sPOhiBLvfj .content-card {
    text-align: center;
  }
}
.cid-sPOhiBLvfj .container-link {
  border-radius: 100%;
  width: 18.5rem;
  height: 18.5rem;
  color: #fff;
  background-color: #181818;
  text-transform: uppercase;
  transition: background-color 200ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  font-weight: 500;
}
@media (max-width: 992px) {
  .cid-sPOhiBLvfj .container-link {
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .cid-sPOhiBLvfj .container-link {
    width: 15rem;
    height: 15rem;
  }
}
.cid-sPOhiBLvfj .container-link:hover {
  background-image: none;
  transform: scale(1.1);
}
.cid-sPOhiBLvfj .button-text {
  margin-bottom: 3.16rem;
}
.cid-sPOhiBLvfj .mobi-mbri-download {
  position: relative;
  top: 2.5rem;
  font-size: 23px;
}
.cid-sPOhiBLvfj .mbr-iconfont {
  color: #ffffff;
}
.cid-sPOhwQV7ku {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-sPOhwQV7ku .image img {
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sPOhwQV7ku .image {
    margin-bottom: 30px;
  }
}
.cid-sPOhwQV7ku .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-sPOhwQV7ku .mbr-text {
  margin-bottom: 20px;
}
.cid-sPOhwQV7ku .mbr-section-btn {
  margin-bottom: 30px;
}
.cid-sPOhwQV7ku .progress {
  width: 100%;
  border-radius: 4px;
}
.cid-sPOhwQV7ku progress {
  height: 8px;
}
.cid-sPOhwQV7ku .progress_value {
  position: absolute;
  color: #ffffff;
  background-color: #17161a;
  padding: 0 8px;
  border-radius: 4px;
  border-bottom-right-radius: 0px;
  height: 24px;
  line-height: 24px;
  right: 0%;
  font-weight: 600;
  width: 45px;
  font-size: 11px;
}
.cid-sPOhwQV7ku .progress_value::before {
  content: '';
  border-top: 6px solid #17161a;
  border-left: 8px solid transparent;
  position: absolute;
  right: 0;
  bottom: -5px;
}
.cid-sPOhwQV7ku .progress_value .progressbar-number,
.cid-sPOhwQV7ku .progress_value span {
  font-weight: 600;
}
.cid-sPOhwQV7ku .progress_value span {
  padding-left: 0;
  vertical-align: bottom;
  right: 8px;
  position: absolute;
  line-height: inherit;
}
.cid-sPOhwQV7ku .progress_elements {
  margin: 0 auto;
}
.cid-sPOhwQV7ku .progressbar-title p {
  margin: 5px 0;
  font-weight: 600;
}
.cid-sPOhwQV7ku .title-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.cid-sPOhwQV7ku .progress1 .progressbar-number:before {
  position: absolute;
  right: 20px;
  top: 0;
  content: '100';
}
.cid-sPOhwQV7ku progress[value]::-webkit-progress-bar {
  background-color: rgba(136, 136, 136, 0.1) !important;
}
.cid-sPOhwQV7ku progress::-webkit-progress-value {
  background: #d90a2c;
  border-radius: 4px;
}
.cid-sPOhwQV7ku progress[value]::-moz-progress-bar {
  background: #d90a2c;
  border-radius: 4px;
}
.cid-sPOhwQV7ku progress::-ms-fill {
  background: #d90a2c;
  border-radius: 4px;
}
.cid-sPOhwQV7ku .progress-primary {
  background-color: rgba(136, 136, 136, 0.1) !important;
  border: none;
  outline: none;
}
.cid-sPOhwQV7ku .progress-primary::-webkit-progress-bar {
  background-color: rgba(136, 136, 136, 0.1) !important;
}
.cid-sPOhEtmqdH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
@media (max-width: 767px) {
  .cid-sPOhEtmqdH .mbr-text {
    text-align: center;
  }
}
.cid-sPOhEtmqdH .container-fluid {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sPOhEtmqdH .media-content {
    max-width: 650px;
    padding: 5rem 2rem;
    margin: auto;
  }
}
.cid-sPOhEtmqdH .media-content {
  padding: 5rem 2rem;
}
.cid-sPOhEtmqdH img {
  height: 100%;
  object-fit: cover;
}
.cid-sPOhEtmqdH .mbr-figure {
  height: 100%;
}
.cid-sPOhEtmqdH .col-lg-5,
.cid-sPOhEtmqdH .col-lg-7 {
  padding: 0;
}
.cid-sPOhEtmqdH .row {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-sPOhEtmqdH .media-content {
    padding: 3rem 1rem;
  }
}
.cid-sPOhD5Fqrg {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOhD5Fqrg li {
  list-style: none;
}
.cid-sPOhD5Fqrg .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
  justify-content: space-between;
}
.cid-sPOhD5Fqrg .col-title {
  margin-bottom: 2rem;
}
.cid-sPOhD5Fqrg .list-col {
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.cid-sPOhD5Fqrg .mbr-iconfont {
  font-size: 1.6rem;
  padding-right: 4rem;
  height: 28px;
  display: block;
  cursor: pointer;
  transition: all 0.6s;
  color: #000000 !important;
}
.cid-sPOhD5Fqrg .mbr-iconfont:hover {
  color: #ff2d55 !important;
}
.cid-sPOhD5Fqrg .time-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
}
.cid-sPOhD5Fqrg h4 {
  margin: 0;
}
.cid-sPOhD5Fqrg ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-sPOhD5Fqrg .md-pb {
    padding-bottom: 1rem;
  }
  .cid-sPOhD5Fqrg .mbr-iconfont {
    padding-right: 1rem;
  }
  .cid-sPOhD5Fqrg .item-wrap {
    flex-direction: column;
  }
  .cid-sPOhD5Fqrg .time-wrap {
    min-width: 80px;
    margin-top: 0.4rem;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOi6Hg8Im {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPOi6Hg8Im .mbr-overlay {
  z-index: 1;
}
.cid-sPOi6Hg8Im .embla {
  position: relative;
  width: 100%;
}
.cid-sPOi6Hg8Im .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-sPOi6Hg8Im .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-sPOi6Hg8Im .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-sPOi6Hg8Im .embla__container {
  display: flex;
  align-items: center;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-sPOi6Hg8Im .embla__slide {
  position: relative;
  min-width: 25%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1400px) {
  .cid-sPOi6Hg8Im .embla__slide {
    min-width: 22%;
    max-width: 26%;
  }
}
@media (max-width: 1200px) {
  .cid-sPOi6Hg8Im .embla__slide {
    min-width: 30%;
  }
}
@media (max-width: 900px) {
  .cid-sPOi6Hg8Im .embla__slide {
    min-width: 50%;
  }
}
@media (max-width: 768px) {
  .cid-sPOi6Hg8Im .embla__slide {
    min-width: 70%;
  }
}
.cid-sPOi6Hg8Im .text-content-block {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
}
.cid-sPOi6Hg8Im .loop-warning {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  top: 0;
  z-index: 999;
}
.cid-sPOi6Hg8Im .loop-warning__content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}
.cid-sPOi6Hg8Im .align-content-block {
  margin: 50% 0 10% 0;
}
.cid-sPOi6Hg8Im h5,
.cid-sPOi6Hg8Im p {
  text-align: center;
}
.cid-sPOi6Hg8Im .embla__slide__inner {
  position: relative;
  overflow: hidden;
  margin: -50% 0 0 0;
}
.cid-sPOi6Hg8Im .item-wrapper {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPOi6Hg8Im .item-menu-overlay {
  border-radius: 20px;
  z-index: 0;
}
.cid-sPOi6Hg8Im .embla__slide__img {
  display: block;
  height: 100%;
  object-fit: cover;
}
.cid-sPOi6Hg8Im .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(20, 20, 20, 0.5);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sPOi6Hg8Im .embla__button:disabled {
  cursor: default;
  opacity: 0.3;
}
.cid-sPOi6Hg8Im .embla__button:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
}
.cid-sPOi6Hg8Im .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sPOi6Hg8Im .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sPOi6Hg8Im .embla__button {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sPOiaGoEFN {
  padding-top: 420px;
  background-image: url("../../../assets/images/background7.jpg");
}
.cid-sPOiw3WI0D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #121212;
}
.cid-sPOiw3WI0D h1 {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2rem;
}
.cid-sPOiw3WI0D .row {
  align-items: center;
  background: #f9f9f9;
  overflow: hidden;
  padding: 0rem;
  border: 2px solid #e7e7e7;
  border-radius: 2rem;
  margin: 0;
  padding-bottom: 2rem;
}
.cid-sPOiw3WI0D .col-lg-6 {
  padding: 0 2rem;
}
.cid-sPOiw3WI0D .image-wrapper {
  padding: 2rem;
}
@media (max-width: 991px) {
  .cid-sPOiw3WI0D .image-wrapper {
    padding: 1rem;
  }
}
.cid-sPOiw3WI0D img {
  width: 100%;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #000000;
}
@media (max-width: 991px) {
  .cid-sPOiw3WI0D .align-left,
  .cid-sPOiw3WI0D .align-right {
    text-align: center;
  }
}
.cid-sPOiDKWoCw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sPOiDKWoCw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-sPOiDKWoCw .container-fluid {
    padding: 0 3rem;
  }
}
.cid-sPOiDKWoCw .row {
  align-items: center;
}
.cid-sPOiDKWoCw img {
  width: 100%;
  height: 100%;
}
.cid-sPOiDKWoCw .col-lg-3 {
  height: 300px;
}
.cid-sPOiDKWoCw .col-lg-2 {
  height: 400px;
}
.cid-sPOiDKWoCw .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-sPOiDKWoCw .image-wrapper img {
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-sPOiDKWoCw .col-12 {
    margin-bottom: 3rem;
  }
}
.cid-sPOiFwpXGY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sPOiFwpXGY .video-wrapper {
  overflow: hidden;
}
.cid-sPOiFwpXGY .row {
  flex-direction: row-reverse;
}
.cid-sPOiFwpXGY iframe {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  display: inline-block;
}
.cid-sPOiFwpXGY .container-fluid {
  padding: 0 !important;
}
.cid-sPOiFwpXGY .mbr-section-head {
  padding-bottom: 4rem;
}
.cid-sPOiFwpXGY .mbr-section-title b:last-child,
.cid-sPOiFwpXGY .mbr-section-title strong:last-child {
  color: #f23801;
}
.cid-sPOiJa623T {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sPOiJa623T {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-sPOiJa623T .box {
    height: 250px;
  }
  .cid-sPOiJa623T .row {
    padding: 1rem !important;
  }
  .cid-sPOiJa623T .mbr-text {
    margin-top: 30px;
    text-align: left;
  }
}
.cid-sPOiJa623T .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #81acb3;
  background-color: rgba(0, 0, 0, 0.15);
  margin-bottom: 16px;
}
.cid-sPOiJa623T .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-sPOiJa623T .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-sPOiJa623T .mbr-section-title {
  color: #404040;
  font-weight: 500;
  margin-bottom: 21px;
}
.cid-sPOiJa623T .mbr-text {
  color: #606060;
}
.cid-sPOiJa623T .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-sPOiJa623T .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
}
.cid-sPOiJa623T .mbr-list .list li {
  line-height: 1.75;
}
.cid-sPOiJa623T .mbr-list .list li:before {
  font-weight: 900;
  color: #3c71d3;
  display: inline-block;
  font-family: FontAwesome !important;
  content: "\f061";
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-right: 10px;
}
.cid-sPOiJa623T .mbr-section-btn {
  text-align: left;
  margin-top: 30px;
}
.cid-sPOiJa623T .mbr-section-btn .btn {
  padding: 18px 26px;
  font-weight: 600;
}
.cid-sPOiJa623T .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-sPOiJa623T .mbr-section-btn .btn-secondary:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-sPOiJa623T .box {
  background-image: url("../../../assets/images/01.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 0;
}
.cid-sPOiJa623T .box .overlay {
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sPOiJa623T .icon-wrap {
  border-radius: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-sPOiJa623T .icon-wrap span {
  padding-left: 8px;
}
.cid-sPOiJa623T .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  opacity: 0.9;
  transition: all 0.25s;
  color: #000000 !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04) !important;
}
.cid-sPOiJa623T .mbr-media span:hover {
  opacity: 1;
  color: #000000 !important;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5) !important;
}
.cid-sPOiJa623T .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sPOiJa623T .play {
  width: 70px;
  height: 70px;
  line-height: 3.5rem !important;
  text-align: center;
  border-radius: 100%;
  background: #ffffff;
  display: inline-block;
  transition: all 200ms ease-in-out;
  margin: 0 auto;
  cursor: pointer;
}
.cid-sPOiJa623T .play:before {
  font-family: FontAwesome !important;
  content: "\f04b";
  font-size: 1.4rem;
  padding: 7px 0 0 2px;
  display: block;
}
.cid-sPOiJa623T .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sPOiJa623T .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sPOiJa623T .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sPOiJa623T a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sPOiJa623T a.close:hover {
  color: #ffffff;
}
.cid-sPOj1LTheG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOj1LTheG .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #81acb3;
  margin-bottom: 2rem;
}
.cid-sPOj1LTheG .link {
  opacity: 0;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  transform: translate3d(0, 100%, 0);
  transition: all 0.3s;
}
.cid-sPOj1LTheG img {
  border-radius: 10px;
}
.cid-sPOj1LTheG .date {
  margin: 20px 0;
  color: #3F424E;
}
.cid-sPOj1LTheG .mbr-section-title {
  color: #000000;
}
.cid-sPOj1LTheG .mbr-buttons {
  background-color: #81acb3;
}
.cid-sPOj1LTheG .header {
  margin-bottom: 50px;
  align-items: center;
}
.cid-sPOj1LTheG a {
  text-transform: uppercase;
  color: #81acb3;
}
.cid-sPOj1LTheG svg {
  padding-left: 15px;
  transition: 0.3s;
}
.cid-sPOj1LTheG .link:hover svg {
  padding-left: 7px;
  transition: 0.3s;
}
.cid-sPOj1LTheG .card-heading {
  line-height: 1.2;
  margin: 0px;
}
.cid-sPOj1LTheG .item-wrapper:hover {
  cursor: pointer;
}
.cid-sPOj1LTheG .item-wrapper:hover .link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cid-sPOj1LTheG .button {
  text-align: right;
}
@media (max-width: 600px) {
  .cid-sPOj1LTheG .header {
    margin-bottom: 20px;
  }
  .cid-sPOj1LTheG .link {
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 1;
    transform: none;
  }
  .cid-sPOj1LTheG .button {
    text-align: left;
  }
}
@media (min-width: 600px) and (max-width: 1000px) {
  .cid-sPOj1LTheG .link {
    margin-bottom: 40px;
  }
}
.cid-sPOj1LTheG .mbr-section-btn {
  position: absolute;
  right: 0;
}
.cid-sPOj7CqBJ9 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #fffdf7;
}
.cid-sPOj7CqBJ9 .container-fluid {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 992px) {
  .cid-sPOj7CqBJ9 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-sPOj7CqBJ9 .wrap {
  display: flex;
  padding: 0;
  flex-wrap: nowrap;
}
@media (min-width: 992px) {
  .cid-sPOj7CqBJ9 .wrap {
    flex-wrap: nowrap;
  }
}
.cid-sPOj7CqBJ9 .numbering-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid currentColor;
  box-sizing: content-box;
  border-radius: 100%;
  min-height: 90px;
  min-width: 90px;
  margin-bottom: auto;
  margin-top: 20px;
  margin-left: 32px;
  margin-right: 2%;
}
.cid-sPOj7CqBJ9 .numbering {
  font-size: 80px;
}
.cid-sPOj7CqBJ9 .item-img {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-sPOj7CqBJ9 .item-img {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-sPOj7CqBJ9 .item-img {
    padding-bottom: 50px;
  }
}
.cid-sPOj7CqBJ9 .img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 254px;
  height: 254px;
}
@media (max-width: 991px) {
  .cid-sPOj7CqBJ9 .img {
    margin-top: 200px;
  }
}
.cid-sPOj7CqBJ9 .img img {
  object-fit: cover;
  height: 100%;
}
.cid-sPOj7CqBJ9 .text-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding-top: 25px;
}
@media (max-width: 767px) {
  .cid-sPOj7CqBJ9 .text-container {
    flex-direction: column;
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-sPOj7CqBJ9 .item-text {
    margin-left: -100%;
    margin-top: 162px;
  }
}
@media (max-width: 767px) {
  .cid-sPOj7CqBJ9 .item-text {
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .cid-sPOj7CqBJ9 .text-container {
    margin-left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sPOj7CqBJ9 .text-container {
    margin-left: 0;
  }
}
.cid-sPOj7CqBJ9 .item-text {
  padding: 0 32px;
}
.cid-sPOj7CqBJ9 .sublabel {
  margin-bottom: 20px;
}
.cid-sPOj7CqBJ9 .link {
  margin-top: 10px;
}
.cid-sPOj7CqBJ9 .mbr-section-title {
  margin: 20px 0 20px;
}
.cid-sPOj7CqBJ9 .emerging-underline-link:after {
  height: 2px;
}
.cid-sPOj8r0eQd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPOj8r0eQd .content {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-sPOj8r0eQd .content {
    flex-wrap: wrap;
  }
}
.cid-sPOj8r0eQd h2,
.cid-sPOj8r0eQd h4,
.cid-sPOj8r0eQd h5,
.cid-sPOj8r0eQd p {
  margin: 0;
}
.cid-sPOj8r0eQd .cards {
  margin-right: 79px;
  display: flex;
  flex-wrap: wrap;
  width: 66.66667%;
}
@media (max-width: 1024px) {
  .cid-sPOj8r0eQd .cards {
    width: 100%;
    margin-right: 0;
    margin-bottom: 54px;
  }
}
.cid-sPOj8r0eQd .cards-inner {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.cid-sPOj8r0eQd .card {
  width: 50%;
  padding: 0 15px;
  margin: 0 0 30px;
}
.cid-sPOj8r0eQd .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 680px) {
  .cid-sPOj8r0eQd .card {
    width: 100%;
  }
}
.cid-sPOj8r0eQd .text {
  width: 33%;
}
@media (max-width: 1024px) {
  .cid-sPOj8r0eQd .text {
    width: 100%;
  }
}
.cid-sPOj8r0eQd .mbr-section-title {
  color: #000000;
  margin: -14px 0 15px;
}
.cid-sPOj8r0eQd .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-sPOj8r0eQd .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sPOj8r0eQd .info {
  margin-top: 40px;
  margin-bottom: 20px;
  flex-direction: column;
}
.cid-sPOj8r0eQd .info-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.cid-sPOj8r0eQd .mbr-info-title {
  color: #000000;
  margin: 5px 14px 5px 0;
}
.cid-sPOj8r0eQd .mbr-details {
  color: #6b6b6b;
  margin: 5px 0;
}
.cid-sPOj8r0eQd .link {
  position: relative;
  margin-right: 5px;
}
.cid-sPOj8r0eQd .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-sPOj9dzNN1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPOj9dzNN1 .content {
  display: flex;
}
@media (max-width: 1024px) {
  .cid-sPOj9dzNN1 .content {
    flex-wrap: wrap;
  }
}
.cid-sPOj9dzNN1 h2,
.cid-sPOj9dzNN1 h4,
.cid-sPOj9dzNN1 h5,
.cid-sPOj9dzNN1 p {
  margin: 0;
}
.cid-sPOj9dzNN1 .items {
  margin-right: 79px;
  display: flex;
  flex-wrap: wrap;
  width: 66.66667%;
}
@media (max-width: 1024px) {
  .cid-sPOj9dzNN1 .items {
    width: 100%;
    margin-right: 0;
    margin-bottom: 54px;
  }
}
.cid-sPOj9dzNN1 .item-container {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .cid-sPOj9dzNN1 .item-container {
    align-content: flex-start;
  }
}
@media (max-width: 680px) {
  .cid-sPOj9dzNN1 .item-container {
    margin: 0;
  }
}
.cid-sPOj9dzNN1 .item {
  width: 33.33333%;
  height: 33.33333%;
  padding: 0 15px;
  margin: 0 0 30px;
}
.cid-sPOj9dzNN1 .item .item-img {
  height: 100%;
}
.cid-sPOj9dzNN1 .item .item-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-sPOj9dzNN1 .item {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-sPOj9dzNN1 .item {
    width: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sPOj9dzNN1 .item {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sPOj9dzNN1 .text {
  width: 33%;
}
@media (max-width: 1024px) {
  .cid-sPOj9dzNN1 .text {
    width: 100%;
  }
}
.cid-sPOj9dzNN1 .mbr-section-title {
  color: #000000;
  margin: -14px 0 15px;
}
.cid-sPOj9dzNN1 .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-sPOj9dzNN1 .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sPOj9dzNN1 .info {
  margin-top: 40px;
  margin-bottom: 20px;
  flex-direction: column;
}
.cid-sPOj9dzNN1 .info-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
.cid-sPOj9dzNN1 .mbr-info-title {
  color: #000000;
  margin: 5px 14px 5px 0;
}
.cid-sPOj9dzNN1 .mbr-details {
  color: #6b6b6b;
  margin: 5px 0;
}
.cid-sPOj9dzNN1 .link {
  position: relative;
  margin-right: 5px;
}
.cid-sPOj9dzNN1 .btn {
  padding: 0.7rem 1rem;
  width: 200px;
}
.cid-sPOjbXV1bZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sPOjbXV1bZ h3,
.cid-sPOjbXV1bZ p {
  margin: 0;
}
.cid-sPOjbXV1bZ .heading {
  margin-bottom: 50px;
}
.cid-sPOjbXV1bZ .mbr-section-title {
  color: #000000;
}
.cid-sPOjbXV1bZ .mbr-section-subtitle {
  color: #6b6b6b;
}
.cid-sPOjbXV1bZ .tile-wrap {
  position: relative;
  width: 100%;
  padding-top: 25%;
}
@media (max-width: 1024px) {
  .cid-sPOjbXV1bZ .tile-wrap {
    padding-top: 100%;
  }
}
@media (max-width: 680px) {
  .cid-sPOjbXV1bZ .tile-wrap {
    padding-top: 400%;
  }
}
.cid-sPOjbXV1bZ .tile {
  position: absolute;
  margin: 0 -9px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #ee3102;
  border-radius: 100%;
}
.cid-sPOjbXV1bZ .tile1 {
  top: 0;
  left: 2%;
  bottom: 0;
  right: 73%;
}
@media (max-width: 1024px) {
  .cid-sPOjbXV1bZ .tile1 {
    top: 1%;
    left: 2%;
    bottom: 48%;
    right: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sPOjbXV1bZ .tile1 {
    top: 0;
    left: 0;
    bottom: 73%;
    right: 0;
  }
}
@media (max-width: 400px) {
  .cid-sPOjbXV1bZ .tile1 {
    top: 0;
    left: 12px;
    bottom: 75%;
    right: 12px;
  }
}
.cid-sPOjbXV1bZ .tile2 {
  top: 0;
  left: 26%;
  bottom: 0;
  right: 49%;
}
@media (max-width: 1024px) {
  .cid-sPOjbXV1bZ .tile2 {
    top: 1%;
    left: 50%;
    bottom: 48%;
    right: 2%;
  }
}
@media (max-width: 680px) {
  .cid-sPOjbXV1bZ .tile2 {
    top: 25%;
    left: 0;
    bottom: 48%;
    right: 0;
  }
}
@media (max-width: 400px) {
  .cid-sPOjbXV1bZ .tile2 {
    top: 23%;
    left: 12px;
    bottom: 52%;
    right: 12px;
  }
}
.cid-sPOjbXV1bZ .tile3 {
  top: 0;
  left: 50%;
  bottom: 0;
  right: 25%;
}
@media (max-width: 1024px) {
  .cid-sPOjbXV1bZ .tile3 {
    top: 49%;
    left: 2%;
    bottom: 1%;
    right: 50%;
  }
}
@media (max-width: 680px) {
  .cid-sPOjbXV1bZ .tile3 {
    top: 50%;
    left: 0;
    bottom: 23%;
    right: 0;
  }
}
@media (max-width: 400px) {
  .cid-sPOjbXV1bZ .tile3 {
    top: 46%;
    left: 12px;
    bottom: 29%;
    right: 12px;
  }
}
.cid-sPOjbXV1bZ .tile4 {
  top: 0;
  left: 74%;
  bottom: 0;
  right: 1%;
}
@media (max-width: 1024px) {
  .cid-sPOjbXV1bZ .tile4 {
    top: 49%;
    left: 50%;
    bottom: 1%;
    right: 2%;
  }
}
@media (max-width: 680px) {
  .cid-sPOjbXV1bZ .tile4 {
    top: 75%;
    left: 0;
    bottom: -2%;
    right: 0;
  }
}
@media (max-width: 400px) {
  .cid-sPOjbXV1bZ .tile4 {
    top: 69%;
    left: 12px;
    bottom: 6%;
    right: 12px;
  }
}
.cid-sPOjbXV1bZ .mbr-card-title {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-sPOjbXV1bZ .tile:nth-of-type(1):before {
  content: "1";
  position: absolute;
  top: 7%;
  left: 11%;
  width: 39px;
  height: 39px;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 39px;
  color: #000000;
  background-color: #bfc0d5;
  border-radius: 50%;
  z-index: 2;
}
.cid-sPOjbXV1bZ .tile:nth-of-type(2):before {
  content: "2";
  position: absolute;
  top: 7%;
  left: 11%;
  width: 39px;
  height: 39px;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 39px;
  color: #000000;
  background-color: #bfc0d5;
  border-radius: 50%;
  z-index: 2;
}
.cid-sPOjbXV1bZ .tile:nth-of-type(3):before {
  content: "3";
  position: absolute;
  top: 7%;
  left: 11%;
  width: 39px;
  height: 39px;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 39px;
  color: #000000;
  background-color: #bfc0d5;
  border-radius: 50%;
  z-index: 2;
}
.cid-sPOjbXV1bZ .tile:nth-of-type(4):before {
  content: "4";
  position: absolute;
  top: 7%;
  left: 11%;
  width: 39px;
  height: 39px;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  line-height: 39px;
  color: #000000;
  background-color: #bfc0d5;
  border-radius: 50%;
  z-index: 2;
}
.cid-sPOjqRn3rn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #14142b;
}
.cid-sPOjqRn3rn img {
  width: auto;
  height: 48px;
  display: inline-block;
  padding: 0;
  margin: auto;
}
.cid-sPOjqRn3rn .mbr-section-subtitle {
  margin-right: 30px;
  color: #ffffff;
}
.cid-sPOjqRn3rn .brand {
  display: flex;
  transition: color 300ms ease;
  transition-property: transform, -webkit-transform;
  border: 1px solid #ffffff;
  padding: 10px 35px;
  border-radius: 80px;
  width: 100%;
  justify-content: center;
}
.cid-sPOjqRn3rn .brand:hover {
  transform: translate(0px, -4px);
  border: 1px solid #81acb3;
}
.cid-sPOjqRn3rn .brand-row {
  justify-content: space-between;
  align-items: center;
}
.cid-sPOjqRn3rn .row-main {
  align-items: center;
  justify-content: space-between;
}
.cid-sPOjqRn3rn .c {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-sPOjqRn3rn .t {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .cid-sPOjqRn3rn .t1 {
    margin-top: 20px;
  }
}
@media (max-width: 460px) {
  .cid-sPOjqRn3rn .row-main {
    flex-direction: column;
  }
  .cid-sPOjqRn3rn .col-auto {
    margin-bottom: 20px;
  }
  .cid-sPOjqRn3rn .mbr-section-subtitle {
    margin-right: 0;
  }
}
.cid-sPOjxOqpyd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOjxOqpyd .mbr-section-subtitle {
  color: #8c8c95;
  text-align: left;
  margin: auto;
  margin-bottom: 24px;
}
.cid-sPOjxOqpyd .mbr-section-title {
  text-align: left;
  color: #14142b;
  margin-bottom: 20px;
  margin-top: 40px;
}
.cid-sPOjxOqpyd .row {
  align-items: center;
  height: 100%;
}
.cid-sPOjxOqpyd .wrapper {
  margin: auto;
}
.cid-sPOjxOqpyd .t1 {
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .cid-sPOjxOqpyd .t {
    padding-top: 20px;
  }
}
.cid-sPOjzb66Mp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOjzb66Mp .mbr-section-subtitle {
  color: #8c8c95;
  text-align: left;
  margin: auto;
  margin-bottom: 24px;
}
.cid-sPOjzb66Mp .mbr-section-title {
  text-align: left;
  color: #14142b;
  margin-bottom: 20px;
  margin-top: 40px;
}
.cid-sPOjzb66Mp .row {
  align-items: center;
  height: 100%;
}
.cid-sPOjzb66Mp .wrapper {
  margin: auto;
}
.cid-sPOjzb66Mp .t1 {
  margin-bottom: 24px;
}
.cid-sPOjzb66Mp .line {
  height: 1px;
  width: 100%;
  background-color: #c2c2c2;
}
.cid-sPOjzb66Mp .line1 {
  margin-bottom: 60px;
}
.cid-sPOjzb66Mp .line2 {
  margin-top: 60px;
}
@media (max-width: 576px) {
  .cid-sPOjzb66Mp .t {
    padding-top: 20px;
  }
}
.cid-sPNRxnCKE8 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #232323;
  background: none;
}
.cid-sPNRxnCKE8 .navbar.opened {
  transition: all 0.3s;
  background: #232323 !important;
}
.cid-sPNRxnCKE8 .navbar .dropdown-item {
  padding: 0.25rem 1.5rem;
}
.cid-sPNRxnCKE8 .navbar .navbar-buttons {
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar .navbar-collapse {
  transition: none;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar.collapsed {
  flex-wrap: nowrap;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened {
  text-align: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: 100vh;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-toggler {
  -webkit-order: -1;
  order: -1;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
  margin: 1rem 0 0 0;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.show,
.cid-sPNRxnCKE8 .navbar.collapsed.opened .navbar-collapse.collapsing {
  display: block;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) {
  flex-direction: row !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed:not(.opened) .navbar-collapse {
  display: none !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sPNRxnCKE8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sPNRxnCKE8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sPNRxnCKE8 .navbar {
    flex-wrap: nowrap;
  }
  .cid-sPNRxnCKE8 .navbar.opened {
    text-align: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-left: auto;
    max-width: 20rem;
    height: 100vh;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-sPNRxnCKE8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-toggler {
    -webkit-order: -1;
    order: -1;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
    margin: 1rem 0 0 0;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse {
    -webkit-flex-basis: initial;
    flex-basis: initial;
    height: auto !important;
    max-height: 100vh;
  }
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.show,
  .cid-sPNRxnCKE8 .navbar.opened .navbar-collapse.collapsing {
    display: block;
  }
  .cid-sPNRxnCKE8 .navbar:not(.opened) .navbar-collapse {
    display: none !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sPNRxnCKE8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sPNRxnCKE8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
  }
  .cid-sPNRxnCKE8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    word-break: break-word;
  }
}
.cid-sPNRxnCKE8 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sPNRxnCKE8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sPNRxnCKE8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sPNRxnCKE8 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sPNRxnCKE8 .dropdown-item.active,
.cid-sPNRxnCKE8 .dropdown-item:active {
  background-color: transparent;
}
.cid-sPNRxnCKE8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sPNRxnCKE8 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sPNRxnCKE8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sPNRxnCKE8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sPNRxnCKE8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sPNRxnCKE8 .navbar-buttons {
  text-align: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #81acb3;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sPNRxnCKE8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sPNRxnCKE8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sPNRxnCKE8 .navbar-dropdown {
  padding: 0.5rem 1rem;
}
.cid-sPNRxnCKE8 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  letter-spacing: 2px;
}
.cid-sPNRxnCKE8 a.nav-link:focus {
  outline: none;
}
.cid-sPNRxnCKE8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sPNRxnCKE8 .nav-link:hover,
.cid-sPNRxnCKE8 .dropdown-item:hover {
  color: #90b7bc !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened {
    left: auto;
  }
  .cid-sPNRxnCKE8 .navbar-dropdown.collapsed.opened .navbar-collapse {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sPOqw5rfpS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOqw5rfpS .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-sPOqw5rfpS .title-block {
  justify-content: space-between;
  margin: auto;
  margin-bottom: 58px;
  align-items: center;
  max-width: 571px;
}
.cid-sPOqw5rfpS .card-title {
  color: #4c4c4c;
  text-align: left;
  margin-bottom: 16px;
}
.cid-sPOqw5rfpS H3 {
  color: #1d1d1f;
}
.cid-sPOqw5rfpS .card-subtitle {
  text-align: left;
}
.cid-sPOqw5rfpS .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-sPOqw5rfpS .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-sPOqw5rfpS .card-title,
.cid-sPOqw5rfpS .iconfont-wrapper {
  text-align: center;
  color: #14142b;
}
.cid-sPOqw5rfpS .mbr-section-title {
  text-align: center;
  margin-bottom: 24px;
  color: #14142b;
}
.cid-sPOqw5rfpS .card-text {
  color: #8c8c95;
}
.cid-sPOqw5rfpS .year-title {
  text-align: center;
  color: #14142b;
  margin-bottom: 20px;
  position: relative;
}
.cid-sPOqw5rfpS .year-subtitle {
  text-align: center;
  color: #5f5d68;
}
.cid-sPOqw5rfpS .line {
  width: 20px;
  background-color: #e2e3e9;
  height: 2px;
  margin-top: -20px;
}
.cid-sPOqw5rfpS .accent {
  width: 25px;
  min-height: 25px;
  min-width: 25px;
  margin-right: auto;
  margin-bottom: 40px;
  margin-left: auto;
  border-radius: 1000px;
}
.cid-sPOqw5rfpS .accent1 {
  background-color: #fedb01;
}
.cid-sPOqw5rfpS .accent2 {
  background-color: #6c38ff;
}
.cid-sPOqw5rfpS .accent3 {
  background-color: #ff4433;
}
.cid-sPOqw5rfpS .accent4 {
  background-color: #ff9417;
}
.cid-sPOqw5rfpS .accent5 {
  background-color: #4cc9f0;
}
.cid-sPOqw5rfpS .timeline {
  align-items: center;
}
.cid-sPOqw5rfpS .year-title:before {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: none;
  margin: 11px 40px 0px 0px;
  border-style: solid;
  border-width: 5px;
  border-color: #fff;
  position: absolute;
  left: -40px;
  top: 15px;
}
.cid-sPOqw5rfpS .year-title.year1:before {
  background-color: #fedb01;
}
.cid-sPOqw5rfpS .year-title.year2:before {
  background-color: #6c38ff;
}
.cid-sPOqw5rfpS .year-title.year3:before {
  background-color: #ff4433;
}
.cid-sPOqw5rfpS .year-title.year4:before {
  background-color: #ff9417;
}
.cid-sPOqw5rfpS .year-title.year5:before {
  background-color: #4cc9f0;
}
.cid-sPOqw5rfpS .timeline-year-accent {
  width: 25px;
  min-height: 25px;
}
@media (max-width: 1120px) {
  .cid-sPOqw5rfpS .main {
    display: flex;
    justify-content: space-between;
    max-width: 849px;
  }
  .cid-sPOqw5rfpS .timeline.row {
    flex-direction: column;
    position: relative;
    max-width: 307px;
  }
  .cid-sPOqw5rfpS .year {
    flex-direction: row;
  }
  .cid-sPOqw5rfpS .year-title {
    text-align: left;
    margin-bottom: 4px;
  }
  .cid-sPOqw5rfpS .year-title:before {
    display: block;
  }
  .cid-sPOqw5rfpS .accent {
    display: none;
  }
  .cid-sPOqw5rfpS .row.title-block {
    margin: initial;
    max-width: 407px;
    align-items: flex-start;
  }
  .cid-sPOqw5rfpS .line {
    display: none;
  }
  .cid-sPOqw5rfpS .line1 {
    display: block;
    height: 100%;
    width: 2px;
    background-color: #e2e3e9;
    margin-top: -20px;
    margin-left: -15px;
    padding: 0 !important;
    position: absolute;
    left: 0;
  }
  .cid-sPOqw5rfpS .year-subtitle {
    margin-bottom: 60px;
    text-align: left;
  }
  .cid-sPOqw5rfpS .row.title-block > .col-12 {
    padding: 0 !important;
  }
}
.cid-sPOqw5rfpS .no-padd {
  margin-bottom: 0px !important;
}
@media (max-width: 750px) {
  .cid-sPOqw5rfpS .main {
    flex-direction: column;
  }
  .cid-sPOqw5rfpS .row.title-block,
  .cid-sPOqw5rfpS .timeline {
    margin: auto;
  }
  .cid-sPOqw5rfpS .row.title-block {
    padding-bottom: 40px;
    width: 90%;
  }
  .cid-sPOqw5rfpS .button-align {
    margin-top: 16px;
  }
}
.cid-sPOqw5rfpS .btn {
  margin-top: 20px;
}
.cid-sPOqw5rfpS a.btn > span {
  margin-left: 0.5rem;
}
.cid-sPOqDZ7Wz1 .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 5px 13px 5px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-sPOqDZ7Wz1 .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
}
.cid-sPOqDZ7Wz1 .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sPOqDZ7Wz1 .dot {
  position: absolute;
  top: -10px;
  right: -0.8em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
}
.cid-sPOqDZ7Wz1 .countdown-cont {
  margin: 0 auto;
}
.cid-sPOqDZ7Wz1 .full-count-container {
  background: #0c57bf;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-sPOqDZ7Wz1 .dot {
    right: -0.6em;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sPOqDZ7Wz1 .dot {
    right: -1em;
  }
}
@media (max-width: 768px) {
  .cid-sPOqDZ7Wz1 .dot {
    display: none;
  }
  .cid-sPOqDZ7Wz1 .number {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .cid-sPOqDZ7Wz1 .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-sPOqDZ7Wz1 .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-sPOqDZ7Wz1 .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-sPOqDZ7Wz1 .number {
    font-size: 25px;
  }
  .cid-sPOqDZ7Wz1 .period {
    font-size: 0.7rem;
  }
}
.cid-sPOqG79LXA {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sPOqG79LXA .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sPOqG79LXA .number-wrap {
  color: #232323;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-sPOqG79LXA .number-wrap {
    padding-left: 7px;
    padding-right: 2px;
  }
}
.cid-sPOqG79LXA .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #232323;
}
.cid-sPOqG79LXA .period {
  display: block;
  padding-top: 2px;
}
.cid-sPOqG79LXA .dot {
  display: none;
}
.cid-sPOqG79LXA .countdown-cont {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sPOqG79LXA .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-sPOqG79LXA .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-sPOqG79LXA .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-sPOqG79LXA .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-sPOqG79LXA .number,
  .cid-sPOqG79LXA .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-sPOqG79LXA .period {
    font-size: 0.8rem;
  }
}
.cid-sPOqH7ZNvz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOqH7ZNvz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sPOqH7ZNvz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #81acb3, #f2bb2c);
  display: inline-block;
}
.cid-sPOqH7ZNvz .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sPOqH7ZNvz .number-wrap {
  color: #ffffff;
  background: #ff9a9e;
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  max-width: 100%;
  background: linear-gradient(135deg, #ff9a9e, #ff3366);
}
.cid-sPOqH7ZNvz .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #ffffff;
}
.cid-sPOqH7ZNvz .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-sPOqH7ZNvz .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #ffffff;
}
.cid-sPOqH7ZNvz .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-sPOqH7ZNvz .dot {
    display: none;
  }
}
@media (max-width: 550px) {
  .cid-sPOqH7ZNvz .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
  }
  .cid-sPOqH7ZNvz .number-wrap {
    min-width: auto;
  }
  .cid-sPOqH7ZNvz .number {
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .cid-sPOqH7ZNvz .number {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-sPOqH7ZNvz .period {
    font-size: 0.8rem;
  }
}
@media (max-width: 300px) {
  .cid-sPOqH7ZNvz .number {
    font-size: 28px;
  }
  .cid-sPOqH7ZNvz .period {
    font-size: 0.7rem;
  }
}
.cid-sPOqIuLUDE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-sPOqIuLUDE .mbr-section-title {
  color: #232323;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  width: 100%;
}
.cid-sPOqIuLUDE .mbr-section-btn {
  width: 100%;
}
.cid-sPOqIuLUDE .mbr-section-subtitle {
  color: #232323;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.cid-sPOqIuLUDE .card {
  padding: 1rem .5rem;
}
.cid-sPOqIuLUDE .wrap {
  width: 115px;
  height: 115px;
  margin: 0 auto;
}
.cid-sPOqIuLUDE .wrap .pie_progress {
  height: inherit;
}
.cid-sPOqIuLUDE .btn {
  margin: 0 !important;
}
@media (max-width: 1199px) {
  .cid-sPOqIuLUDE .main > div {
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-sPOqIuLUDE h2,
  .cid-sPOqIuLUDE h3 {
    text-align: center !important;
  }
  .cid-sPOqIuLUDE .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sPOqIuLUDE .main > div > div {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-sPOqIuLUDE .second-col {
    padding-top: 1.5rem;
  }
}
.cid-sPOqIuLUDE path {
  stroke: #3e4edc;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPOqIuLUDE .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-sPOqKrZ2GL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sPOqKrZ2GL .text-wrapper {
  max-width: 28rem;
  margin-right: auto;
}
.cid-sPOqKrZ2GL .card {
  margin-bottom: 1rem;
}
.cid-sPOqKrZ2GL .cards-container [class*="col"] {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}
.cid-sPOqKrZ2GL .card-wrapper {
  box-sizing: border-box;
  min-height: 160px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sPOqKrZ2GL .card-box {
  flex-direction: column;
  padding: 1.5rem;
}
@media (max-width: 991px) {
  .cid-sPOqKrZ2GL .section-subtitle {
    margin-bottom: 2rem !important;
  }
}
.cid-sPOqKrZ2GL .mbr-section-title {
  text-align: left;
}
.cid-sPOqKrZ2GL .mbr-text {
  text-align: left;
}
.cid-sPOqKrZ2GL .card-title {
  text-align: left;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.cid-sPOqKrZ2GL .card-sub-title {
  color: #ffffff;
  text-align: left;
}
.cid-sPOqKrZ2GL .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.cid-sPOqKrZ2GL .section-subtitle {
  text-align: left;
  color: #000000;
}
.cid-sPOqSflUAM {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-sPOqSflUAM img {
  width: 15%;
}
.cid-sPOqSflUAM .card {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cid-sPOqSflUAM .card-box {
  width: 100%;
}
.cid-sPOqSflUAM .card-img {
  padding: 1rem;
  height: 120px;
  width: 120px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: flex;
  background-color: #133996;
  border-radius: 50%;
}
.cid-sPOqSflUAM .card-img span {
  color: #ffffff;
  font-size: 3.5rem;
}
.cid-sPOqSflUAM .mbr-text {
  color: #767676;
}
.cid-sPOqSflUAM p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sPOqSflUAM .card {
    margin-bottom: 2rem;
  }
}
.cid-sPOqSflUAM .card-title,
.cid-sPOqSflUAM .card-img {
  color: #f2bb2c;
  text-align: center;
}
.cid-sPOqSflUAM .mbr-section-title {
  text-align: center;
  position: relative;
  z-index: 99999;
}
.cid-sPOqSflUAM .mbr-section-sub-title {
  position: relative;
  z-index: 99999;
  text-align: center;
  color: #9e9e9e;
}
.cid-sPOqSflUAM .mbr-section-title,
.cid-sPOqSflUAM .line-wrap {
  text-align: center;
}
.cid-sPOqSflUAM .mbr-text,
.cid-sPOqSflUAM .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sPOqSflUAM img {
  vertical-align: middle;
  display: inline-block;
}
.cid-sPOqSflUAM .media-container-row {
  position: relative;
  z-index: 999999;
}
.cid-sPOqSflUAM .wrap {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.cid-sPOqSflUAM .image-1 {
  position: absolute;
  left: -455px;
  bottom: 107px;
  -webkit-transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform;
}
.cid-sPOqSflUAM .image-2 {
  position: absolute;
  left: 517px;
  top: 35px;
  -webkit-transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}
.cid-sPOqSflUAM .image-3 {
  position: absolute;
  left: 1189px;
  bottom: -1px;
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}
.cid-sPOqSflUAM .image-4 {
  position: absolute;
  left: auto;
  right: 1109px;
  bottom: -112px;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}
.cid-sPOqSflUAM .image-5 {
  position: absolute;
  left: 707px;
  top: -65px;
  -webkit-transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 1.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
}
.cid-sPOqSflUAM .image-6 {
  position: absolute;
  left: -155px;
  top: 40px;
  -webkit-transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
@media (max-width: 1199px) {
  .cid-sPOqSflUAM .image-1 {
    left: -175px;
    bottom: 349px;
  }
  .cid-sPOqSflUAM .image-2 {
    left: 677px;
    top: -475px;
  }
  .cid-sPOqSflUAM .image-3 {
    left: 469px;
    bottom: -61px;
  }
  .cid-sPOqSflUAM .image-4 {
    right: 99px;
    bottom: -192px;
  }
  .cid-sPOqSflUAM .image-5 {
    left: 7px;
    top: -45px;
  }
  .cid-sPOqSflUAM .image-6 {
    left: 215px;
    top: -460px;
  }
}
@media (max-width: 992px) {
  .cid-sPOqSflUAM .image-1 {
    bottom: 287px;
    left: -285px;
  }
  .cid-sPOqSflUAM .image-2 {
    top: -385px;
    left: 807px;
  }
  .cid-sPOqSflUAM .image-3 {
    left: -98px;
    bottom: 139px;
  }
  .cid-sPOqSflUAM .image-4 {
    right: 49px;
    bottom: -102px;
  }
  .cid-sPOqSflUAM .image-5 {
    left: 207px;
    top: -45px;
  }
  .cid-sPOqSflUAM .image-6 {
    left: -165px;
    top: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sPOqSflUAM .image-1 {
    left: -185px;
    bottom: 937px;
  }
  .cid-sPOqSflUAM .image-2 {
    top: -685px;
    left: 477px;
  }
  .cid-sPOqSflUAM .image-3 {
    left: -41px;
    bottom: 539px;
  }
  .cid-sPOqSflUAM .image-4 {
    bottom: 288px;
    right: 99px;
  }
  .cid-sPOqSflUAM .image-5 {
    left: -93px;
    top: -245px;
  }
  .cid-sPOqSflUAM .image-6 {
    left: 205px;
    top: -80px;
  }
}
.cid-sPOqV1yfQV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #fafafa;
}
.cid-sPOqV1yfQV h3 {
  text-align: center;
}
.cid-sPOqV1yfQV h2 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 4px;
}
.cid-sPOqV1yfQV h2:before {
  position: absolute;
  content: "";
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sPOqV1yfQV h2:after {
  position: absolute;
  content: "";
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sPOqV1yfQV .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sPOqV1yfQV .mbr-section-subtitle {
  color: #767676;
}
.cid-sPOqV1yfQV .pie_progress__number {
  text-align: center !important;
}
.cid-sPOqV1yfQV .card-title {
  margin-bottom: 0;
}
.cid-sPOqV1yfQV .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sPOqV1yfQV .svg-gradient {
  position: absolute;
}
.cid-sPOqV1yfQV ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-sPOqV1yfQV path {
  stroke: #ed6031;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sPOqV1yfQV .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .cid-sPOqV1yfQV h2:before,
  .cid-sPOqV1yfQV h2:after {
    display: none;
  }
}
.cid-sPOqYO05WV {
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-sPOqYO05WV .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sPOqYO05WV .number {
  color: #ffffff;
}
.cid-sPOqYO05WV .period {
  display: block;
}
.cid-sPOqYO05WV .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sPOqYO05WV .period {
    font-size: 0.8rem;
  }
}
.cid-sPOqYO05WV .btn {
  height: 100%;
  margin: 0;
}
.cid-sPOqYO05WV .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sPOqYO05WV .mbr-section-title {
  color: #ffffff;
}
.cid-sPOqYO05WV .mbr-text {
  color: #ffffff;
}
.cid-sPOqYO05WV .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sPOqYO05WV .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  border: 2px solid #ffffff;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sPOqYO05WV .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sPOqYO05WV .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #ffffff;
  color: #000000;
}
.cid-sPOqZZh19B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sPOqZZh19B .number-wrap {
  color: #232323;
  text-align: center;
}
.cid-sPOqZZh19B .number {
  color: #232323;
  white-space: nowrap;
}
.cid-sPOqZZh19B .period {
  display: block;
}
.cid-sPOqZZh19B .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sPOqZZh19B .period {
    font-size: 0.8rem;
  }
}
.cid-sPOqZZh19B .btn {
  height: 100%;
  margin: 0;
}
.cid-sPOqZZh19B .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sPOr48NBDW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fffdf7;
}
.cid-sPOr48NBDW .mbr-overlay {
  z-index: 1;
}
.cid-sPOr48NBDW .main-container {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #7F8678;
  border-top: 1px solid #7F8678;
  margin-top: -1px;
  padding: 0;
  position: relative;
  z-index: 2;
}
.cid-sPOr48NBDW .content {
  padding: 23px 35px 38px 33px;
  box-sizing: border-box;
  background-color: #bfc6b8;
}
.cid-sPOr48NBDW .content-wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 620px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-sPOr48NBDW .content-wrap {
    max-width: 100%;
  }
}
.cid-sPOr48NBDW .text-with-round,
.cid-sPOr48NBDW .mbr-section-title {
  width: 100%;
}
.cid-sPOr48NBDW .mbr-section-title {
  margin-bottom: 25px;
  font-weight: 500;
}
.cid-sPOr48NBDW .mbr-form-container {
  width: 100%;
  margin-top: auto;
}
.cid-sPOr48NBDW .form-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 25px;
}
@media (max-width: 991px) {
  .cid-sPOr48NBDW .form-container {
    padding-top: 80px;
  }
}
.cid-sPOr48NBDW .form-name-email-container {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
}
.cid-sPOr48NBDW .form-name {
  width: 100%;
  padding: 0;
}
.cid-sPOr48NBDW .form-email {
  width: 100%;
  padding: 0;
}
.cid-sPOr48NBDW .form-message-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  padding: 0;
}
.cid-sPOr48NBDW form .row {
  margin: 0;
  border: none !important;
}
.cid-sPOr48NBDW form .form-group {
  margin-bottom: 24px !important;
  width: 100%;
}
.cid-sPOr48NBDW form .form-group input,
.cid-sPOr48NBDW form .form-group textarea {
  padding: 5px 4px 0;
  border-radius: 0;
  border: none !important;
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid #7f8678 !important;
  min-height: auto;
  font-size: 1rem;
  color: #3d3d3d;
}
.cid-sPOr48NBDW form .form-group input:hover,
.cid-sPOr48NBDW form .form-group textarea:hover,
.cid-sPOr48NBDW form .form-group input :focus,
.cid-sPOr48NBDW form .form-group textarea :focus,
.cid-sPOr48NBDW form .form-group input :active,
.cid-sPOr48NBDW form .form-group textarea :active {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: 1px solid #7f8678 !important;
}
.cid-sPOr48NBDW form .form-message {
  margin-bottom: 0 !important;
}
.cid-sPOr48NBDW form .form-message textarea {
  min-height: 100px;
  resize: none;
}
.cid-sPOr48NBDW form .mbr-section-btn {
  width: auto;
  padding: 0;
  height: auto;
}
.cid-sPOr48NBDW form .mbr-section-btn .btn {
  padding: 0;
  height: auto;
  min-height: auto;
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  transition: 1s;
  word-break: normal;
}
.cid-sPOr48NBDW .google-map {
  height: 686px;
  position: relative;
}
@media (min-width: 992px) {
  .cid-sPOr48NBDW .google-map {
    border-right: 1px solid #7F8678;
  }
}
.cid-sPOr48NBDW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPOr48NBDW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPOr48NBDW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPOr48NBDW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sPOr48NBDW .row-reverse {
  display: flex;
  flex-direction: row-reverse;
}
.cid-sPOr5ONXiE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sPOr5ONXiE .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-sPOr5ONXiE .form-control {
  box-shadow: none;
  margin-bottom: 15px;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-sPOr5ONXiE .form-control:focus,
.cid-sPOr5ONXiE .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-sPOr5ONXiE .form-group {
  margin-bottom: 1rem;
}
.cid-sPOr5ONXiE input::-webkit-input-placeholder,
.cid-sPOr5ONXiE textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-sPOr5ONXiE input:-moz-placeholder,
.cid-sPOr5ONXiE textarea:-moz-placeholder {
  color: #656565;
}
.cid-sPOr5ONXiE .jq-selectbox li,
.cid-sPOr5ONXiE .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sPOr5ONXiE .jq-selectbox li:hover,
.cid-sPOr5ONXiE .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-sPOr5ONXiE .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sPOr5ONXiE .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-sPOr5ONXiE .map {
  width: 100%;
  height: 30rem;
}
.cid-sPOr5ONXiE .map iframe {
  width: inherit;
  height: 100%;
}
.cid-sPOr5ONXiE .icon-block {
  margin-bottom: 10px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sPOr5ONXiE .icon-block .icon-block__icon {
  display: inline-block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sPOr5ONXiE .icon-block .icon-block__title {
  display: inline-block;
  -webkit-align-self: center;
  align-self: center;
  margin-bottom: 0;
  line-height: 1;
  font-style: italic;
}
.cid-sPOr5ONXiE .mbr-text {
  color: #767676;
}
.cid-sPOr5ONXiE a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sPOr5ONXiE .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sPOr5ONXiE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-sPOr5ONXiE textarea.form-control {
  resize: none;
}
.cid-sPOr5ONXiE .google-map {
  height: 25rem;
  position: relative;
}
.cid-sPOr5ONXiE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sPOr5ONXiE .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sPOr5ONXiE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sPOr5ONXiE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-sPOr5ONXiE h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-sPOr5ONXiE .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sPOr5ONXiE .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-sPOr5ONXiE .google-map {
    padding-bottom: 2rem;
  }
}
.cid-sPOrfoiQcY {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #333333;
}
.cid-sPOrfoiQcY .img-wrap {
  position: relative;
}
.cid-sPOrfoiQcY .img-wrap img {
  width: 100%;
}
.cid-sPOrfoiQcY .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-sPOrfoiQcY .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-sPOrfoiQcY .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-sPOrfoiQcY .mbr-section-title {
  color: #ffffff;
}
.cid-sPOrfoiQcY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sPOrfoiQcY .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-sPOrfoiQcY .mbr-section-text {
  color: #ffffff;
}
.cid-sPOrfoiQcY .form-control,
.cid-sPOrfoiQcY .form-check-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}
.cid-sPOrfoiQcY .form-control {
  box-shadow: none;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #333333;
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  color: #b8b8b8;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: 0.25rem;
}
.cid-sPOrfoiQcY .form-control:focus,
.cid-sPOrfoiQcY .form-control:hover {
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  background-color: #333333;
}
.cid-sPOrfoiQcY .form-control.textarea {
  padding-top: 40px;
}
.cid-sPOrfoiQcY .form-group {
  margin-bottom: 1.5rem;
}
.cid-sPOrfoiQcY input::-webkit-input-placeholder,
.cid-sPOrfoiQcY textarea::-webkit-input-placeholder {
  color: #b8b8b8;
}
.cid-sPOrfoiQcY input:-moz-placeholder,
.cid-sPOrfoiQcY textarea:-moz-placeholder {
  color: #b8b8b8;
}
.cid-sPOrfoiQcY .jq-selectbox li,
.cid-sPOrfoiQcY .jq-selectbox li {
  background-color: #333333;
  color: #ffffff;
}
.cid-sPOrfoiQcY .jq-selectbox li:hover,
.cid-sPOrfoiQcY .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.cid-sPOrfoiQcY .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-sPOrfoiQcY .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-sPOrfoiQcY .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-sPOrfoiQcY a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-sPOrfoiQcY .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sPOrfoiQcY .input-group-btn {
  display: block;
  text-align: left;
}
.cid-sPOrfoiQcY .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-sPOrfoiQcY textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-sPOrfoiQcY h2 {
    padding-top: 2rem;
  }
  .cid-sPOrfoiQcY .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-sPOrfoiQcY .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-sPOrfoiQcY .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-sPOrfoiQcY .gdpr-block {
  padding: 20px;
  text-align: left;
}
.cid-sPOrfoiQcY .gdpr-block span {
  line-height: 1;
}
.cid-sPOrfoiQcY .gdpr-block label span.textGDPR input[name="gdpr"] {
  top: 6px;
}
