body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.7;
}
.display-4 > .mbr-iconfont {
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.08rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #f1a631 !important;
}
.bg-info {
  background-color: #fb7522 !important;
}
.bg-warning {
  background-color: #4da92e !important;
}
.bg-danger {
  background-color: #ff4e4e !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0a0b17 !important;
  border-color: #0a0b17 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #cd5104 !important;
  border-color: #cd5104 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f1a631 !important;
  border-color: #f1a631 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #c87f0e !important;
  border-color: #c87f0e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c87f0e !important;
  border-color: #c87f0e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #4da92e !important;
  border-color: #4da92e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #326d1e !important;
  border-color: #326d1e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff4e4e !important;
  border-color: #ff4e4e !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff0101 !important;
  border-color: #ff0101 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff0101 !important;
  border-color: #ff0101 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #ffffff;
}
.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: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #0a0b17;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a0b17 !important;
  border-color: #0a0b17 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #b44703;
  color: #b44703;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #fb7522;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #fb7522 !important;
  border-color: #fb7522 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #b0700c;
  color: #b0700c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #f1a631;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f1a631 !important;
  border-color: #f1a631 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #285918;
  color: #285918;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #4da92e;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #4da92e !important;
  border-color: #4da92e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #e70000;
  color: #e70000;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #ff4e4e;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4e4e !important;
  border-color: #ff4e4e !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background: transparent !important;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2) !important;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #0a0b17 !important;
}
.text-success {
  color: #f1a631 !important;
}
.text-info {
  color: #fb7522 !important;
}
.text-warning {
  color: #4da92e !important;
}
.text-danger {
  color: #ff4e4e !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b0700c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b44703 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #285918 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #e70000 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #fb7522;
}
.alert-warning {
  background-color: #4da92e;
}
.alert-danger {
  background-color: #ff4e4e;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
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: #fef9f0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fff2ea;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #93db7b;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 2.08rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.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: #ffffff !important;
  background: #0a0b17 !important;
  box-shadow: none !important;
}
.sidebar-block .mbr-gallery-item .galleryItem .onsale {
  top: 0px;
}
.sidebar-block .mbr-gallery-item .galleryItem .sidebar_wraper {
  bottom: -35px;
  margin-left: 1rem;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-v36BxTL68P {
  display: flex;
}
@media (min-width: 768px) {
  .cid-v36BxTL68P {
    align-items: flex-end;
  }
  .cid-v36BxTL68P .row {
    justify-content: flex-start;
  }
  .cid-v36BxTL68P .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-v36BxTL68P .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-v36BxTL68P {
    -webkit-align-items: center;
    align-items: flex-end;
  }
  .cid-v36BxTL68P .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-v36BxTL68P .content-wrap {
    width: 100%;
  }
}
.cid-v36BxTL68P .mbr-fallback-image.disabled {
  display: none;
}
.cid-v36BxTL68P .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/background1.jpg");
}
.cid-v36BxTL68P .mbr-section-title,
.cid-v36BxTL68P .mbr-section-subtitle {
  text-align: left;
  color: #ffc091;
}
.cid-v36BxTL68P .mbr-text,
.cid-v36BxTL68P .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-v2W89fqOvW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-v2W89fqOvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2W89fqOvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2W89fqOvW .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 40%;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .cid-v2W89fqOvW .title-wrapper .mbr-section-title {
    width: 60%;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v2W89fqOvW .items-wrapper {
  margin: 0;
}
.cid-v2W89fqOvW .items-wrapper .item {
  padding: 0;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper {
  display: flex;
  padding: 0 40px 0 0;
  height: 100%;
  padding: 0 40px 40px 0;
  border-bottom: 1px solid #fb7522;
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .items-wrapper .item .item-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .items-wrapper .item .item-wrapper {
    padding: 0 0 20px 0;
  }
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-number {
  min-width: 70px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-number {
    min-width: auto;
    margin-bottom: 10px;
  }
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-content {
  width: 100%;
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2W89fqOvW .items-wrapper .item .item-wrapper .item-content .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-v2W89fqOvW .items-wrapper .item .item-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v2W89fqOvW .mbr-section-title {
  color: #093388;
}
.cid-v2W89fqOvW .item-number {
  color: #093388;
}
.cid-v2W89fqOvW .item-title {
  color: #093388;
}
.cid-v2W89fqOvW .item-text {
  color: #58595b;
}
.cid-v2W89fqOvW .item-title,
.cid-v2W89fqOvW .mbr-section-btn {
  color: #fafafa;
  text-align: center;
}
.cid-v4gwHXw3qd {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f1f1f1;
}
.cid-v4gwHXw3qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4gwHXw3qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4gwHXw3qd .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 6px 13px;
  border: 1px solid #c9c9c9;
  margin: 0 auto;
  border-radius: 4px;
}
.cid-v4gwHXw3qd .label-text {
  color: #747474;
}
.cid-v4gwHXw3qd .mbr-title {
  margin-top: 30px;
  color: #fb7522;
}
@media (min-width: 992px) {
  .cid-v4gwHXw3qd .mbr-title.display-2 {
    font-size: 6vw;
  }
}
.cid-v4gwHXw3qd .mbr-subtitle {
  margin-top: 40px;
  color: #fb7522;
}
@media (max-width: 991px) {
  .cid-v4gwHXw3qd .mbr-subtitle {
    margin-top: 30px;
  }
}
.cid-v4gwHXw3qd .mbr-text {
  margin-top: 30px;
  color: #000000;
}
.cid-v4guDOVUSS {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #eaeaea;
}
.cid-v4guDOVUSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4guDOVUSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v4guDOVUSS .row {
  justify-content: center;
  margin: 0 -13px;
}
.cid-v4guDOVUSS .row .card {
  padding: 0 13px;
}
.cid-v4guDOVUSS .content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .content-wrapper {
    display: block;
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-v4guDOVUSS .content-wrapper .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 30px;
  background-color: #ffbe0d;
}
.cid-v4guDOVUSS .content-wrapper .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v4guDOVUSS .content-wrapper .content-wrap .label-wrapper .label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #151e11;
}
.cid-v4guDOVUSS .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v4guDOVUSS .content-wrapper .cards-wrap .image-wrapper img {
  height: 270px;
  object-fit: cover;
}
.cid-v4guDOVUSS .content-wrapper .cards-wrap .number-wrap {
  padding: 60px 40px;
  background-color: #767676;
  margin-top: 26px;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .content-wrapper .cards-wrap .number-wrap {
    padding: 30px 16px;
    margin-top: 16px;
  }
}
.cid-v4guDOVUSS .content-wrapper .cards-wrap .number-wrap .mbr-number {
  margin-bottom: 10px;
}
.cid-v4guDOVUSS .content-wrapper .cards-wrap .number-wrap .mbr-number-desc {
  margin-bottom: 0;
}
.cid-v4guDOVUSS .card-wrapper {
  overflow: hidden;
}
.cid-v4guDOVUSS .card-wrapper .image-wrap img {
  height: 490px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .card-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-v4guDOVUSS .card-wrapper .item-content {
  padding: 54px;
  background-color: #222222;
  margin-top: -1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1440px) {
  .cid-v4guDOVUSS .card-wrapper .item-content {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .card-wrapper .item-content {
    padding: 30px 16px;
  }
}
.cid-v4guDOVUSS .card-wrapper .item-content .card-label-wrapper .card-label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.cid-v4guDOVUSS .card-wrapper .item-content .card-label-wrapper .card-label-wrap .card-label {
  margin-bottom: 0;
}
.cid-v4guDOVUSS .card-wrapper .item-content .card-label-wrapper .card-label-wrap .mbr-iconfont {
  font-size: 18px;
  margin-right: 12px;
  color: #fff7ee;
}
.cid-v4guDOVUSS .card-wrapper .item-content .card-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .card-wrapper .item-content .card-title {
    margin-bottom: 30px;
  }
}
.cid-v4guDOVUSS .card-wrapper .item-content .text-wrapper .card-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v4guDOVUSS .card-wrapper .item-content .text-wrapper .card-text {
    width: 100%;
  }
}
.cid-v4guDOVUSS .mbr-label,
.cid-v4guDOVUSS .label-wrapper {
  color: #151e11;
}
.cid-v4guDOVUSS .mbr-section-title {
  color: #fb7522;
}
.cid-v4guDOVUSS .mbr-number {
  color: #fff7ee;
}
.cid-v4guDOVUSS .mbr-number-desc {
  color: #fff7ee;
}
.cid-v4guDOVUSS .card-label,
.cid-v4guDOVUSS .card-label-wrapper {
  color: #fff7ee;
}
.cid-v4guDOVUSS .card-title {
  color: #fff7ee;
}
.cid-v4guDOVUSS .card-text {
  color: #fff7ee;
}
.cid-v4mlGgF0GU {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/img-4774-1242x910.jpg");
}
@media (min-width: 1400px) {
  .cid-v4mlGgF0GU .container {
    max-width: 1162px;
  }
}
@media (max-width: 768px) {
  .cid-v4mlGgF0GU .top {
    margin-top: 10rem;
  }
}
.cid-v4mlGgF0GU .mbr-section-title {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  color: #fb7522;
}
.cid-v4mlGgF0GU .mbr-text {
  font-size: 24px;
  line-height: 1.3;
  color: #cccccc;
}
.cid-v4mlGgF0GU .index {
  z-index: 3;
}
.cid-v4mlGgF0GU ul {
  list-style: none;
  margin: 0;
  padding-left: 40px;
}
.cid-v4mlGgF0GU li {
  margin-bottom: 47px;
  position: relative;
}
.cid-v4mlGgF0GU ul li::before {
  position: relative;
  content: "\2713";
  left: -40px;
  top: -5%;
  color: #fb7522;
  border: 2px solid #cccccc;
  font-weight: bold;
  font-size: 2rem;
  padding: 0 .5rem;
}
.cid-v4mlGgF0GU .wrap {
  right: 80%;
  top: 0;
  width: 400px;
  height: 200px;
  position: absolute;
}
@media (max-width: 991px) {
  .cid-v4mlGgF0GU .wrap {
    top: -10%;
    right: 5%;
  }
}
@media (max-width: 768px) {
  .cid-v4mlGgF0GU .wrap {
    top: 10%;
  }
}
.cid-v4mlGgF0GU .wrap .anim {
  width: 195px;
  height: 195px;
  position: relative;
  object-fit: cover;
  border-radius: 100%;
  animation: 15s linear 0s normal none infinite running rot1;
  -webkit-animation: 15s linear 0s normal none infinite running rot1;
}
@media (min-width: 992px) {
  .cid-v4mlGgF0GU .wrap {
    right: 5%;
    top: -10%;
  }
}
@media (min-width: 1400px) {
  .cid-v4mlGgF0GU .wrap {
    right: -5%;
    top: -5%;
  }
}
@keyframes rot1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes rot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.cid-v4mlGgF0GU .mbr-section-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: #000000;
  font-size: 25px;
}
.cid-v4mlGgF0GU .text {
  font-size: 30px;
  color: #cbc0ff;
  font-weight: 600;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  transform: rotate(-20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  text-align: end;
}
.cid-v4mlGgF0GU .text1 {
  bottom: -75%;
  right: 10%;
  position: absolute;
  font-size: 140px;
  color: #f4d7d7;
  font-weight: 700;
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -o-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -webkit-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
  -moz-text-shadow: 0px 1px 0 #fbfdfc, 0px -1px 0 #fbfdfc, 1px 0px 0 #fbfdfc, -1px 0px 0 #fbfdfc, 1px 1px 0 #fbfdfc, 1px -1px 0 #fbfdfc, -1px 1px 0 #fbfdfc, -1px -1px 0 #fbfdfc, 0px 2px 0 #fbfdfc, 0px -2px 0 #fbfdfc, 2px 0px 0 #fbfdfc, -2px 0px 0 #fbfdfc, 2px 2px 0 #fbfdfc, 2px -2px 0 #fbfdfc, -2px 2px 0 #fbfdfc, -2px -2px 0 #fbfdfc, 0px 3px 0 #fbfdfc, 0px -3px 0 #fbfdfc, 3px 0px 0 #fbfdfc, -3px 0px 0 #fbfdfc, 3px 3px 0 #fbfdfc, 3px -3px 0 #fbfdfc, -3px 3px 0 #fbfdfc, -3px -3px 0 #fbfdfc, 0px 4px 0 #fbfdfc, 0px -4px 0 #fbfdfc, 4px 0px 0 #fbfdfc, -4px 0px 0 #fbfdfc, 4px 4px 0 #fbfdfc, 4px -4px 0 #fbfdfc, -4px 4px 0 #fbfdfc, -4px -4px 0 #fbfdfc;
}
.cid-v4mlGgF0GU .mbr-text UL {
  text-align: left;
}
.cid-vmFmtXzuUb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vmFmtXzuUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmFmtXzuUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmFmtXzuUb .items-wrapper {
  margin: 0 -17px;
}
.cid-vmFmtXzuUb .items-wrapper .item {
  padding: 0 17px;
}
.cid-vmFmtXzuUb .item {
  margin-bottom: 34px;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .item {
    margin-bottom: 20px;
  }
  .cid-vmFmtXzuUb .item:last-child {
    margin-bottom: 0;
  }
}
.cid-vmFmtXzuUb .title-wrapper {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vmFmtXzuUb .title-wrapper .label-wrapper .mbr-label {
  margin-bottom: 15px;
}
.cid-vmFmtXzuUb .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vmFmtXzuUb .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmFmtXzuUb .item-wrapper {
  padding: 45px;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .item-wrapper {
    padding: 20px;
  }
}
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap {
    display: block;
  }
}
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
  text-aling: left;
}
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_1,
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_2,
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_3,
.cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_4 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_1,
  .cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_2,
  .cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_3,
  .cid-vmFmtXzuUb .item-wrapper .card-box .title-wrap .item-number_4 {
    margin-bottom: 10px;
  }
}
.cid-vmFmtXzuUb .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-vmFmtXzuUb .item-wrapper .card-box .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .item-wrapper .card-box .item-btn {
    margin-top: 10px;
  }
}
.cid-vmFmtXzuUb .card_1 {
  background-color: #222222;
}
.cid-vmFmtXzuUb .card_2 {
  background-color: #616161;
}
.cid-vmFmtXzuUb .card_3 {
  background-color: #09120d;
}
.cid-vmFmtXzuUb .card_4 {
  background-color: #767676;
}
.cid-vmFmtXzuUb .main-btn {
  width: 100%;
}
.cid-vmFmtXzuUb .main-btn .btn {
  padding: 60px 90px;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vmFmtXzuUb .main-btn .btn {
    padding: 30px;
  }
}
.cid-vmFmtXzuUb .main-btn .btn:hover,
.cid-vmFmtXzuUb .main-btn .btn:focus {
  transform: none !important;
}
.cid-vmFmtXzuUb .mbr-label {
  color: #3a353e;
}
.cid-vmFmtXzuUb .mbr-section-title {
  color: #fb7522;
}
.cid-vmFmtXzuUb .mbr-text {
  color: #3a353e;
}
.cid-vmFmtXzuUb .item-number_1 {
  color: #cccccc;
}
.cid-vmFmtXzuUb .item-number_2 {
  color: #ffffff;
}
.cid-vmFmtXzuUb .item-number_3 {
  color: #cccccc;
}
.cid-vmFmtXzuUb .item-number_4 {
  color: #ffffff;
}
.cid-vmFmtXzuUb .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-vmFmtXzuUb .item-text {
  color: #3a353e;
}
.cid-vmFmtXzuUb .item-text,
.cid-vmFmtXzuUb .item-btn {
  color: #cccccc;
}
.cid-v2QUNS9gsi {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/1081-1200x628.jpg");
}
.cid-v2QUNS9gsi .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2QUNS9gsi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2QUNS9gsi .row {
  margin: 0 -20px;
}
.cid-v2QUNS9gsi .card {
  padding: 0 20px;
}
.cid-v2QUNS9gsi .mbr-tag {
  margin-bottom: 16px;
  color: #adadad;
}
.cid-v2QUNS9gsi .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-v2QUNS9gsi .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2QUNS9gsi .title-wrapper .main-btn .btn {
  margin-bottom: 0;
}
.cid-v2QUNS9gsi .mbr-section-btn {
  margin-top: 20px;
}
.cid-v2QUNS9gsi .mbr-section-btn .btn::after,
.cid-v2QUNS9gsi .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-v2QUNS9gsi .mbr-section-btn .btn:hover,
.cid-v2QUNS9gsi .mbr-section-btn .btn:focus {
  color: #ff8f00 !important;
}
.cid-v2QUNS9gsi .mbr-section-btn .btn:hover::after,
.cid-v2QUNS9gsi .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-v2QUNS9gsi .items-wrapper .item {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .items-wrapper .item {
    margin-bottom: 20px;
  }
}
.cid-v2QUNS9gsi .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper {
  display: flex;
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .icon-wrapper {
  margin-right: 60px;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .icon-wrapper {
    margin-bottom: 20px;
    margin-right: 0;
    margin-top: 0;
  }
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fb7522, #d9aa26);
  font-size: 80px;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .icon-wrapper .mbr-iconfont {
    font-size: 50px;
  }
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content {
  padding-bottom: 20px;
  border-bottom: 2px solid #ffffff;
  border-radius: 0 !important;
  width: 100%;
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-title:hover,
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-title:focus {
  color: #ff8f00;
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
}
.cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-btn {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v2QUNS9gsi .items-wrapper .item .item-wrapper .item-content .item-btn {
    margin-bottom: 0;
  }
}
.cid-v2QUNS9gsi .mbr-section-title {
  color: #ffffff;
}
.cid-v2QUNS9gsi .item-title {
  color: #ffffff;
}
.cid-v2QUNS9gsi .item-text {
  color: #ffffff;
}
.cid-v2QUNS9gsi .mbr-section-title,
.cid-v2QUNS9gsi .main-btn {
  color: #fb7522;
  text-align: center;
}
.cid-v36FOOIYLF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #151515;
}
.cid-v36FOOIYLF .container-fluid {
  position: relative;
}
.cid-v36FOOIYLF .page-title-content {
  width: 100%;
}
.cid-v36FOOIYLF .page-title-content .mbr-iconfont {
  font-size: 55px;
  height: 55px;
  line-height: 55px;
  width: 55px;
  margin-top: -10px;
  color: #f1a631;
}
.cid-v36FOOIYLF .page-title-content .mbr-iconfont:hover {
  cursor: pointer;
}
@media (max-width: 576px) {
  .cid-v36FOOIYLF .page-title-content {
    text-align: center;
  }
}
.cid-v36FOOIYLF .title {
  letter-spacing: 0.8px;
  margin-top: 24px;
  font-weight: 300;
  margin: 0;
  position: relative;
  word-wrap: break-word;
}
.cid-v36FOOIYLF a {
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cid-v36FOOIYLF a:not(:first-child) {
  margin-left: 20px;
}
.cid-v36FOOIYLF a:after {
  position: absolute;
  margin-top: 7px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
}
.cid-v36FOOIYLF a::before {
  position: absolute;
  margin-top: 5px;
  background-color: currentColor;
  display: block;
  content: "";
  height: 2px;
  width: 0%;
  bottom: 7px;
}
.cid-v36FOOIYLF a:hover:after,
.cid-v36FOOIYLF a:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: slidein;
  animation-name: slidein;
}
.cid-v36FOOIYLF a:hover:before,
.cid-v36FOOIYLF a:focus:before {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-name: slideout;
  animation-name: slideout;
}
.cid-v36FOOIYLF a.text-white:hover,
.cid-v36FOOIYLF a.text-white:focus {
  color: #ffffff !important;
}
.cid-v36FOOIYLF .mbr-section-btn {
  margin-left: 0;
  margin-right: 0;
}
.cid-v36FOOIYLF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v36FOOIYLF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v36FOOIYLF .page-title-content .title,
.cid-v36FOOIYLF .icon-section,
.cid-v36FOOIYLF .mbr-section-btn {
  color: #fb7522;
}
.cid-v2WJunKI3E {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #151515;
}
.cid-v2WJunKI3E .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2WJunKI3E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2WJunKI3E .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v2WJunKI3E .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-v2WJunKI3E .items-wrapper {
  margin: 0 -10px;
}
.cid-v2WJunKI3E .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2WJunKI3E .item {
    margin-bottom: 16px;
  }
}
.cid-v2WJunKI3E .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-v2WJunKI3E .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-v2WJunKI3E .item:hover .item-wrapper .item-content .item-img,
.cid-v2WJunKI3E .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-v2WJunKI3E .item:nth-child(2n) .item-wrapper {
  background-color: #616161;
}
.cid-v2WJunKI3E .item:nth-child(3n) .item-wrapper {
  background-color: #343434;
}
.cid-v2WJunKI3E .item:nth-child(4n) .item-wrapper {
  background-color: #616161;
}
.cid-v2WJunKI3E .item:nth-child(6n) .item-wrapper {
  background-color: #9d9d9d;
}
.cid-v2WJunKI3E .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #222222;
}
@media (max-width: 992px) {
  .cid-v2WJunKI3E .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-v2WJunKI3E .item .item-wrapper .item-content {
  position: relative;
}
.cid-v2WJunKI3E .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-v2WJunKI3E .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #fb7522;
}
.cid-v2WJunKI3E .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-v2WJunKI3E .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v2WJunKI3E .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-v2WJunKI3E .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-v2WJunKI3E .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-v2WJunKI3E .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-v2WJunKI3E .mbr-section-title {
  color: #fafafa;
  text-align: center;
}
.cid-v2WJunKI3E .panel-title-edit {
  color: #212529;
}
.cid-v2WJunKI3E .panel-text {
  color: #51565c;
}
.cid-v2WJunKI3E .item-title {
  color: #cccccc;
}
.cid-v30YcyNa28 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #edefeb;
}
.cid-v30YcyNa28 .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v30YcyNa28 .smallImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-v30YcyNa28 .largeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-v30YcyNa28 .largeImage .item {
    margin-bottom: 2rem;
  }
  .cid-v30YcyNa28 .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cid-v30YcyNa28 .largeImage .item {
    margin-bottom: 1rem;
  }
}
.cid-v30YcyNa28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v30YcyNa28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v30YcyNa28 .mbr-description {
  text-align: left;
}
.cid-v30YcyNa28 .card-title,
.cid-v30YcyNa28 .iconfont-wrapper {
  color: #000000;
}
.cid-v30YcyNa28 .card-text {
  color: #000000;
}
.cid-v30YcyNa28 .mbr-section-title {
  color: #fb7522;
  text-align: center;
}
.cid-v30YcyNa28 .mbr-number {
  color: #9fe870;
}
.cid-v30YcyNa28 .mbr-text,
.cid-v30YcyNa28 .mbr-section-btn {
  text-align: center;
}
.cid-v30YcyNa28 .card-text,
.cid-v30YcyNa28 .item .mbr-section-btn {
  text-align: left;
}
.cid-v30YcyNa28 .smallImage {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v30YcyNa28 .smallImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-v30YcyNa28 .largeImage {
  width: 100%;
  height: 632px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v30YcyNa28 .largeImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-v30YcyNa28 .row {
  flex-direction: row-reverse;
}
.cid-v36tT4G14d {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-v36tT4G14d .item-wrapper {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-v36tT4G14d .smallImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-v36tT4G14d .largeImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cid-v36tT4G14d .largeImage .item {
    margin-bottom: 2rem;
  }
  .cid-v36tT4G14d .item-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cid-v36tT4G14d .largeImage .item {
    margin-bottom: 1rem;
  }
}
.cid-v36tT4G14d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v36tT4G14d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v36tT4G14d .mbr-description {
  text-align: left;
}
.cid-v36tT4G14d .card-title,
.cid-v36tT4G14d .iconfont-wrapper {
  color: #000000;
}
.cid-v36tT4G14d .card-text {
  color: #000000;
}
.cid-v36tT4G14d .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v36tT4G14d .mbr-number {
  color: #9fe870;
}
.cid-v36tT4G14d .mbr-text,
.cid-v36tT4G14d .mbr-section-btn {
  text-align: center;
}
.cid-v36tT4G14d .card-text,
.cid-v36tT4G14d .item .mbr-section-btn {
  text-align: left;
}
.cid-v36tT4G14d .smallImage {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v36tT4G14d .smallImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-v36tT4G14d .largeImage {
  width: 100%;
  height: 632px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v36tT4G14d .largeImage {
    height: 100%;
    object-fit: cover;
  }
}
.cid-s2tk4u1beE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #151515;
}
.cid-s2tk4u1beE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s2tk4u1beE textarea {
  min-height: 150px;
}
.cid-s2tk4u1beE .mbr-iconfont {
  position: absolute;
  right: 1.2rem;
  color: #fb7522;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}
.cid-s2tk4u1beE .form-control,
.cid-s2tk4u1beE .field-input {
  padding: 1rem;
  background-color: #cccccc;
  border: 1px solid #cccccc;
  color: #ffffff !important;
  transition: 0.4s;
  font-size: 0.9rem;
  box-shadow: none;
  border-radius: 8px;
  outline: none;
}
.cid-s2tk4u1beE .form-control input::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input input::-webkit-input-placeholder,
.cid-s2tk4u1beE .form-control textarea::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input textarea::-webkit-input-placeholder {
  color: #9d9d9d !important;
}
.cid-s2tk4u1beE .form-control input:-moz-placeholder,
.cid-s2tk4u1beE .field-input input:-moz-placeholder,
.cid-s2tk4u1beE .form-control textarea:-moz-placeholder,
.cid-s2tk4u1beE .field-input textarea:-moz-placeholder {
  color: #9d9d9d !important;
}
.cid-s2tk4u1beE .form-control:hover,
.cid-s2tk4u1beE .field-input:hover,
.cid-s2tk4u1beE .form-control:focus,
.cid-s2tk4u1beE .field-input:focus {
  background-color: #09120d;
  border-color: #767676;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s2tk4u1beE .form-control:hover input::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input:hover input::-webkit-input-placeholder,
.cid-s2tk4u1beE .form-control:focus input::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input:focus input::-webkit-input-placeholder,
.cid-s2tk4u1beE .form-control:hover textarea::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input:hover textarea::-webkit-input-placeholder,
.cid-s2tk4u1beE .form-control:focus textarea::-webkit-input-placeholder,
.cid-s2tk4u1beE .field-input:focus textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-s2tk4u1beE .form-control:hover input:-moz-placeholder,
.cid-s2tk4u1beE .field-input:hover input:-moz-placeholder,
.cid-s2tk4u1beE .form-control:focus input:-moz-placeholder,
.cid-s2tk4u1beE .field-input:focus input:-moz-placeholder,
.cid-s2tk4u1beE .form-control:hover textarea:-moz-placeholder,
.cid-s2tk4u1beE .field-input:hover textarea:-moz-placeholder,
.cid-s2tk4u1beE .form-control:focus textarea:-moz-placeholder,
.cid-s2tk4u1beE .field-input:focus textarea:-moz-placeholder {
  color: #000000;
}
.cid-s2tk4u1beE .jq-number__spin:hover,
.cid-s2tk4u1beE .jq-number__spin:focus {
  background-color: #09120d;
  border-color: #767676;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s2tk4u1beE .jq-number__spin {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s2tk4u1beE .jq-selectbox li,
.cid-s2tk4u1beE .jq-selectbox li {
  background-color: #cccccc;
  color: #000000;
}
.cid-s2tk4u1beE .jq-selectbox li:hover,
.cid-s2tk4u1beE .jq-selectbox li.selected {
  background-color: #09120d;
  color: #ffffff;
}
.cid-s2tk4u1beE .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s2tk4u1beE .jq-number__spin.minus:hover:after,
.cid-s2tk4u1beE .jq-number__spin.plus:hover:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}
.cid-s2tk4u1beE .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s2tk4u1beE .jq-number__spin.minus:after,
.cid-s2tk4u1beE .jq-number__spin.plus:after {
  border-top-color: #09120d;
  border-bottom-color: #09120d;
}
.cid-s2tk4u1beE input::-webkit-clear-button {
  display: none;
}
.cid-s2tk4u1beE input::-webkit-inner-spin-button {
  display: none;
}
.cid-s2tk4u1beE input::-webkit-outer-spin-button {
  display: none;
}
.cid-s2tk4u1beE input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s2tk4u1beE H2 {
  text-align: center;
  color: #fb7522;
}
.cid-vmFHEfXAy3 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #151515;
}
.cid-vmFHEfXAy3 img {
  width: 100px;
  height: auto;
  display: inline;
}
.cid-vmFHEfXAy3 .si {
  width: 100%;
}
.cid-vmFHEfXAy3 .text {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 48px;
  padding-top: 8px;
}
.cid-vmFHEfXAy3 .number {
  font-weight: 600;
  padding-bottom: 12px;
  color: #cfcfcf;
}
.cid-vmFHEfXAy3 .subtitle {
  color: #f7978f;
}
.cid-vmFHEfXAy3 .text,
.cid-vmFHEfXAy3 .si {
  text-align: center;
}
.cid-vmFHEfXAy3 .copyright {
  padding-top: 120px;
}
.cid-s3ZphtbihF .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-s3ZphtbihF .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-s3ZphtbihF .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-s3ZphtbihF .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-s3ZphtbihF .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-s3ZphtbihF a {
  font-style: normal;
}
.cid-s3ZphtbihF .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-s3ZphtbihF .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-s3ZphtbihF .dropdown-item:before {
  font-family: MobiriseIcons !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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s3ZphtbihF .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-s3ZphtbihF .content-text {
  margin-bottom: 0;
}
.cid-s3ZphtbihF .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-s3ZphtbihF .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-s3ZphtbihF .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-s3ZphtbihF .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-s3ZphtbihF .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-s3ZphtbihF .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-s3ZphtbihF .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s3ZphtbihF .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-s3ZphtbihF .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-s3ZphtbihF .navbar-buttons {
  flex-wrap: wrap;
}
.cid-s3ZphtbihF .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s3ZphtbihF .nav-dropdown .link {
  font-weight: 400;
}
.cid-s3ZphtbihF .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-s3ZphtbihF .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-s3ZphtbihF .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-s3ZphtbihF .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-s3ZphtbihF .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-s3ZphtbihF .menu-content-top.show {
  display: block;
}
.cid-s3ZphtbihF .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-s3ZphtbihF .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-s3ZphtbihF .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-s3ZphtbihF .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-s3ZphtbihF .dropdown-item:before {
    display: none;
  }
  .cid-s3ZphtbihF .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-s3ZphtbihF .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-s3ZphtbihF img {
    height: 3.8rem !important;
  }
  .cid-s3ZphtbihF .btn {
    display: flex;
  }
  .cid-s3ZphtbihF button.navbar-toggler {
    display: block;
  }
  .cid-s3ZphtbihF .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-s3ZphtbihF .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-s3ZphtbihF .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-s3ZphtbihF .navbar-collapse.collapsing,
  .cid-s3ZphtbihF .navbar-collapse.show {
    display: block !important;
  }
  .cid-s3ZphtbihF .navbar-collapse.collapsing .navbar-nav,
  .cid-s3ZphtbihF .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-s3ZphtbihF .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-s3ZphtbihF .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-s3ZphtbihF .navbar-collapse.collapsing .navbar-buttons,
  .cid-s3ZphtbihF .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-s3ZphtbihF .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-s3ZphtbihF .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-s3ZphtbihF .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-s3ZphtbihF .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-s3ZphtbihF .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-s3ZphtbihF .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-s3ZphtbihF .navbar .menu-content-top {
    display: block;
  }
  .cid-s3ZphtbihF .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-s3ZphtbihF .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-s3ZphtbihF .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-s3ZphtbihF .menu-bottom {
    display: flex;
  }
  .cid-s3ZphtbihF .navbar {
    display: block;
    padding: 0;
  }
  .cid-s3ZphtbihF .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-s3ZphtbihF .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-s3ZphtbihF .navbar-toggler {
    display: none;
  }
}
.cid-s3ZphtbihF .navbar-short .menu-content-top {
  border: none;
}
.cid-s3ZphtbihF .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s3ZphtbihF .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-s3ZphtbihF .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-s3ZphtbihF .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-s3ZphtbihF .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-s3ZphtbihF .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-s3ZphtbihF .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-s3ZphtbihF .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s3ZphtbihF .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-s3ZphtbihF .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s3ZphtbihF .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-s3ZphtbihF .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-s3ZphtbihF .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-s3ZphtbihF .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-s3ZphtbihF .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-s3ZphtbihF .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-s3ZphtbihF button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-s3ZphtbihF button.navbar-toggler:focus {
  outline: none;
}
.cid-s3ZphtbihF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-s3ZphtbihF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s3ZphtbihF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZphtbihF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZphtbihF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s3ZphtbihF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZphtbihF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s3ZphtbihF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s3ZphtbihF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZphtbihF .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s3ZphtbihF .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s3ZphtbihF .collapsed .menu-logo {
  margin-right: 0;
}
.cid-s3ZphtbihF .collapsed .btn {
  display: flex;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse.collapsing,
.cid-s3ZphtbihF .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-s3ZphtbihF .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-s3ZphtbihF .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-s3ZphtbihF .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-s3ZphtbihF .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-s3ZphtbihF .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-s3ZphtbihF .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem  - 1rem);
  }
  .cid-s3ZphtbihF .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-s3ZphtbihF .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s3ZphtbihF .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-s3ZphtbihF .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-s3ZphtbihF .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-s3ZphtbihF .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-s3ZphtbihF .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-s3ZphtbihF .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-s3ZphtbihF .collapsed .dropdown-item:before {
  display: none;
}
.cid-s3ZphtbihF .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-s3ZphtbihF .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-s3ZphtbihF .nav-link:focus {
  outline: none;
}
.cid-s3ZphtbihF .navbar-toggler {
  position: relative;
}
.cid-s3ZphtbihF .dropdown-item.active,
.cid-s3ZphtbihF .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-s3ZphtbihF .nav-link:hover,
.cid-s3ZphtbihF .dropdown-item:hover {
  color: #fb7522;
}
