.btn {
  border-width: 2px;
}
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.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.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.1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.375rem;
}
/* ---- 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.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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.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))));
  }
}
/* 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: #2299aa !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: #2299aa !important;
  border-color: #2299aa !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: #145862 !important;
  border-color: #145862 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #145862 !important;
  border-color: #145862 !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: #2299aa;
  color: #2299aa;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #145862 !important;
  background-color: transparent!important;
  border-color: #145862 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2299aa !important;
  border-color: #2299aa !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  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: #148cca !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: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  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: #ff5f0f !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: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #2299aa !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: #114c55 !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: #2299aa;
}
.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: #2299aa;
  border-color: #2299aa;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #2299aa;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6ad2e1;
}
.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*/
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #2299aa !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #2299aa;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2299aa;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #2299aa;
}
.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: #2299aa;
  border-bottom-color: #2299aa;
}
.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: #2299aa !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='%232299aa' %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-uSuyjnZyVp {
  z-index: 1000;
  width: 100%;
}
.cid-uSuyjnZyVp nav.navbar {
  position: fixed;
}
.cid-uSuyjnZyVp .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-uSuyjnZyVp .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSuyjnZyVp .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-uSuyjnZyVp .dropdown-item:after {
  right: 1rem !important;
}
.cid-uSuyjnZyVp .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-uSuyjnZyVp .dropdown-item:hover:before,
.cid-uSuyjnZyVp .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-uSuyjnZyVp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSuyjnZyVp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSuyjnZyVp .nav-link {
  position: relative;
}
.cid-uSuyjnZyVp .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSuyjnZyVp .container {
    flex-wrap: nowrap;
  }
}
.cid-uSuyjnZyVp .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  min-height: 98px;
}
.cid-uSuyjnZyVp .navbar-nav .nav-item {
  margin: 0;
}
.cid-uSuyjnZyVp .navbar-nav .nav-link {
  position: relative;
  padding: 8px !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-uSuyjnZyVp .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-uSuyjnZyVp .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-uSuyjnZyVp .dropdown-menu,
.cid-uSuyjnZyVp .navbar.opened {
  background: rgba(0, 0, 0, 0.8) !important;
}
.cid-uSuyjnZyVp .nav-item:focus,
.cid-uSuyjnZyVp .nav-link:focus {
  outline: none;
}
.cid-uSuyjnZyVp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSuyjnZyVp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSuyjnZyVp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSuyjnZyVp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSuyjnZyVp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSuyjnZyVp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSuyjnZyVp .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
  box-shadow: none !important;
  padding: 0 !important;
}
@media (max-width: 991px) {
  .cid-uSuyjnZyVp .navbar {
    background: rgba(0, 0, 0, 0.9);
  }
  .cid-uSuyjnZyVp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSuyjnZyVp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSuyjnZyVp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSuyjnZyVp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSuyjnZyVp .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-uSuyjnZyVp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSuyjnZyVp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSuyjnZyVp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSuyjnZyVp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSuyjnZyVp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSuyjnZyVp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSuyjnZyVp .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSuyjnZyVp .navbar.opened {
  transition: all 0.3s;
}
.cid-uSuyjnZyVp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSuyjnZyVp .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-uSuyjnZyVp .navbar .navbar-logo img {
  width: 2.5rem;
}
.cid-uSuyjnZyVp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSuyjnZyVp .navbar.collapsed {
  justify-content: center;
}
.cid-uSuyjnZyVp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSuyjnZyVp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSuyjnZyVp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uSuyjnZyVp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSuyjnZyVp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSuyjnZyVp .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-uSuyjnZyVp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSuyjnZyVp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSuyjnZyVp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.cid-uSuyjnZyVp .navbar.navbar-short {
  min-height: 100px;
}
.cid-uSuyjnZyVp .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-uSuyjnZyVp .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  padding-right: 50px !important;
}
.cid-uSuyjnZyVp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSuyjnZyVp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSuyjnZyVp .dropdown-item.active,
.cid-uSuyjnZyVp .dropdown-item:active {
  background-color: transparent;
}
.cid-uSuyjnZyVp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSuyjnZyVp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSuyjnZyVp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSuyjnZyVp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uSuyjnZyVp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSuyjnZyVp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSuyjnZyVp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSuyjnZyVp .navbar-buttons {
  text-align: center;
}
.cid-uSuyjnZyVp button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-uSuyjnZyVp button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #ffdd00;
  border-radius: 50%;
}
.cid-uSuyjnZyVp button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uSuyjnZyVp button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-uSuyjnZyVp button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-uSuyjnZyVp button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uSuyjnZyVp nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-uSuyjnZyVp nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #ffdd00;
}
.cid-uSuyjnZyVp nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #ffdd00;
}
.cid-uSuyjnZyVp nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-uSuyjnZyVp nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-uSuyjnZyVp .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSuyjnZyVp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSuyjnZyVp .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-uSuyjnZyVp .navbar {
    height: 70px;
  }
  .cid-uSuyjnZyVp .navbar.opened {
    height: auto;
  }
  .cid-uSuyjnZyVp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSuyjnZyVp .container,
.cid-uSuyjnZyVp .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uSuyjnZyVp .container,
  .cid-uSuyjnZyVp .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uSuyjnZyVp .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-uSuyjnZyVp .navbar-collapse {
  min-height: 98px;
}
.cid-uSuyjnZyVp .mbr-section-btn {
  max-width: 35%;
}
.cid-uSuyjnZyVp .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uSuyjnZyVp {
    min-height: 70px !important;
  }
  .cid-uSuyjnZyVp .navbar {
    min-height: 70px !important;
  }
  .cid-uSuyjnZyVp .container-fluid {
    padding: 0 7%;
  }
  .cid-uSuyjnZyVp .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
    padding-right: 0 !important;
  }
  .cid-uSuyjnZyVp .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-uSuyjnZyVp .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-uSuyjnZyVp .navbar-nav li {
    margin: 0 !important;
  }
  .cid-uSuyjnZyVp .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-uSuyjnZyVp .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-uSuyjnZyVp .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 5px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-uSuyjnZyVp .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-uSuyjnZyVp .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-uSuyjnZyVp .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
#custom-html-0 {
  /* Type valid CSS here */
}
#custom-html-0 div {
  padding-top: 0px;
  background-color: #061020;
  text-align: center;
}
#custom-html-0 p {
  font-size: 60px;
  color: #777;
}
#custom-html-0 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cid-uQrpNHZFIl {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uQrpNHZFIl .item-wrapper:hover .item-title a {
  color: #ff6666 !important;
}
.cid-uQrpNHZFIl .item-title,
.cid-uQrpNHZFIl .card_topic {
  margin-bottom: 12px;
}
.cid-uQrpNHZFIl .category_content {
  opacity: .8;
}
.cid-uQrpNHZFIl .card_topic .mbr-iconfont {
  font-size: 1rem;
  color: #ff6666;
  margin-left: 10px;
  margin-right: 3px;
}
.cid-uQrpNHZFIl .mbr-text {
  margin: 25px 0;
  padding-left: 25px;
  border-left: 5px solid #d9a23d;
}
.cid-uQrpNHZFIl .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  margin-bottom: 20px;
  border: none !important;
  background-color: transparent !important;
}
.cid-uQrpNHZFIl .mbr-section-btn .btn-secondary-outline:hover,
.cid-uQrpNHZFIl .mbr-section-btn .btn-secondary-outline .active,
.cid-uQrpNHZFIl .mbr-section-btn .btn-secondary-outline:focus {
  color: #2299aa !important;
}
.cid-uQrpNHZFIl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrpNHZFIl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrpNHZFIl H5 {
  color: #fafafa;
}
.cid-uQrpNHZFIl .mbr-text,
.cid-uQrpNHZFIl .mbr-section-btn {
  color: #ffffff;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uQrpNHZFIl {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uQrpNHZFIl {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uQrbgHsCoN {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #212428;
}
.cid-uQrbgHsCoN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrbgHsCoN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrbgHsCoN .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 560px;
  max-width: 560px;
}
@media (max-width: 767px) {
  .cid-uQrbgHsCoN .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQrbgHsCoN .embla__slide .slide-content {
  width: 100%;
}
.cid-uQrbgHsCoN .embla__slide .slide-content:hover .item-wrapper .image-content .item-img:before,
.cid-uQrbgHsCoN .embla__slide .slide-content:focus .item-wrapper .image-content .item-img:before {
  opacity: 0 !important;
}
.cid-uQrbgHsCoN .embla__slide .slide-content:hover .item-wrapper .image-content .item-img .mbr-section-btn,
.cid-uQrbgHsCoN .embla__slide .slide-content:focus .item-wrapper .image-content .item-img .mbr-section-btn {
  opacity: 0 !important;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper {
  padding: 40px;
  height: 100%;
  background-color: #f2f2f2;
}
@media (max-width: 992px) {
  .cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper {
    padding: 20px 20px 40px;
  }
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content {
  margin: 100px 40px;
  box-shadow: 5px 40px 50px 0 #dddddd;
}
@media (max-width: 992px) {
  .cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content {
    box-shadow: none;
  }
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content .item-img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content .item-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #19171c;
  opacity: 0 !important;
  transition: none;
  z-index: 1;
  pointer-events: none;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content .item-img .image-wrap {
  width: 100%;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content .item-img .image-wrap img {
  height: 300px;
  object-fit: cover;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .image-content .item-img .mbr-section-btn {
  position: absolute;
  opacity: 0 !important;
  transition: none;
  z-index: 2;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content {
  position: relative;
  z-index: 1;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content .person-wrapper .person-wrap .image-wrapper img {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 100% !important;
  object-fit: cover;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content .person-wrapper .person-wrap .name-wrapper {
  margin-left: 20px;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content .person-wrapper .person-wrap .name-wrapper .item-name {
  margin-bottom: 0;
}
.cid-uQrbgHsCoN .embla__slide .slide-content .item-wrapper .item-content .person-wrapper .person-wrap .name-wrapper .item-title {
  margin-bottom: 0;
}
.cid-uQrbgHsCoN .embla__button--next,
.cid-uQrbgHsCoN .embla__button--prev {
  display: flex;
}
.cid-uQrbgHsCoN .embla__button {
  bottom: 0;
  width: 52px;
  height: 52px;
  font-size: 16px;
  background-color: #f2f1f3 !important;
  color: #19171c !important;
  border: none !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-uQrbgHsCoN .embla__button:disabled {
  opacity: .5 !important;
}
.cid-uQrbgHsCoN .embla__button:hover {
  transform: scale(1.05);
}
.cid-uQrbgHsCoN .embla__button.embla__button--prev {
  right: 3.5rem;
}
.cid-uQrbgHsCoN .embla__button.embla__button--prev .mbr-iconfont {
  margin-right: 5px;
}
.cid-uQrbgHsCoN .embla__button.embla__button--next {
  right: 0;
}
.cid-uQrbgHsCoN .embla__button.embla__button--next .mbr-iconfont {
  margin-left: 5px;
}
.cid-uQrbgHsCoN .embla {
  position: relative;
  width: 100%;
  padding-bottom: 6rem;
}
.cid-uQrbgHsCoN .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uQrbgHsCoN .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQrbgHsCoN .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQrbgHsCoN .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQrbgHsCoN .mbr-label {
  color: #19171c;
}
.cid-uQrbgHsCoN .mbr-section-title {
  color: #19171c;
}
.cid-uQrbgHsCoN .item-title {
  color: #19171c;
}
.cid-uQrbgHsCoN .item-name {
  color: #6e6e73;
}
.cid-uQrtecxA5p {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f2f2f2;
}
.cid-uQrtecxA5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQrtecxA5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQrtecxA5p .mbr-section-subtitle {
  background: #a66c26;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uQrtecxA5p .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #a66c26;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uQrtecxA5p .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #2299aa;
  font-size: 1.5rem;
}
.cid-uQrtecxA5p .mbr-section-title {
  color: #ffffff;
}
.cid-uQrtecxA5p .mbr-text,
.cid-uQrtecxA5p .mbr-section-btn {
  color: #fafaf9;
}
.cid-uPS4xY5Rb7 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uPS4xY5Rb7 .nav-tabs .nav-item.open .nav-link:focus,
.cid-uPS4xY5Rb7 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uPS4xY5Rb7 .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uPS4xY5Rb7 .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uPS4xY5Rb7 .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uPS4xY5Rb7 .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uPS4xY5Rb7 .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uPS4xY5Rb7 .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uPS4xY5Rb7 .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uPS4xY5Rb7 .nav-link,
.cid-uPS4xY5Rb7 .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uPS4xY5Rb7 .mbr-text,
.cid-uPS4xY5Rb7 .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uPS4xY5Rb7 {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uPS4xY5Rb7 {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uPS4xY5Rb7 .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uPS4xY5Rb7 .buttons-wrap .link {
  display: flex;
}
.cid-uPS4xY5Rb7 .list {
  list-style: none;
}
.cid-uPS4xY5Rb7 .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uPS4xY5Rb7 .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uPS4xY5Rb7 * {
    text-align: left;
  }
  .cid-uPS4xY5Rb7 .buttons-wrap {
    justify-content: center;
  }
  .cid-uPS4xY5Rb7 img {
    margin-bottom: 20px;
  }
}
.cid-uPS4xY5Rb7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPS4xY5Rb7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPS4xY5Rb7 .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uPS4xY5Rb7 .tab-content .tab-pane .mbr-text,
.cid-uPS4xY5Rb7 .tab-content .tab-pane .mbr-section-btn,
.cid-uPS4xY5Rb7 .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uPS4xY5Rb7 .tab-content .tab-pane .list,
.cid-uPS4xY5Rb7 .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uPS4xY5Rb7 .rounded-img {
  border-radius: 15px;
}
.cid-uRc6HBwq1H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uRc6HBwq1H .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRc6HBwq1H .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRc6HBwq1H .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uRc6HBwq1H .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uRc6HBwq1H .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uRc6HBwq1H .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uRc6HBwq1H .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uRc6HBwq1H .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uRc6HBwq1H .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uRc6HBwq1H .nav-link,
.cid-uRc6HBwq1H .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uRc6HBwq1H .mbr-text,
.cid-uRc6HBwq1H .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uRc6HBwq1H {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uRc6HBwq1H {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uRc6HBwq1H .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uRc6HBwq1H .buttons-wrap .link {
  display: flex;
}
.cid-uRc6HBwq1H .list {
  list-style: none;
}
.cid-uRc6HBwq1H .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uRc6HBwq1H .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uRc6HBwq1H * {
    text-align: left;
  }
  .cid-uRc6HBwq1H .buttons-wrap {
    justify-content: center;
  }
  .cid-uRc6HBwq1H img {
    margin-bottom: 20px;
  }
}
.cid-uRc6HBwq1H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRc6HBwq1H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRc6HBwq1H .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uRc6HBwq1H .tab-content .tab-pane .mbr-text,
.cid-uRc6HBwq1H .tab-content .tab-pane .mbr-section-btn,
.cid-uRc6HBwq1H .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uRc6HBwq1H .tab-content .tab-pane .list,
.cid-uRc6HBwq1H .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uRc6HBwq1H .rounded-img {
  border-radius: 15px;
}
.cid-uRxWtFogHE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uRxWtFogHE .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRxWtFogHE .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRxWtFogHE .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uRxWtFogHE .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uRxWtFogHE .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uRxWtFogHE .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uRxWtFogHE .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uRxWtFogHE .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uRxWtFogHE .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uRxWtFogHE .nav-link,
.cid-uRxWtFogHE .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uRxWtFogHE .mbr-text,
.cid-uRxWtFogHE .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uRxWtFogHE {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uRxWtFogHE {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uRxWtFogHE .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uRxWtFogHE .buttons-wrap .link {
  display: flex;
}
.cid-uRxWtFogHE .list {
  list-style: none;
}
.cid-uRxWtFogHE .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uRxWtFogHE .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uRxWtFogHE * {
    text-align: left;
  }
  .cid-uRxWtFogHE .buttons-wrap {
    justify-content: center;
  }
  .cid-uRxWtFogHE img {
    margin-bottom: 20px;
  }
}
.cid-uRxWtFogHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRxWtFogHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRxWtFogHE .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uRxWtFogHE .tab-content .tab-pane .mbr-text,
.cid-uRxWtFogHE .tab-content .tab-pane .mbr-section-btn,
.cid-uRxWtFogHE .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uRxWtFogHE .tab-content .tab-pane .list,
.cid-uRxWtFogHE .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uRxWtFogHE .rounded-img {
  border-radius: 15px;
}
.cid-uRzaA6DZKu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uRzaA6DZKu .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRzaA6DZKu .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRzaA6DZKu .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uRzaA6DZKu .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uRzaA6DZKu .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uRzaA6DZKu .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uRzaA6DZKu .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uRzaA6DZKu .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uRzaA6DZKu .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uRzaA6DZKu .nav-link,
.cid-uRzaA6DZKu .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uRzaA6DZKu .mbr-text,
.cid-uRzaA6DZKu .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uRzaA6DZKu {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uRzaA6DZKu {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uRzaA6DZKu .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uRzaA6DZKu .buttons-wrap .link {
  display: flex;
}
.cid-uRzaA6DZKu .list {
  list-style: none;
}
.cid-uRzaA6DZKu .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uRzaA6DZKu .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uRzaA6DZKu * {
    text-align: left;
  }
  .cid-uRzaA6DZKu .buttons-wrap {
    justify-content: center;
  }
  .cid-uRzaA6DZKu img {
    margin-bottom: 20px;
  }
}
.cid-uRzaA6DZKu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRzaA6DZKu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRzaA6DZKu .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uRzaA6DZKu .tab-content .tab-pane .mbr-text,
.cid-uRzaA6DZKu .tab-content .tab-pane .mbr-section-btn,
.cid-uRzaA6DZKu .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uRzaA6DZKu .tab-content .tab-pane .list,
.cid-uRzaA6DZKu .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uRzaA6DZKu .rounded-img {
  border-radius: 15px;
}
.cid-uRPIM77KRg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uRPIM77KRg .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRPIM77KRg .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRPIM77KRg .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uRPIM77KRg .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uRPIM77KRg .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uRPIM77KRg .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uRPIM77KRg .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uRPIM77KRg .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uRPIM77KRg .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uRPIM77KRg .nav-link,
.cid-uRPIM77KRg .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uRPIM77KRg .mbr-text,
.cid-uRPIM77KRg .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uRPIM77KRg {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uRPIM77KRg {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uRPIM77KRg .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uRPIM77KRg .buttons-wrap .link {
  display: flex;
}
.cid-uRPIM77KRg .list {
  list-style: none;
}
.cid-uRPIM77KRg .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uRPIM77KRg .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uRPIM77KRg * {
    text-align: left;
  }
  .cid-uRPIM77KRg .buttons-wrap {
    justify-content: center;
  }
  .cid-uRPIM77KRg img {
    margin-bottom: 20px;
  }
}
.cid-uRPIM77KRg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRPIM77KRg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRPIM77KRg .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uRPIM77KRg .tab-content .tab-pane .mbr-text,
.cid-uRPIM77KRg .tab-content .tab-pane .mbr-section-btn,
.cid-uRPIM77KRg .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uRPIM77KRg .tab-content .tab-pane .list,
.cid-uRPIM77KRg .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uRPIM77KRg .rounded-img {
  border-radius: 15px;
}
.cid-uRVt99MBXw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uRVt99MBXw .nav-tabs .nav-item.open .nav-link:focus,
.cid-uRVt99MBXw .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uRVt99MBXw .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uRVt99MBXw .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uRVt99MBXw .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uRVt99MBXw .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uRVt99MBXw .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uRVt99MBXw .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uRVt99MBXw .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uRVt99MBXw .nav-link,
.cid-uRVt99MBXw .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uRVt99MBXw .mbr-text,
.cid-uRVt99MBXw .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uRVt99MBXw {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uRVt99MBXw {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uRVt99MBXw .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uRVt99MBXw .buttons-wrap .link {
  display: flex;
}
.cid-uRVt99MBXw .list {
  list-style: none;
}
.cid-uRVt99MBXw .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uRVt99MBXw .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uRVt99MBXw * {
    text-align: left;
  }
  .cid-uRVt99MBXw .buttons-wrap {
    justify-content: center;
  }
  .cid-uRVt99MBXw img {
    margin-bottom: 20px;
  }
}
.cid-uRVt99MBXw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uRVt99MBXw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uRVt99MBXw .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uRVt99MBXw .tab-content .tab-pane .mbr-text,
.cid-uRVt99MBXw .tab-content .tab-pane .mbr-section-btn,
.cid-uRVt99MBXw .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uRVt99MBXw .tab-content .tab-pane .list,
.cid-uRVt99MBXw .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uRVt99MBXw .rounded-img {
  border-radius: 15px;
}
.cid-uSdIMcqcwy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f2f2f2;
}
.cid-uSdIMcqcwy .nav-tabs .nav-item.open .nav-link:focus,
.cid-uSdIMcqcwy .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uSdIMcqcwy .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uSdIMcqcwy .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uSdIMcqcwy .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uSdIMcqcwy .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uSdIMcqcwy .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uSdIMcqcwy .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uSdIMcqcwy .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uSdIMcqcwy .nav-link,
.cid-uSdIMcqcwy .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uSdIMcqcwy .mbr-text,
.cid-uSdIMcqcwy .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uSdIMcqcwy {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uSdIMcqcwy {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uSdIMcqcwy .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uSdIMcqcwy .buttons-wrap .link {
  display: flex;
}
.cid-uSdIMcqcwy .list {
  list-style: none;
}
.cid-uSdIMcqcwy .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uSdIMcqcwy .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uSdIMcqcwy * {
    text-align: left;
  }
  .cid-uSdIMcqcwy .buttons-wrap {
    justify-content: center;
  }
  .cid-uSdIMcqcwy img {
    margin-bottom: 20px;
  }
}
.cid-uSdIMcqcwy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSdIMcqcwy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSdIMcqcwy .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uSdIMcqcwy .tab-content .tab-pane .mbr-text,
.cid-uSdIMcqcwy .tab-content .tab-pane .mbr-section-btn,
.cid-uSdIMcqcwy .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uSdIMcqcwy .tab-content .tab-pane .list,
.cid-uSdIMcqcwy .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uSdIMcqcwy .rounded-img {
  border-radius: 15px;
}
.cid-uSefvHX2Cw {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uSefvHX2Cw .nav-tabs .nav-item.open .nav-link:focus,
.cid-uSefvHX2Cw .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-uSefvHX2Cw .nav-tabs {
  justify-content: right;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .cid-uSefvHX2Cw .nav-item {
    width: 100%;
    margin: 0;
  }
}
.cid-uSefvHX2Cw .nav-item .nav-link {
  color: #353535;
  border-bottom: 4px solid transparent !important;
  font-weight: bold;
}
.cid-uSefvHX2Cw .nav-item .nav-link.active {
  color: #a66c26;
  border-bottom: 4px solid #a66c26 !important;
}
.cid-uSefvHX2Cw .nav-tabs .nav-link {
  transition: all .5s;
  border: none;
}
.cid-uSefvHX2Cw .nav-tabs .nav-item {
  margin-right: 2.2rem;
}
@media (max-width: 991px) {
  .cid-uSefvHX2Cw .nav-tabs .nav-item {
    margin-right: 1.1rem;
  }
}
.cid-uSefvHX2Cw .nav-link,
.cid-uSefvHX2Cw .nav-link.active {
  padding: 1rem 0;
  background-color: transparent;
}
.cid-uSefvHX2Cw .mbr-text,
.cid-uSefvHX2Cw .mbr-section-btn {
  color: #232323;
  line-height: 2rem;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media (max-width: 991px) {
  .cid-uSefvHX2Cw {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
@media (max-width: 767px) {
  .cid-uSefvHX2Cw {
    line-height: 1.8rem;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.cid-uSefvHX2Cw .mbr-section-title {
  color: #2c3540;
  text-align: left;
}
.cid-uSefvHX2Cw .buttons-wrap .link {
  display: flex;
}
.cid-uSefvHX2Cw .list {
  list-style: none;
}
.cid-uSefvHX2Cw .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-uSefvHX2Cw .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #353535;
}
@media (max-width: 768px) {
  .cid-uSefvHX2Cw * {
    text-align: left;
  }
  .cid-uSefvHX2Cw .buttons-wrap {
    justify-content: center;
  }
  .cid-uSefvHX2Cw img {
    margin-bottom: 20px;
  }
}
.cid-uSefvHX2Cw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSefvHX2Cw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSefvHX2Cw .mbr-section-subtitle {
  text-align: justify;
  line-height: 2rem;
  text-justify: inter-ideograph;
  color: #2c3540;
}
.cid-uSefvHX2Cw .tab-content .tab-pane .mbr-text,
.cid-uSefvHX2Cw .tab-content .tab-pane .mbr-section-btn,
.cid-uSefvHX2Cw .tab-content .tab-pane .list li {
  color: #232323;
}
.cid-uSefvHX2Cw .tab-content .tab-pane .list,
.cid-uSefvHX2Cw .tab-content .tab-pane .list li {
  color: #2c3540;
}
.cid-uSefvHX2Cw .rounded-img {
  border-radius: 15px;
}
.cid-uQrrKHE66x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2c3540;
}
.cid-uQrrKHE66x .number-wrap {
  color: #181818;
  text-align: center;
  line-height: 1.72;
}
.cid-uQrrKHE66x .number {
  color: #d9a23d;
  white-space: nowrap;
  line-height: 1.72;
}
.cid-uQrrKHE66x .period {
  display: block;
}
.cid-uQrrKHE66x .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-uQrrKHE66x .period {
    font-size: 0.8rem;
  }
}
.cid-uQrrKHE66x .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-uQrrKHE66x .mbr-section-title {
  color: #fff;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uQrrKHE66x .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uQrrKHE66x .mbr-section-subtitle {
  color: #fff;
  line-height: 1.2;
}
.cid-uQrrKHE66x .mbr-text {
  line-height: 1.72;
  color: #fff;
}
.cid-uQrrKHE66x .countdown-cont {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-uQrrKHE66x .countdown-cont {
    padding: 2rem;
  }
}
.cid-uQrrKHE66x ::placeholder {
  color: #181818;
}
.cid-uQrrKHE66x .btn-white {
  color: #181818 !important;
  font-weight: 500 !important;
}
.cid-uQrrKHE66x .subscribe-button {
  width: 100%;
  margin: 0;
}
.cid-uPGn8TUtqZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edefeb;
}
.cid-uPGn8TUtqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGn8TUtqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px !important;
  top: 0;
}
.cid-uPGn8TUtqZ .mbr-description {
  text-align: left;
}
.cid-uPGn8TUtqZ .item-wrapper {
  background: #ffffff;
  margin-bottom: 2rem;
  padding: 2.25rem 2.25rem 1rem 2.25rem;
  border-radius: 10px !important;
}
@media (max-width: 767px) {
  .cid-uPGn8TUtqZ .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .cid-uPGn8TUtqZ .item-wrapper {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }
}
.cid-uPGn8TUtqZ .image-wrapper {
  border-radius: 10px !important;
  overflow: hidden;
}
.cid-uPGn8TUtqZ .card-title,
.cid-uPGn8TUtqZ .iconfont-wrapper {
  color: #000000;
}
.cid-uPGn8TUtqZ .card-text {
  color: #000000;
}
.cid-uPGn8TUtqZ .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uPGn8TUtqZ .mbr-text,
.cid-uPGn8TUtqZ .mbr-section-btn {
  text-align: center;
}
.cid-uPGn8TUtqZ .card-text,
.cid-uPGn8TUtqZ .item .mbr-section-btn {
  text-align: left;
}
.cid-uPGn8TUtqZ .counter-container ul {
  margin: 0;
  padding-left: 2.25rem;
  list-style: none;
}
.cid-uPGn8TUtqZ .counter-container ul li {
  position: relative;
  list-style: none;
  margin-bottom: 2rem;
}
.cid-uPGn8TUtqZ .counter-container ul li:before {
  position: absolute;
  left: -1.5em;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1f6463;
  background-color: #1f6463;
  width: 0.5em;
  height: 0.5em;
  top: 0.4em;
  border-radius: 50%;
}
.cid-uPGn8TUtqZ .mbr-text UL {
  text-align: left;
}
.cid-uPGn9t817n.popup-builder {
  background-color: #ffffff;
}
.cid-uPGn9t817n.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uPGn9t817n.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uPGn9t817n .modal-content,
.cid-uPGn9t817n .modal-dialog {
  height: auto;
}
.cid-uPGn9t817n .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uPGn9t817n .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uPGn9t817n .form-wrapper .mbr-form .form-group,
  .cid-uPGn9t817n .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uPGn9t817n .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uPGn9t817n .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uPGn9t817n .mbr-text {
  text-align: center;
}
.cid-uPGn9t817n .pt-0 {
  padding-top: 0 !important;
}
.cid-uPGn9t817n .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uPGn9t817n .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uPGn9t817n .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uPGn9t817n .modal-open {
  overflow: hidden;
}
.cid-uPGn9t817n .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uPGn9t817n .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uPGn9t817n .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uPGn9t817n .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uPGn9t817n .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uPGn9t817n .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uPGn9t817n .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uPGn9t817n .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uPGn9t817n .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uPGn9t817n .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uPGn9t817n .modal-backdrop.fade {
  opacity: 0;
}
.cid-uPGn9t817n .modal-backdrop.show {
  opacity: .5;
}
.cid-uPGn9t817n .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uPGn9t817n .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uPGn9t817n .modal-header {
    padding: 1rem;
  }
}
.cid-uPGn9t817n .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uPGn9t817n .modal-header .close svg {
  fill: #353535;
}
.cid-uPGn9t817n .modal-header .close:hover {
  opacity: 1;
}
.cid-uPGn9t817n .modal-header .close:focus {
  outline: none;
}
.cid-uPGn9t817n .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uPGn9t817n .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uPGn9t817n .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPGn9t817n .modal-body {
    padding: 1rem;
  }
}
.cid-uPGn9t817n .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPGn9t817n .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPGn9t817n .modal-footer {
    padding: 1rem;
  }
}
.cid-uPGn9t817n .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uPGn9t817n .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uPGn9t817n .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uPGn9t817n .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uPGn9t817n .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uPGn9t817n .modal-lg,
  .cid-uPGn9t817n .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uPGn9t817n .modal-xl {
    max-width: 1140px;
  }
}
.cid-uPGn9t817n .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uPGn9t817n .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uPGn9t817n .form-group {
  margin-bottom: 1rem;
}
.cid-uPGn9t817n .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uPGn9t817n .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uPGn9t817n .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uPGn9t817n .mbr-section-btn {
  margin: 0;
}
.cid-uPGn9t817n .mbr-section-btn .btn {
  margin: 0;
}
.cid-uPGmESXIiy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uPGmESXIiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGmESXIiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGmESXIiy .logo-container {
  max-width: 33.33333333%;
  padding-right: 1rem;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-uPGmESXIiy .logo-container {
    width: 100%;
    padding-right: 0;
    max-width: 100%;
    order: 3;
    justify-content: center !important;
  }
}
.cid-uPGmESXIiy .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  white-space: normal;
}
.cid-uPGmESXIiy .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPGmESXIiy .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPGmESXIiy .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-uPGmESXIiy .navbar-brand .navbar-logo a {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uPGmESXIiy .navbar-brand {
    justify-content: center !important;
  }
}
.cid-uPGmESXIiy .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  padding-left: 1rem;
  margin-left: auto;
  max-width: 33.33333333%;
}
@media (max-width: 768px) {
  .cid-uPGmESXIiy .social-row {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    padding-left: 0;
    justify-content: center;
    order: 1;
    margin-left: -0.75rem;
  }
}
.cid-uPGmESXIiy .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
}
.cid-uPGmESXIiy .mbr-iconfont {
  color: #000000;
  font-size: 18px;
}
.cid-uPGmESXIiy .copyright-col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uPGmESXIiy .copyright-col {
    flex-direction: column;
  }
}
.cid-uPGmESXIiy .copyright {
  color: #f7f7f7;
  flex-grow: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uPGmESXIiy .copyright {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem !important;
    order: 2;
    text-align: center;
  }
}
