body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Assistant', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.12rem;
}
.display-2 {
  font-family: 'Assistant', sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'Assistant', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Assistant', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Assistant', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #fc671a !important;
}
.bg-success {
  background-color: #007da5 !important;
}
.bg-info {
  background-color: #737391 !important;
}
.bg-warning {
  background-color: #f1f3f7 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #fc671a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #fc671a !important;
  border-color: #fc671a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c74503 !important;
  border-color: #c74503 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c74503 !important;
  border-color: #c74503 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #fc671a inset !important;
  background: transparent !important;
  border: none !important;
  color: #fc671a !important;
}
.btn-primary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-primary {
    width: -webkit-fill-available;
  }
}
.btn-secondary {
  box-shadow: 0 0 0 100px #f1f3f7 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1f3f7 !important;
  border-color: #f1f3f7 !important;
  color: #556a94 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #556a94 !important;
  background-color: #c0c9db !important;
  border-color: #c0c9db !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #556a94 !important;
  background-color: #c0c9db !important;
  border-color: #c0c9db !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #f1f3f7 inset !important;
  background: transparent !important;
  border: none !important;
  color: #f1f3f7 !important;
}
.btn-secondary span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-secondary {
    width: -webkit-fill-available;
  }
}
.btn-info {
  box-shadow: 0 0 0 100px #737391 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background-color: #737391 !important;
  border-color: #737391 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #515167 !important;
  border-color: #515167 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #515167 !important;
  border-color: #515167 !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #737391 inset !important;
  background: transparent !important;
  border: none !important;
  color: #737391 !important;
}
.btn-info span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-info {
    width: -webkit-fill-available;
  }
}
.btn-success {
  box-shadow: 0 0 0 100px #007da5 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background-color: #007da5 !important;
  border-color: #007da5 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #004359 !important;
  border-color: #004359 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #004359 !important;
  border-color: #004359 !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #007da5 inset !important;
  background: transparent !important;
  border: none !important;
  color: #007da5 !important;
}
.btn-success span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-success {
    width: -webkit-fill-available;
  }
}
.btn-warning {
  box-shadow: 0 0 0 100px #f1f3f7 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f1f3f7 !important;
  border-color: #f1f3f7 !important;
  color: #556a94 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #556a94 !important;
  background-color: #c0c9db !important;
  border-color: #c0c9db !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #556a94 !important;
  background-color: #c0c9db !important;
  border-color: #c0c9db !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #f1f3f7 inset !important;
  background: transparent !important;
  border: none !important;
  color: #f1f3f7 !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #fc671a inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ae3d02;
  color: #ae3d02;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #fc671a;
  border-color: #fc671a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #fc671a !important;
  border-color: #fc671a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #fc671a inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-primary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-primary-outline span:after {
  content: '';
  position: absolute;
  background: #fc671a;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-primary-outline {
    width: -webkit-fill-available;
  }
}
.btn-secondary-outline {
  box-shadow: 0 0 0 2px #f1f3f7 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #b0bbd2;
  color: #b0bbd2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #556a94;
  background-color: #f1f3f7;
  border-color: #f1f3f7;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #556a94 !important;
  background-color: #f1f3f7 !important;
  border-color: #f1f3f7 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #f1f3f7 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-secondary-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-secondary-outline span:after {
  content: '';
  position: absolute;
  background: #f1f3f7;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-secondary-outline {
    width: -webkit-fill-available;
  }
}
.btn-info-outline {
  box-shadow: 0 0 0 2px #737391 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #464658;
  color: #464658;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #737391;
  border-color: #737391;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #737391 !important;
  border-color: #737391 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #737391 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-info-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-info-outline span:after {
  content: '';
  position: absolute;
  background: #737391;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-info-outline {
    width: -webkit-fill-available;
  }
}
.btn-success-outline {
  box-shadow: 0 0 0 2px #007da5 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #00303f;
  color: #00303f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #007da5;
  border-color: #007da5;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #007da5 !important;
  border-color: #007da5 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #007da5 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-success-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-success-outline span:after {
  content: '';
  position: absolute;
  background: #007da5;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-success-outline {
    width: -webkit-fill-available;
  }
}
.btn-warning-outline {
  box-shadow: 0 0 0 2px #f1f3f7 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #b0bbd2;
  color: #b0bbd2;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #556a94;
  background-color: #f1f3f7;
  border-color: #f1f3f7;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #556a94 !important;
  background-color: #f1f3f7 !important;
  border-color: #f1f3f7 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #f1f3f7 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-warning-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-warning-outline span:after {
  content: '';
  position: absolute;
  background: #f1f3f7;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #fc671a !important;
}
.text-secondary {
  color: #f1f3f7 !important;
}
.text-success {
  color: #007da5 !important;
}
.text-info {
  color: #737391 !important;
}
.text-warning {
  color: #f1f3f7 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #fc671a !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #f1f3f7 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #00303f !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #464658 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #b0bbd2 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #737391;
}
.alert-warning {
  background-color: #f1f3f7;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #fc671a;
  border-color: #fc671a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #fc671a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffede3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #25caff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #babac9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Assistant', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #fc671a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #fc671a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #fc671a;
  border-bottom-color: #fc671a;
}
.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: #fc671a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f1f3f7 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  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%;
  -webkit-transform: translateX(-50%) translateY(-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='%23fc671a' %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-rGtUi5Rzo2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .nav-item:focus,
.cid-rGtUi5Rzo2 .nav-link:focus {
  outline: none;
}
.cid-rGtUi5Rzo2 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  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-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:active,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #fc671a !important;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .navbar-caption:hover {
  color: inherit!important;
}
.cid-rGtUi5Rzo2 .container {
  max-width: 1380px;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rGtUi5Rzo2 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rGtUi5Rzo2 .nav-link:hover,
.cid-rGtUi5Rzo2 .nav-link:active,
.cid-rGtUi5Rzo2 .nav-link:focus {
  border-bottom: 3px solid #fc671a;
  color: #fc671a !important;
}
.cid-rGtUi5Rzo2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rGtUi5Rzo2 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rGtUi5Rzo2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGtUi5Rzo2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGtUi5Rzo2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rGtUi5Rzo2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGtUi5Rzo2 .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-rGtUi5Rzo2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGtUi5Rzo2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGtUi5Rzo2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGtUi5Rzo2 .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-rGtUi5Rzo2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGtUi5Rzo2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGtUi5Rzo2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  color: #ed6436 !important;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGtUi5Rzo2 .dropdown-item.active,
.cid-rGtUi5Rzo2 .dropdown-item:active {
  background-color: transparent;
}
.cid-rGtUi5Rzo2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGtUi5Rzo2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGtUi5Rzo2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rGtUi5Rzo2 .navbar-buttons {
  text-align: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rGtUi5Rzo2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtUi5Rzo2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGtUi5Rzo2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGtUi5Rzo2 .navbar {
    height: 77px;
  }
  .cid-rGtUi5Rzo2 .navbar.opened {
    height: auto;
  }
  .cid-rGtUi5Rzo2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rGtUi5Rzo2 .btn:hover {
  color: #000 !important;
}
.cid-ssHpHqntrB {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/promo-large-join-team-3-1900x700.jpg");
}
.cid-ssHpHqntrB .mbr-overlay {
  background: #181818;
  opacity: 0.1;
}
.cid-ssHpHqntrB .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-ssHpHqntrB {
    align-items: center;
  }
  .cid-ssHpHqntrB .row {
    justify-content: flex-start;
  }
  .cid-ssHpHqntrB .content-wrap {
    width: 20%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ssHpHqntrB .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-ssHpHqntrB {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-ssHpHqntrB .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-ssHpHqntrB .content-wrap {
    width: 100%;
  }
}
.cid-ssHpHqntrB .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ssHpHqntrB .mbr-text {
  margin-bottom: 20.4px;
}
.cid-ssHpHqntrB .mbr-text,
.cid-ssHpHqntrB .mbr-section-btn {
  color: #282727;
}
.cid-ssHpHqntrB .img {
  max-height: 110px !important;
}
.cid-rMrNfBQgPL {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #f2f2f4;
}
.cid-rMrNfBQgPL .mbr-text {
  color: #767676;
}
.cid-rMrNfBQgPL img {
  width: 100%;
}
.cid-rMrNfBQgPL .card-img {
  margin-bottom: 0rem;
}
.cid-rMrNfBQgPL .card-wrapper {
  background: #ffffff;
  border-radius: 50px 0px 50px 0px !important;
  overflow: hidden;
}
.cid-rMrNfBQgPL .card-box {
  padding: 2rem 1rem;
}
.cid-rMrNfBQgPL p {
  font-weight: 400;
}
.cid-rMrNfBQgPL .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rMrNfBQgPL .card {
    margin-bottom: 2rem;
  }
}
.cid-rMrNfBQgPL .mbr-text,
.cid-rMrNfBQgPL .mbr-section-btn {
  text-align: center;
}
.cid-rMrNfBQgPL .card-title,
.cid-rMrNfBQgPL .card-img {
  text-align: center;
}
.cid-rMrNfBQgPL H2 {
  color: #007da5;
}
.cid-rMrNfBQgPL .btn-sp4 {
  background-color: #607D8B;
  color: #fff;
  border-radius: 2px 20px;
}
.cid-rMrNfBQgPL .btn-sp4:hover {
  border-color: #607D8B;
  color: #fff;
}
.cid-rXyq2alXue {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f2f2f4;
}
.cid-rXyq2alXue H1 {
  color: #240808;
}
.cid-rXyq2alXue .align-left {
  margin: auto;
}
.cid-rXyq2alXue .row {
  justify-content: space-between;
}
.cid-rXyq2alXue .mbr-text,
.cid-rXyq2alXue .mbr-section-btn {
  color: #716c80;
}
.cid-rXyq2alXue .block-border {
  border-left: 2px solid #efefef;
  padding-left: 4rem;
}
.cid-rXyq2alXue .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-rXyq2alXue .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-rXyq2alXue .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-rXyq2alXue .link:hover {
  color: #fc671a !important;
}
.cid-rXyq2alXue .link:hover .link-ico {
  color: #fc671a !important;
  padding-left: 10px;
}
.cid-rXyq2alXue DIV {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-rXyq2alXue .block-border {
    border: none;
    padding-left: 1rem;
  }
  .cid-rXyq2alXue h1 {
    padding-bottom: 1rem;
  }
}
.cid-rXyq2alXue .mbr-text,
.cid-rXyq2alXue .media-content {
  color: #181818;
}
.cid-rXyq2alXue .btn-sp4 {
  background-color: #607D8B;
  color: #fff;
  border-radius: 2px 20px;
}
.cid-rXyq2alXue .btn-sp4:hover {
  border-color: #607D8B;
  color: #fff;
}
.cid-rMx9uEYEHQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rMx9uEYEHQ .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rMx9uEYEHQ .content {
    padding: 0 2rem;
  }
}
.cid-rMx9uEYEHQ .row {
  justify-content: flex-end;
}
.cid-rMx9uEYEHQ .img-col {
  padding: 0;
}
.cid-rMx9uEYEHQ .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-rMx9uEYEHQ .icon-wrap h3 {
  margin: 0;
}
.cid-rMx9uEYEHQ .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rMx9uEYEHQ .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-rMx9uEYEHQ .icon-title,
.cid-rMx9uEYEHQ .mbr-iconfont {
  color: #181818;
}
.cid-rMx9uEYEHQ .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rMx9uEYEHQ .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rMx9uEYEHQ .icons-wrap {
    flex-direction: column;
  }
  .cid-rMx9uEYEHQ .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-rMx9uEYEHQ H1 {
  color: #007da5;
}
.cid-rMx9uEYEHQ .mbr-text,
.cid-rMx9uEYEHQ .mbr-section-btn,
.cid-rMx9uEYEHQ .content {
  color: #0b1b3f;
}
.cid-rMx9uEYEHQ .btn-sp4 {
  background-color: #607D8B;
  color: #fff;
  border-radius: 2px 20px;
}
.cid-rMx9uEYEHQ .btn-sp4:hover {
  border-color: #607D8B;
  color: #fff;
}
.cid-rVuptN9IDs {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f1f3f7;
}
.cid-rVuptN9IDs .mbr-text {
  color: #343434;
}
.cid-rVuptN9IDs h4 {
  text-align: center;
}
.cid-rVuptN9IDs p {
  text-align: center;
}
.cid-rVuptN9IDs .card-img span {
  font-size: 96px;
  color: #fc671a;
}
.cid-rVuptN9IDs .card-title,
.cid-rVuptN9IDs .card-img {
  color: #007da5;
}
.cid-rVuptN9IDs .btn-sp4 {
  background-color: #607D8B;
  color: #fff;
  border-radius: 2px 20px;
}
.cid-rVuptN9IDs .btn-sp4:hover {
  border-color: #607D8B;
  color: #fff;
}
.cid-rMwVRthtSm {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rMwVRthtSm .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rMwVRthtSm .content {
    padding: 0 2rem;
  }
}
.cid-rMwVRthtSm .img-col {
  padding: 0;
}
.cid-rMwVRthtSm .icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-right: 2rem;
}
.cid-rMwVRthtSm .icon-wrap h3 {
  margin: 0;
}
.cid-rMwVRthtSm .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rMwVRthtSm .mbr-iconfont {
  font-size: 1.8rem;
  padding-right: 0.8rem;
  padding-bottom: 4px;
}
.cid-rMwVRthtSm .icon-title,
.cid-rMwVRthtSm .mbr-iconfont {
  color: #181818;
}
.cid-rMwVRthtSm .icons-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-rMwVRthtSm .content {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .cid-rMwVRthtSm .icons-wrap {
    flex-direction: column;
  }
  .cid-rMwVRthtSm .icon-wrap {
    margin-right: 0rem;
  }
}
.cid-rMwVRthtSm H1 {
  color: #007da5;
}
.cid-rMwVRthtSm .btn {
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0;
  letter-spacing: 1px;
  padding: 10px 30px;
  margin: 20px;
  transition: all 1s;
}
.cid-rMwVRthtSm h6 {
  margin-top: 50px;
  letter-spacing: 1px;
  border-left: 2px solid #aaa;
  border-radius: 3px;
  padding-left: 5px;
}
.cid-rMwVRthtSm .btn-sp4 {
  background-color: #607D8B;
  color: #fff;
  border-radius: 2px 20px;
}
.cid-rMwVRthtSm .btn-sp4:hover {
  border-color: #607D8B;
  color: #fff;
}
.cid-rMxUeLGCQF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f1f3f7;
}
.cid-rMxUeLGCQF .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rMxUeLGCQF .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rMxUeLGCQF .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rMxUeLGCQF .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rMxUeLGCQF .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.8rem;
  height: 3em;
  line-height: 3em;
  border-radius: 50%;
  background-color: #007da5;
  width: 3em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-rMxUeLGCQF .icon-transition span:hover {
  background-color: #fc671a;
}
.cid-rMxUeLGCQF .mbr-text {
  color: #181818;
}
@media (max-width: 991px) {
  .cid-rMxUeLGCQF .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 15px;
  }
  .cid-rMxUeLGCQF .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 15px;
    margin-bottom: 1.5rem;
  }
  .cid-rMxUeLGCQF .mbr-text {
    margin-bottom: 1.5rem;
  }
}
