body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.875rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.73rem;
    font-size: calc( 2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 33px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #8c8c8c !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #99c392 !important;
}
.bg-danger {
  background-color: #c79100 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffe500 !important;
  border-color: #ffe500 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #a89700 !important;
  border-color: #a89700 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #99c392 !important;
  border-color: #99c392 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #65a45a !important;
  border-color: #65a45a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c79100 !important;
  border-color: #c79100 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #705200 !important;
  border-color: #705200 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.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: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe500;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a89700 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #ffe500 !important;
  border-color: #ffe500 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8c8c8c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #616161 !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: #8c8c8c !important;
  border-color: #8c8c8c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #99c392;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #65a45a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #99c392 !important;
  border-color: #99c392 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c79100;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #705200 !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: #c79100 !important;
  border-color: #c79100 !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: #ffffff !important;
}
.text-secondary {
  color: #ffe500 !important;
}
.text-success {
  color: #8c8c8c !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #99c392 !important;
}
.text-danger {
  color: #c79100 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #998900 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #595959 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #5f9a55 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #614700 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #99c392;
}
.alert-danger {
  background-color: #c79100;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cccccc;
}
.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: #e6f0e4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffcd47;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #ffffff !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: #ffe500 !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='%23ffffff' %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;
}
.btn-primary,
.btn-secondary,
.btn-info,
.btn-success,
.btn-warning,
.btn-danger,
.btn-white,
.btn-black {
  padding: 15px !important;
  min-width: 100px !important;
}
.cid-tMbu2ehcIF {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-tMbu2ehcIF nav.navbar {
  position: fixed;
}
.cid-tMbu2ehcIF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMbu2ehcIF .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tMbu2ehcIF .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-tMbu2ehcIF .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-tMbu2ehcIF .dropdown-item:hover,
.cid-tMbu2ehcIF .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-tMbu2ehcIF .dropdown-item:hover span {
  color: white;
}
.cid-tMbu2ehcIF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tMbu2ehcIF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tMbu2ehcIF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tMbu2ehcIF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMbu2ehcIF .nav-link {
  position: relative;
}
.cid-tMbu2ehcIF .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-tMbu2ehcIF .container {
    flex-wrap: nowrap;
  }
}
.cid-tMbu2ehcIF .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tMbu2ehcIF .navbar-nav {
  padding: 5px !important;
}
.cid-tMbu2ehcIF .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-tMbu2ehcIF .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-tMbu2ehcIF .dropdown-menu,
.cid-tMbu2ehcIF .navbar.opened {
  background: #ffffff !important;
}
.cid-tMbu2ehcIF .nav-item:focus,
.cid-tMbu2ehcIF .nav-link:focus {
  outline: none;
}
.cid-tMbu2ehcIF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMbu2ehcIF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMbu2ehcIF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMbu2ehcIF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMbu2ehcIF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMbu2ehcIF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMbu2ehcIF .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
  border: none !important;
}
.cid-tMbu2ehcIF .navbar.opened {
  transition: all 0.3s;
}
.cid-tMbu2ehcIF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-tMbu2ehcIF .navbar .navbar-logo img {
  width: auto;
}
.cid-tMbu2ehcIF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tMbu2ehcIF .navbar.collapsed {
  justify-content: center;
}
.cid-tMbu2ehcIF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMbu2ehcIF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tMbu2ehcIF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tMbu2ehcIF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMbu2ehcIF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMbu2ehcIF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tMbu2ehcIF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMbu2ehcIF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tMbu2ehcIF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tMbu2ehcIF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMbu2ehcIF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMbu2ehcIF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMbu2ehcIF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMbu2ehcIF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tMbu2ehcIF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMbu2ehcIF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tMbu2ehcIF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tMbu2ehcIF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMbu2ehcIF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMbu2ehcIF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tMbu2ehcIF .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tMbu2ehcIF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMbu2ehcIF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tMbu2ehcIF .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMbu2ehcIF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMbu2ehcIF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMbu2ehcIF .dropdown-item.active,
.cid-tMbu2ehcIF .dropdown-item:active {
  background-color: transparent;
}
.cid-tMbu2ehcIF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMbu2ehcIF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMbu2ehcIF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMbu2ehcIF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tMbu2ehcIF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tMbu2ehcIF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMbu2ehcIF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tMbu2ehcIF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMbu2ehcIF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tMbu2ehcIF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #272727;
}
.cid-tMbu2ehcIF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMbu2ehcIF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbu2ehcIF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMbu2ehcIF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMbu2ehcIF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbu2ehcIF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMbu2ehcIF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMbu2ehcIF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMbu2ehcIF .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tMbu2ehcIF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMbu2ehcIF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMbu2ehcIF .navbar {
    height: 70px;
  }
  .cid-tMbu2ehcIF .navbar.opened {
    height: auto;
  }
  .cid-tMbu2ehcIF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMbu2ehcIF .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #ffc000;
}
.cid-tMbu2ehcIF .mbr-section-title {
  color: #272727;
  max-width: 50%;
  margin-right: auto;
}
.cid-tMbu2ehcIF .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-tMbu2ehcIF .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-tMbu2ehcIF .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-tMbu2ehcIF .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-tMbu2ehcIF .container {
    overflow: hidden;
  }
  .cid-tMbu2ehcIF .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-tMbu2ehcIF .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-tMbu2ehcIF .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-tMbu2ehcIF .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-tMbu2ehcIF .navbar-nav {
    padding: 0 !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tMbu2ehcIF .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tMbu2ehcIF .container {
    padding: 25px 15px !important;
  }
  .cid-tMbu2ehcIF .container-head {
    padding: 10px !important;
  }
  .cid-tMbu2ehcIF .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-tMbu2ehcIF .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-tMbu2ehcIF .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-tbWrbrYZkX {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.cid-tbWrbrYZkX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWrbrYZkX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tbWrbrYZkX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWrbrYZkX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWrbrYZkX .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #272727;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tbWrbrYZkX .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-tbWrbrYZkX .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-tbWrbrYZkX .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tbWrbrYZkX .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tbWrbrYZkX .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tbWrbrYZkX .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-tbWrbrYZkX .mbr-link,
.cid-tbWrbrYZkX .mbr-iconfont {
  color: #c79100;
}
.cid-tbWrbrYZkX .mbr-section-title {
  color: #000000;
}
.cid-tbWrbrYZkX .mbr-text {
  color: #ffffff;
}
.cid-tbWrbrYZkX .mbr-section-title,
.cid-tbWrbrYZkX .mbr-section-btn,
.cid-tbWrbrYZkX .title-link-wrap {
  color: #ffffff;
}
.cid-tbWol8NIne {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tbWol8NIne .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWol8NIne .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWol8NIne .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWol8NIne .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWol8NIne .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWol8NIne .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWol8NIne .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWol8NIne .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWol8NIne .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbWol8NIne .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tbWol8NIne .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWol8NIne .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tbWol8NIne .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbWol8NIne .mbr-section-title,
.cid-tbWol8NIne .mbr-section-btn {
  text-align: center;
}
.cid-tbWnnlEAME {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tbWnnlEAME .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnnlEAME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWnnlEAME .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWnnlEAME .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWnnlEAME .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWnnlEAME .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWnnlEAME .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWnnlEAME .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWnnlEAME .title-container {
  display: flex;
  justify-content: space-between;
  margin: 0 160px 110px;
  padding: 20px 40px 0 0;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .title-container {
    display: block;
    margin: 0 30px 60px;
    padding: 12px 0 0 0;
  }
}
.cid-tbWnnlEAME .title-container .title-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-tbWnnlEAME .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tbWnnlEAME .cards {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .cards {
    margin: 0 30px;
  }
}
.cid-tbWnnlEAME .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tbWnnlEAME .cards .card {
    margin-bottom: 40px;
  }
}
.cid-tbWnnlEAME .cards .card .mbr-iconfont {
  width: 100%;
  height: 70px;
  font-size: 70px;
  color: #272727;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .cards .card .mbr-iconfont {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .cid-tbWnnlEAME .cards .card .mbr-iconfont {
    margin-bottom: 20px;
  }
}
.cid-tbWnnlEAME .cards .card .card-title {
  margin-bottom: 0;
}
.cid-tbWnnlEAME .cards .card .mbr-text {
  margin: 20px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tbWnnlEAME .cards .card .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tbWnnlEAME .mbr-section-title {
  color: #272727;
}
.cid-tbWnnlEAME .card-title {
  color: #000000;
}
.cid-tbWnnlEAME .mbr-text {
  color: #272727;
}
.cid-tbWnnlEAME .card-title,
.cid-tbWnnlEAME .mbr-iconfont {
  color: #272727;
}
.cid-tbWnLGEOWR {
  background-image: url("../../../assets/images/background2.webp");
}
.cid-tbWnLGEOWR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnLGEOWR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWnLGEOWR .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWnLGEOWR .text {
  display: flex;
  align-items: flex-end;
  height: 48rem;
}
@media (max-width: 992px) {
  .cid-tbWnLGEOWR .text {
    height: 100%;
  }
}
.cid-tbWnLGEOWR .text .text-wrapper {
  z-index: 1;
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-tbWnLGEOWR .text .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tbWnLGEOWR .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWnLGEOWR .text .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tbWnLGEOWR .text .text-wrapper .text-container {
  width: 100%;
}
.cid-tbWnLGEOWR .text .text-wrapper .text-container .mbr-text {
  margin-bottom: 30px;
  width: 50%;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-tbWnLGEOWR .text .text-wrapper .text-container .mbr-text {
    margin-bottom: 15px;
    width: 100%;
  }
}
.cid-tbWnLGEOWR .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbWnLGEOWR .mbr-text {
  color: #FFFFFF;
}
.cid-tbWoqc5aA7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .row {
    flex-direction: column-reverse;
  }
}
.cid-tbWoqc5aA7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWoqc5aA7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWoqc5aA7 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWoqc5aA7 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tbWoqc5aA7 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tbWoqc5aA7 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tbWoqc5aA7 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tbWoqc5aA7 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tbWoqc5aA7 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tbWoqc5aA7 .mbr-section-title {
  color: #000000;
}
.cid-tbWoqc5aA7 .mbr-text {
  color: #272727;
}
.cid-tbWoqc5aA7 .mbr-section-title,
.cid-tbWoqc5aA7 .mbr-section-btn {
  color: #272727;
}
.cid-tbWnuOLrZg {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: #272727;
}
.cid-tbWnuOLrZg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnuOLrZg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWnuOLrZg .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWnuOLrZg .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tbWnuOLrZg .team-card:hover {
  transform: translateY(-10px);
}
.cid-tbWnuOLrZg .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 275px;
  max-width: 275px;
  min-height: 370px;
}
@media (max-width: 768px) {
  .cid-tbWnuOLrZg .embla__slide {
    min-width: 88%;
    max-width: initial;
    margin-left: .6rem !important;
    margin-right: .6rem !important;
  }
}
.cid-tbWnuOLrZg .embla__slide .card-wrap {
  position: relative;
}
.cid-tbWnuOLrZg .embla__slide .card-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tbWnuOLrZg .embla__slide .card-wrap .item-wrapper {
  position: relative;
  padding: 40px;
  height: 100%;
}
.cid-tbWnuOLrZg .embla__slide .card-wrap .item-wrapper .card-title {
  margin: 0;
  pointer-events: visible;
  z-index: 1;
  position: relative;
  opacity: 0;
  transition: all .3s ease;
}
.cid-tbWnuOLrZg .embla__button--next,
.cid-tbWnuOLrZg .embla__button--prev {
  display: flex;
}
.cid-tbWnuOLrZg .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tbWnuOLrZg .embla__button {
    display: none;
  }
}
.cid-tbWnuOLrZg .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tbWnuOLrZg .embla__button:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.cid-tbWnuOLrZg .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tbWnuOLrZg .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tbWnuOLrZg .embla__button {
    top: auto;
  }
}
.cid-tbWnuOLrZg .embla {
  position: relative;
  width: 100%;
  margin-bottom: -5rem;
}
.cid-tbWnuOLrZg .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding-left: 20%;
  z-index: 1;
}
.cid-tbWnuOLrZg .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tbWnuOLrZg .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tbWnuOLrZg .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tbWnuOLrZg .embla__slide:hover .card-wrap .item-wrapper .card-title {
  opacity: 1;
}
.cid-tbWnuOLrZg .item-menu-overlay {
  background: #ffffff;
  opacity: 0.6 !important;
  transition: all .3s ease;
}
.cid-tbWnuOLrZg .title-container {
  margin: 0 160px 100px;
  padding: 20px 40px 0 0;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tbWnuOLrZg .title-container {
    display: block;
    margin: 0 30px 50px;
    padding: 12px 0 0 0;
  }
}
.cid-tbWnuOLrZg .title-container .title-wrapper {
  width: 60%;
}
@media (max-width: 992px) {
  .cid-tbWnuOLrZg .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-tbWnuOLrZg .title-container .title-wrapper .mbr-section-title {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tbWnuOLrZg .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tbWnuOLrZg .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbWnuOLrZg .card-title {
  color: #c79100;
}
.cid-tbWnxYaHxS {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tbWnxYaHxS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnxYaHxS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWnxYaHxS .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWnxYaHxS .tab-content {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content {
    margin: 0 30px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card {
    display: block;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card img {
  width: 45%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card img {
    width: 100%;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card img {
    height: 500px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container {
  min-height: 50rem;
  margin-top: -1rem;
  padding: 60px;
  background: #272727;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container {
    margin-top: 0;
    height: auto;
    padding: 30px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-amount {
  margin: 50px 0 20px;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-amount {
    margin: 30px 0 12px;
  }
}
.cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-desc {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .tab-content .tab-pane .card .card-container .mbr-desc {
    padding-top: 12px;
  }
}
.cid-tbWnxYaHxS .nav {
  align-items: center;
}
.cid-tbWnxYaHxS .nav-tabs {
  margin-left: 160px;
  border: none;
}
@media (max-width: 992px) {
  .cid-tbWnxYaHxS .nav-tabs {
    margin-left: 30px;
  }
}
.cid-tbWnxYaHxS .nav-tabs .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  margin: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid #272727;
  border-radius: 50%;
  transition: all .3s ease;
}
.cid-tbWnxYaHxS .nav-tabs .nav-link p {
  margin: 0;
  display: none;
  transition: all .3s ease;
}
.cid-tbWnxYaHxS .nav-tabs .nav-link.active {
  border: 2px solid #272727;
  width: 50px;
  height: 50px;
  transition: all .3s ease;
}
.cid-tbWnxYaHxS .nav-tabs .nav-link.active p {
  display: block;
  color: #272727;
  transition: all .3s ease;
  font-size: 21px;
  pointer-events: none;
}
.cid-tbWnxYaHxS .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbWnxYaHxS .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-tbWnxYaHxS .mbr-text {
  color: #FFFFFF;
}
.cid-tbWnxYaHxS .mbr-amount {
  color: #FFFFFF;
}
.cid-tbWnxYaHxS .mbr-desc {
  color: #FFFFFF;
}
.cid-tbWnE2JH7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnE2JH7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background6.webp");
}
.cid-tbWotADIhk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #272727;
}
.cid-tbWotADIhk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWotADIhk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWotADIhk .text-wrapper {
  margin-left: 160px;
  position: sticky;
  top: 5rem;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tbWotADIhk .text-wrapper {
    margin: 0 30px 60px;
    position: static;
  }
}
@media (max-width: 768px) {
  .cid-tbWotADIhk .text-wrapper {
    margin: 0 30px 40px;
  }
}
.cid-tbWotADIhk .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWotADIhk .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tbWotADIhk .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tbWotADIhk .cards {
  padding: 0 160px 0 80px;
}
@media (max-width: 1200px) {
  .cid-tbWotADIhk .cards {
    padding: 0 160px 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-tbWotADIhk .cards {
    padding: 0 30px;
  }
}
.cid-tbWotADIhk .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tbWotADIhk .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tbWotADIhk .cards .card {
    margin-bottom: 40px;
  }
}
.cid-tbWotADIhk .cards .card .card-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbWotADIhk .cards .card .card-title {
    margin-bottom: 12px;
  }
}
.cid-tbWotADIhk .cards .card .card-text {
  margin: 0;
}
.cid-tbWotADIhk .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbWotADIhk .mbr-text {
  color: #FFFFFF;
}
.cid-tbWotADIhk .card-title {
  color: #FFFFFF;
}
.cid-tbWotADIhk .card-text {
  color: #FFFFFF;
}
.cid-tMfIjbCtyN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background4.webp");
  overflow: hidden;
}
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}
.cid-tMfIjbCtyN .dust {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000000;
  overflow: hidden;
}
.cid-tMfIjbCtyN .dust .mite {
  width: 13vmin;
  height: 13vmin;
  border-radius: 13vmin;
  backface-visibility: hidden ;
  position: absolute;
  animation: move;
  animation-duration: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(0) {
  color: #797979;
  top: 15%;
  left: 17%;
  animation-duration: 1s;
  animation-delay: -6s;
  transform-origin: -19vw 22vh;
  box-shadow: 40vmin 0 5.218312233833272vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(1) {
  color: #686868;
  top: 58%;
  left: 94%;
  animation-duration: 0.55s;
  animation-delay: -48s;
  transform-origin: -20vw 17vh;
  box-shadow: -40vmin 0 5.84330119vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(2) {
  color: #797979;
  top: 15%;
  left: 52%;
  animation-duration: 1.6s;
  animation-delay: -211s;
  transform-origin: 4vw -3vh;
  box-shadow: -40vmin 0 5.02583313vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(3) {
  color: #5c5c5c;
  top: 66%;
  left: 59%;
  animation-duration: 2s;
  animation-delay: -122s;
  transform-origin: -2vw 12vh;
  box-shadow: 40vmin 0 5.51781228906163vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(4) {
  color: #5c5c5c;
  top: 20%;
  left: 43%;
  animation-duration: 0.75s;
  animation-delay: -229s;
  transform-origin: 19vw 25vh;
  box-shadow: -40vmin 0 5.76303373vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(5) {
  color: #797979;
  top: 42%;
  left: 19%;
  animation-duration: 1.5s;
  animation-delay: -141s;
  transform-origin: -14vw 9vh;
  box-shadow: -40vmin 0 5.70395376vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(6) {
  color: #5c5c5c;
  top: 64%;
  left: 80%;
  animation-duration: 1.85s;
  animation-delay: -164s;
  transform-origin: 18vw 16vh;
  box-shadow: 40vmin 0 5.0825598256873405vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(7) {
  color: #686868;
  top: 7%;
  left: 42%;
  animation-duration: 2s s;
  animation-delay: -236s;
  transform-origin: 11vw 20vh;
  box-shadow: -40vmin 0 5.08105782vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(8) {
  color: #686868;
  top: 47%;
  left: 32%;
  animation-duration: 1.45s;
  animation-delay: -192s;
  transform-origin: 14vw -9vh;
  box-shadow: -40vmin 0 5.11216647vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(9) {
  color: #797979;
  top: 48%;
  left: 44%;
  animation-duration: 0.95s;
  animation-delay: -163s;
  transform-origin: -8vw 12vh;
  box-shadow: 40vmin 0 5.085315940727134vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(10) {
  color: #797979;
  top: 67%;
  left: 15%;
  animation-duration: 0.8s;
  animation-delay: -36s;
  transform-origin: 2vw 15vh;
  box-shadow: -40vmin 0 5.64489375vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(11) {
  color: #5c5c5c;
  top: 70%;
  left: 12%;
  animation-duration: 27s;
  animation-delay: -38s;
  transform-origin: -19vw 4vh;
  box-shadow: -40vmin 0 5.88639634vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(12) {
  color: #797979;
  top: 92%;
  left: 52%;
  animation-duration: 1.37s;
  animation-delay: -221s;
  transform-origin: 14vw -21vh;
  box-shadow: 40vmin 0 5.411322441079343vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(13) {
  color: #686868;
  top: 88%;
  left: 88%;
  animation-duration: 1.3s;
  animation-delay: -40s;
  transform-origin: 1vw -5vh;
  box-shadow: 40vmin 0 5.0015398124370805vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(14) {
  color: #797979;
  top: 65%;
  left: 58%;
  animation-duration: 1.6s;
  animation-delay: -96s;
  transform-origin: 6vw 20vh;
  box-shadow: 40vmin 0 5.4276776403988976vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(15) {
  color: #797979;
  top: 5%;
  left: 73%;
  animation-duration: 1.9s;
  animation-delay: -105s;
  transform-origin: 14vw -1vh;
  box-shadow: -40vmin 0 5.87451594vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(16) {
  color: #686868;
  top: 80%;
  left: 46%;
  animation-duration: 1.74s;
  animation-delay: -235s;
  transform-origin: 24vw -1vh;
  box-shadow: 40vmin 0 5.365673883349176vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(17) {
  color: #5c5c5c;
  top: 25%;
  left: 26%;
  animation-duration: 2s;
  animation-delay: -160s;
  transform-origin: -4vw 19vh;
  box-shadow: 40vmin 0 5.620410065691408vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(18) {
  color: #5c5c5c;
  top: 57%;
  left: 92%;
  animation-duration: 1.2s;
  animation-delay: -221s;
  transform-origin: -10vw -14vh;
  box-shadow: 40vmin 0 5.156153721870197vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(19) {
  color: #686868;
  top: 78%;
  left: 31%;
  animation-duration: 54s;
  animation-delay: -150s;
  transform-origin: 5vw 9vh;
  box-shadow: 40vmin 0 5.006610065156559vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(20) {
  color: #5c5c5c;
  top: 84%;
  left: 91%;
  animation-duration: 2s;
  animation-delay: -1s;
  transform-origin: -8vw 24vh;
  box-shadow: -40vmin 0 5.79494362vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(21) {
  color: #797979;
  top: 63%;
  left: 99%;
  animation-duration: 1.9s;
  animation-delay: -207s;
  transform-origin: 13vw 10vh;
  box-shadow: -40vmin 0 5.63556895vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(22) {
  color: #797979;
  top: 38%;
  left: 2%;
  animation-duration: 1.8s;
  animation-delay: -75s;
  transform-origin: 9vw -12vh;
  box-shadow: 40vmin 0 5.32831582457408vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(23) {
  color: #5c5c5c;
  top: 22%;
  left: 24%;
  animation-duration: 2s;
  animation-delay: -97s;
  transform-origin: -18vw -4vh;
  box-shadow: 40vmin 0 5.043713606670382vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(24) {
  color: #797979;
  top: 92%;
  left: 95%;
  animation-duration: 1.87s;
  animation-delay: -99s;
  transform-origin: -7vw 1vh;
  box-shadow: -40vmin 0 5.99782859vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(25) {
  color: #5c5c5c;
  top: 25%;
  left: 32%;
  animation-duration: 0.55s;
  animation-delay: -167s;
  transform-origin: 24vw -2vh;
  box-shadow: 40vmin 0 5.956346094360482vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(26) {
  color: #5c5c5c;
  top: 74%;
  left: 19%;
  animation-duration: 0.55s;
  animation-delay: -138s;
  transform-origin: 17vw 19vh;
  box-shadow: -40vmin 0 5.84854255vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(27) {
  color: #797979;
  top: 38%;
  left: 21%;
  animation-duration: 0.55s;
  animation-delay: -234s;
  transform-origin: -4vw -14vh;
  box-shadow: 40vmin 0 5.192359617302281vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(28) {
  color: #5c5c5c;
  top: 56%;
  left: 100%;
  animation-duration: 2 0.55s;
  animation-delay: -187s;
  transform-origin: -20vw 24vh;
  box-shadow: 40vmin 0 5.2321543496100125vmin currentColor;
}
.cid-tMfIjbCtyN .dust .mite:nth-child(29) {
  color: #5c5c5c;
  top: 21%;
  left: 27%;
  animation-duration: 1.1s;
  animation-delay: -183s;
  transform-origin: 0vw 9vh;
  box-shadow: 40vmin 0 5.184266090116057vmin currentColor;
}
.cid-tbWoE963JB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .form-title,
  .cid-tbWoE963JB .form-wrapper {
    padding: 0;
  }
}
.cid-tbWoE963JB .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tbWoE963JB .mbr-section-btn .btn {
  height: 21px !important;
  min-width: 100px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbWoE963JB .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWoE963JB .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-tbWoE963JB .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-tbWoE963JB .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #272727;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbWoE963JB .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbWoE963JB .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWoE963JB .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-tbWoE963JB .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tbWoE963JB .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .mbr-form {
    margin: 0 30px;
  }
}
.cid-tbWoE963JB .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tbWoE963JB .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-tbWoE963JB .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-tbWoE963JB .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #ffffff !important;
  border-radius: 0;
}
.cid-tbWoE963JB .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #272727 !important;
}
.cid-tbWoE963JB .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #272727 !important;
}
.cid-tbWoE963JB .mbr-section-title {
  color: #272727;
  text-align: center;
}
.cid-tbWoE963JB .mbr-section-subtitle {
  color: #272727;
}
#custom-html-4 {
  /* Type valid CSS here */
}
#custom-html-4 div {
  padding: 0px 0;
  color: #777;
  text-align: center;
}
#custom-html-4 p {
  font-size: 60px;
  color: #777;
}
.cid-tbWnvKFCLR {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #272727;
}
.cid-tbWnvKFCLR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbWnvKFCLR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbWnvKFCLR .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .title {
    display: none;
  }
}
.cid-tbWnvKFCLR .title-wrapper {
  display: flex;
}
.cid-tbWnvKFCLR .title-wrapper img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tbWnvKFCLR .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tbWnvKFCLR .list {
  list-style: none;
  padding-left: 0;
  color: #b8b8b8;
}
@media (max-width: 991px) {
  .cid-tbWnvKFCLR .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tbWnvKFCLR .list {
    margin-bottom: 0;
  }
}
.cid-tbWnvKFCLR .social-wrapper {
  width: 100%;
}
.cid-tbWnvKFCLR .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .social-row {
    margin-top: 12px;
  }
}
.cid-tbWnvKFCLR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tbWnvKFCLR .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .card-list {
    display: none;
  }
}
.cid-tbWnvKFCLR .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #e6d014;
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .mbr-section-subtitle {
    display: none;
  }
}
.cid-tbWnvKFCLR .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tbWnvKFCLR .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #b8b8b8;
}
@media (max-width: 992px) {
  .cid-tbWnvKFCLR .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tbWnvKFCLR .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .copyright-container {
    display: block;
  }
}
.cid-tbWnvKFCLR .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tbWnvKFCLR .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-tbWnvKFCLR .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tbWnvKFCLR .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tbWnvKFCLR .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tbWnvKFCLR .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tbWnvKFCLR .item-wrap:hover,
.cid-tbWnvKFCLR p:hover,
.cid-tbWnvKFCLR .mbr-iconfont:hover {
  color: #ffffff;
}
.cid-tbWnvKFCLR .mbr-section-title,
.cid-tbWnvKFCLR .mbr-iconfont {
  color: #b8b8b8;
}
.cid-tbWnvKFCLR .copyright {
  color: #000000;
}
.cid-tbWnvKFCLR .list-copy {
  color: #e5e5e5;
}
.cid-tbWnvKFCLR .copyright,
.cid-tbWnvKFCLR .copyright-list {
  color: #ffffff;
  text-align: center;
}
