body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tFEY7y6nAz {
  padding-top: 9rem;
  padding-bottom: 1rem;
}
.cid-tFEY7y6nAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFEY7y6nAz .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/background13-1.jpeg");
}
.cid-tFEY7y6nAz .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tFEY7y6nAz .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tFEY7y6nAz .text-box {
  text-align: center;
}
.cid-tFEY7y6nAz span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tFEY7y6nAz .card {
    margin-bottom: 2rem;
  }
  .cid-tFEY7y6nAz .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tFEY7y6nAz span {
    font-size: 21vw;
  }
}
.cid-tFEY7y6nAz .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tFEY7y6nAz .icon-title,
.cid-tFEY7y6nAz .mbr-section-btn,
.cid-tFEY7y6nAz .item .icon-box .step-number {
  color: #ffb5b5;
}
.cid-tFEWPyk2dO .navbar-dropdown {
  position: relative !important;
}
@media (min-width: 992px) {
  .cid-tFEWPyk2dO .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-tFEWPyk2dO .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #cf5a20;
}
.cid-tFEWPyk2dO .navbar.opened {
  transition: all 0.3s;
}
.cid-tFEWPyk2dO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFEWPyk2dO .navbar .navbar-logo img {
  width: auto;
}
.cid-tFEWPyk2dO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFEWPyk2dO .navbar.collapsed {
  justify-content: center;
}
.cid-tFEWPyk2dO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFEWPyk2dO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFEWPyk2dO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFEWPyk2dO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFEWPyk2dO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFEWPyk2dO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFEWPyk2dO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFEWPyk2dO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFEWPyk2dO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFEWPyk2dO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFEWPyk2dO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFEWPyk2dO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFEWPyk2dO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFEWPyk2dO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFEWPyk2dO .navbar-logo {
  margin: 0;
}
.cid-tFEWPyk2dO .container,
.cid-tFEWPyk2dO .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-tFEWPyk2dO .container,
  .cid-tFEWPyk2dO .container-fluid {
    justify-content: space-between;
  }
}
.cid-tFEWPyk2dO .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFEWPyk2dO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFEWPyk2dO .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tFEWPyk2dO .navbar-brand {
    display: none;
  }
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFEWPyk2dO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFEWPyk2dO .dropdown-item:hover,
.cid-tFEWPyk2dO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tFEWPyk2dO .dropdown-item:hover span {
  color: white;
}
.cid-tFEWPyk2dO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFEWPyk2dO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFEWPyk2dO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFEWPyk2dO .nav-link {
  position: relative;
}
.cid-tFEWPyk2dO .container {
  display: flex;
  margin: auto;
}
.cid-tFEWPyk2dO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFEWPyk2dO .dropdown-menu,
.cid-tFEWPyk2dO .navbar.opened {
  background: #cf5a20 !important;
}
.cid-tFEWPyk2dO .nav-item:focus,
.cid-tFEWPyk2dO .nav-link:focus {
  outline: none;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFEWPyk2dO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFEWPyk2dO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFEWPyk2dO .dropdown-item.active,
.cid-tFEWPyk2dO .dropdown-item:active {
  background-color: transparent;
}
.cid-tFEWPyk2dO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFEWPyk2dO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cf5a20;
}
.cid-tFEWPyk2dO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFEWPyk2dO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFEWPyk2dO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFEWPyk2dO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFEWPyk2dO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFEWPyk2dO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar {
    height: 70px;
  }
  .cid-tFEWPyk2dO .navbar.opened {
    height: auto;
  }
  .cid-tFEWPyk2dO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGxtTufAc4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/expobg-2000x1236.jpg");
}
.cid-tGxtTufAc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGxtTufAc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGxtTufAc4 .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tGxtTufAc4 .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tGxtTufAc4 .text-box {
  text-align: center;
}
.cid-tGxtTufAc4 span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tGxtTufAc4 .card {
    margin-bottom: 2rem;
  }
  .cid-tGxtTufAc4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGxtTufAc4 span {
    font-size: 21vw;
  }
}
.cid-tGxtTufAc4 .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tGxtTufAc4 .icon-title,
.cid-tGxtTufAc4 .mbr-section-btn,
.cid-tGxtTufAc4 .item .icon-box .step-number {
  color: #ffb5b5;
}
.cid-tGxulYqwBj {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/expobg-2000x1236.jpg");
}
.cid-tGxulYqwBj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGxulYqwBj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGxulYqwBj .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tGxulYqwBj .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tGxulYqwBj .text-box {
  text-align: center;
}
.cid-tGxulYqwBj span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tGxulYqwBj .card {
    margin-bottom: 2rem;
  }
  .cid-tGxulYqwBj .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGxulYqwBj span {
    font-size: 21vw;
  }
}
.cid-tGxulYqwBj .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tGxulYqwBj .icon-title,
.cid-tGxulYqwBj .mbr-section-btn,
.cid-tGxulYqwBj .item .icon-box .step-number {
  color: #ffb5b5;
}
.cid-tGC59qa8oS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/expobg-2000x1236.jpg");
}
.cid-tGC59qa8oS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGC59qa8oS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGC59qa8oS [class^="socicon-"]:before,
.cid-tGC59qa8oS [class*=" socicon-"]:before {
  line-height: 55px;
}
.cid-tGC59qa8oS .btn-social {
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #6592e6;
  border-width: 2px;
  transition: all .3s;
  border-color: #6592e6;
}
.cid-tGC59qa8oS .btn-social:hover {
  background: #6592e6;
}
.cid-tGC59qa8oS .btn-social:hover i.socicon {
  color: #ffffff !important;
}
.cid-tFFtl4QhuS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cf5a20;
}
.cid-tFFtl4QhuS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFFtl4QhuS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFFtl4QhuS .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tFFtl4QhuS .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tFFtl4QhuS .text-box {
  text-align: center;
}
.cid-tFFtl4QhuS span {
  font-size: 10rem;
  color: #ff9966;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tFFtl4QhuS .card {
    margin-bottom: 2rem;
  }
  .cid-tFFtl4QhuS .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tFFtl4QhuS span {
    font-size: 21vw;
  }
}
.cid-tFFtl4QhuS .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tFFtl4QhuS .icon-title,
.cid-tFFtl4QhuS .mbr-section-btn,
.cid-tFFtl4QhuS .item .icon-box .step-number {
  color: #ffb5b5;
}
#custom-html-r {
  /* Type valid CSS here */
}
#custom-html-r .slider {
  width: 400px;
  margin: auto;
  overflow: visible;
}
#custom-html-r .slider ul {
  display: flex;
  padding: 0;
  animation: cambio 80s infinite linear;
}
#custom-html-r .slider li {
  padding: 0 10px;
  list-style: none;
}
#custom-html-r .slider img {
  max-width: fit-content !important;
  height: auto !important;
}
@keyframes cambio {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: -100%;
  }
}
.cid-tFEWPyk2dO .navbar-dropdown {
  position: relative !important;
}
@media (min-width: 992px) {
  .cid-tFEWPyk2dO .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-tFEWPyk2dO .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #cf5a20;
}
.cid-tFEWPyk2dO .navbar.opened {
  transition: all 0.3s;
}
.cid-tFEWPyk2dO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFEWPyk2dO .navbar .navbar-logo img {
  width: auto;
}
.cid-tFEWPyk2dO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFEWPyk2dO .navbar.collapsed {
  justify-content: center;
}
.cid-tFEWPyk2dO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFEWPyk2dO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFEWPyk2dO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFEWPyk2dO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFEWPyk2dO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFEWPyk2dO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFEWPyk2dO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFEWPyk2dO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFEWPyk2dO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFEWPyk2dO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFEWPyk2dO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFEWPyk2dO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tFEWPyk2dO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tFEWPyk2dO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFEWPyk2dO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFEWPyk2dO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFEWPyk2dO .navbar-logo {
  margin: 0;
}
.cid-tFEWPyk2dO .container,
.cid-tFEWPyk2dO .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-tFEWPyk2dO .container,
  .cid-tFEWPyk2dO .container-fluid {
    justify-content: space-between;
  }
}
.cid-tFEWPyk2dO .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFEWPyk2dO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFEWPyk2dO .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tFEWPyk2dO .navbar-brand {
    display: none;
  }
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFEWPyk2dO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFEWPyk2dO .dropdown-item:hover,
.cid-tFEWPyk2dO .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tFEWPyk2dO .dropdown-item:hover span {
  color: white;
}
.cid-tFEWPyk2dO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFEWPyk2dO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFEWPyk2dO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFEWPyk2dO .nav-link {
  position: relative;
}
.cid-tFEWPyk2dO .container {
  display: flex;
  margin: auto;
}
.cid-tFEWPyk2dO .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFEWPyk2dO .dropdown-menu,
.cid-tFEWPyk2dO .navbar.opened {
  background: #cf5a20 !important;
}
.cid-tFEWPyk2dO .nav-item:focus,
.cid-tFEWPyk2dO .nav-link:focus {
  outline: none;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFEWPyk2dO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFEWPyk2dO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFEWPyk2dO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFEWPyk2dO .dropdown-item.active,
.cid-tFEWPyk2dO .dropdown-item:active {
  background-color: transparent;
}
.cid-tFEWPyk2dO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFEWPyk2dO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFEWPyk2dO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cf5a20;
}
.cid-tFEWPyk2dO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFEWPyk2dO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFEWPyk2dO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFEWPyk2dO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFEWPyk2dO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFEWPyk2dO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFEWPyk2dO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFEWPyk2dO .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tFEWPyk2dO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFEWPyk2dO .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-tFEWPyk2dO .navbar {
    height: 70px;
  }
  .cid-tFEWPyk2dO .navbar.opened {
    height: auto;
  }
  .cid-tFEWPyk2dO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGBOIwVfQl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/expobg-1-2000x1236.jpg");
}
.cid-tGBOIwVfQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBOIwVfQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBOIwVfQl .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tGBOIwVfQl .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tGBOIwVfQl .text-box {
  text-align: center;
}
.cid-tGBOIwVfQl span {
  font-size: 3rem;
  color: #ffb18a;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tGBOIwVfQl .card {
    margin-bottom: 2rem;
  }
  .cid-tGBOIwVfQl .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGBOIwVfQl span {
    font-size: 21vw;
  }
}
.cid-tGYljKw5J6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fcfbf5;
}
.cid-tGYljKw5J6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGYljKw5J6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGYljKw5J6 .container-fluid {
  padding: 0 16px;
}
@media (max-width: 992px) {
  .cid-tGYljKw5J6 .container-fluid {
    padding: 0 12px;
  }
}
.cid-tGYljKw5J6 .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGYljKw5J6 .container {
    padding: 0 20px;
  }
}
.cid-tGYljKw5J6 .card {
  padding: 0;
}
.cid-tGYljKw5J6 .title-wrapper {
  padding-left: 64px;
}
@media (max-width: 992px) {
  .cid-tGYljKw5J6 .title-wrapper {
    padding-left: 20px;
  }
}
.cid-tGYljKw5J6 .title-wrapper .mbr-section-title {
  padding-right: 64px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-tGYljKw5J6 .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
    padding-right: 20px;
  }
}
.cid-tGYljKw5J6 .title-wrapper .mbr-section-subtitle {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  white-space: nowrap;
}
.cid-tGYljKw5J6 .title-wrapper .mbr-section-subtitle::after {
  content: '';
  margin-left: 8px;
  width: 100%;
  height: 2px;
  background-color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-tGYljKw5J6 .title-wrapper .mbr-section-subtitle {
    margin-bottom: 50px;
  }
}
.cid-tGYljKw5J6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
  margin: 0 10px;
  height: 200px;
  border-radius: 100%;
  border: 2px solid #d7d7d7;
}
@media (max-width: 768px) {
  .cid-tGYljKw5J6 .embla__slide {
    min-width: 200px;
    max-width: 200px;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGYljKw5J6 .embla__slide .card-wrap .content-wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}
.cid-tGYljKw5J6 .embla__slide .card-wrap .content-wrap .mbr-text {
  margin: 0;
}
.cid-tGYljKw5J6 .embla__button--next,
.cid-tGYljKw5J6 .embla__button--prev {
  display: flex;
}
.cid-tGYljKw5J6 .embla__button {
  top: -2rem;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #6592e6;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGYljKw5J6 .embla__button {
    display: none;
  }
}
.cid-tGYljKw5J6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGYljKw5J6 .embla__button:hover {
  background: transparent;
  color: #6592e6;
  opacity: .7;
}
.cid-tGYljKw5J6 .embla__button.embla__button--prev {
  left: auto;
  right: 2rem;
  margin-left: 0;
}
.cid-tGYljKw5J6 .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-tGYljKw5J6 .embla__button {
    top: -1.5rem;
  }
}
.cid-tGYljKw5J6 .embla {
  position: relative;
  width: 100%;
}
.cid-tGYljKw5J6 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGYljKw5J6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGYljKw5J6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGYljKw5J6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGYljKw5J6 .mbr-section-title {
  color: #1d1d1d;
  text-align: center;
}
.cid-tGYljKw5J6 .mbr-text {
  color: #1d1d1d;
  text-align: center;
}
.cid-tGYlifF6rm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fcfbf5;
}
.cid-tGYlifF6rm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGYlifF6rm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGYlifF6rm .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-tGYlifF6rm .container-fluid {
    padding: 0 20px;
  }
}
.cid-tGYlifF6rm .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGYlifF6rm .container {
    padding: 0 20px;
  }
}
.cid-tGYlifF6rm .mbr-section-title {
  margin-bottom: 64px;
  color: #1d1d1d;
}
@media (max-width: 992px) {
  .cid-tGYlifF6rm .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-tGYlifF6rm .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 134px;
  max-width: 134px;
}
@media (max-width: 768px) {
  .cid-tGYlifF6rm .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGYlifF6rm .embla__slide .card-wrap .item-wrapper .image-wrap {
  display: flex;
  justify-content: center;
}
.cid-tGYlifF6rm .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 70px;
  width: 120px;
  object-fit: contain;
}
.cid-tGYlifF6rm .embla__button--next,
.cid-tGYlifF6rm .embla__button--prev {
  display: flex;
}
.cid-tGYlifF6rm .embla__button {
  top: 7rem;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #6592e6;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tGYlifF6rm .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGYlifF6rm .embla__button:hover {
  background: transparent;
  color: #6592e6;
  opacity: .7;
}
.cid-tGYlifF6rm .embla__button.embla__button--prev {
  left: auto;
  right: 2rem;
  margin-left: 0;
}
.cid-tGYlifF6rm .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
@media (max-width: 767px) {
  .cid-tGYlifF6rm .embla__button {
    top: 7rem;
  }
}
.cid-tGYlifF6rm .embla {
  position: relative;
  width: 100%;
}
.cid-tGYlifF6rm .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGYlifF6rm .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGYlifF6rm .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGYlifF6rm .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGYlo0IOh1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #ffffff;
}
.cid-tGYlo0IOh1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGYlo0IOh1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGYlo0IOh1 .container-fluid {
  padding: 0;
}
.cid-tGYlo0IOh1 .row {
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tGYlo0IOh1 .row {
    padding: 0 12px;
  }
}
.cid-tGYlo0IOh1 .title-wrapper {
  padding: 0 30%;
}
.cid-tGYlo0IOh1 .title-wrapper .mbr-section-title {
  margin: 0;
  letter-spacing: -0.04ch;
}
.cid-tGYlo0IOh1 .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-tGYlo0IOh1 .team-card:hover {
  transform: translateY(-10px);
}
.cid-tGYlo0IOh1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 340px;
  max-width: 340px;
  max-height: 340px;
  height: 340px;
  border: 2px solid #d8dadb;
  border-radius: 100%;
  transition: transform .3s ease;
}
.cid-tGYlo0IOh1 .embla__slide:hover {
  transform: scale(1.05, 1.05);
}
@media (max-width: 768px) {
  .cid-tGYlo0IOh1 .embla__slide {
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    min-width: 250px;
    height: 250px;
  }
}
.cid-tGYlo0IOh1 .embla__slide .card-wrap {
  display: flex;
  align-items: center;
}
.cid-tGYlo0IOh1 .embla__slide .card-wrap .item-wrapper .image-wrap img {
  width: 140px;
}
.cid-tGYlo0IOh1 .embla__button--next,
.cid-tGYlo0IOh1 .embla__button--prev {
  display: flex;
}
.cid-tGYlo0IOh1 .embla__button {
  top: -2rem;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #6592e6;
  border: 2px solid #6592e6;
  opacity: .5;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGYlo0IOh1 .embla__button {
    display: none;
  }
}
.cid-tGYlo0IOh1 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGYlo0IOh1 .embla__button:hover {
  background: transparent;
  color: #6592e6;
  opacity: 1;
}
.cid-tGYlo0IOh1 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2rem;
}
.cid-tGYlo0IOh1 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2rem;
}
.cid-tGYlo0IOh1 .embla {
  position: relative;
  width: 100%;
}
.cid-tGYlo0IOh1 .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding: 72px 0 1rem;
}
@media (max-width: 992px) {
  .cid-tGYlo0IOh1 .embla__viewport {
    padding: 45px 0 1rem;
  }
}
.cid-tGYlo0IOh1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGYlo0IOh1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGYlo0IOh1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGYlo0IOh1 .item-menu-overlay {
  background: transparent;
}
.cid-tGYlo0IOh1 .mbr-section-title {
  color: #1c314e;
}
.cid-tGYlpLeyGh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ede7e2;
  position: relative;
}
.cid-tGYlpLeyGh .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f5ff7d;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tGYlpLeyGh .mbr-section-head {
  width: 100%;
  margin-bottom: 3.4vw;
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .mbr-section-head {
    margin-bottom: 6.93vw;
  }
}
.cid-tGYlpLeyGh .label-text {
  color: #000000;
  margin-bottom: 1.39vw;
}
.cid-tGYlpLeyGh .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .mbr-section-title {
    text-align: left;
  }
}
.cid-tGYlpLeyGh .mbr-section-title-2 {
  margin-right: 20px;
}
.cid-tGYlpLeyGh .section-head-container {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .section-head-container {
    flex-wrap: wrap;
  }
}
.cid-tGYlpLeyGh .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e2d7ff;
  padding: 36px;
  border-radius: 50%;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  border: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .iconfont-wrapper {
    border-radius: 100%;
    padding: 0;
    width: 10.67vw;
    height: 10.67vw;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .iconfont-wrapper {
    width: 15.67vw;
    height: 15.67vw;
    margin-right: 12px;
    margin-top: 12px;
  }
}
.cid-tGYlpLeyGh .iconfont-wrapper .mbr-iconfont {
  color: #000000;
  font-size: 54px;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .iconfont-wrapper .mbr-iconfont {
    font-size: 5.6vw !important;
  }
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .iconfont-wrapper .mbr-iconfont {
    font-size: 8vw !important;
  }
}
.cid-tGYlpLeyGh .mbr-section-subtitle {
  width: 35%;
  margin-bottom: 0;
  margin-top: 20px;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .mbr-section-subtitle {
    width: 100%;
    margin-bottom: 0;
    margin-top: 1rem;
  }
}
.cid-tGYlpLeyGh .item {
  display: flex;
  align-items: stretch;
  margin-bottom: 1.4vw;
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .item {
    margin-bottom: 0.75rem;
  }
}
.cid-tGYlpLeyGh .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 32vw;
  padding: 32px;
  border-radius: 1.7vw;
  opacity: 0.75;
  transition: border-radius 0.8s, opacity 0.6s, box-shadow 0.4s;
  background-color: #ffffff;
  border: 1px solid #000000;
}
@media (max-width: 1199px) and (min-width: 767px) {
  .cid-tGYlpLeyGh .item-wrapper {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .item-wrapper {
    padding: 6.4vw;
    min-height: 96vw;
    border-radius: 6.4vw;
    opacity: 1;
  }
}
.cid-tGYlpLeyGh .item-wrapper:hover {
  opacity: 1;
  border-radius: 2.8vw;
  box-shadow: inset 0 0 0 1px #000000;
}
.cid-tGYlpLeyGh .item-head {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-bottom: auto;
}
.cid-tGYlpLeyGh .item-title {
  color: #000000;
  margin-right: auto;
  width: 55%;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .item-title {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .item-title {
    width: 35%;
  }
}
.cid-tGYlpLeyGh .item-img {
  border-radius: 8px;
  width: 40%;
  aspect-ratio: 1;
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tGYlpLeyGh .item-img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tGYlpLeyGh .item-img {
    width: 60%;
  }
}
.cid-tGYlpLeyGh .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGYlpLeyGh .item-content {
  width: 100%;
  margin-top: 1.5rem;
}
.cid-tGYlpLeyGh .mbr-text {
  color: #000000;
}
.cid-tGYlpLeyGh .mbr-section-btn {
  margin-top: 1rem;
}
.cid-tGYltu1o7g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f1f2;
}
.cid-tGYltu1o7g .item:focus,
.cid-tGYltu1o7g span:focus {
  outline: none;
}
.cid-tGYltu1o7g .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 143px;
  max-width: 143px;
  padding: 0 9px;
}
@media (max-width: 768px) {
  .cid-tGYltu1o7g .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGYltu1o7g .embla__slide .slide-content .image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-tGYltu1o7g .embla__slide .slide-content .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGYltu1o7g .embla__slide .slide-content .image-wrapper img:first-child {
  margin-bottom: 40px;
}
.cid-tGYltu1o7g .embla__button--next,
.cid-tGYltu1o7g .embla__button--prev {
  display: flex;
}
.cid-tGYltu1o7g .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #ff6666;
  border: 2px solid #6592e6;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGYltu1o7g .embla__button {
    display: none;
  }
}
.cid-tGYltu1o7g .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGYltu1o7g .embla__button:hover {
  background: transparent;
  color: #ff6666;
  opacity: .7;
}
.cid-tGYltu1o7g .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tGYltu1o7g .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tGYltu1o7g .embla__button {
    top: auto;
  }
}
.cid-tGYltu1o7g .embla {
  position: relative;
  width: 100%;
}
.cid-tGYltu1o7g .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGYltu1o7g .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGYltu1o7g .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGYltu1o7g .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGYls1RqDF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGYls1RqDF .mbr-section-head {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  justify-content: space-evenly;
}
@media (max-width: 992px) {
  .cid-tGYls1RqDF .mbr-section-head {
    display: none;
  }
}
.cid-tGYls1RqDF .mbr-section-head .mbr-section-title {
  margin: 0;
}
.cid-tGYls1RqDF .mbr-section-head .mbr-title {
  margin: 0;
}
.cid-tGYls1RqDF .item:focus,
.cid-tGYls1RqDF span:focus {
  outline: none;
}
.cid-tGYls1RqDF .item-wrapper {
  position: relative;
}
.cid-tGYls1RqDF .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 600px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .cid-tGYls1RqDF .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGYls1RqDF .embla__button--next,
.cid-tGYls1RqDF .embla__button--prev {
  display: flex;
}
.cid-tGYls1RqDF .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 30px;
  background: transparent;
  color: #6592e6;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tGYls1RqDF .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGYls1RqDF .embla__button:hover {
  background: transparent;
  color: #6592e6;
}
.cid-tGYls1RqDF .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tGYls1RqDF .embla__button.embla__button--prev {
    margin-left: 0;
  }
}
.cid-tGYls1RqDF .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 425px) {
  .cid-tGYls1RqDF .embla__button.embla__button--next {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-tGYls1RqDF .embla__button {
    top: auto;
  }
}
.cid-tGYls1RqDF .embla {
  position: relative;
  width: 100%;
}
.cid-tGYls1RqDF .embla__viewport {
  overflow: hidden;
  width: 80%;
}
@media (max-width: 768px) {
  .cid-tGYls1RqDF .embla__viewport {
    width: 100%;
  }
}
.cid-tGYls1RqDF .embla__viewport::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 10%;
  height: 100%;
  background: #47b5ed;
  opacity: .5;
  z-index: 1;
}
@media (max-width: 1100px) {
  .cid-tGYls1RqDF .embla__viewport::before {
    display: none;
  }
}
.cid-tGYls1RqDF .embla__viewport::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 10%;
  height: 100%;
  background: #47b5ed;
  opacity: .5;
  z-index: 1;
}
@media (max-width: 1100px) {
  .cid-tGYls1RqDF .embla__viewport::after {
    display: none;
  }
}
.cid-tGYls1RqDF .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGYls1RqDF .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGYls1RqDF .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGYls1RqDF .slide-content {
  display: flex;
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-tGYls1RqDF .slide-content {
    flex-direction: column;
    align-items: center;
  }
}
.cid-tGYls1RqDF .slide-content .item-date {
  width: 30%;
  padding-left: 15px;
  position: relative;
  display: flex;
}
@media (max-width: 992px) {
  .cid-tGYls1RqDF .slide-content .item-date {
    width: 19%;
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .cid-tGYls1RqDF .slide-content .item-date {
    width: 25%;
    padding: 0;
  }
}
.cid-tGYls1RqDF .slide-content .item-date .mbr-date:first-child {
  position: absolute;
  transform: rotate(-90deg);
  top: 25%;
  left: -60px;
  width: fit-content;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tGYls1RqDF .slide-content .item-date .mbr-date:first-child {
    left: -5rem;
  }
}
@media (max-width: 425px) {
  .cid-tGYls1RqDF .slide-content .item-date .mbr-date:first-child {
    left: -4rem;
  }
}
.cid-tGYls1RqDF .slide-content .item-date .mbr-date {
  width: 100%;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .cid-tGYls1RqDF .slide-content .item-date .mbr-date {
    display: inline;
  }
}
.cid-tGYls1RqDF .slide-content .item-text .mbr-card-title {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tGYls1RqDF .slide-content .item-text .mbr-card-title {
    text-align: center;
  }
}
.cid-tGYls1RqDF .slide-content .item-text .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tGYls1RqDF .slide-content .item-text .mbr-desc {
    text-align: center;
  }
}
.cid-tGYls1RqDF .mbr-section-title {
  color: #162148;
}
.cid-tGYls1RqDF .mbr-title {
  color: #162148;
}
.cid-tGYls1RqDF .mbr-date {
  color: #ee2947;
}
.cid-tGYls1RqDF .mbr-card-title {
  color: #ee2947;
}
.cid-tGYls1RqDF .mbr-desc {
  color: #162148;
}
.cid-tGBUxkAxAf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/expobg-1-2000x1236.jpg");
}
.cid-tGBUxkAxAf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBUxkAxAf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBUxkAxAf .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGBUxkAxAf .container-fluid {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tGBUxkAxAf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .container {
    padding: 0 12px;
  }
}
.cid-tGBUxkAxAf .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 800px;
  max-width: 800px;
}
@media (max-width: 992px) {
  .cid-tGBUxkAxAf .embla__slide {
    min-width: 700px;
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap {
  width: 100%;
  display: flex;
  padding: 40px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  border-radius: 50px;
  background-color: #cf5a20;
}
@media (max-width: 992px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap {
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap {
    display: block;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .item-wrapper {
  min-width: 64px;
  margin-right: 12px;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .item-wrapper {
    margin: 0 0 16px;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .item-wrapper .image-wrap img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .item-wrapper .image-wrap img {
    margin: 0 auto;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap {
  width: 100%;
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper {
    display: block;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .name-wrap {
  margin-bottom: 16px;
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .name-wrap .mbr-name {
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .name-wrap .mbr-name {
    text-align: center;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .name-wrap .mbr-role {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .name-wrap .mbr-role {
    text-align: center;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .link-wrap {
  display: block;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .link-wrap {
    margin-bottom: 16px;
    text-align: center;
  }
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .link-wrap:hover .mbr-link,
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .link-wrap:focus .mbr-link {
  color: #ff6928;
  text-decoration: underline;
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .name-wrapper .link-wrap .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tGBUxkAxAf .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tGBUxkAxAf .embla__button--next,
.cid-tGBUxkAxAf .embla__button--prev {
  display: flex;
}
.cid-tGBUxkAxAf .embla__button {
  bottom: -5%;
  width: 48px;
  height: 48px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: #cf5a20;
  color: #6592e6;
  border: 3px solid #ff6666;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tGBUxkAxAf .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGBUxkAxAf .embla__button:hover {
  background: #ff6666;
  color: #cf5a20;
}
.cid-tGBUxkAxAf .embla__button.embla__button--prev {
  left: 12rem;
  margin-left: 0;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__button.embla__button--prev {
    left: 2rem;
  }
}
.cid-tGBUxkAxAf .embla__button.embla__button--next {
  right: 12rem;
  margin-right: 0;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__button.embla__button--next {
    right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGBUxkAxAf .embla__button {
    top: auto;
  }
}
.cid-tGBUxkAxAf .embla {
  position: relative;
  width: 100%;
}
.cid-tGBUxkAxAf .embla__viewport {
  overflow: hidden;
  width: 100%;
  padding: 5px 0;
}
@media (max-width: 768px) {
  .cid-tGBUxkAxAf .embla__viewport {
    padding: 5px;
  }
}
.cid-tGBUxkAxAf .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGBUxkAxAf .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGBUxkAxAf .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGBUxkAxAf .mbr-name {
  color: #222222;
}
.cid-tGBUxkAxAf .mbr-role {
  color: #222222;
}
.cid-tGBUxkAxAf .mbr-link {
  color: #222222;
}
.cid-tGBUxkAxAf .mbr-text {
  color: #222222;
}
.cid-tGBVZZFQFQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
}
.cid-tGBVZZFQFQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBVZZFQFQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBVZZFQFQ .container-fluid {
  padding: 0 50px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tGBVZZFQFQ .container-fluid {
    padding: 0 20px;
  }
}
.cid-tGBVZZFQFQ .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGBVZZFQFQ .container {
    padding: 0 20px;
  }
}
.cid-tGBVZZFQFQ .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-tGBVZZFQFQ .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 2px solid #000000;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-tGBVZZFQFQ .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-tGBVZZFQFQ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 600px;
  max-width: 600px;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap {
  display: flex;
  width: 100%;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap:hover .item-wrapper .image-wrap img {
  transform: scale(1.05);
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .item-wrapper .image-wrap {
  width: 100%;
  overflow: hidden;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .item-wrapper .image-wrap img {
  width: 300px;
  height: 190px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .embla__slide .card-wrap .item-wrapper .image-wrap img {
    width: 140px;
    height: 105px;
  }
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap {
  padding-left: 30px;
  width: 70%;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap .desc-wrapper {
  margin-bottom: 16px;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap .desc-wrapper .desc-wrap .mbr-desc {
  margin-right: 10px;
  margin-bottom: 0;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap .desc-wrapper .desc-wrap .mbr-date {
  margin-bottom: 0;
}
.cid-tGBVZZFQFQ .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tGBVZZFQFQ .embla__button--next,
.cid-tGBVZZFQFQ .embla__button--prev {
  display: flex;
}
.cid-tGBVZZFQFQ .embla__button {
  top: -1rem;
  width: 22px;
  height: 22px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent;
  color: #ff6666;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGBVZZFQFQ .embla__button {
    display: none;
  }
}
.cid-tGBVZZFQFQ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGBVZZFQFQ .embla__button:hover {
  background: transparent;
  color: #ff6666;
  opacity: .7;
}
.cid-tGBVZZFQFQ .embla__button.embla__button--prev {
  left: 3rem;
}
.cid-tGBVZZFQFQ .embla__button.embla__button--next {
  right: 3rem;
}
@media (max-width: 767px) {
  .cid-tGBVZZFQFQ .embla__button {
    top: 0;
  }
}
.cid-tGBVZZFQFQ .embla {
  position: relative;
  width: 100%;
}
.cid-tGBVZZFQFQ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tGBVZZFQFQ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGBVZZFQFQ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGBVZZFQFQ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGBVZZFQFQ .mbr-section-subtitle {
  color: #000000;
}
.cid-tGBVZZFQFQ .mbr-section-title {
  color: #000000;
}
.cid-tGBVZZFQFQ .mbr-desc {
  color: #000000;
}
.cid-tGBVZZFQFQ .mbr-date {
  color: #6a6e71;
}
.cid-tGBVZZFQFQ .mbr-text {
  color: #000000;
}
.cid-tGBW4XUHZ3 {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tGBW4XUHZ3 {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tGBW4XUHZ3 .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tGBW4XUHZ3 .mbr-overlay {
  border-radius: 1.2rem;
}
.cid-tGBW4XUHZ3 .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #111111;
}
.cid-tGBW4XUHZ3 .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBW4XUHZ3 .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tGBW4XUHZ3 .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tGBW4XUHZ3 .image-wrapper img {
  height: 450px;
  object-fit: cover;
  border-radius: 1.2em;
}
@media (max-width: 992px) {
  .cid-tGBW4XUHZ3 .image-wrapper img {
    height: 300px;
    margin-bottom: 24px;
  }
}
.cid-tGBW4XUHZ3 .mbr-section-title {
  color: #ffffff;
}
.cid-tGBW6yjmAU {
  background-color: #cf5a20 !important;
  border: 18px solid #cf5a20;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tGBW6yjmAU {
    border: 8px solid #cf5a20;
    margin-top: -8px;
  }
}
.cid-tGBW6yjmAU .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tGBW6yjmAU .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-image: url("../../../assets/images/expobg-1-2000x1236.jpg");
}
.cid-tGBW6yjmAU .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBW6yjmAU .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tGBW6yjmAU .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tGBW6yjmAU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-tGBW6yjmAU .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tGBW6yjmAU .embla__slide .card-wrap {
  width: 100%;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 1.2em;
}
@media (max-width: 768px) {
  .cid-tGBW6yjmAU .embla__slide .card-wrap {
    padding: 16px;
  }
}
.cid-tGBW6yjmAU .embla__slide .card-wrap .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tGBW6yjmAU .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 32px;
}
.cid-tGBW6yjmAU .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-tGBW6yjmAU .embla__button--next,
.cid-tGBW6yjmAU .embla__button--prev {
  display: flex;
}
.cid-tGBW6yjmAU .embla__button {
  top: 50%;
  width: 30px;
  height: 30px;
  margin-top: -1.5rem;
  font-size: 18px;
  background-color: transparent;
  color: #47b5ed;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-tGBW6yjmAU .embla__button {
    display: none;
  }
}
.cid-tGBW6yjmAU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tGBW6yjmAU .embla__button:hover {
  background: transparent;
  color: #47b5ed;
}
.cid-tGBW6yjmAU .embla__button.embla__button--prev {
  left: -2rem;
  margin-left: 0;
}
@media (max-width: 992px) {
  .cid-tGBW6yjmAU .embla__button.embla__button--prev {
    left: 1rem;
  }
}
.cid-tGBW6yjmAU .embla__button.embla__button--next {
  right: -2rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .cid-tGBW6yjmAU .embla__button.embla__button--next {
    right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tGBW6yjmAU .embla__button {
    top: auto;
    bottom: -1.8rem;
  }
}
.cid-tGBW6yjmAU .embla {
  position: relative;
  width: 100%;
}
.cid-tGBW6yjmAU .embla__viewport {
  overflow: hidden;
  width: 100%;
  border: none;
}
.cid-tGBW6yjmAU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tGBW6yjmAU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tGBW6yjmAU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tGBW6yjmAU .mbr-section-title {
  color: #ed2c03;
  text-align: center;
}
.cid-tGBW6yjmAU .mbr-role {
  color: #000000;
  text-align: center;
}
.cid-tGBW6yjmAU .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-tGISiOfceB {
  padding-top: 9rem;
  padding-bottom: 1rem;
}
.cid-tGISiOfceB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGISiOfceB .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/background13.jpeg");
}
.cid-tGISiOfceB .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tGISiOfceB .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tGISiOfceB .text-box {
  text-align: center;
}
.cid-tGISiOfceB span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tGISiOfceB .card {
    margin-bottom: 2rem;
  }
  .cid-tGISiOfceB .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGISiOfceB span {
    font-size: 21vw;
  }
}
.cid-tGISiOfceB .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tGISiOfceB .icon-title,
.cid-tGISiOfceB .mbr-section-btn,
.cid-tGISiOfceB .item .icon-box .step-number {
  color: #ffb5b5;
}
.cid-tGISiPaUF7 .navbar-dropdown {
  position: relative !important;
}
@media (min-width: 992px) {
  .cid-tGISiPaUF7 .nav-dropdown {
    margin-top: 2rem;
    padding-bottom: 1rem;
  }
}
.cid-tGISiPaUF7 .navbar {
  min-height: 140px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #cf5a20;
}
.cid-tGISiPaUF7 .navbar.opened {
  transition: all 0.3s;
}
.cid-tGISiPaUF7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGISiPaUF7 .navbar .navbar-logo img {
  width: auto;
}
.cid-tGISiPaUF7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGISiPaUF7 .navbar.collapsed {
  justify-content: center;
}
.cid-tGISiPaUF7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGISiPaUF7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGISiPaUF7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.5rem);
  }
}
.cid-tGISiPaUF7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGISiPaUF7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGISiPaUF7 .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-tGISiPaUF7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGISiPaUF7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGISiPaUF7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGISiPaUF7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGISiPaUF7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGISiPaUF7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGISiPaUF7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGISiPaUF7 .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-tGISiPaUF7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGISiPaUF7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGISiPaUF7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGISiPaUF7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGISiPaUF7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGISiPaUF7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tGISiPaUF7 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tGISiPaUF7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGISiPaUF7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGISiPaUF7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGISiPaUF7 .navbar-logo {
  margin: 0;
}
.cid-tGISiPaUF7 .container,
.cid-tGISiPaUF7 .container-fluid {
  justify-content: flex-end;
  min-height: 100px;
}
@media (max-width: 767px) {
  .cid-tGISiPaUF7 .container,
  .cid-tGISiPaUF7 .container-fluid {
    justify-content: space-between;
  }
}
.cid-tGISiPaUF7 .navbar-brand {
  margin: auto !important;
  position: absolute;
  width: 200px;
  flex-direction: column;
  top: -5px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGISiPaUF7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGISiPaUF7 .navbar-brand .navbar-logo a {
  outline: none;
  margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tGISiPaUF7 .navbar-brand {
    display: none;
  }
}
.cid-tGISiPaUF7 .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-tGISiPaUF7 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGISiPaUF7 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGISiPaUF7 .dropdown-item:hover,
.cid-tGISiPaUF7 .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tGISiPaUF7 .dropdown-item:hover span {
  color: white;
}
.cid-tGISiPaUF7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGISiPaUF7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGISiPaUF7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.2em 1em !important;
}
.cid-tGISiPaUF7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGISiPaUF7 .nav-link {
  position: relative;
}
.cid-tGISiPaUF7 .container {
  display: flex;
  margin: auto;
}
.cid-tGISiPaUF7 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGISiPaUF7 .dropdown-menu,
.cid-tGISiPaUF7 .navbar.opened {
  background: #cf5a20 !important;
}
.cid-tGISiPaUF7 .nav-item:focus,
.cid-tGISiPaUF7 .nav-link:focus {
  outline: none;
}
.cid-tGISiPaUF7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGISiPaUF7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGISiPaUF7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGISiPaUF7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGISiPaUF7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGISiPaUF7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGISiPaUF7 .dropdown-item.active,
.cid-tGISiPaUF7 .dropdown-item:active {
  background-color: transparent;
}
.cid-tGISiPaUF7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGISiPaUF7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGISiPaUF7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGISiPaUF7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #cf5a20;
}
.cid-tGISiPaUF7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGISiPaUF7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGISiPaUF7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGISiPaUF7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGISiPaUF7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tGISiPaUF7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGISiPaUF7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGISiPaUF7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGISiPaUF7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGISiPaUF7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGISiPaUF7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGISiPaUF7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGISiPaUF7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGISiPaUF7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGISiPaUF7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tGISiPaUF7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGISiPaUF7 .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-tGISiPaUF7 .navbar {
    height: 70px;
  }
  .cid-tGISiPaUF7 .navbar.opened {
    height: auto;
  }
  .cid-tGISiPaUF7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGITKg0I0Q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/expobg-2000x1236.jpg");
}
.cid-tGITKg0I0Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGITKg0I0Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGITKg0I0Q .mbr-section-title {
  color: #ffb18a;
}
.cid-tGISiRqyMr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #cf5a20;
}
.cid-tGISiRqyMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGISiRqyMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGISiRqyMr .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-tGISiRqyMr .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-tGISiRqyMr .text-box {
  text-align: center;
}
.cid-tGISiRqyMr span {
  font-size: 10rem;
  color: #ff9966;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-tGISiRqyMr .card {
    margin-bottom: 2rem;
  }
  .cid-tGISiRqyMr .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGISiRqyMr span {
    font-size: 21vw;
  }
}
.cid-tGISiRqyMr .item .icon-box .step-number {
  color: #ff6666;
}
.cid-tGISiRqyMr .icon-title,
.cid-tGISiRqyMr .mbr-section-btn,
.cid-tGISiRqyMr .item .icon-box .step-number {
  color: #ffb5b5;
}
#custom-html-1s {
  /* Type valid CSS here */
}
#custom-html-1s .slider {
  width: 400px;
  margin: auto;
  overflow: visible;
}
#custom-html-1s .slider ul {
  display: flex;
  padding: 0;
  animation: cambio 80s infinite linear;
}
#custom-html-1s .slider li {
  padding: 0 10px;
  list-style: none;
}
#custom-html-1s .slider img {
  max-width: fit-content !important;
  height: auto !important;
}
@keyframes cambio {
  from {
    margin-left: 0%;
  }
  to {
    margin-left: -100%;
  }
}
