.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Open Sans', 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: #097ae4 !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: #097ae4 !important;
  border-color: #097ae4 !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: #064d91 !important;
  border-color: #064d91 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #064d91 !important;
  border-color: #064d91 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #097ae4;
  color: #097ae4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #064d91 !important;
  background-color: transparent!important;
  border-color: #064d91 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #097ae4 !important;
  border-color: #097ae4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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: #097ae4 !important;
}
.text-secondary {
  color: #ffffff !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: #054582 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !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: #097ae4;
}
.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: #097ae4;
  border-color: #097ae4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #097ae4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bddefc;
}
.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: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #097ae4 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #097ae4;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #097ae4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #097ae4;
}
.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: #097ae4;
  border-bottom-color: #097ae4;
}
.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: #097ae4 !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: #ffffff !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='%23097ae4' %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-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #232323 !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFGMfPD7iT {
  background-image: url("../../../assets/images/3839-1500x1000.jpg");
}
.cid-sFGMfPD7iT .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sFGMfPD7iT .mbr-text,
.cid-sFGMfPD7iT .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-sFGNHRkFsi {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFGNHRkFsi .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-sFGNHRkFsi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFGNHRkFsi .mbr-iconfont {
  font-size: 4rem;
  color: #ffffff;
  padding-right: 1.5rem;
}
.cid-sFGNHRkFsi .card-text {
  color: #000000;
}
.cid-sFGNHRkFsi .card-title {
  color: #232323;
}
.cid-sFGOTvnvck {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sFGOTvnvck .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-sFGOTvnvck .card {
    margin-bottom: 2rem!important;
  }
  .cid-sFGOTvnvck .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFGOTvnvck .link-wrap {
    align-items: center;
  }
}
.cid-sFGOTvnvck .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFGOTvnvck .card-title,
.cid-sFGOTvnvck .card-box {
  color: #232323;
}
.cid-sFGOTvnvck .mbr-text,
.cid-sFGOTvnvck .link-wrap,
.cid-sFGOTvnvck .mbr-section-btn {
  color: #232323;
}
.cid-sFGNGNNW5A {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sFGNGNNW5A img,
.cid-sFGNGNNW5A .item-img {
  width: 100%;
}
.cid-sFGNGNNW5A .item:focus,
.cid-sFGNGNNW5A span:focus {
  outline: none;
}
.cid-sFGNGNNW5A .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFGNGNNW5A .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFGNGNNW5A .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sFGNGNNW5A .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFGNGNNW5A .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sFGNGNNW5A .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sFGNGNNW5A .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFGNGNNW5A .mbr-section-title {
  color: #097ae4;
}
.cid-sFGNGNNW5A .mbr-text,
.cid-sFGNGNNW5A .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-sFGNGNNW5A .item-title {
  text-align: center;
  color: #232323;
}
.cid-sFGNGNNW5A .item-subtitle {
  text-align: left;
}
.cid-sFGNGNNW5A .item-title DIV {
  text-align: center;
}
.cid-uALGO5nfxx {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uALGO5nfxx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALGO5nfxx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uALGO5nfxx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uALGO5nfxx .row {
  flex-direction: row-reverse;
}
.cid-uALGO5nfxx img {
  width: 100%;
}
.cid-uAbfwmzQUx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/3774194-17016-2000x2000.jpeg");
}
.cid-uAbfwmzQUx .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-uAbfwmzQUx .item {
    margin-bottom: 4rem;
  }
}
.cid-uAbfwmzQUx .item:last-child .icon-box:before {
  display: none;
}
.cid-uAbfwmzQUx .item.last .icon-box:before {
  display: none;
}
.cid-uAbfwmzQUx .step-number {
  padding-top: 6px;
}
.cid-uAbfwmzQUx .icon-box {
  background: #097ae4;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uAbfwmzQUx .icon-box {
    margin-right: 1rem;
  }
}
.cid-uAbfwmzQUx .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 34px;
  left: 50%;
  top: 137%;
  top: 100%;
  color: #097ae4;
  transform: translate(-50%, 0);
}
.cid-uAbfwmzQUx span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uAbfwmzQUx .card {
    margin-bottom: 2rem;
  }
  .cid-uAbfwmzQUx .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-uAbfwmzQUx .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-uAbfwmzQUx .icon-box::before {
    top: 114%;
  }
}
.cid-uAbfwmzQUx .card-title,
.cid-uAbfwmzQUx .card-box {
  color: #097ae4;
}
.cid-uAbfwmzQUx .icon-text {
  color: #ffffff;
}
.cid-uAbfwmzQUx .mbr-text,
.cid-uAbfwmzQUx .mbr-section-btn {
  color: #ffffff;
}
.cid-uAbm7f1ixQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uAbm7f1ixQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAbm7f1ixQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAbm7f1ixQ .mbr-text,
.cid-uAbm7f1ixQ .mbr-section-btn {
  color: #232323;
}
.cid-uAbm7f1ixQ .card-title,
.cid-uAbm7f1ixQ .card-box {
  color: #ffffff;
}
.cid-uAbm7f1ixQ .mbr-text,
.cid-uAbm7f1ixQ .link-wrap {
  color: #ffffff;
}
.cid-uAbm7f1ixQ .card-box .mbr-text,
.cid-uAbm7f1ixQ .mbr-section-btn {
  color: #ffffff;
}
.cid-uAbm22DfqD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uAbm22DfqD img,
.cid-uAbm22DfqD .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uAbm22DfqD .item:focus,
.cid-uAbm22DfqD span:focus {
  outline: none;
}
.cid-uAbm22DfqD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uAbm22DfqD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAbm22DfqD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAbm22DfqD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAbm22DfqD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAbm22DfqD .mbr-section-title {
  color: #097ae4;
}
.cid-uAbpLQ4X4r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uAbpLQ4X4r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAbpLQ4X4r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAbpLQ4X4r .mbr-text,
.cid-uAbpLQ4X4r .mbr-section-btn {
  color: #232323;
}
.cid-uAbpLQ4X4r .card-title,
.cid-uAbpLQ4X4r .card-box {
  color: #ffffff;
}
.cid-uAbpLQ4X4r .mbr-text,
.cid-uAbpLQ4X4r .link-wrap {
  color: #ffffff;
}
.cid-uAbpLQ4X4r .card-box .mbr-text,
.cid-uAbpLQ4X4r .mbr-section-btn {
  color: #ffffff;
}
.cid-uBgsaNk5Hn {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBgsaNk5Hn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBgsaNk5Hn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBgsaNk5Hn .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #097ae4;
  margin-left: 1rem;
}
.cid-uBgsaNk5Hn .panel-group {
  border: none;
}
.cid-uBgsaNk5Hn .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uBgsaNk5Hn .panel-body,
.cid-uBgsaNk5Hn .card-header {
  padding: 1rem 0;
}
.cid-uBgsaNk5Hn .panel-title-edit {
  color: #000000;
}
.cid-uBgsaNk5Hn .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uC345cw6nI {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uC345cw6nI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC345cw6nI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC345cw6nI .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #097ae4;
  margin-left: 1rem;
}
.cid-uC345cw6nI .panel-group {
  border: none;
}
.cid-uC345cw6nI .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uC345cw6nI .panel-body,
.cid-uC345cw6nI .card-header {
  padding: 1rem 0;
}
.cid-uC345cw6nI .panel-title-edit {
  color: #000000;
}
.cid-uC345cw6nI .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uAbkYHpR6H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uAbkYHpR6H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAbkYHpR6H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAbkYHpR6H .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uAbkYHpR6H .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uAbkYHpR6H .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAbkYHpR6H .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uAbkYHpR6H .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #097ae4;
}
.cid-sFGSPUeMie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFGSPUeMie .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFGSPUeMie .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFGSPUeMie .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFGSPUeMie .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFGSPUeMie .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uALCWGIos8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALCWGIos8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALCWGIos8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALCWGIos8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALCWGIos8 .row {
    text-align: center;
  }
  .cid-uALCWGIos8 .row > div {
    margin: auto;
  }
  .cid-uALCWGIos8 .social-row {
    justify-content: center;
  }
}
.cid-uALCWGIos8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALCWGIos8 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALCWGIos8 .list {
    margin-bottom: 0rem;
  }
}
.cid-uALCWGIos8 .mbr-text {
  color: #ffffff;
}
.cid-uALCWGIos8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALCWGIos8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALCWGIos8 H5 {
  color: #097ae4;
}
.cid-sFGMsvHDIa {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sFGMsvHDIa nav.navbar {
  position: fixed;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sFGMsvHDIa .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sFGMsvHDIa .dropdown-item:hover,
.cid-sFGMsvHDIa .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-sFGMsvHDIa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sFGMsvHDIa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sFGMsvHDIa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFGMsvHDIa .nav-link {
  position: relative;
}
.cid-sFGMsvHDIa .container {
  display: flex;
  margin: auto;
}
.cid-sFGMsvHDIa .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown-menu,
.cid-sFGMsvHDIa .navbar.opened {
  background: #232323 !important;
}
.cid-sFGMsvHDIa .nav-item:focus,
.cid-sFGMsvHDIa .nav-link:focus {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sFGMsvHDIa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sFGMsvHDIa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFGMsvHDIa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFGMsvHDIa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-sFGMsvHDIa .navbar.opened {
  transition: all 0.3s;
}
.cid-sFGMsvHDIa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sFGMsvHDIa .navbar .navbar-logo img {
  width: auto;
}
.cid-sFGMsvHDIa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar.collapsed {
  justify-content: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFGMsvHDIa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFGMsvHDIa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFGMsvHDIa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFGMsvHDIa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFGMsvHDIa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFGMsvHDIa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sFGMsvHDIa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFGMsvHDIa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFGMsvHDIa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFGMsvHDIa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sFGMsvHDIa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFGMsvHDIa .navbar.navbar-short {
  min-height: 60px;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sFGMsvHDIa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sFGMsvHDIa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFGMsvHDIa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFGMsvHDIa .dropdown-item.active,
.cid-sFGMsvHDIa .dropdown-item:active {
  background-color: transparent;
}
.cid-sFGMsvHDIa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFGMsvHDIa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sFGMsvHDIa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFGMsvHDIa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFGMsvHDIa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sFGMsvHDIa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sFGMsvHDIa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFGMsvHDIa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFGMsvHDIa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFGMsvHDIa .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sFGMsvHDIa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sFGMsvHDIa .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-sFGMsvHDIa .navbar {
    height: 70px;
  }
  .cid-sFGMsvHDIa .navbar.opened {
    height: auto;
  }
  .cid-sFGMsvHDIa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uALkkf7phh {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/banner-traxxion-pneus-2000x1335.jpg");
}
.cid-uALkkf7phh .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uALkkf7phh .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uALkkf7phh .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uALkkf7phh .mbr-text {
  color: #ffffff;
}
.cid-uALkkf7phh .card {
  padding-bottom: 1.5rem;
}
.cid-uALkkf7phh .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALkkf7phh .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uALkkf7phh .card-wrapper .card-title {
  color: #ffffff;
}
.cid-uALkkf7phh H1 {
  color: #ffffff;
}
.cid-uALkkf7phh .mbr-text,
.cid-uALkkf7phh .mbr-section-btn {
  color: #ffffff;
}
.cid-uALkkf7phh .card-wrapper .card-title,
.cid-uALkkf7phh .card-box {
  color: #ffffff;
}
.cid-uALqdfMmIs {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-uALqdfMmIs img,
.cid-uALqdfMmIs .item-img {
  width: 100%;
}
.cid-uALqdfMmIs .item:focus,
.cid-uALqdfMmIs span:focus {
  outline: none;
}
.cid-uALqdfMmIs .item-wrapper {
  position: relative;
}
.cid-uALqdfMmIs .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALqdfMmIs .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALqdfMmIs .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALqdfMmIs .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALqdfMmIs .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALqdfMmIs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALqdfMmIs .mbr-section-title {
  color: #097ae4;
}
.cid-uALqdfMmIs .mbr-text,
.cid-uALqdfMmIs .mbr-section-btn {
  text-align: center;
}
.cid-uALqdfMmIs .item-title {
  text-align: center;
}
.cid-uALqdfMmIs .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALqdfMmIs .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALqdfMmIs .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALqdfMmIs .embla__button--next,
.cid-uALqdfMmIs .embla__button--prev {
  display: flex;
}
.cid-uALqdfMmIs .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALqdfMmIs .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALqdfMmIs .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALqdfMmIs .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALqdfMmIs .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALqdfMmIs .embla__button {
    top: auto;
  }
}
.cid-uALqdfMmIs .embla {
  position: relative;
  width: 100%;
}
.cid-uALqdfMmIs .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALqdfMmIs .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALqdfMmIs .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALqdfMmIs .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALqdfMmIs .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALqdfMmIs .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALqdfMmIs .content-head {
  max-width: 800px;
}
.cid-uALqdfMmIs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALu4AT5GV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uALu4AT5GV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALu4AT5GV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALu4AT5GV .mbr-text,
.cid-uALu4AT5GV .mbr-section-btn {
  color: #232323;
}
.cid-uALu4AT5GV .card-title,
.cid-uALu4AT5GV .card-box {
  color: #ffffff;
}
.cid-uALu4AT5GV .mbr-text,
.cid-uALu4AT5GV .link-wrap {
  color: #ffffff;
}
.cid-uALu4AT5GV .card-box .mbr-text,
.cid-uALu4AT5GV .mbr-section-btn {
  color: #ffffff;
}
.cid-uALqt48of0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uALqt48of0 img,
.cid-uALqt48of0 .item-img {
  width: 100%;
}
.cid-uALqt48of0 .item:focus,
.cid-uALqt48of0 span:focus {
  outline: none;
}
.cid-uALqt48of0 .item-wrapper {
  position: relative;
}
.cid-uALqt48of0 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALqt48of0 .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALqt48of0 .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALqt48of0 .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALqt48of0 .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALqt48of0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALqt48of0 .mbr-section-title {
  color: #097ae4;
}
.cid-uALqt48of0 .mbr-text,
.cid-uALqt48of0 .mbr-section-btn {
  text-align: center;
}
.cid-uALqt48of0 .item-title {
  text-align: center;
}
.cid-uALqt48of0 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALqt48of0 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALqt48of0 .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALqt48of0 .embla__button--next,
.cid-uALqt48of0 .embla__button--prev {
  display: flex;
}
.cid-uALqt48of0 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALqt48of0 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALqt48of0 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALqt48of0 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALqt48of0 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALqt48of0 .embla__button {
    top: auto;
  }
}
.cid-uALqt48of0 .embla {
  position: relative;
  width: 100%;
}
.cid-uALqt48of0 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALqt48of0 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALqt48of0 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALqt48of0 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALqt48of0 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALqt48of0 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALqt48of0 .content-head {
  max-width: 800px;
}
.cid-uALqt48of0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALA5fKHd2 {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uALA5fKHd2 img,
.cid-uALA5fKHd2 .item-img {
  width: 100%;
}
.cid-uALA5fKHd2 .item:focus,
.cid-uALA5fKHd2 span:focus {
  outline: none;
}
.cid-uALA5fKHd2 .item-wrapper {
  position: relative;
}
.cid-uALA5fKHd2 .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALA5fKHd2 .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALA5fKHd2 .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALA5fKHd2 .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALA5fKHd2 .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALA5fKHd2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALA5fKHd2 .mbr-section-title {
  color: #097ae4;
}
.cid-uALA5fKHd2 .mbr-text,
.cid-uALA5fKHd2 .mbr-section-btn {
  text-align: center;
}
.cid-uALA5fKHd2 .item-title {
  text-align: center;
}
.cid-uALA5fKHd2 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALA5fKHd2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALA5fKHd2 .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALA5fKHd2 .embla__button--next,
.cid-uALA5fKHd2 .embla__button--prev {
  display: flex;
}
.cid-uALA5fKHd2 .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALA5fKHd2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALA5fKHd2 .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALA5fKHd2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALA5fKHd2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALA5fKHd2 .embla__button {
    top: auto;
  }
}
.cid-uALA5fKHd2 .embla {
  position: relative;
  width: 100%;
}
.cid-uALA5fKHd2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALA5fKHd2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALA5fKHd2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALA5fKHd2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALA5fKHd2 .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALA5fKHd2 .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALA5fKHd2 .content-head {
  max-width: 800px;
}
.cid-uALA5fKHd2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALB3132PY {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-uALB3132PY img,
.cid-uALB3132PY .item-img {
  width: 100%;
}
.cid-uALB3132PY .item:focus,
.cid-uALB3132PY span:focus {
  outline: none;
}
.cid-uALB3132PY .item-wrapper {
  position: relative;
}
.cid-uALB3132PY .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALB3132PY .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALB3132PY .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALB3132PY .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALB3132PY .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALB3132PY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALB3132PY .mbr-section-title {
  color: #097ae4;
}
.cid-uALB3132PY .mbr-text,
.cid-uALB3132PY .mbr-section-btn {
  text-align: center;
}
.cid-uALB3132PY .item-title {
  text-align: center;
}
.cid-uALB3132PY .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALB3132PY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALB3132PY .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALB3132PY .embla__button--next,
.cid-uALB3132PY .embla__button--prev {
  display: flex;
}
.cid-uALB3132PY .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALB3132PY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALB3132PY .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALB3132PY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALB3132PY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALB3132PY .embla__button {
    top: auto;
  }
}
.cid-uALB3132PY .embla {
  position: relative;
  width: 100%;
}
.cid-uALB3132PY .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALB3132PY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALB3132PY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALB3132PY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALB3132PY .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALB3132PY .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALB3132PY .content-head {
  max-width: 800px;
}
.cid-uALB3132PY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALDm4piZi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uALDm4piZi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALDm4piZi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uALDm4piZi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uALDm4piZi .row {
  flex-direction: row-reverse;
}
.cid-uALDm4piZi img {
  width: 100%;
}
.cid-uALCWGIos8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALCWGIos8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALCWGIos8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALCWGIos8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALCWGIos8 .row {
    text-align: center;
  }
  .cid-uALCWGIos8 .row > div {
    margin: auto;
  }
  .cid-uALCWGIos8 .social-row {
    justify-content: center;
  }
}
.cid-uALCWGIos8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALCWGIos8 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALCWGIos8 .list {
    margin-bottom: 0rem;
  }
}
.cid-uALCWGIos8 .mbr-text {
  color: #ffffff;
}
.cid-uALCWGIos8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALCWGIos8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALCWGIos8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALCWGIos8 H5 {
  color: #097ae4;
}
.cid-uALFhBf67l {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uALFhBf67l nav.navbar {
  position: fixed;
}
.cid-uALFhBf67l .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-uALFhBf67l .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uALFhBf67l .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uALFhBf67l .dropdown-item:hover,
.cid-uALFhBf67l .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-uALFhBf67l .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uALFhBf67l .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uALFhBf67l .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uALFhBf67l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uALFhBf67l .nav-link {
  position: relative;
}
.cid-uALFhBf67l .container {
  display: flex;
  margin: auto;
}
.cid-uALFhBf67l .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uALFhBf67l .dropdown-menu,
.cid-uALFhBf67l .navbar.opened {
  background: #232323 !important;
}
.cid-uALFhBf67l .nav-item:focus,
.cid-uALFhBf67l .nav-link:focus {
  outline: none;
}
.cid-uALFhBf67l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uALFhBf67l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uALFhBf67l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uALFhBf67l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uALFhBf67l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uALFhBf67l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uALFhBf67l .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-uALFhBf67l .navbar.opened {
  transition: all 0.3s;
}
.cid-uALFhBf67l .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uALFhBf67l .navbar .navbar-logo img {
  width: auto;
}
.cid-uALFhBf67l .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uALFhBf67l .navbar.collapsed {
  justify-content: center;
}
.cid-uALFhBf67l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uALFhBf67l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uALFhBf67l .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uALFhBf67l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uALFhBf67l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uALFhBf67l .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-uALFhBf67l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uALFhBf67l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uALFhBf67l .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uALFhBf67l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uALFhBf67l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uALFhBf67l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uALFhBf67l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uALFhBf67l .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-uALFhBf67l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uALFhBf67l .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uALFhBf67l .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uALFhBf67l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uALFhBf67l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uALFhBf67l .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uALFhBf67l .navbar.navbar-short {
  min-height: 60px;
}
.cid-uALFhBf67l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uALFhBf67l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uALFhBf67l .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uALFhBf67l .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uALFhBf67l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uALFhBf67l .dropdown-item.active,
.cid-uALFhBf67l .dropdown-item:active {
  background-color: transparent;
}
.cid-uALFhBf67l .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uALFhBf67l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uALFhBf67l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uALFhBf67l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uALFhBf67l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uALFhBf67l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uALFhBf67l ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uALFhBf67l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uALFhBf67l button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uALFhBf67l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uALFhBf67l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uALFhBf67l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALFhBf67l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALFhBf67l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uALFhBf67l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALFhBf67l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uALFhBf67l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uALFhBf67l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALFhBf67l .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uALFhBf67l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uALFhBf67l .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-uALFhBf67l .navbar {
    height: 70px;
  }
  .cid-uALFhBf67l .navbar.opened {
    height: auto;
  }
  .cid-uALFhBf67l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uALFhC4dNb {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/banner-traxxion-pneus-2000x1335.jpg");
}
.cid-uALFhC4dNb .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uALFhC4dNb .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uALFhC4dNb .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uALFhC4dNb .mbr-text {
  color: #ffffff;
}
.cid-uALFhC4dNb .card {
  padding-bottom: 1.5rem;
}
.cid-uALFhC4dNb .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALFhC4dNb .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uALFhC4dNb .card-wrapper .card-title {
  color: #ffffff;
}
.cid-uALFhC4dNb H1 {
  color: #ffffff;
}
.cid-uALFhC4dNb .mbr-text,
.cid-uALFhC4dNb .mbr-section-btn {
  color: #ffffff;
}
.cid-uALFhC4dNb .card-wrapper .card-title,
.cid-uALFhC4dNb .card-box {
  color: #ffffff;
}
.cid-uALFhHcyRo {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uALFhHcyRo img,
.cid-uALFhHcyRo .item-img {
  width: 100%;
}
.cid-uALFhHcyRo .item:focus,
.cid-uALFhHcyRo span:focus {
  outline: none;
}
.cid-uALFhHcyRo .item-wrapper {
  position: relative;
}
.cid-uALFhHcyRo .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALFhHcyRo .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALFhHcyRo .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALFhHcyRo .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALFhHcyRo .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALFhHcyRo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALFhHcyRo .mbr-section-title {
  color: #097ae4;
}
.cid-uALFhHcyRo .mbr-text,
.cid-uALFhHcyRo .mbr-section-btn {
  text-align: center;
}
.cid-uALFhHcyRo .item-title {
  text-align: center;
}
.cid-uALFhHcyRo .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALFhHcyRo .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALFhHcyRo .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALFhHcyRo .embla__button--next,
.cid-uALFhHcyRo .embla__button--prev {
  display: flex;
}
.cid-uALFhHcyRo .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALFhHcyRo .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALFhHcyRo .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALFhHcyRo .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALFhHcyRo .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALFhHcyRo .embla__button {
    top: auto;
  }
}
.cid-uALFhHcyRo .embla {
  position: relative;
  width: 100%;
}
.cid-uALFhHcyRo .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALFhHcyRo .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALFhHcyRo .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALFhHcyRo .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALFhHcyRo .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALFhHcyRo .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALFhHcyRo .content-head {
  max-width: 800px;
}
.cid-uALFhHcyRo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALFhE2uX0 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uALFhE2uX0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALFhE2uX0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALFhE2uX0 .mbr-text,
.cid-uALFhE2uX0 .mbr-section-btn {
  color: #232323;
}
.cid-uALFhE2uX0 .card-title,
.cid-uALFhE2uX0 .card-box {
  color: #ffffff;
}
.cid-uALFhE2uX0 .mbr-text,
.cid-uALFhE2uX0 .link-wrap {
  color: #ffffff;
}
.cid-uALFhE2uX0 .card-box .mbr-text,
.cid-uALFhE2uX0 .mbr-section-btn {
  color: #ffffff;
}
.cid-uALFhLEZUi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uALFhLEZUi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALFhLEZUi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uALFhLEZUi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uALFhLEZUi .row {
  flex-direction: row-reverse;
}
.cid-uALFhLEZUi img {
  width: 100%;
}
.cid-uALFhMd8ti {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALFhMd8ti .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALFhMd8ti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALFhMd8ti .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALFhMd8ti .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALFhMd8ti .row {
    text-align: center;
  }
  .cid-uALFhMd8ti .row > div {
    margin: auto;
  }
  .cid-uALFhMd8ti .social-row {
    justify-content: center;
  }
}
.cid-uALFhMd8ti .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALFhMd8ti .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALFhMd8ti .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALFhMd8ti .list {
    margin-bottom: 0rem;
  }
}
.cid-uALFhMd8ti .mbr-text {
  color: #ffffff;
}
.cid-uALFhMd8ti .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALFhMd8ti .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALFhMd8ti div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALFhMd8ti H5 {
  color: #097ae4;
}
.cid-uALHhFgy8i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uALHhFgy8i nav.navbar {
  position: fixed;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uALHhFgy8i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uALHhFgy8i .dropdown-item:hover,
.cid-uALHhFgy8i .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-uALHhFgy8i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uALHhFgy8i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uALHhFgy8i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uALHhFgy8i .nav-link {
  position: relative;
}
.cid-uALHhFgy8i .container {
  display: flex;
  margin: auto;
}
.cid-uALHhFgy8i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown-menu,
.cid-uALHhFgy8i .navbar.opened {
  background: #232323 !important;
}
.cid-uALHhFgy8i .nav-item:focus,
.cid-uALHhFgy8i .nav-link:focus {
  outline: none;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uALHhFgy8i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uALHhFgy8i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-uALHhFgy8i .navbar.opened {
  transition: all 0.3s;
}
.cid-uALHhFgy8i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uALHhFgy8i .navbar .navbar-logo img {
  width: auto;
}
.cid-uALHhFgy8i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar.collapsed {
  justify-content: center;
}
.cid-uALHhFgy8i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uALHhFgy8i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uALHhFgy8i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uALHhFgy8i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uALHhFgy8i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uALHhFgy8i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uALHhFgy8i .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-uALHhFgy8i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uALHhFgy8i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uALHhFgy8i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uALHhFgy8i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uALHhFgy8i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uALHhFgy8i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uALHhFgy8i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uALHhFgy8i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uALHhFgy8i .dropdown-item.active,
.cid-uALHhFgy8i .dropdown-item:active {
  background-color: transparent;
}
.cid-uALHhFgy8i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uALHhFgy8i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uALHhFgy8i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uALHhFgy8i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uALHhFgy8i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uALHhFgy8i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar {
    height: 70px;
  }
  .cid-uALHhFgy8i .navbar.opened {
    height: auto;
  }
  .cid-uALHhFgy8i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uALHhFTnue {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/banner-traxxion-pneus-2000x1335.jpg");
}
.cid-uALHhFTnue .icons-media-container {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 4rem;
}
.cid-uALHhFTnue .icons-media-container .mbr-iconfont {
  font-size: 96px;
  color: #ffffff;
}
.cid-uALHhFTnue .icons-media-container .icon-block {
  padding-bottom: 1rem;
}
.cid-uALHhFTnue .mbr-text {
  color: #ffffff;
}
.cid-uALHhFTnue .card {
  padding-bottom: 1.5rem;
}
.cid-uALHhFTnue .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALHhFTnue .card-wrapper .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
.cid-uALHhFTnue .card-wrapper .card-title {
  color: #ffffff;
}
.cid-uALHhFTnue H1 {
  color: #ffffff;
}
.cid-uALHhFTnue .mbr-text,
.cid-uALHhFTnue .mbr-section-btn {
  color: #ffffff;
}
.cid-uALHhFTnue .card-wrapper .card-title,
.cid-uALHhFTnue .card-box {
  color: #ffffff;
}
.cid-uALHhJAYZu {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #232323;
}
.cid-uALHhJAYZu img,
.cid-uALHhJAYZu .item-img {
  width: 100%;
}
.cid-uALHhJAYZu .item:focus,
.cid-uALHhJAYZu span:focus {
  outline: none;
}
.cid-uALHhJAYZu .item-wrapper {
  position: relative;
}
.cid-uALHhJAYZu .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALHhJAYZu .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALHhJAYZu .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALHhJAYZu .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALHhJAYZu .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALHhJAYZu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALHhJAYZu .mbr-section-title {
  color: #097ae4;
  text-align: center;
}
.cid-uALHhJAYZu .mbr-text,
.cid-uALHhJAYZu .mbr-section-btn {
  text-align: center;
}
.cid-uALHhJAYZu .item-title {
  text-align: center;
}
.cid-uALHhJAYZu .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALHhJAYZu .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALHhJAYZu .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALHhJAYZu .embla__button--next,
.cid-uALHhJAYZu .embla__button--prev {
  display: flex;
}
.cid-uALHhJAYZu .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALHhJAYZu .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALHhJAYZu .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALHhJAYZu .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALHhJAYZu .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALHhJAYZu .embla__button {
    top: auto;
  }
}
.cid-uALHhJAYZu .embla {
  position: relative;
  width: 100%;
}
.cid-uALHhJAYZu .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALHhJAYZu .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALHhJAYZu .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALHhJAYZu .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALHhJAYZu .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALHhJAYZu .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALHhJAYZu .content-head {
  max-width: 800px;
}
.cid-uALHhJAYZu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALHhHDTcZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uALHhHDTcZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALHhHDTcZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALHhHDTcZ .mbr-text,
.cid-uALHhHDTcZ .mbr-section-btn {
  color: #232323;
}
.cid-uALHhHDTcZ .card-title,
.cid-uALHhHDTcZ .card-box {
  color: #ffffff;
}
.cid-uALHhHDTcZ .mbr-text,
.cid-uALHhHDTcZ .link-wrap {
  color: #ffffff;
}
.cid-uALHhHDTcZ .card-box .mbr-text,
.cid-uALHhHDTcZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uALHhGyBBC {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #232323;
}
.cid-uALHhGyBBC img,
.cid-uALHhGyBBC .item-img {
  width: 100%;
}
.cid-uALHhGyBBC .item:focus,
.cid-uALHhGyBBC span:focus {
  outline: none;
}
.cid-uALHhGyBBC .item-wrapper {
  position: relative;
}
.cid-uALHhGyBBC .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALHhGyBBC .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALHhGyBBC .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALHhGyBBC .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALHhGyBBC .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALHhGyBBC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALHhGyBBC .mbr-section-title {
  color: #097ae4;
}
.cid-uALHhGyBBC .mbr-text,
.cid-uALHhGyBBC .mbr-section-btn {
  text-align: center;
}
.cid-uALHhGyBBC .item-title {
  text-align: center;
}
.cid-uALHhGyBBC .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALHhGyBBC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALHhGyBBC .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALHhGyBBC .embla__button--next,
.cid-uALHhGyBBC .embla__button--prev {
  display: flex;
}
.cid-uALHhGyBBC .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALHhGyBBC .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALHhGyBBC .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALHhGyBBC .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALHhGyBBC .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALHhGyBBC .embla__button {
    top: auto;
  }
}
.cid-uALHhGyBBC .embla {
  position: relative;
  width: 100%;
}
.cid-uALHhGyBBC .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALHhGyBBC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALHhGyBBC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALHhGyBBC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALHhGyBBC .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALHhGyBBC .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALHhGyBBC .content-head {
  max-width: 800px;
}
.cid-uALHhGyBBC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALHhLjsIJ {
  padding-top: 4rem;
  padding-bottom: 8rem;
  background-color: #232323;
}
.cid-uALHhLjsIJ img,
.cid-uALHhLjsIJ .item-img {
  width: 100%;
}
.cid-uALHhLjsIJ .item:focus,
.cid-uALHhLjsIJ span:focus {
  outline: none;
}
.cid-uALHhLjsIJ .item-wrapper {
  position: relative;
}
.cid-uALHhLjsIJ .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uALHhLjsIJ .slide-content .item-content {
    padding: 2.25rem 2.25rem 0;
  }
  .cid-uALHhLjsIJ .slide-content .item-footer {
    padding: 0 2.25rem 2.25rem;
  }
}
@media (max-width: 991px) {
  .cid-uALHhLjsIJ .slide-content .item-content {
    padding: 1.5rem 1.5rem 0;
  }
  .cid-uALHhLjsIJ .slide-content .item-footer {
    padding: 0 1.5rem 1.5rem;
  }
}
.cid-uALHhLjsIJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uALHhLjsIJ .mbr-section-title {
  color: #097ae4;
}
.cid-uALHhLjsIJ .mbr-text,
.cid-uALHhLjsIJ .mbr-section-btn {
  text-align: center;
}
.cid-uALHhLjsIJ .item-title {
  text-align: center;
}
.cid-uALHhLjsIJ .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uALHhLjsIJ .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uALHhLjsIJ .embla__slide {
    min-width: 85%;
    max-width: initial;
  }
}
.cid-uALHhLjsIJ .embla__button--next,
.cid-uALHhLjsIJ .embla__button--prev {
  display: flex;
}
.cid-uALHhLjsIJ .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uALHhLjsIJ .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uALHhLjsIJ .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uALHhLjsIJ .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uALHhLjsIJ .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uALHhLjsIJ .embla__button {
    top: auto;
  }
}
.cid-uALHhLjsIJ .embla {
  position: relative;
  width: 100%;
}
.cid-uALHhLjsIJ .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uALHhLjsIJ .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uALHhLjsIJ .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uALHhLjsIJ .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uALHhLjsIJ .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uALHhLjsIJ .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uALHhLjsIJ .content-head {
  max-width: 800px;
}
.cid-uALHhLjsIJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uALHhMrrvI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uALHhMrrvI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALHhMrrvI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uALHhMrrvI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uALHhMrrvI .row {
  flex-direction: row-reverse;
}
.cid-uALHhMrrvI img {
  width: 100%;
}
.cid-uALHhN3FDD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALHhN3FDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALHhN3FDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALHhN3FDD .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALHhN3FDD .row {
    text-align: center;
  }
  .cid-uALHhN3FDD .row > div {
    margin: auto;
  }
  .cid-uALHhN3FDD .social-row {
    justify-content: center;
  }
}
.cid-uALHhN3FDD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALHhN3FDD .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 0rem;
  }
}
.cid-uALHhN3FDD .mbr-text {
  color: #ffffff;
}
.cid-uALHhN3FDD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALHhN3FDD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALHhN3FDD H5 {
  color: #097ae4;
}
.cid-uALHhFgy8i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uALHhFgy8i nav.navbar {
  position: fixed;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uALHhFgy8i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uALHhFgy8i .dropdown-item:hover,
.cid-uALHhFgy8i .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-uALHhFgy8i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uALHhFgy8i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uALHhFgy8i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uALHhFgy8i .nav-link {
  position: relative;
}
.cid-uALHhFgy8i .container {
  display: flex;
  margin: auto;
}
.cid-uALHhFgy8i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown-menu,
.cid-uALHhFgy8i .navbar.opened {
  background: #232323 !important;
}
.cid-uALHhFgy8i .nav-item:focus,
.cid-uALHhFgy8i .nav-link:focus {
  outline: none;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uALHhFgy8i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uALHhFgy8i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-uALHhFgy8i .navbar.opened {
  transition: all 0.3s;
}
.cid-uALHhFgy8i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uALHhFgy8i .navbar .navbar-logo img {
  width: auto;
}
.cid-uALHhFgy8i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar.collapsed {
  justify-content: center;
}
.cid-uALHhFgy8i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uALHhFgy8i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uALHhFgy8i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uALHhFgy8i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uALHhFgy8i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uALHhFgy8i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uALHhFgy8i .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-uALHhFgy8i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uALHhFgy8i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uALHhFgy8i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uALHhFgy8i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uALHhFgy8i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uALHhFgy8i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uALHhFgy8i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uALHhFgy8i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uALHhFgy8i .dropdown-item.active,
.cid-uALHhFgy8i .dropdown-item:active {
  background-color: transparent;
}
.cid-uALHhFgy8i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uALHhFgy8i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uALHhFgy8i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uALHhFgy8i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uALHhFgy8i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uALHhFgy8i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar {
    height: 70px;
  }
  .cid-uALHhFgy8i .navbar.opened {
    height: auto;
  }
  .cid-uALHhFgy8i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uALNjqskmC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uALNjqskmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALNjqskmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALNjqskmC ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uALNjqskmC li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uALNjqskmC ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #097ae4;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uALNjqskmC H3 {
  color: #097ae4;
  text-align: center;
}
.cid-uALNj2eSXm {
  background-color: #ffffff;
}
.cid-uALNj2eSXm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALNj2eSXm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALNj2eSXm ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uALNj2eSXm li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uALNj2eSXm ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #097ae4;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uALNj2eSXm H3 {
  color: #097ae4;
  text-align: center;
}
.cid-uALOa7g5E3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uALOa7g5E3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALOa7g5E3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uALOa7g5E3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uALOa7g5E3 .row {
  flex-direction: row-reverse;
}
.cid-uALOa7g5E3 img {
  width: 100%;
}
.cid-uALHhN3FDD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALHhN3FDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALHhN3FDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALHhN3FDD .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALHhN3FDD .row {
    text-align: center;
  }
  .cid-uALHhN3FDD .row > div {
    margin: auto;
  }
  .cid-uALHhN3FDD .social-row {
    justify-content: center;
  }
}
.cid-uALHhN3FDD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALHhN3FDD .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 0rem;
  }
}
.cid-uALHhN3FDD .mbr-text {
  color: #ffffff;
}
.cid-uALHhN3FDD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALHhN3FDD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALHhN3FDD H5 {
  color: #097ae4;
}
.cid-uALHhFgy8i {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uALHhFgy8i nav.navbar {
  position: fixed;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uALHhFgy8i .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uALHhFgy8i .dropdown-item:hover,
.cid-uALHhFgy8i .dropdown-item:focus {
  background: #097ae4 !important;
  color: white !important;
}
.cid-uALHhFgy8i .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uALHhFgy8i .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uALHhFgy8i .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uALHhFgy8i .nav-link {
  position: relative;
}
.cid-uALHhFgy8i .container {
  display: flex;
  margin: auto;
}
.cid-uALHhFgy8i .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown-menu,
.cid-uALHhFgy8i .navbar.opened {
  background: #232323 !important;
}
.cid-uALHhFgy8i .nav-item:focus,
.cid-uALHhFgy8i .nav-link:focus {
  outline: none;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uALHhFgy8i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uALHhFgy8i .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uALHhFgy8i .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uALHhFgy8i .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-uALHhFgy8i .navbar.opened {
  transition: all 0.3s;
}
.cid-uALHhFgy8i .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uALHhFgy8i .navbar .navbar-logo img {
  width: auto;
}
.cid-uALHhFgy8i .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar.collapsed {
  justify-content: center;
}
.cid-uALHhFgy8i .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uALHhFgy8i .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uALHhFgy8i .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.8rem);
  }
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uALHhFgy8i .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uALHhFgy8i .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uALHhFgy8i .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uALHhFgy8i .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uALHhFgy8i .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-uALHhFgy8i .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uALHhFgy8i .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uALHhFgy8i .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uALHhFgy8i .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uALHhFgy8i .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uALHhFgy8i .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uALHhFgy8i .navbar.navbar-short {
  min-height: 60px;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uALHhFgy8i .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uALHhFgy8i .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uALHhFgy8i .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uALHhFgy8i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uALHhFgy8i .dropdown-item.active,
.cid-uALHhFgy8i .dropdown-item:active {
  background-color: transparent;
}
.cid-uALHhFgy8i .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uALHhFgy8i .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uALHhFgy8i .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uALHhFgy8i .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uALHhFgy8i ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uALHhFgy8i .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uALHhFgy8i button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uALHhFgy8i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uALHhFgy8i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uALHhFgy8i .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uALHhFgy8i a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uALHhFgy8i .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-uALHhFgy8i .navbar {
    height: 70px;
  }
  .cid-uALHhFgy8i .navbar.opened {
    height: auto;
  }
  .cid-uALHhFgy8i .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uALOA5iYRM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/17116-1000x667.jpg");
}
.cid-uALOA5iYRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALOA5iYRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALOA5iYRM .mbr-text,
.cid-uALOA5iYRM .mbr-section-btn {
  color: #232323;
}
.cid-uALOA5iYRM .card-title,
.cid-uALOA5iYRM .card-box {
  color: #ffffff;
}
.cid-uALOA5iYRM .mbr-text,
.cid-uALOA5iYRM .link-wrap {
  color: #ffffff;
}
.cid-uALOA5iYRM .card-box .mbr-text,
.cid-uALOA5iYRM .mbr-section-btn {
  color: #ffffff;
}
.cid-uALOybJKGv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALOybJKGv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALOybJKGv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALOybJKGv .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uALOybJKGv .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-uALOybJKGv .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALOybJKGv .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uALOybJKGv .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #097ae4;
}
.cid-uALOH0S7EJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uALOH0S7EJ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uALOH0S7EJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uALOH0S7EJ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uALOH0S7EJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uALOH0S7EJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uALHhN3FDD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uALHhN3FDD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uALHhN3FDD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uALHhN3FDD .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uALHhN3FDD .row {
    text-align: center;
  }
  .cid-uALHhN3FDD .row > div {
    margin: auto;
  }
  .cid-uALHhN3FDD .social-row {
    justify-content: center;
  }
}
.cid-uALHhN3FDD .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uALHhN3FDD .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uALHhN3FDD .list {
    margin-bottom: 0rem;
  }
}
.cid-uALHhN3FDD .mbr-text {
  color: #ffffff;
}
.cid-uALHhN3FDD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uALHhN3FDD .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-uALHhN3FDD div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-uALHhN3FDD H5 {
  color: #097ae4;
}
