body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((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.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #25d366 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1a9247;
  border-color: #1a9247;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1a9247 !important;
  border-color: #1a9247 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1a9247 !important;
  border-color: #1a9247 !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #25d366;
  border-color: #25d366;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #167c3c;
  color: #167c3c !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #25d366;
  border-color: #25d366;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #25d366 !important;
  border-color: #25d366 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #25d366 !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #167c3c !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #25d366;
  border-color: #25d366;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #25d366;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cef6dd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #25d366;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #25d366;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #25d366;
  border-bottom-color: #25d366;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #25d366 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !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%;
}
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='%2325d366' %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;
}
.cid-rgocLjQdti .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .nav-item:focus,
.cid-rgocLjQdti .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgocLjQdti .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgocLjQdti .nav-item .nav-link {
    position: relative;
  }
  .cid-rgocLjQdti .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgocLjQdti .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgocLjQdti .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgocLjQdti .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgocLjQdti .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #c1c1c1;
}
.cid-rgocLjQdti .navbar.opened {
  transition: all .3s;
  background: #c1c1c1 !important;
}
.cid-rgocLjQdti .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgocLjQdti .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgocLjQdti .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgocLjQdti .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgocLjQdti .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgocLjQdti .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgocLjQdti .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgocLjQdti .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgocLjQdti .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgocLjQdti .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgocLjQdti .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgocLjQdti .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgocLjQdti .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgocLjQdti .navbar.navbar-short {
  background: #c1c1c1 !important;
  min-height: 60px;
}
.cid-rgocLjQdti .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgocLjQdti .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgocLjQdti .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgocLjQdti .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgocLjQdti .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgocLjQdti .dropdown-item.active,
.cid-rgocLjQdti .dropdown-item:active {
  background-color: transparent;
}
.cid-rgocLjQdti .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgocLjQdti .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgocLjQdti .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgocLjQdti .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #c1c1c1;
}
.cid-rgocLjQdti .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgocLjQdti .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgocLjQdti ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgocLjQdti .navbar-buttons {
  text-align: center;
}
.cid-rgocLjQdti button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgocLjQdti .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgocLjQdti a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgocLjQdti .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgocLjQdti .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgocLjQdti .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgocLjQdti .navbar {
    height: 77px;
  }
  .cid-rgocLjQdti .navbar.opened {
    height: auto;
  }
  .cid-rgocLjQdti .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR6XrXjd1F {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR6XrXjd1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6XrXjd1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6XrXjd1F .container-fluid {
  padding: 0 10px;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .container-fluid {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .container {
    padding: 15px;
  }
}
.cid-uR6XrXjd1F .row {
  margin: 0 -5px;
}
.cid-uR6XrXjd1F .row .card {
  padding: 0 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .row .card {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.cid-uR6XrXjd1F .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .image-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uR6XrXjd1F .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .image-wrapper img {
    position: static;
    height: 350px;
  }
}
.cid-uR6XrXjd1F .card-wrapper {
  padding: 200px 80px 80px;
  background-color: #f6f3ec;
}
@media (max-width: 1440px) {
  .cid-uR6XrXjd1F .card-wrapper {
    padding: 200px 40px 80px;
  }
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .card-wrapper {
    padding: 30px;
  }
}
.cid-uR6XrXjd1F .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
  width: 80%;
  display: inline-block;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-uR6XrXjd1F .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .card-wrapper .card-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uR6XrXjd1F .card-wrapper .card-wrap .text-wrapper .mbr-text {
  width: 60%;
  display: inline-block;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uR6XrXjd1F .card-wrapper .card-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uR6XrXjd1F .card-wrapper .card-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-uR6XrXjd1F .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR6XrXjd1F .card-wrapper .number-wrapper {
  margin-top: 200px;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .card-wrapper .number-wrapper {
    margin-top: 30px;
  }
}
.cid-uR6XrXjd1F .card-wrapper .number-wrapper .number-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .card-wrapper .number-wrapper .number-wrap {
    display: block;
  }
}
.cid-uR6XrXjd1F .card-wrapper .number-wrapper .number-wrap .mbr-number {
  margin-bottom: 0;
  padding-right: 20px;
}
.cid-uR6XrXjd1F .card-wrapper .number-wrapper .number-wrap .mbr-desc {
  border-left: 1px solid #e0e0e0;
  padding: 10px 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uR6XrXjd1F .card-wrapper .number-wrapper .number-wrap .mbr-desc {
    padding: 0;
    border: none;
  }
}
.cid-uR6XrXjd1F .mbr-section-title {
  color: #000000;
}
.cid-uR6XrXjd1F .mbr-text,
.cid-uR6XrXjd1F .text-wrapper {
  color: #8a8a8a;
}
.cid-uR6XrXjd1F .mbr-number {
  color: #000000;
}
.cid-uR6XrXjd1F .mbr-desc {
  color: #000000;
}
.cid-uPqTLQ0xJf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  align-items: flex-end;
  background-color: #f4f4f4;
}
.cid-uPqTLQ0xJf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPqTLQ0xJf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPqTLQ0xJf .card {
  justify-content: flex-end;
}
.cid-uPqTLQ0xJf .content-wrapper {
  padding: 80px 0;
}
@media (max-width: 992px) {
  .cid-uPqTLQ0xJf .content-wrapper {
    margin-bottom: 10px;
    padding: 40px 0;
  }
}
.cid-uPqTLQ0xJf .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uPqTLQ0xJf .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uPqTLQ0xJf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPqTLQ0xJf .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPqTLQ0xJf .items-wrapper {
  height: 100%;
  min-height: 700px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uPqTLQ0xJf .items-wrapper {
    height: 350px;
    min-height: auto;
  }
}
.cid-uPqTLQ0xJf .items-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uPqTLQ0xJf .items-wrapper .image-wrapper img {
    width: 100%;
  }
}
.cid-uPqTLQ0xJf .items-wrapper .image-wrap img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 50%;
  object-fit: cover;
  z-index: 1;
  border-top: 1px solid #f4f4f4;
  border-right: 1px solid #f4f4f4;
}
.cid-uPqTLQ0xJf .mbr-section-title {
  color: #093388;
}
.cid-uPqTLQ0xJf .mbr-text {
  color: #58595b;
}
.cid-uPqTLQ0xJf .mbr-section-title,
.cid-uPqTLQ0xJf .mbr-section-btn {
  color: #000000;
}
.cid-uQlS3IqbWj {
  background-color: #efefef;
}
.cid-uQlS3IqbWj .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 767px) {
  .cid-uQlS3IqbWj .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content {
    display: block;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-wrapper {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-wrapper .item-img img {
  height: 800px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-wrapper .item-img img {
    height: 350px;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-content {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 0 250px 0 72px;
}
@media (max-width: 1440px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-content {
    padding: 0 190px 0 48px;
  }
}
@media (max-width: 1200px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-content {
    padding: 0 190px 0 32px;
  }
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-content {
    width: 100%;
    padding: 0;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-content .item-number {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__slide .slide-content .item-content .item-number {
    margin-bottom: 32px;
  }
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-content .item-title {
  margin-bottom: 32px;
}
.cid-uQlS3IqbWj .embla__slide .slide-content .item-content .item-text {
  margin-bottom: 22px;
}
.cid-uQlS3IqbWj .embla__button--next,
.cid-uQlS3IqbWj .embla__button--prev {
  display: flex;
}
.cid-uQlS3IqbWj .embla__button {
  top: 0;
  width: 86px;
  height: 86px;
  font-size: 28px;
  background-color: transparent !important;
  color: #baace7 !important;
  border: 1px solid #baace7 !important;
  border-radius: 100%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla__button {
    top: auto;
    bottom: 0;
  }
}
.cid-uQlS3IqbWj .embla__button:disabled {
  background-color: #191c25 !important;
  color: #f5f5fb !important;
  border: 1px solid #191c25 !important;
}
.cid-uQlS3IqbWj .embla__button:hover {
  background-color: #191c25 !important;
  color: #f5f5fb !important;
  border: 1px solid #191c25 !important;
}
.cid-uQlS3IqbWj .embla__button.embla__button--prev {
  right: 98px;
}
.cid-uQlS3IqbWj .embla__button.embla__button--next {
  right: 0;
}
.cid-uQlS3IqbWj .embla {
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uQlS3IqbWj .embla {
    padding-bottom: 6rem;
  }
}
.cid-uQlS3IqbWj .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uQlS3IqbWj .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uQlS3IqbWj .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uQlS3IqbWj .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uQlS3IqbWj .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uQlS3IqbWj .item-number {
  color: #191c25;
}
.cid-uQlS3IqbWj .item-title {
  color: #191c25;
}
.cid-uQlS3IqbWj .item-text {
  color: #191c25;
}
.cid-uQlSfoc8xN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1b1b1b;
}
.cid-uQlSfoc8xN .item:focus,
.cid-uQlSfoc8xN span:focus {
  outline: none;
}
.cid-uQlSfoc8xN .item {
  cursor: pointer;
}
.cid-uQlSfoc8xN .grid-container {
  grid-row-gap: 0;
}
.cid-uQlSfoc8xN .grid-container-1,
.cid-uQlSfoc8xN .grid-container-2,
.cid-uQlSfoc8xN .grid-container-3 {
  gap: 0;
}
.cid-uQlSfoc8xN .mbr-section-title {
  margin-bottom: 50px;
  color: #c2b299;
  text-align: center;
}
.cid-uQlSfoc8xN .content-head {
  max-width: 800px;
}
.cid-uQlSfoc8xN .container,
.cid-uQlSfoc8xN .container-fluid {
  overflow: hidden;
}
.cid-uQlSfoc8xN .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uQlSfoc8xN .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uQlSfoc8xN .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uQlSfoc8xN .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uQlSfoc8xN .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-uQlSfoc8xN .grid-container-1,
.cid-uQlSfoc8xN .grid-container-2,
.cid-uQlSfoc8xN .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uQlSfoc8xN .grid-container-1 {
  align-items: flex-end;
}
.cid-uQlSfoc8xN .grid-container-2 {
  align-items: flex-start;
}
.cid-rgmW2iklvu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rgmW2iklvu p {
  color: #767676;
}
.cid-rgmW2iklvu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgmW2iklvu .main {
  flex-direction: row-reverse;
}
.cid-rgmW2iklvu .row-element,
.cid-rgmW2iklvu .image-element {
  padding: 0;
}
.cid-rgmW2iklvu .image-element {
  display: flex;
  justify-content: center;
}
.cid-rgmW2iklvu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgmW2iklvu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgmW2iklvu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgmW2iklvu .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgmW2iklvu .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgmW2iklvu .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgmW2iklvu .underline .line {
    height: 2px;
  }
  .cid-rgmW2iklvu .mbr-title,
  .cid-rgmW2iklvu .underline,
  .cid-rgmW2iklvu .mbr-text,
  .cid-rgmW2iklvu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgmW2iklvu .mbr-text,
.cid-rgmW2iklvu .mbr-section-btn {
  text-align: left;
}
.cid-rgmW2iklvu .mbr-title,
.cid-rgmW2iklvu .underline {
  color: #ffffff;
  text-align: left;
}
.cid-rgmW0dYw40 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rgmW0dYw40 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgmW0dYw40 .row-element,
.cid-rgmW0dYw40 .image-element {
  padding: 0;
}
.cid-rgmW0dYw40 .image-element {
  display: flex;
  justify-content: center;
}
.cid-rgmW0dYw40 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgmW0dYw40 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgmW0dYw40 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgmW0dYw40 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgmW0dYw40 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgmW0dYw40 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgmW0dYw40 .underline .line {
    height: 2px;
  }
  .cid-rgmW0dYw40 .mbr-title,
  .cid-rgmW0dYw40 .underline,
  .cid-rgmW0dYw40 .mbr-text,
  .cid-rgmW0dYw40 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgmVZoH26g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffef00;
}
.cid-rgmVZoH26g p {
  color: #767676;
}
.cid-rgmVZoH26g .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgmVZoH26g .row-element,
.cid-rgmVZoH26g .image-element {
  padding: 0;
}
.cid-rgmVZoH26g .image-element {
  display: flex;
  justify-content: center;
}
.cid-rgmVZoH26g .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgmVZoH26g .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgmVZoH26g .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgmVZoH26g .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgmVZoH26g .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgmVZoH26g .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgmVZoH26g .underline .line {
    height: 2px;
  }
  .cid-rgmVZoH26g .mbr-title,
  .cid-rgmVZoH26g .underline,
  .cid-rgmVZoH26g .mbr-text,
  .cid-rgmVZoH26g .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-rgmVZoH26g .mbr-text,
.cid-rgmVZoH26g .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-rgpZyrzmqo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2d10a3;
}
.cid-rgpZyrzmqo .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgpZyrzmqo .main {
  flex-direction: row-reverse;
}
.cid-rgpZyrzmqo .row-element,
.cid-rgpZyrzmqo .image-element {
  padding: 0;
}
.cid-rgpZyrzmqo .image-element {
  display: flex;
  justify-content: center;
}
.cid-rgpZyrzmqo .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgpZyrzmqo .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgpZyrzmqo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgpZyrzmqo .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgpZyrzmqo .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgpZyrzmqo .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgpZyrzmqo .underline .line {
    height: 2px;
  }
  .cid-rgpZyrzmqo .mbr-title,
  .cid-rgpZyrzmqo .underline,
  .cid-rgpZyrzmqo .mbr-text,
  .cid-rgpZyrzmqo .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQqzMKND7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffef00;
}
.cid-uQqzMKND7q .mbr-section-subtitle {
  text-align: center;
  color: #000000;
}
.cid-uQqzMKND7q .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-uQqzMKND7q .wrapper {
  padding: 0rem;
}
.cid-uQqzMKND7q .icon-left {
  margin-right: 0.1rem;
}
.cid-uQqzMKND7q .icon-right {
  margin-left: 0.1rem;
}
.cid-uQqzMKND7q .card-wrapper {
  padding: 30px 15px;
  margin: 0 15px;
  width: auto;
  max-width: 100%;
}
.cid-uQqzMKND7q .card-title {
  font-weight: 700;
  padding: 10px 20px 10px;
  color: #4c4c4c;
  text-align: left;
  text-transform: uppercase;
}
.cid-uQqzMKND7q .card-subtitle {
  text-align: left;
}
.cid-uQqzMKND7q .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 12px 0 rgba(20, 20, 43, 0.05) !important;
  overflow: visible;
  padding: 44px 32px 52px;
  background-color: #ffffff;
}
.cid-uQqzMKND7q .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uQqzMKND7q .iconfont-wrapper .mbr-iconfont {
  color: #ff9417;
}
.cid-uQqzMKND7q .card-text {
  margin-bottom: 16px;
  text-align: left;
}
.cid-uQqzMKND7q .margin {
  margin-right: 14px;
}
.cid-uQqzMKND7q .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-uQqzMKND7q .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uQqzMKND7q .people {
  align-items: center;
}
.cid-uQqzMKND7q .item-wrapper {
  width: 100%;
}
.cid-uQqzMKND7q .mbr-section-title {
  text-align: center;
  margin-bottom: 16px;
  color: #14142b;
}
.cid-uQqzMKND7q img {
  border-radius: 10%;
  height: 128px;
  width: 128px;
  margin: 0;
}
.cid-uQqzMKND7q .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uQqzMKND7q .card-text,
.cid-uQqzMKND7q .iconfont-wrapper {
  color: #8c8c95;
}
.cid-uQqzMKND7q .card-subtitle,
.cid-uQqzMKND7q .card-subtitle2 {
  display: inline;
}
.cid-uQqzMKND7q .card-subtitle2 {
  color: #8c8c95;
}
@media (max-width: 576px) {
  .cid-uQqzMKND7q .col-12.col-sm-6:first-child {
    padding-bottom: 20px;
  }
}
@media (max-width: 860px) {
  .cid-uQqzMKND7q .row.people {
    flex-direction: column;
    align-items: initial;
  }
  .cid-uQqzMKND7q img {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uQqzMKND7q .shadow {
    padding-top: 40px;
    padding-bottom: 43px;
  }
}
@media (max-width: 479px) {
  .cid-uQqzMKND7q .shadow {
    padding: 33px 25px 36px;
  }
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-rgocLjQdti .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .nav-item:focus,
.cid-rgocLjQdti .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgocLjQdti .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgocLjQdti .nav-item .nav-link {
    position: relative;
  }
  .cid-rgocLjQdti .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgocLjQdti .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgocLjQdti .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgocLjQdti .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgocLjQdti .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgocLjQdti .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgocLjQdti .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-rgocLjQdti .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-rgocLjQdti .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgocLjQdti .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgocLjQdti .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgocLjQdti .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgocLjQdti .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgocLjQdti .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgocLjQdti .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgocLjQdti .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgocLjQdti .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgocLjQdti .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgocLjQdti .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgocLjQdti .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgocLjQdti .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgocLjQdti .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgocLjQdti .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgocLjQdti .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-rgocLjQdti .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgocLjQdti .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgocLjQdti .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgocLjQdti .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgocLjQdti .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgocLjQdti .dropdown-item.active,
.cid-rgocLjQdti .dropdown-item:active {
  background-color: transparent;
}
.cid-rgocLjQdti .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgocLjQdti .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgocLjQdti .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgocLjQdti .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-rgocLjQdti .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgocLjQdti .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgocLjQdti ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgocLjQdti .navbar-buttons {
  text-align: center;
}
.cid-rgocLjQdti button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgocLjQdti button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgocLjQdti nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgocLjQdti .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgocLjQdti a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgocLjQdti .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgocLjQdti .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgocLjQdti .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgocLjQdti .navbar {
    height: 77px;
  }
  .cid-rgocLjQdti .navbar.opened {
    height: auto;
  }
  .cid-rgocLjQdti .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgqWuMSrMq {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-1920x923.jpg");
}
.cid-rgqWuMSrMq .container-fluid {
  padding: 0 3rem;
}
.cid-rgqWuMSrMq .media-container-column {
  padding: 0 2rem;
}
.cid-rgqWuMSrMq .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgqWuMSrMq .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uR6U7nVy3f {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uR6U7nVy3f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6U7nVy3f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6U7nVy3f .row {
  margin: 0 !important;
  row-gap: 40px;
}
.cid-uR6U7nVy3f .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
}
.cid-uR6U7nVy3f .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uR6U7nVy3f .item-img {
    width: 100%;
  }
}
.cid-uR6U7nVy3f .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uR6U7nVy3f .item-content {
    padding-left: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uR6U7nVy3f .item-content {
    padding-left: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uR6U7nVy3f .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uR6U7nVy3f .card-title {
  color: #131313;
}
.cid-uR6U7nVy3f .card-text {
  margin-top: 25px;
  color: #131313;
}
@media (max-width: 991px) {
  .cid-uR6U7nVy3f .card-text {
    margin-top: 20px;
  }
}
.cid-uR6U7nVy3f .mbr-section-btn {
  margin-top: 34px;
}
@media (max-width: 991px) {
  .cid-uR6U7nVy3f .mbr-section-btn {
    margin-top: 14px;
  }
}
@media (max-width: 767px) {
  .cid-uR6U7nVy3f .mbr-section-btn {
    margin-top: 4px;
  }
}
.cid-uR6WoA2yzp {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #fed1c3;
}
.cid-uR6WoA2yzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6WoA2yzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6WoA2yzp img {
  object-fit: cover;
  width: 300px;
  margin: 0 auto;
  height: 300px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .cid-uR6WoA2yzp img {
    width: 200px;
    height: 200px;
  }
}
.cid-uR6WoA2yzp a {
  text-decoration: underline;
  font-weight: bold;
}
.cid-uQYtSHxGB8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #f4f4f6;
}
.cid-uQYtSHxGB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQYtSHxGB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQYtSHxGB8 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uQYtSHxGB8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQYtSHxGB8 .container {
    padding: 0 24px;
  }
}
.cid-uQYtSHxGB8 .row {
  justify-content: center;
}
.cid-uQYtSHxGB8 .content-wrapper .desc-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uQYtSHxGB8 .content-wrapper .desc-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uQYtSHxGB8 .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 16px;
  background-color: #ffffff;
  border-radius: .75rem;
}
.cid-uQYtSHxGB8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uQYtSHxGB8 .mbr-section-title {
  color: #141414;
}
.cid-uQYtSHxGB8 .mbr-text {
  color: #141414;
}
.cid-uQYGbmc1r7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uQYGbmc1r7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQYGbmc1r7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQYGbmc1r7 .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uQYGbmc1r7 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uQYGbmc1r7 .content-wrapper .mbr-desc {
  margin-bottom: 8px;
}
.cid-uQYGbmc1r7 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uQYGbmc1r7 .content-wrapper .mbr-section-title span {
  background: linear-gradient(170deg, #f96e47, #fb9578);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uQYGbmc1r7 .items-wrapper {
  justify-content: center;
  margin: 0 -8px;
}
.cid-uQYGbmc1r7 .item {
  padding: 0 8px;
  margin-bottom: 16px;
}
.cid-uQYGbmc1r7 .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uQYGbmc1r7 .item .item-wrapper {
    padding: 20px 16px;
  }
}
.cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap {
    display: block;
    margin-bottom: 24px;
  }
}
.cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap .item-title {
  margin-bottom: 0;
  padding-right: 8px;
}
@media (max-width: 992px) {
  .cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap .item-title {
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-uQYGbmc1r7 .item .item-wrapper .card-box .title-wrap .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 56px;
  background: linear-gradient(230deg, #ffef00, #fff999);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.cid-uQYGbmc1r7 .item .item-wrapper .item-text {
  margin-bottom: 0;
}
.cid-uQYGbmc1r7 .item .card_1 {
  background: linear-gradient(315deg, #2d10a3, #542eeb);
}
.cid-uQYGbmc1r7 .item .card_2 {
  background: linear-gradient(315deg, #000000, #333333);
}
.cid-uQYGbmc1r7 .item .card_3 {
  background: linear-gradient(315deg, #b9111a, #ee424c);
}
.cid-uQYGbmc1r7 .btn-wrapper {
  margin-top: -6%;
}
.cid-uQYGbmc1r7 .mbr-desc {
  color: #272b2e;
  text-align: center;
}
.cid-uQYGbmc1r7 .mbr-section-title {
  color: #272b2e;
  text-align: center;
}
.cid-uQYGbmc1r7 .item-title {
  color: #ffffff;
}
.cid-uQYGbmc1r7 .item-text {
  color: #ffffff;
}
.cid-rgrfoePlYt {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/tire-brands-american-889x467.png");
}
.cid-rgrfoePlYt .container-fluid {
  padding: 0 3rem;
}
.cid-rgrfoePlYt .media-container-column {
  padding: 0 2rem;
}
.cid-rgrfoePlYt .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgrfoePlYt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgreAgkC3W {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffa0a4;
  background: linear-gradient(90deg, #ffa0a4, #ffef00);
}
.cid-rgreAgkC3W .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-rgr0lykSM4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0lykSM4 .nav-item:focus,
.cid-rgr0lykSM4 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgr0lykSM4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgr0lykSM4 .nav-item .nav-link {
    position: relative;
  }
  .cid-rgr0lykSM4 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgr0lykSM4 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgr0lykSM4 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgr0lykSM4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0lykSM4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgr0lykSM4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgr0lykSM4 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-rgr0lykSM4 .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-rgr0lykSM4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgr0lykSM4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgr0lykSM4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgr0lykSM4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgr0lykSM4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgr0lykSM4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgr0lykSM4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgr0lykSM4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgr0lykSM4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgr0lykSM4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgr0lykSM4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgr0lykSM4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgr0lykSM4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgr0lykSM4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgr0lykSM4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgr0lykSM4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgr0lykSM4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgr0lykSM4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgr0lykSM4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgr0lykSM4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgr0lykSM4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgr0lykSM4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgr0lykSM4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgr0lykSM4 .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-rgr0lykSM4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgr0lykSM4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgr0lykSM4 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgr0lykSM4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgr0lykSM4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgr0lykSM4 .dropdown-item.active,
.cid-rgr0lykSM4 .dropdown-item:active {
  background-color: transparent;
}
.cid-rgr0lykSM4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgr0lykSM4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgr0lykSM4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgr0lykSM4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-rgr0lykSM4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgr0lykSM4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgr0lykSM4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgr0lykSM4 .navbar-buttons {
  text-align: center;
}
.cid-rgr0lykSM4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgr0lykSM4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgr0lykSM4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgr0lykSM4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr0lykSM4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr0lykSM4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgr0lykSM4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr0lykSM4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgr0lykSM4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgr0lykSM4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr0lykSM4 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgr0lykSM4 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgr0lykSM4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgr0lykSM4 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgr0lykSM4 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgr0lykSM4 .navbar {
    height: 77px;
  }
  .cid-rgr0lykSM4 .navbar.opened {
    height: auto;
  }
  .cid-rgr0lykSM4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgr0lvpoZt {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/whatsapp-image-2019-01-29-at-05.33.39-1600x900.jpg");
}
.cid-rgr0lvpoZt .container-fluid {
  padding: 0 3rem;
}
.cid-rgr0lvpoZt .media-container-column {
  padding: 0 2rem;
}
.cid-rgr0lvpoZt .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgr0lvpoZt .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgwSBCwjHh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgwSBCwjHh .container-fluid {
  padding: 0 3rem;
}
.cid-rgwSBCwjHh .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
.cid-rgwSBCwjHh .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-rgwSBCwjHh .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-rgwSBCwjHh .card .card-wrapper {
  height: 1%;
}
.cid-rgwSBCwjHh .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-rgwSBCwjHh .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-rgwSBCwjHh .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fe525b;
}
.cid-rgwSBCwjHh .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-rgwSBCwjHh .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-rgwSBCwjHh .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgr0lw5B1e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2d10a3;
}
.cid-rgr0lw5B1e .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rgr0lw5B1e .row-element,
.cid-rgr0lw5B1e .image-element {
  padding: 0;
}
.cid-rgr0lw5B1e .image-element {
  display: flex;
  justify-content: center;
}
.cid-rgr0lw5B1e .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgr0lw5B1e .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgr0lw5B1e .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgr0lw5B1e .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rgr0lw5B1e .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rgr0lw5B1e .text-content {
    padding: 2rem 1rem;
  }
  .cid-rgr0lw5B1e .underline .line {
    height: 2px;
  }
  .cid-rgr0lw5B1e .mbr-title,
  .cid-rgr0lw5B1e .underline,
  .cid-rgr0lw5B1e .mbr-text,
  .cid-rgr0lw5B1e .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uR5rjdIZib {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1-1.jpg");
}
.cid-uR5rjdIZib img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-uR5rjdIZib img:hover {
  transform: scale(1.1);
}
.cid-uR5rjdIZib .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-uR5rjdIZib h2 {
  padding: 0;
  margin: 0;
}
.cid-uR5rjdIZib .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uR5rjdIZib .text-col {
  max-width: 650px;
  margin: auto;
  padding: 0rem 0rem;
}
.cid-uR5rjdIZib .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-uR5rjdIZib .mbr-section-btn .btn {
  margin: 0rem !important;
  min-width: 400px;
}
.cid-uR5rjdIZib .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-uR5rjdIZib .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uR5rjdIZib .btn {
    min-width: 200px !important;
    padding: 0.6rem 0.8rem !important;
  }
  .cid-uR5rjdIZib .text-col {
    padding: 2rem 1rem;
  }
}
.cid-uR5rjdIZib H2 {
  color: #333333;
}
.cid-uR5rjdIZib .mbr-text {
  color: #000000;
}
.cid-uR5rjdIZib .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5rjdIZib .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-rgr0Ts6upd .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0Ts6upd .nav-item:focus,
.cid-rgr0Ts6upd .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgr0Ts6upd .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgr0Ts6upd .nav-item .nav-link {
    position: relative;
  }
  .cid-rgr0Ts6upd .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgr0Ts6upd .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgr0Ts6upd .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgr0Ts6upd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr0Ts6upd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgr0Ts6upd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgr0Ts6upd .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-rgr0Ts6upd .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-rgr0Ts6upd .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgr0Ts6upd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgr0Ts6upd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgr0Ts6upd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgr0Ts6upd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgr0Ts6upd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgr0Ts6upd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgr0Ts6upd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgr0Ts6upd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgr0Ts6upd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgr0Ts6upd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgr0Ts6upd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgr0Ts6upd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgr0Ts6upd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgr0Ts6upd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgr0Ts6upd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgr0Ts6upd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgr0Ts6upd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgr0Ts6upd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgr0Ts6upd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgr0Ts6upd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgr0Ts6upd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgr0Ts6upd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgr0Ts6upd .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-rgr0Ts6upd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgr0Ts6upd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgr0Ts6upd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgr0Ts6upd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgr0Ts6upd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgr0Ts6upd .dropdown-item.active,
.cid-rgr0Ts6upd .dropdown-item:active {
  background-color: transparent;
}
.cid-rgr0Ts6upd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgr0Ts6upd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgr0Ts6upd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgr0Ts6upd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-rgr0Ts6upd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgr0Ts6upd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgr0Ts6upd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgr0Ts6upd .navbar-buttons {
  text-align: center;
}
.cid-rgr0Ts6upd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgr0Ts6upd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgr0Ts6upd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgr0Ts6upd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr0Ts6upd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr0Ts6upd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgr0Ts6upd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr0Ts6upd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgr0Ts6upd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgr0Ts6upd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr0Ts6upd .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgr0Ts6upd a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgr0Ts6upd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgr0Ts6upd .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgr0Ts6upd .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgr0Ts6upd .navbar {
    height: 77px;
  }
  .cid-rgr0Ts6upd .navbar.opened {
    height: auto;
  }
  .cid-rgr0Ts6upd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgr0ToJed7 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/wheel-balancing-decatur-1200x800.jpg");
}
.cid-rgr0ToJed7 .container-fluid {
  padding: 0 3rem;
}
.cid-rgr0ToJed7 .media-container-column {
  padding: 0 2rem;
}
.cid-rgr0ToJed7 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-rgr0ToJed7 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rgxGWx9TOp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgxGWx9TOp .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-rgxGWx9TOp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgxGWx9TOp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
.cid-rgxGWx9TOp .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rgxGWx9TOp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgxGWx9TOp .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #bbbbbb;
}
.cid-rgxGWx9TOp .card-overlay {
  display: none;
}
.cid-rgxGWx9TOp .mbr-section-title,
.cid-rgxGWx9TOp .underline,
.cid-rgxGWx9TOp .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-rgxGWx9TOp .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgxGWx9TOp .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgxGWx9TOp .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgxGWx9TOp .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rgxGWx9TOp .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgxGWx9TOp .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgxGWx9TOp .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgxGWx9TOp .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgxGWx9TOp .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rgxGWx9TOp .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rgxGWx9TOp .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rgxGWx9TOp .underline .line {
    height: 2px;
  }
  .cid-rgxGWx9TOp .card-title,
  .cid-rgxGWx9TOp .underline,
  .cid-rgxGWx9TOp .mbr-text,
  .cid-rgxGWx9TOp .mbr-section-btn,
  .cid-rgxGWx9TOp .mbr-section-subtitle,
  .cid-rgxGWx9TOp .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-rgxGWx9TOp .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-rgxGWx9TOp .mbr-section-title,
  .cid-rgxGWx9TOp .underline,
  .cid-rgxGWx9TOp .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-rgCQF6i9zL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgCQF6i9zL .mbr-section-subtitle {
  color: #767676;
}
.cid-rgCQF6i9zL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgCQF6i9zL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #fe525b);
  display: inline-block;
}
.cid-rgCQF6i9zL .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-rgCQF6i9zL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rgCQF6i9zL .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #bbbbbb;
}
.cid-rgCQF6i9zL .card-overlay {
  display: none;
}
.cid-rgCQF6i9zL .mbr-section-title,
.cid-rgCQF6i9zL .underline,
.cid-rgCQF6i9zL .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-rgCQF6i9zL .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgCQF6i9zL .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgCQF6i9zL .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-rgCQF6i9zL .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-rgCQF6i9zL .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgCQF6i9zL .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgCQF6i9zL .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgCQF6i9zL .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-rgCQF6i9zL .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-rgCQF6i9zL .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-rgCQF6i9zL .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-rgCQF6i9zL .underline .line {
    height: 2px;
  }
  .cid-rgCQF6i9zL .card-title,
  .cid-rgCQF6i9zL .underline,
  .cid-rgCQF6i9zL .mbr-text,
  .cid-rgCQF6i9zL .mbr-section-btn,
  .cid-rgCQF6i9zL .mbr-section-subtitle,
  .cid-rgCQF6i9zL .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-rgCQF6i9zL .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-rgCQF6i9zL .mbr-section-title,
  .cid-rgCQF6i9zL .underline,
  .cid-rgCQF6i9zL .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-uR5yqfslxF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-uR5yqfslxF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR5yqfslxF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR5yqfslxF .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uR5yqfslxF .items-wrapper .item {
  margin-bottom: 4px;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item {
    margin-bottom: 2px;
  }
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper {
  height: 100%;
  display: flex;
  background-color: #ffffff;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card-box {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card-box {
    padding: 20px;
    width: 100%;
  }
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 14px;
  transition: all .3s ease;
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item .item-wrapper .item-img {
    padding: 0 20px 20px;
    width: 100%;
  }
}
.cid-uR5yqfslxF .items-wrapper .item .item-wrapper .item-img img {
  height: 400px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-uR5yqfslxF .items-wrapper .item .item-wrapper .card_2 {
    padding: 20px 20px 0;
  }
}
.cid-uR5yqfslxF .mbr-section-title {
  color: #0f0f0f;
}
.cid-uR5yqfslxF .card-title {
  color: #0f0f0f;
}
.cid-uR5yqfslxF .card-text {
  color: #666666;
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-rgr1RZqZaT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr1RZqZaT .nav-item:focus,
.cid-rgr1RZqZaT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgr1RZqZaT .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgr1RZqZaT .nav-item .nav-link {
    position: relative;
  }
  .cid-rgr1RZqZaT .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgr1RZqZaT .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgr1RZqZaT .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgr1RZqZaT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgr1RZqZaT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgr1RZqZaT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgr1RZqZaT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-rgr1RZqZaT .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-rgr1RZqZaT .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgr1RZqZaT .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgr1RZqZaT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgr1RZqZaT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgr1RZqZaT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgr1RZqZaT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgr1RZqZaT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgr1RZqZaT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgr1RZqZaT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgr1RZqZaT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgr1RZqZaT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgr1RZqZaT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgr1RZqZaT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgr1RZqZaT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgr1RZqZaT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgr1RZqZaT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgr1RZqZaT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgr1RZqZaT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgr1RZqZaT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgr1RZqZaT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgr1RZqZaT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgr1RZqZaT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgr1RZqZaT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgr1RZqZaT .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-rgr1RZqZaT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgr1RZqZaT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgr1RZqZaT .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgr1RZqZaT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgr1RZqZaT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgr1RZqZaT .dropdown-item.active,
.cid-rgr1RZqZaT .dropdown-item:active {
  background-color: transparent;
}
.cid-rgr1RZqZaT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgr1RZqZaT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgr1RZqZaT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgr1RZqZaT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-rgr1RZqZaT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgr1RZqZaT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgr1RZqZaT ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgr1RZqZaT .navbar-buttons {
  text-align: center;
}
.cid-rgr1RZqZaT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgr1RZqZaT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgr1RZqZaT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgr1RZqZaT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr1RZqZaT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgr1RZqZaT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgr1RZqZaT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr1RZqZaT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgr1RZqZaT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgr1RZqZaT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgr1RZqZaT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgr1RZqZaT a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgr1RZqZaT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgr1RZqZaT .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgr1RZqZaT .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgr1RZqZaT .navbar {
    height: 77px;
  }
  .cid-rgr1RZqZaT .navbar.opened {
    height: auto;
  }
  .cid-rgr1RZqZaT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgDbdNNMf5 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rgDbdNNMf5 .container-fluid {
  padding: 0 3rem;
}
.cid-rgDbdNNMf5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #25d366 50%, #fe525b 120%);
  display: inline-block;
}
.cid-rgDbdNNMf5 .mbr-section-title {
  color: #000000;
}
.cid-rgDbdNNMf5 .mbr-section-subtitle {
  color: #000000;
}
.cid-rgDbdNNMf5 .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-rgDbdNNMf5 .header-text {
  padding: 2rem 1rem !important;
}
.cid-rgDbdNNMf5 .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-rgDbdNNMf5 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-rgDbdNNMf5 .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-left: 2rem;
}
.cid-rgDbdNNMf5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rgDbdNNMf5 .card .card-header a.panel-title:hover .sign {
  background-color: #a38dfd !important;
}
.cid-rgDbdNNMf5 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #ffa0a4;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-rgDbdNNMf5 .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-rgDbdNNMf5 .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-rgDbdNNMf5 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-rgDbdNNMf5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rgDbdNNMf5 .header-text {
    padding: 1rem !important;
  }
  .cid-rgDbdNNMf5 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-rgDbdNNMf5 .panel-body {
    width: calc(100% - 48px);
  }
  .cid-rgDbdNNMf5 .panel-group {
    padding: 0;
  }
}
.cid-uR5Q8tLIcs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR5Q8tLIcs .item-img {
  position: relative;
}
.cid-uR5Q8tLIcs .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uR5Q8tLIcs .cardbg {
  background: #0046c7;
  height: 100%;
  min-height: 160px;
}
.cid-uR5Q8tLIcs .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uR5Q8tLIcs .image-wrapper {
  overflow: hidden;
}
.cid-uR5Q8tLIcs .item1 {
  margin-bottom: 2rem !important;
}
.cid-uR5Q8tLIcs .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uR5Q8tLIcs .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uR5Q8tLIcs .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uR5Q8tLIcs .item1,
.cid-uR5Q8tLIcs .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uR5Q8tLIcs .item1 .item:hover,
.cid-uR5Q8tLIcs .item .item:hover {
  cursor: pointer;
}
.cid-uR5Q8tLIcs .item1:hover .link-icon-wrapper span,
.cid-uR5Q8tLIcs .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uR5Q8tLIcs .card2 {
    margin-top: 1rem;
  }
}
.cid-uR5Q8tLIcs .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uR5Q8tLIcs .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uR5Q8tLIcs .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uR5Q8tLIcs .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uR5Q8tLIcs img,
.cid-uR5Q8tLIcs .item-img {
  width: 100%;
}
.cid-uR5Q8tLIcs .item:focus,
.cid-uR5Q8tLIcs span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uR5Q8tLIcs .item {
    margin-bottom: 1rem;
  }
}
.cid-uR5Q8tLIcs .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5Q8tLIcs .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uR5Q8tLIcs .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uR5Q8tLIcs .mbr-section-subtitle,
.cid-uR5Q8tLIcs .subtitle-wrap,
.cid-uR5Q8tLIcs .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uR5Q8tLIcs .mbr-text,
.cid-uR5Q8tLIcs .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-rgDaJ04eQz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgDaJ04eQz .nav-item:focus,
.cid-rgDaJ04eQz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgDaJ04eQz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgDaJ04eQz .nav-item .nav-link {
    position: relative;
  }
  .cid-rgDaJ04eQz .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgDaJ04eQz .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgDaJ04eQz .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgDaJ04eQz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgDaJ04eQz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgDaJ04eQz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgDaJ04eQz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-rgDaJ04eQz .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-rgDaJ04eQz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgDaJ04eQz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgDaJ04eQz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgDaJ04eQz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgDaJ04eQz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgDaJ04eQz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgDaJ04eQz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgDaJ04eQz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rgDaJ04eQz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgDaJ04eQz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgDaJ04eQz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgDaJ04eQz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgDaJ04eQz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgDaJ04eQz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgDaJ04eQz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgDaJ04eQz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgDaJ04eQz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rgDaJ04eQz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgDaJ04eQz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgDaJ04eQz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgDaJ04eQz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgDaJ04eQz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rgDaJ04eQz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgDaJ04eQz .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-rgDaJ04eQz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgDaJ04eQz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgDaJ04eQz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgDaJ04eQz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgDaJ04eQz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgDaJ04eQz .dropdown-item.active,
.cid-rgDaJ04eQz .dropdown-item:active {
  background-color: transparent;
}
.cid-rgDaJ04eQz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgDaJ04eQz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgDaJ04eQz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgDaJ04eQz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-rgDaJ04eQz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgDaJ04eQz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgDaJ04eQz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rgDaJ04eQz .navbar-buttons {
  text-align: center;
}
.cid-rgDaJ04eQz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rgDaJ04eQz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rgDaJ04eQz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgDaJ04eQz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgDaJ04eQz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgDaJ04eQz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgDaJ04eQz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgDaJ04eQz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgDaJ04eQz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgDaJ04eQz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgDaJ04eQz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgDaJ04eQz a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rgDaJ04eQz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgDaJ04eQz .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgDaJ04eQz .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgDaJ04eQz .navbar {
    height: 77px;
  }
  .cid-rgDaJ04eQz .navbar.opened {
    height: auto;
  }
  .cid-rgDaJ04eQz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5IqcZNLC {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/flat-tire-repair-decatur-1200x800.jpg");
}
.cid-uR5IqcZNLC .container-fluid {
  padding: 0 3rem;
}
.cid-uR5IqcZNLC .media-container-column {
  padding: 0 2rem;
}
.cid-uR5IqcZNLC .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uR5IqcZNLC .container-fluid {
    padding: 0 1rem;
  }
}
.cid-uR5K82GQUU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-uR5K82GQUU .google-map {
  height: 25rem;
  position: relative;
}
.cid-uR5K82GQUU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uR5K82GQUU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-uR5K82GQUU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uR5K82GQUU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uR5K82GQUU .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-uR5K82GQUU .wrapper .row {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
}
.cid-uR5K82GQUU .wrapper .row .btn {
  border-radius: 30px;
  padding: 0.8rem 3rem !important;
}
.cid-uR5K82GQUU .wrapper .row .title {
  color: #25d366;
}
.cid-uR5K82GQUU .wrapper .form-container {
  padding: 3rem;
  border-radius: 40px;
  border-collapse: separate;
  -webkit-perspective: 1px;
  perspective: 1px;
  overflow: hidden;
}
.cid-uR5K82GQUU .content-panel {
  padding: 3rem;
  background: linear-gradient(45deg, #fc643f, #133996);
  height: 100%;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  overflow: hidden;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cid-uR5K82GQUU .mbr-text {
  color: #efefef;
}
.cid-uR5K82GQUU .form-control {
  border-radius: 10px !important;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-uR5K82GQUU textarea.form-control {
  min-height: 170px;
}
.cid-uR5K82GQUU .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.cid-uR5K82GQUU .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-uR5K82GQUU .social-list .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
  border-style: dotted;
}
.cid-uR5K82GQUU .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-uR5K82GQUU .social-list a {
  margin: 0;
  opacity: 0.7;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uR5K82GQUU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uR5K82GQUU .container {
    max-width: 80% !important;
  }
  .cid-uR5K82GQUU .wrapper {
    margin-top: 0;
    border-radius: 40px;
  }
  .cid-uR5K82GQUU .wrapper .main-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-uR5K82GQUU .wrapper .main-row .text-block .content-panel {
    border-radius: 0 0 30px 30px !important;
  }
  .cid-uR5K82GQUU .wrapper .main-row .text-block .content-panel .social-list {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-uR5K82GQUU .form-container {
    border-radius: 30px 30px 0 0 !important;
  }
}
.cid-uQr68lh4rC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uQr68lh4rC .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uQr68lh4rC .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uQr68lh4rC .mbr-section-title span {
  display: block;
}
.cid-uQr68lh4rC .first-column,
.cid-uQr68lh4rC .second-column {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .first-column ul,
.cid-uQr68lh4rC .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .first-column ul li,
.cid-uQr68lh4rC .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uQr68lh4rC .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uQr68lh4rC .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uQr68lh4rC .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uQr68lh4rC .card-support {
    text-align: center;
  }
}
.cid-uQr68lh4rC .mbr-section-title,
.cid-uQr68lh4rC .card-support {
  color: #ffffff;
}
.cid-uR5U1bUGq8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR5U1bUGq8 .nav-item:focus,
.cid-uR5U1bUGq8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uR5U1bUGq8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uR5U1bUGq8 .nav-item .nav-link {
    position: relative;
  }
  .cid-uR5U1bUGq8 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uR5U1bUGq8 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uR5U1bUGq8 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uR5U1bUGq8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR5U1bUGq8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR5U1bUGq8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR5U1bUGq8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-uR5U1bUGq8 .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-uR5U1bUGq8 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uR5U1bUGq8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR5U1bUGq8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR5U1bUGq8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR5U1bUGq8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uR5U1bUGq8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR5U1bUGq8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR5U1bUGq8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uR5U1bUGq8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR5U1bUGq8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uR5U1bUGq8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uR5U1bUGq8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR5U1bUGq8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR5U1bUGq8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uR5U1bUGq8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR5U1bUGq8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR5U1bUGq8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uR5U1bUGq8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uR5U1bUGq8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR5U1bUGq8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR5U1bUGq8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uR5U1bUGq8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR5U1bUGq8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uR5U1bUGq8 .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-uR5U1bUGq8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uR5U1bUGq8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uR5U1bUGq8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uR5U1bUGq8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR5U1bUGq8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR5U1bUGq8 .dropdown-item.active,
.cid-uR5U1bUGq8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uR5U1bUGq8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR5U1bUGq8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR5U1bUGq8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR5U1bUGq8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uR5U1bUGq8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR5U1bUGq8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR5U1bUGq8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR5U1bUGq8 .navbar-buttons {
  text-align: center;
}
.cid-uR5U1bUGq8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uR5U1bUGq8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uR5U1bUGq8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uR5U1bUGq8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uR5U1bUGq8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uR5U1bUGq8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uR5U1bUGq8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uR5U1bUGq8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uR5U1bUGq8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uR5U1bUGq8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uR5U1bUGq8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uR5U1bUGq8 a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uR5U1bUGq8 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uR5U1bUGq8 .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uR5U1bUGq8 .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR5U1bUGq8 .navbar {
    height: 77px;
  }
  .cid-uR5U1bUGq8 .navbar.opened {
    height: auto;
  }
  .cid-uR5U1bUGq8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR5V5rbxVd {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR5V5rbxVd .row {
    text-align: center;
  }
}
.cid-uR5V5rbxVd .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR5V5rbxVd .paragraph {
  margin-bottom: 2rem;
}
.cid-uR6vJVVgFI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR6vJVVgFI .row {
    text-align: center;
  }
}
.cid-uR6vJVVgFI .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR6vJVVgFI .paragraph {
  margin-bottom: 2rem;
}
.cid-uR6xG2Jd4f {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR6xG2Jd4f .row {
    text-align: center;
  }
}
.cid-uR6xG2Jd4f .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR6xG2Jd4f .paragraph {
  margin-bottom: 2rem;
}
.cid-uR5U1vc6EG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR5U1vc6EG .item-img {
  position: relative;
}
.cid-uR5U1vc6EG .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uR5U1vc6EG .cardbg {
  background: #0046c7;
  height: 100%;
  min-height: 160px;
}
.cid-uR5U1vc6EG .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uR5U1vc6EG .image-wrapper {
  overflow: hidden;
}
.cid-uR5U1vc6EG .item1 {
  margin-bottom: 2rem !important;
}
.cid-uR5U1vc6EG .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uR5U1vc6EG .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uR5U1vc6EG .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uR5U1vc6EG .item1,
.cid-uR5U1vc6EG .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uR5U1vc6EG .item1 .item:hover,
.cid-uR5U1vc6EG .item .item:hover {
  cursor: pointer;
}
.cid-uR5U1vc6EG .item1:hover .link-icon-wrapper span,
.cid-uR5U1vc6EG .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uR5U1vc6EG .card2 {
    margin-top: 1rem;
  }
}
.cid-uR5U1vc6EG .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uR5U1vc6EG .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uR5U1vc6EG .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uR5U1vc6EG .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uR5U1vc6EG .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uR5U1vc6EG .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uR5U1vc6EG .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uR5U1vc6EG .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uR5U1vc6EG .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uR5U1vc6EG img,
.cid-uR5U1vc6EG .item-img {
  width: 100%;
}
.cid-uR5U1vc6EG .item:focus,
.cid-uR5U1vc6EG span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uR5U1vc6EG .item {
    margin-bottom: 1rem;
  }
}
.cid-uR5U1vc6EG .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR5U1vc6EG .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uR5U1vc6EG .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uR5U1vc6EG .mbr-section-subtitle,
.cid-uR5U1vc6EG .subtitle-wrap,
.cid-uR5U1vc6EG .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uR5U1vc6EG .mbr-text,
.cid-uR5U1vc6EG .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR5U1z2peR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uR5U1z2peR .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uR5U1z2peR .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uR5U1z2peR .mbr-section-title span {
  display: block;
}
.cid-uR5U1z2peR .first-column,
.cid-uR5U1z2peR .second-column {
  margin-bottom: 1rem;
}
.cid-uR5U1z2peR .first-column ul,
.cid-uR5U1z2peR .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uR5U1z2peR .first-column ul li,
.cid-uR5U1z2peR .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uR5U1z2peR .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uR5U1z2peR .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uR5U1z2peR .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uR5U1z2peR .card-support {
    text-align: center;
  }
}
.cid-uR5U1z2peR .mbr-section-title,
.cid-uR5U1z2peR .card-support {
  color: #ffffff;
}
.cid-uR6NDXW8zD {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR6NDXW8zD .row {
    text-align: center;
  }
}
.cid-uR6NDXW8zD .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR6NDXW8zD .paragraph {
  margin-bottom: 2rem;
}
.cid-uR6NDUbbNW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR6NDUbbNW .nav-item:focus,
.cid-uR6NDUbbNW .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uR6NDUbbNW .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-uR6NDUbbNW .nav-item .nav-link {
    position: relative;
  }
  .cid-uR6NDUbbNW .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #25d366, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uR6NDUbbNW .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uR6NDUbbNW .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uR6NDUbbNW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uR6NDUbbNW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uR6NDUbbNW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uR6NDUbbNW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #efefef;
}
.cid-uR6NDUbbNW .navbar.opened {
  transition: all .3s;
  background: #efefef !important;
}
.cid-uR6NDUbbNW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uR6NDUbbNW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uR6NDUbbNW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uR6NDUbbNW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uR6NDUbbNW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uR6NDUbbNW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uR6NDUbbNW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uR6NDUbbNW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uR6NDUbbNW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uR6NDUbbNW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uR6NDUbbNW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uR6NDUbbNW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uR6NDUbbNW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uR6NDUbbNW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uR6NDUbbNW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uR6NDUbbNW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uR6NDUbbNW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uR6NDUbbNW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uR6NDUbbNW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uR6NDUbbNW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uR6NDUbbNW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uR6NDUbbNW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uR6NDUbbNW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uR6NDUbbNW .navbar.navbar-short {
  background: #efefef !important;
  min-height: 60px;
}
.cid-uR6NDUbbNW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uR6NDUbbNW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uR6NDUbbNW .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uR6NDUbbNW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uR6NDUbbNW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uR6NDUbbNW .dropdown-item.active,
.cid-uR6NDUbbNW .dropdown-item:active {
  background-color: transparent;
}
.cid-uR6NDUbbNW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uR6NDUbbNW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uR6NDUbbNW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uR6NDUbbNW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efefef;
}
.cid-uR6NDUbbNW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uR6NDUbbNW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uR6NDUbbNW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uR6NDUbbNW .navbar-buttons {
  text-align: center;
}
.cid-uR6NDUbbNW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-uR6NDUbbNW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uR6NDUbbNW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uR6NDUbbNW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uR6NDUbbNW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uR6NDUbbNW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uR6NDUbbNW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uR6NDUbbNW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uR6NDUbbNW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uR6NDUbbNW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uR6NDUbbNW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uR6NDUbbNW a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-uR6NDUbbNW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uR6NDUbbNW .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uR6NDUbbNW .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uR6NDUbbNW .navbar {
    height: 77px;
  }
  .cid-uR6NDUbbNW .navbar.opened {
    height: auto;
  }
  .cid-uR6NDUbbNW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uR6NDVV4Sb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR6NDVV4Sb .row {
    text-align: center;
  }
}
.cid-uR6NDVV4Sb .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR6NDVV4Sb .paragraph {
  margin-bottom: 2rem;
}
.cid-uR6NDWUTW5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uR6NDWUTW5 .row {
    text-align: center;
  }
}
.cid-uR6NDWUTW5 .section-head {
  margin-bottom: 2.3rem;
}
.cid-uR6NDWUTW5 .paragraph {
  margin-bottom: 2rem;
}
.cid-uR6NDYOW8O {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR6NDYOW8O .item-img {
  position: relative;
}
.cid-uR6NDYOW8O .item-img img {
  transition: all 0.2s;
  object-fit: cover;
}
.cid-uR6NDYOW8O .cardbg {
  background: #0046c7;
  height: 100%;
  min-height: 160px;
}
.cid-uR6NDYOW8O .mbr-section-subtitle {
  border: 1px solid currentColor;
  border-radius: 1rem;
  width: fit-content;
  padding: 0.2rem 0.7rem;
  display: inline-block;
}
.cid-uR6NDYOW8O .image-wrapper {
  overflow: hidden;
}
.cid-uR6NDYOW8O .item1 {
  margin-bottom: 2rem !important;
}
.cid-uR6NDYOW8O .item-wrapper {
  position: relative;
  background: #ffffff;
  border: 3px solid #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uR6NDYOW8O .item-wrapper .item-footer {
  margin-top: auto;
}
.cid-uR6NDYOW8O .item-link {
  position: absolute;
  bottom: 8px;
  right: 90px;
  color: #ffffff;
}
.cid-uR6NDYOW8O .item1,
.cid-uR6NDYOW8O .item {
  transition: transform 0.3s;
  margin-bottom: 2rem;
}
.cid-uR6NDYOW8O .item1 .item:hover,
.cid-uR6NDYOW8O .item .item:hover {
  cursor: pointer;
}
.cid-uR6NDYOW8O .item1:hover .link-icon-wrapper span,
.cid-uR6NDYOW8O .item:hover .link-icon-wrapper span {
  transform: rotate(-20deg) scale(1.3);
}
@media (max-width: 992px) {
  .cid-uR6NDYOW8O .card2 {
    margin-top: 1rem;
  }
}
.cid-uR6NDYOW8O .link-icon-wrapper {
  position: absolute;
  right: -1px;
  padding: 2px;
  bottom: -1px;
  background: #ffffff;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 2rem;
  z-index: 3;
}
.cid-uR6NDYOW8O .link-icon-wrapper .icon-wrap {
  background: #000000;
  width: 55px;
  height: 55px;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.cid-uR6NDYOW8O .link-icon-wrapper .icon-wrap span {
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  padding-top: 1px;
}
.cid-uR6NDYOW8O .link-icon-wrapper .svg1 {
  position: absolute;
  top: -29px;
  right: 0px;
  transform: rotate(180deg);
  width: 30px;
}
.cid-uR6NDYOW8O .link-icon-wrapper .svg1 path {
  fill: #ffffff;
}
.cid-uR6NDYOW8O .link-icon-wrapper .svg2 {
  position: absolute;
  transform: rotate(180deg);
  width: 30px;
  bottom: 0;
  left: -29px;
}
.cid-uR6NDYOW8O .link-icon-wrapper .svg2 path {
  fill: #ffffff;
}
.cid-uR6NDYOW8O .item-content {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 1rem;
  padding: 0 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uR6NDYOW8O .item-content {
    padding: 0 1rem 1.4rem;
    margin-top: 1rem;
  }
}
.cid-uR6NDYOW8O img,
.cid-uR6NDYOW8O .item-img {
  width: 100%;
}
.cid-uR6NDYOW8O .item:focus,
.cid-uR6NDYOW8O span:focus {
  outline: none;
}
@media (max-width: 767px) {
  .cid-uR6NDYOW8O .item {
    margin-bottom: 1rem;
  }
}
.cid-uR6NDYOW8O .mbr-section-title {
  color: #000000;
  text-align: left;
}
.cid-uR6NDYOW8O .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-uR6NDYOW8O .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-uR6NDYOW8O .mbr-section-subtitle,
.cid-uR6NDYOW8O .subtitle-wrap,
.cid-uR6NDYOW8O .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uR6NDYOW8O .mbr-text,
.cid-uR6NDYOW8O .item .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uR6NDZM9VH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-uR6NDZM9VH .card-support li img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-uR6NDZM9VH .card-support li img:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.cid-uR6NDZM9VH .mbr-section-title span {
  display: block;
}
.cid-uR6NDZM9VH .first-column,
.cid-uR6NDZM9VH .second-column {
  margin-bottom: 1rem;
}
.cid-uR6NDZM9VH .first-column ul,
.cid-uR6NDZM9VH .second-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-uR6NDZM9VH .first-column ul li,
.cid-uR6NDZM9VH .second-column ul li {
  margin-bottom: 1rem;
}
.cid-uR6NDZM9VH .card-support {
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.cid-uR6NDZM9VH .card-support li {
  margin-bottom: .4rem;
  margin-right: .4rem;
  display: inline-block;
}
.cid-uR6NDZM9VH .mbr-iconfont {
  padding: 0 .5rem;
}
@media (max-width: 767px) {
  .cid-uR6NDZM9VH .card-support {
    text-align: center;
  }
}
.cid-uR6NDZM9VH .mbr-section-title,
.cid-uR6NDZM9VH .card-support {
  color: #ffffff;
}
