body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 7.2rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.72rem;
}
.display-7 {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
/* ---- 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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((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.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((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: #b20000 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #ed6436 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #b20000 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: #b20000 !important;
  border-color: #b20000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #660000 !important;
  border-color: #660000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #660000 !important;
  border-color: #660000 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #b20000 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b20000 !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 #181818 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: #181818 !important;
  border-color: #181818 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px #181818 inset !important;
  background: transparent !important;
  border: none !important;
  color: #181818 !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 #82786e 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: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #82786e inset !important;
  background: transparent !important;
  border: none !important;
  color: #82786e !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 #f7ed4a 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: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success:hover,
.btn-success:focus {
  box-shadow: 0 0 0 2px #f7ed4a inset !important;
  background: transparent !important;
  border: none !important;
  color: #f7ed4a !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 #879a9f 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: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #879a9f inset !important;
  background: transparent !important;
  border: none !important;
  color: #879a9f !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 #ed6436 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: #ed6436 !important;
  border-color: #ed6436 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #c53f12 !important;
  border-color: #c53f12 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #c53f12 !important;
  border-color: #c53f12 !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #ed6436 inset !important;
  background: transparent !important;
  border: none !important;
  color: #ed6436 !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 #b20000 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: #4c0000;
  color: #4c0000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #b20000;
  border-color: #b20000;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b20000 !important;
  border-color: #b20000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #b20000 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: #b20000;
  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 #181818 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: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #181818;
  border-color: #181818;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #181818 !important;
  border-color: #181818 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  box-shadow: 0 0 0 100px #181818 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: #181818;
  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 #82786e 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: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #82786e 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: #82786e;
  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 #f7ed4a 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: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus {
  box-shadow: 0 0 0 100px #f7ed4a 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: #f7ed4a;
  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 #879a9f 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: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #879a9f 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: #879a9f;
  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 #ed6436 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: #ad3710;
  color: #ad3710;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #ed6436;
  border-color: #ed6436;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ed6436 !important;
  border-color: #ed6436 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #ed6436 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: #ed6436;
  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: #b20000 !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #ed6436 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b20000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #181818 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ad3710 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #ed6436;
}
.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: #b20000;
  border-color: #b20000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b20000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ff3232;
}
.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: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fef4f1;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Arimo', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #b20000;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b20000;
  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: #b20000;
  border-bottom-color: #b20000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #b20000 !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: #181818 !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='%23b20000' %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-rJiLYSHA1z .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-rJiLYSHA1z .nav-item:focus,
.cid-rJiLYSHA1z .nav-link:focus {
  outline: none;
}
.cid-rJiLYSHA1z .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rJiLYSHA1z .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-rJiLYSHA1z .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rJiLYSHA1z .dropdown .dropdown-menu .dropdown-item:active,
.cid-rJiLYSHA1z .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b20000 !important;
}
.cid-rJiLYSHA1z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rJiLYSHA1z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rJiLYSHA1z .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-rJiLYSHA1z .navbar-caption:hover {
  color: inherit!important;
}
.cid-rJiLYSHA1z .container {
  max-width: 1380px;
}
.cid-rJiLYSHA1z .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rJiLYSHA1z .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rJiLYSHA1z .nav-link:hover,
.cid-rJiLYSHA1z .nav-link:active,
.cid-rJiLYSHA1z .nav-link:focus {
  border-bottom: 3px solid #b20000;
  color: #b20000 !important;
}
.cid-rJiLYSHA1z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rJiLYSHA1z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rJiLYSHA1z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rJiLYSHA1z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJiLYSHA1z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rJiLYSHA1z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJiLYSHA1z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rJiLYSHA1z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rJiLYSHA1z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJiLYSHA1z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rJiLYSHA1z .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-rJiLYSHA1z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJiLYSHA1z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rJiLYSHA1z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rJiLYSHA1z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rJiLYSHA1z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJiLYSHA1z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rJiLYSHA1z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJiLYSHA1z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rJiLYSHA1z .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-rJiLYSHA1z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rJiLYSHA1z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJiLYSHA1z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rJiLYSHA1z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rJiLYSHA1z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJiLYSHA1z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rJiLYSHA1z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rJiLYSHA1z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rJiLYSHA1z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rJiLYSHA1z .icons-menu span {
  color: #b20000 !important;
}
.cid-rJiLYSHA1z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rJiLYSHA1z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rJiLYSHA1z .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-rJiLYSHA1z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJiLYSHA1z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJiLYSHA1z .dropdown-item.active,
.cid-rJiLYSHA1z .dropdown-item:active {
  background-color: transparent;
}
.cid-rJiLYSHA1z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rJiLYSHA1z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJiLYSHA1z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJiLYSHA1z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rJiLYSHA1z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rJiLYSHA1z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJiLYSHA1z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rJiLYSHA1z .navbar-buttons {
  text-align: center;
}
.cid-rJiLYSHA1z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJiLYSHA1z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rJiLYSHA1z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJiLYSHA1z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJiLYSHA1z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJiLYSHA1z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJiLYSHA1z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJiLYSHA1z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJiLYSHA1z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJiLYSHA1z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJiLYSHA1z .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rJiLYSHA1z a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rJiLYSHA1z .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rJiLYSHA1z .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-rJiLYSHA1z .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rJiLYSHA1z .navbar {
    height: 77px;
  }
  .cid-rJiLYSHA1z .navbar.opened {
    height: auto;
  }
  .cid-rJiLYSHA1z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-th3CwTS8T5 {
  background-image: url("../../../assets/images/tire-10.jpg");
}
.cid-th3CwTS8T5 .mbr-section-title {
  color: #ffffff;
}
.cid-th3CwTS8T5 .mbr-text,
.cid-th3CwTS8T5 .mbr-section-btn {
  color: #fafafa;
}
.cid-th3C4sVw2H {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-th3C4sVw2H .mbr-section-title {
  letter-spacing: 0.1em;
  text-align: left;
  color: #181818;
}
.cid-th3C4sVw2H .mbr-section-subtitle {
  color: #000000;
  letter-spacing: 0.03em;
  text-align: left;
}
.cid-th3C4sVw2H .progressbar-title p {
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.cid-th3C4sVw2H .progress {
  width: 100%;
  height: 25px;
}
.cid-th3C4sVw2H .progress_elements,
.cid-th3C4sVw2H .text-elements {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-th3C4sVw2H .progress_elements > div,
.cid-th3C4sVw2H .text-elements > div {
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.cid-th3C4sVw2H .progress-bar {
  height: 25px;
  background-color: #b20000;
}
.cid-th3C4sVw2H .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-th3C4sVw2H .progressbar-number {
  display: inline-block;
}
.cid-th3C4sVw2H .progress-primary {
  background: rgba(206, 206, 206, 0.4);
  border: none;
  outline: none;
}
.cid-th3C4sVw2H .progress-primary::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-th3C4sVw2H .progress_value {
  position: relative;
}
.cid-th3C4sVw2H progress[value]::-webkit-progress-bar {
  background: rgba(206, 206, 206, 0.4);
}
.cid-th3C4sVw2H progress::-webkit-progress-value {
  background: #b20000;
}
.cid-th3C4sVw2H progress[value]::-moz-progress-bar {
  background: #b20000;
}
.cid-th3C4sVw2H progress::-ms-fill {
  background: #b20000;
}
.cid-th3C4sVw2H .progress1 .progressbar-number:before {
  content: '95';
}
.cid-th3C4sVw2H .progress2 .progressbar-number:before {
  content: '97';
}
.cid-th3C4sVw2H .progress3 .progressbar-number:before {
  content: '99';
}
.cid-th3C4sVw2H .progress4 .progressbar-number:before {
  content: '28';
}
.cid-th3C4sVw2H .progress5 .progressbar-number:before {
  content: '10';
}
.cid-th3C4sVw2H .progress-bar-1 {
  width: 95%;
}
.cid-th3C4sVw2H .progress-bar-2 {
  width: 97%;
}
.cid-th3C4sVw2H .progress-bar-3 {
  width: 99%;
}
.cid-th3C4sVw2H .progress-bar-4 {
  width: 28%;
}
.cid-th3C4sVw2H .progress-bar-5 {
  width: 10%;
}
@media (max-width: 767px) {
  .cid-th3C4sVw2H .progress_elements {
    padding-top: 2rem;
  }
}
.cid-rJjdMXv6Hr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f2f4;
}
@media (min-width: 992px) {
  .cid-rJjdMXv6Hr .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-rJjdMXv6Hr .content {
    padding: 0 2rem;
  }
}
.cid-rJjdMXv6Hr .row {
  justify-content: flex-start;
}
.cid-rJjdMXv6Hr .img-col {
  padding: 0;
}
.cid-rJjdMXv6Hr .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-rJjdMXv6Hr .mbr-iconfont {
  font-size: 3rem;
  color: #383838 !important;
  padding-bottom: 1.5rem;
  display: block;
}
.cid-rJjdMXv6Hr .icon-title,
.cid-rJjdMXv6Hr .icon-wrap {
  color: #b20000;
}
.cid-rJjdMXv6Hr .mbr-text,
.cid-rJjdMXv6Hr .mbr-section-btn,
.cid-rJjdMXv6Hr .content {
  color: #000000;
}
@media (max-width: 992px) {
  .cid-rJjdMXv6Hr .content {
    margin: auto;
  }
}
.cid-rJjdMXv6Hr P {
  color: #000000;
}
.cid-rJjfxioAO5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #181818;
}
.cid-rJjfxioAO5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-rJjfxioAO5 img {
  width: 40px;
  height: 40px;
  margin-right: 0.8rem;
}
.cid-rJjfxioAO5 h3 {
  margin: 0;
}
.cid-rJjfxioAO5 .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-rJjfxioAO5 .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-rJjfxioAO5 .text-wrap {
  width: 100%;
}
.cid-rJjfxioAO5 .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-rJjfxioAO5 .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-rJjfxioAO5 .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  background: #181818;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #181818;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-rJjfxioAO5 .socicon-wrap .mbr-iconfont:hover {
  background: #ed6436;
  color: #181818 !important;
  border: 2px solid #181818;
}
.cid-rJjfxioAO5 .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-rJjfxioAO5 .jq-selectbox__dropdown,
.cid-rJjfxioAO5 ul {
  border-radius: 20px!important;
}
.cid-rJjfxioAO5 .jq-selectbox {
  border-radius: 30px;
}
.cid-rJjfxioAO5 .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-rJjfxioAO5 .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-rJjfxioAO5 input,
.cid-rJjfxioAO5 textarea,
.cid-rJjfxioAO5 .select {
  border-radius: 30px;
}
.cid-rJjfxioAO5 input,
.cid-rJjfxioAO5 textarea {
  padding: 1rem 2rem;
}
.cid-rJjfxioAO5 textarea {
  min-height: 10rem;
}
.cid-rJjfxioAO5 .form-control,
.cid-rJjfxioAO5 .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJjfxioAO5 .form-control::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input::-webkit-input-placeholder,
.cid-rJjfxioAO5 .form-control::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-rJjfxioAO5 .form-control:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:-moz-placeholder,
.cid-rJjfxioAO5 .form-control:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:-moz-placeholder {
  color: #383838;
}
.cid-rJjfxioAO5 .form-control:hover,
.cid-rJjfxioAO5 .field-input:hover,
.cid-rJjfxioAO5 .form-control:focus,
.cid-rJjfxioAO5 .field-input:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-rJjfxioAO5 .form-control:hover::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input:hover::-webkit-input-placeholder,
.cid-rJjfxioAO5 .form-control:focus::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input:focus::-webkit-input-placeholder,
.cid-rJjfxioAO5 .form-control:hover::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input:hover::-webkit-input-placeholder,
.cid-rJjfxioAO5 .form-control:focus::-webkit-input-placeholder,
.cid-rJjfxioAO5 .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-rJjfxioAO5 .form-control:hover:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:hover:-moz-placeholder,
.cid-rJjfxioAO5 .form-control:focus:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:focus:-moz-placeholder,
.cid-rJjfxioAO5 .form-control:hover:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:hover:-moz-placeholder,
.cid-rJjfxioAO5 .form-control:focus:-moz-placeholder,
.cid-rJjfxioAO5 .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-rJjfxioAO5 .jq-number__spin:hover,
.cid-rJjfxioAO5 .jq-number__spin:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-rJjfxioAO5 .jq-number__spin {
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-rJjfxioAO5 .jq-selectbox li,
.cid-rJjfxioAO5 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rJjfxioAO5 .jq-selectbox li:hover,
.cid-rJjfxioAO5 .jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.cid-rJjfxioAO5 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-rJjfxioAO5 .jq-number__spin.minus:hover:after,
.cid-rJjfxioAO5 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-rJjfxioAO5 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-rJjfxioAO5 .jq-number__spin.minus:after,
.cid-rJjfxioAO5 .jq-number__spin.plus:after {
  border-top-color: #181818;
  border-bottom-color: #181818;
}
.cid-rJjfxioAO5 input::-webkit-clear-button {
  display: none;
}
.cid-rJjfxioAO5 input::-webkit-inner-spin-button {
  display: none;
}
.cid-rJjfxioAO5 input::-webkit-outer-spin-button {
  display: none;
}
.cid-rJjfxioAO5 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-rJjfxioAO5 .col-md-6 {
  margin-bottom: 2rem;
}
.cid-rJjfxioAO5 .form-group {
  margin-bottom: 0.4rem;
}
.cid-rJjfxioAO5 .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-rJjfxioAO5 .title1 {
  margin: 0;
}
.cid-rJjfxioAO5 .align-wrap {
  display: block;
}
.cid-rJjfxioAO5 .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-rJjfxioAO5 form {
    padding: 0;
  }
  .cid-rJjfxioAO5 .socicon-wrap {
    margin: auto;
  }
}
.cid-rJjfxioAO5 .title {
  color: #ed6436;
}
.cid-rJjfxioAO5 .icon-title,
.cid-rJjfxioAO5 .align-wrap {
  color: #ffffff;
}
.cid-rJjfxioAO5 .links-title {
  color: #ffffff;
}
.cid-rJjfxioAO5 .title1,
.cid-rJjfxioAO5 .title-col {
  color: #ffffff;
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .nav-item:focus,
.cid-rO0Y2RIh0N .nav-link:focus {
  outline: none;
}
.cid-rO0Y2RIh0N .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rO0Y2RIh0N .dropdown .dropdown-menu .dropdown-item:active,
.cid-rO0Y2RIh0N .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b20000 !important;
}
.cid-rO0Y2RIh0N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rO0Y2RIh0N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .navbar-caption:hover {
  color: inherit!important;
}
.cid-rO0Y2RIh0N .container {
  max-width: 1380px;
}
.cid-rO0Y2RIh0N .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rO0Y2RIh0N .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rO0Y2RIh0N .nav-link:hover,
.cid-rO0Y2RIh0N .nav-link:active,
.cid-rO0Y2RIh0N .nav-link:focus {
  border-bottom: 3px solid #b20000;
  color: #b20000 !important;
}
.cid-rO0Y2RIh0N .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rO0Y2RIh0N .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rO0Y2RIh0N .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rO0Y2RIh0N .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rO0Y2RIh0N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rO0Y2RIh0N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rO0Y2RIh0N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rO0Y2RIh0N .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rO0Y2RIh0N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rO0Y2RIh0N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rO0Y2RIh0N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rO0Y2RIh0N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rO0Y2RIh0N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rO0Y2RIh0N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rO0Y2RIh0N .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rO0Y2RIh0N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rO0Y2RIh0N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rO0Y2RIh0N .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-rO0Y2RIh0N .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rO0Y2RIh0N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rO0Y2RIh0N .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rO0Y2RIh0N .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rO0Y2RIh0N .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rO0Y2RIh0N .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rO0Y2RIh0N .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rO0Y2RIh0N .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rO0Y2RIh0N .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rO0Y2RIh0N .icons-menu span {
  color: #b20000 !important;
}
.cid-rO0Y2RIh0N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rO0Y2RIh0N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rO0Y2RIh0N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rO0Y2RIh0N .dropdown-item.active,
.cid-rO0Y2RIh0N .dropdown-item:active {
  background-color: transparent;
}
.cid-rO0Y2RIh0N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rO0Y2RIh0N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rO0Y2RIh0N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rO0Y2RIh0N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rO0Y2RIh0N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rO0Y2RIh0N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rO0Y2RIh0N ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rO0Y2RIh0N .navbar-buttons {
  text-align: center;
}
.cid-rO0Y2RIh0N button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rO0Y2RIh0N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rO0Y2RIh0N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rO0Y2RIh0N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rO0Y2RIh0N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rO0Y2RIh0N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rO0Y2RIh0N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO0Y2RIh0N nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rO0Y2RIh0N nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rO0Y2RIh0N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO0Y2RIh0N .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rO0Y2RIh0N a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rO0Y2RIh0N .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rO0Y2RIh0N .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-rO0Y2RIh0N .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rO0Y2RIh0N .navbar {
    height: 77px;
  }
  .cid-rO0Y2RIh0N .navbar.opened {
    height: auto;
  }
  .cid-rO0Y2RIh0N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rO0Zhsej5c {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/pic-5.jpg");
}
.cid-rO0Zhsej5c .mbr-overlay {
  background: linear-gradient(90deg, #000000, #b20000);
}
.cid-rO0Zhsej5c h2,
.cid-rO0Zhsej5c h3,
.cid-rO0Zhsej5c h4,
.cid-rO0Zhsej5c p {
  color: #ffffff;
}
.cid-rO0Zhsej5c .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-rO0Zhsej5c .text-block {
  border-bottom: 1px solid #767676;
}
.cid-rO0Zhsej5c .media-container-row {
  -webkit-align-items: center;
  align-items: center;
}
.cid-rO0Zhsej5c .form-control {
  box-shadow: none;
  padding: 1.07em 1.07em;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  color: #656565;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rO0Zhsej5c .form-control:focus,
.cid-rO0Zhsej5c .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #f5f5f5;
}
.cid-rO0Zhsej5c .form-group {
  margin-bottom: 1rem;
}
.cid-rO0Zhsej5c input::-webkit-input-placeholder,
.cid-rO0Zhsej5c textarea::-webkit-input-placeholder {
  color: #656565;
}
.cid-rO0Zhsej5c input:-moz-placeholder,
.cid-rO0Zhsej5c textarea:-moz-placeholder {
  color: #656565;
}
.cid-rO0Zhsej5c .jq-selectbox li,
.cid-rO0Zhsej5c .jq-selectbox li {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rO0Zhsej5c .jq-selectbox li:hover,
.cid-rO0Zhsej5c .jq-selectbox li.selected {
  background-color: #f5f5f5;
  color: #000000;
}
.cid-rO0Zhsej5c .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rO0Zhsej5c .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f5f5;
}
.cid-rO0Zhsej5c .mbr-text {
  color: #767676;
}
.cid-rO0Zhsej5c a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rO0Zhsej5c .multi-horizontal {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-rO0Zhsej5c .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rO0Zhsej5c textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-rO0Zhsej5c h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-rO0Zhsej5c .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rO0Zhsej5c .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
@media (max-width: 991px) {
  .cid-rO0Zhsej5c .google-map {
    padding-bottom: 2rem;
  }
}
.cid-rO0Zhsej5c H3 {
  text-align: center;
}
.cid-uGGuHTBaaG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #181818;
}
.cid-uGGuHTBaaG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-uGGuHTBaaG img {
  width: 40px;
  height: 40px;
  margin-right: 0.8rem;
}
.cid-uGGuHTBaaG h3 {
  margin: 0;
}
.cid-uGGuHTBaaG .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-uGGuHTBaaG .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uGGuHTBaaG .text-wrap {
  width: 100%;
}
.cid-uGGuHTBaaG .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-uGGuHTBaaG .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uGGuHTBaaG .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  background: #181818;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #181818;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uGGuHTBaaG .socicon-wrap .mbr-iconfont:hover {
  background: #ed6436;
  color: #181818 !important;
  border: 2px solid #181818;
}
.cid-uGGuHTBaaG .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-uGGuHTBaaG .jq-selectbox__dropdown,
.cid-uGGuHTBaaG ul {
  border-radius: 20px!important;
}
.cid-uGGuHTBaaG .jq-selectbox {
  border-radius: 30px;
}
.cid-uGGuHTBaaG .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuHTBaaG .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuHTBaaG input,
.cid-uGGuHTBaaG textarea,
.cid-uGGuHTBaaG .select {
  border-radius: 30px;
}
.cid-uGGuHTBaaG input,
.cid-uGGuHTBaaG textarea {
  padding: 1rem 2rem;
}
.cid-uGGuHTBaaG textarea {
  min-height: 10rem;
}
.cid-uGGuHTBaaG .form-control,
.cid-uGGuHTBaaG .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuHTBaaG .form-control::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input::-webkit-input-placeholder,
.cid-uGGuHTBaaG .form-control::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuHTBaaG .form-control:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:-moz-placeholder,
.cid-uGGuHTBaaG .form-control:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:-moz-placeholder {
  color: #383838;
}
.cid-uGGuHTBaaG .form-control:hover,
.cid-uGGuHTBaaG .field-input:hover,
.cid-uGGuHTBaaG .form-control:focus,
.cid-uGGuHTBaaG .field-input:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-uGGuHTBaaG .form-control:hover::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input:hover::-webkit-input-placeholder,
.cid-uGGuHTBaaG .form-control:focus::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input:focus::-webkit-input-placeholder,
.cid-uGGuHTBaaG .form-control:hover::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input:hover::-webkit-input-placeholder,
.cid-uGGuHTBaaG .form-control:focus::-webkit-input-placeholder,
.cid-uGGuHTBaaG .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuHTBaaG .form-control:hover:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:hover:-moz-placeholder,
.cid-uGGuHTBaaG .form-control:focus:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:focus:-moz-placeholder,
.cid-uGGuHTBaaG .form-control:hover:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:hover:-moz-placeholder,
.cid-uGGuHTBaaG .form-control:focus:-moz-placeholder,
.cid-uGGuHTBaaG .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-uGGuHTBaaG .jq-number__spin:hover,
.cid-uGGuHTBaaG .jq-number__spin:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGuHTBaaG .jq-number__spin {
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuHTBaaG .jq-selectbox li,
.cid-uGGuHTBaaG .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uGGuHTBaaG .jq-selectbox li:hover,
.cid-uGGuHTBaaG .jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.cid-uGGuHTBaaG .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uGGuHTBaaG .jq-number__spin.minus:hover:after,
.cid-uGGuHTBaaG .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uGGuHTBaaG .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uGGuHTBaaG .jq-number__spin.minus:after,
.cid-uGGuHTBaaG .jq-number__spin.plus:after {
  border-top-color: #181818;
  border-bottom-color: #181818;
}
.cid-uGGuHTBaaG input::-webkit-clear-button {
  display: none;
}
.cid-uGGuHTBaaG input::-webkit-inner-spin-button {
  display: none;
}
.cid-uGGuHTBaaG input::-webkit-outer-spin-button {
  display: none;
}
.cid-uGGuHTBaaG input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uGGuHTBaaG .col-md-6 {
  margin-bottom: 2rem;
}
.cid-uGGuHTBaaG .form-group {
  margin-bottom: 0.4rem;
}
.cid-uGGuHTBaaG .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-uGGuHTBaaG .title1 {
  margin: 0;
}
.cid-uGGuHTBaaG .align-wrap {
  display: block;
}
.cid-uGGuHTBaaG .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uGGuHTBaaG form {
    padding: 0;
  }
  .cid-uGGuHTBaaG .socicon-wrap {
    margin: auto;
  }
}
.cid-uGGuHTBaaG .title {
  color: #ed6436;
}
.cid-uGGuHTBaaG .icon-title,
.cid-uGGuHTBaaG .align-wrap {
  color: #ffffff;
}
.cid-uGGuHTBaaG .links-title {
  color: #ffffff;
}
.cid-uGGuHTBaaG .title1,
.cid-uGGuHTBaaG .title-col {
  color: #ffffff;
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .nav-item:focus,
.cid-rO12yVYrDZ .nav-link:focus {
  outline: none;
}
.cid-rO12yVYrDZ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rO12yVYrDZ .dropdown .dropdown-menu .dropdown-item:active,
.cid-rO12yVYrDZ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b20000 !important;
}
.cid-rO12yVYrDZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rO12yVYrDZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .navbar-caption:hover {
  color: inherit!important;
}
.cid-rO12yVYrDZ .container {
  max-width: 1380px;
}
.cid-rO12yVYrDZ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rO12yVYrDZ .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rO12yVYrDZ .nav-link:hover,
.cid-rO12yVYrDZ .nav-link:active,
.cid-rO12yVYrDZ .nav-link:focus {
  border-bottom: 3px solid #b20000;
  color: #b20000 !important;
}
.cid-rO12yVYrDZ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rO12yVYrDZ .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rO12yVYrDZ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rO12yVYrDZ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rO12yVYrDZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rO12yVYrDZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rO12yVYrDZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rO12yVYrDZ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rO12yVYrDZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rO12yVYrDZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rO12yVYrDZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rO12yVYrDZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rO12yVYrDZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rO12yVYrDZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rO12yVYrDZ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rO12yVYrDZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rO12yVYrDZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rO12yVYrDZ .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-rO12yVYrDZ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rO12yVYrDZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rO12yVYrDZ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rO12yVYrDZ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rO12yVYrDZ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rO12yVYrDZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rO12yVYrDZ .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rO12yVYrDZ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rO12yVYrDZ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rO12yVYrDZ .icons-menu span {
  color: #b20000 !important;
}
.cid-rO12yVYrDZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rO12yVYrDZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rO12yVYrDZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rO12yVYrDZ .dropdown-item.active,
.cid-rO12yVYrDZ .dropdown-item:active {
  background-color: transparent;
}
.cid-rO12yVYrDZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rO12yVYrDZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rO12yVYrDZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rO12yVYrDZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rO12yVYrDZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rO12yVYrDZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rO12yVYrDZ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rO12yVYrDZ .navbar-buttons {
  text-align: center;
}
.cid-rO12yVYrDZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rO12yVYrDZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rO12yVYrDZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rO12yVYrDZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rO12yVYrDZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rO12yVYrDZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rO12yVYrDZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO12yVYrDZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rO12yVYrDZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rO12yVYrDZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO12yVYrDZ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rO12yVYrDZ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rO12yVYrDZ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rO12yVYrDZ .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-rO12yVYrDZ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rO12yVYrDZ .navbar {
    height: 77px;
  }
  .cid-rO12yVYrDZ .navbar.opened {
    height: auto;
  }
  .cid-rO12yVYrDZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGrBFt9FcT {
  padding-top: 210px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-uGrBFt9FcT .wrap {
  display: flex;
  border-bottom: 1px dotted #83868c;
  margin-bottom: 39px;
  padding-bottom: 20px;
}
.cid-uGrBFt9FcT .wrap .ico1 {
  font-size: 2rem;
  margin-right: 30px;
  color: #ed6436;
}
.cid-uGrBFt9FcT .wrap .mbr-text {
  z-index: 2;
  position: relative;
  color: #82786e;
}
.cid-uGrBFt9FcT .wrap .mbr-section-subtitle {
  color: #b20000;
  display: inline-block;
  margin-right: 20px;
}
.cid-uGrBFt9FcT .wrap .ico-line {
  display: inline-block;
}
.cid-uGrBFt9FcT .wrap .ico-line .mbr-iconfont {
  color: #b20000;
  font-size: 14px;
}
.cid-uGrBFt9FcT .col-md-12:last-child .wrap,
.cid-uGrBFt9FcT .col-lg-12:last-child .wrap {
  border-bottom: none;
}
.cid-uGrBFt9FcT .col-md-12.last-child .wrap,
.cid-uGrBFt9FcT .col-lg-12.last-child .wrap {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cid-uGrBFt9FcT * {
    text-align: left;
  }
  .cid-uGrBFt9FcT .ico1 {
    display: none;
  }
}
.cid-uGrBFt9FcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGrBFt9FcT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uGrBFt9FcT .wrap .content .mbr-section-subtitle,
.cid-uGrBFt9FcT .wrap .content .author {
  color: #000000;
}
.cid-uGrBFt9FcT .wrap .content .mbr-text {
  color: #181818;
}
.cid-uGGuYDyLYQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #181818;
}
.cid-uGGuYDyLYQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-uGGuYDyLYQ img {
  width: 40px;
  height: 40px;
  margin-right: 0.8rem;
}
.cid-uGGuYDyLYQ h3 {
  margin: 0;
}
.cid-uGGuYDyLYQ .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-uGGuYDyLYQ .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uGGuYDyLYQ .text-wrap {
  width: 100%;
}
.cid-uGGuYDyLYQ .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-uGGuYDyLYQ .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uGGuYDyLYQ .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  background: #181818;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #181818;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uGGuYDyLYQ .socicon-wrap .mbr-iconfont:hover {
  background: #ed6436;
  color: #181818 !important;
  border: 2px solid #181818;
}
.cid-uGGuYDyLYQ .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-uGGuYDyLYQ .jq-selectbox__dropdown,
.cid-uGGuYDyLYQ ul {
  border-radius: 20px!important;
}
.cid-uGGuYDyLYQ .jq-selectbox {
  border-radius: 30px;
}
.cid-uGGuYDyLYQ .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuYDyLYQ .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuYDyLYQ input,
.cid-uGGuYDyLYQ textarea,
.cid-uGGuYDyLYQ .select {
  border-radius: 30px;
}
.cid-uGGuYDyLYQ input,
.cid-uGGuYDyLYQ textarea {
  padding: 1rem 2rem;
}
.cid-uGGuYDyLYQ textarea {
  min-height: 10rem;
}
.cid-uGGuYDyLYQ .form-control,
.cid-uGGuYDyLYQ .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuYDyLYQ .form-control::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .form-control::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuYDyLYQ .form-control:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:-moz-placeholder,
.cid-uGGuYDyLYQ .form-control:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:-moz-placeholder {
  color: #383838;
}
.cid-uGGuYDyLYQ .form-control:hover,
.cid-uGGuYDyLYQ .field-input:hover,
.cid-uGGuYDyLYQ .form-control:focus,
.cid-uGGuYDyLYQ .field-input:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-uGGuYDyLYQ .form-control:hover::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input:hover::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .form-control:focus::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input:focus::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .form-control:hover::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input:hover::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .form-control:focus::-webkit-input-placeholder,
.cid-uGGuYDyLYQ .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuYDyLYQ .form-control:hover:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:hover:-moz-placeholder,
.cid-uGGuYDyLYQ .form-control:focus:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:focus:-moz-placeholder,
.cid-uGGuYDyLYQ .form-control:hover:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:hover:-moz-placeholder,
.cid-uGGuYDyLYQ .form-control:focus:-moz-placeholder,
.cid-uGGuYDyLYQ .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-uGGuYDyLYQ .jq-number__spin:hover,
.cid-uGGuYDyLYQ .jq-number__spin:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGuYDyLYQ .jq-number__spin {
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuYDyLYQ .jq-selectbox li,
.cid-uGGuYDyLYQ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uGGuYDyLYQ .jq-selectbox li:hover,
.cid-uGGuYDyLYQ .jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.cid-uGGuYDyLYQ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uGGuYDyLYQ .jq-number__spin.minus:hover:after,
.cid-uGGuYDyLYQ .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uGGuYDyLYQ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uGGuYDyLYQ .jq-number__spin.minus:after,
.cid-uGGuYDyLYQ .jq-number__spin.plus:after {
  border-top-color: #181818;
  border-bottom-color: #181818;
}
.cid-uGGuYDyLYQ input::-webkit-clear-button {
  display: none;
}
.cid-uGGuYDyLYQ input::-webkit-inner-spin-button {
  display: none;
}
.cid-uGGuYDyLYQ input::-webkit-outer-spin-button {
  display: none;
}
.cid-uGGuYDyLYQ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uGGuYDyLYQ .col-md-6 {
  margin-bottom: 2rem;
}
.cid-uGGuYDyLYQ .form-group {
  margin-bottom: 0.4rem;
}
.cid-uGGuYDyLYQ .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-uGGuYDyLYQ .title1 {
  margin: 0;
}
.cid-uGGuYDyLYQ .align-wrap {
  display: block;
}
.cid-uGGuYDyLYQ .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uGGuYDyLYQ form {
    padding: 0;
  }
  .cid-uGGuYDyLYQ .socicon-wrap {
    margin: auto;
  }
}
.cid-uGGuYDyLYQ .title {
  color: #ed6436;
}
.cid-uGGuYDyLYQ .icon-title,
.cid-uGGuYDyLYQ .align-wrap {
  color: #ffffff;
}
.cid-uGGuYDyLYQ .links-title {
  color: #ffffff;
}
.cid-uGGuYDyLYQ .title1,
.cid-uGGuYDyLYQ .title-col {
  color: #ffffff;
}
.cid-rO16zYYPam .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-rO16zYYPam .nav-item:focus,
.cid-rO16zYYPam .nav-link:focus {
  outline: none;
}
.cid-rO16zYYPam .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rO16zYYPam .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-rO16zYYPam .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rO16zYYPam .dropdown .dropdown-menu .dropdown-item:active,
.cid-rO16zYYPam .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b20000 !important;
}
.cid-rO16zYYPam .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rO16zYYPam .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rO16zYYPam .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-rO16zYYPam .navbar-caption:hover {
  color: inherit!important;
}
.cid-rO16zYYPam .container {
  max-width: 1380px;
}
.cid-rO16zYYPam .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rO16zYYPam .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rO16zYYPam .nav-link:hover,
.cid-rO16zYYPam .nav-link:active,
.cid-rO16zYYPam .nav-link:focus {
  border-bottom: 3px solid #b20000;
  color: #b20000 !important;
}
.cid-rO16zYYPam .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-rO16zYYPam .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-rO16zYYPam .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rO16zYYPam .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rO16zYYPam .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rO16zYYPam .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rO16zYYPam .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rO16zYYPam .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rO16zYYPam .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rO16zYYPam .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rO16zYYPam .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-rO16zYYPam .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rO16zYYPam .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rO16zYYPam .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rO16zYYPam .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rO16zYYPam .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rO16zYYPam .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rO16zYYPam .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rO16zYYPam .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rO16zYYPam .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-rO16zYYPam .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rO16zYYPam .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rO16zYYPam .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rO16zYYPam .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rO16zYYPam .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rO16zYYPam .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rO16zYYPam .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-rO16zYYPam .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rO16zYYPam .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rO16zYYPam .icons-menu span {
  color: #b20000 !important;
}
.cid-rO16zYYPam .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rO16zYYPam .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rO16zYYPam .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-rO16zYYPam .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rO16zYYPam .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rO16zYYPam .dropdown-item.active,
.cid-rO16zYYPam .dropdown-item:active {
  background-color: transparent;
}
.cid-rO16zYYPam .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rO16zYYPam .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rO16zYYPam .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rO16zYYPam .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-rO16zYYPam .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rO16zYYPam .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rO16zYYPam ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rO16zYYPam .navbar-buttons {
  text-align: center;
}
.cid-rO16zYYPam button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rO16zYYPam button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rO16zYYPam button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rO16zYYPam button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rO16zYYPam button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rO16zYYPam button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rO16zYYPam nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO16zYYPam nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rO16zYYPam nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rO16zYYPam nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rO16zYYPam .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rO16zYYPam a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rO16zYYPam .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rO16zYYPam .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-rO16zYYPam .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rO16zYYPam .navbar {
    height: 77px;
  }
  .cid-rO16zYYPam .navbar.opened {
    height: auto;
  }
  .cid-rO16zYYPam .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-th3Hp2ZiBd {
  background-image: url("../../../assets/images/tool.jpg");
}
.cid-th3Hp2ZiBd .mbr-section-title {
  color: #ffffff;
}
.cid-th3Hp2ZiBd .mbr-text,
.cid-th3Hp2ZiBd .mbr-section-btn {
  color: #fafafa;
}
.cid-rO16IQk7hN {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rO16IQk7hN li {
  list-style: none;
}
.cid-rO16IQk7hN .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-rO16IQk7hN .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-rO16IQk7hN .mbr-iconfont {
  font-size: 22px!important;
  padding-right: 12px;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-rO16IQk7hN h4 {
  margin: 0;
}
.cid-rO16IQk7hN ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-rO16IQk7hN .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-rO16IQk7hN .col-title2 {
  color: #b20000;
}
.cid-rO16IQk7hN .item1 {
  color: #000000;
}
.cid-rO16IQk7hN .col-title1 {
  color: #b20000;
}
.cid-uM1q929zDu {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uM1q929zDu li {
  list-style: none;
}
.cid-uM1q929zDu .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uM1q929zDu .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uM1q929zDu .mbr-iconfont {
  font-size: 22px!important;
  padding-right: 12px;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-uM1q929zDu h4 {
  margin: 0;
}
.cid-uM1q929zDu ul {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uM1q929zDu .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-uM1q929zDu .col-title2 {
  color: #b20000;
}
.cid-uM1q929zDu .item1 {
  color: #000000;
}
.cid-uM1q929zDu .col-title1 {
  color: #b20000;
}
.cid-uGGuDKppDq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #181818;
}
.cid-uGGuDKppDq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.7;
}
.cid-uGGuDKppDq img {
  width: 40px;
  height: 40px;
  margin-right: 0.8rem;
}
.cid-uGGuDKppDq h3 {
  margin: 0;
}
.cid-uGGuDKppDq .btn {
  width: 100%;
  border-radius: 30px;
  border-top-right-radius: 0;
  padding: 0.4rem 1rem;
}
.cid-uGGuDKppDq .icons-wrap {
  display: flex;
  align-items: center;
}
.cid-uGGuDKppDq .text-wrap {
  width: 100%;
}
.cid-uGGuDKppDq .item-wrap {
  display: inline-block;
  width: fit-content;
}
.cid-uGGuDKppDq .socicon-wrap {
  width: fit-content;
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-uGGuDKppDq .socicon-wrap .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  background: #181818;
  padding: 10px;
  margin-right: 0.6rem;
  border: 2px solid #181818;
  height: 40px;
  display: flex;
  width: 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 100%;
}
.cid-uGGuDKppDq .socicon-wrap .mbr-iconfont:hover {
  background: #ed6436;
  color: #181818 !important;
  border: 2px solid #181818;
}
.cid-uGGuDKppDq .socicon-wrap p {
  margin-bottom: 0.2rem;
}
.cid-uGGuDKppDq .jq-selectbox__dropdown,
.cid-uGGuDKppDq ul {
  border-radius: 20px!important;
}
.cid-uGGuDKppDq .jq-selectbox {
  border-radius: 30px;
}
.cid-uGGuDKppDq .jq-selectbox__select {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuDKppDq .jq-selectbox li {
  padding: 1.2rem 1.5rem;
}
.cid-uGGuDKppDq input,
.cid-uGGuDKppDq textarea,
.cid-uGGuDKppDq .select {
  border-radius: 30px;
}
.cid-uGGuDKppDq input,
.cid-uGGuDKppDq textarea {
  padding: 1rem 2rem;
}
.cid-uGGuDKppDq textarea {
  min-height: 10rem;
}
.cid-uGGuDKppDq .form-control,
.cid-uGGuDKppDq .field-input {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuDKppDq .form-control::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input::-webkit-input-placeholder,
.cid-uGGuDKppDq .form-control::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuDKppDq .form-control:-moz-placeholder,
.cid-uGGuDKppDq .field-input:-moz-placeholder,
.cid-uGGuDKppDq .form-control:-moz-placeholder,
.cid-uGGuDKppDq .field-input:-moz-placeholder {
  color: #383838;
}
.cid-uGGuDKppDq .form-control:hover,
.cid-uGGuDKppDq .field-input:hover,
.cid-uGGuDKppDq .form-control:focus,
.cid-uGGuDKppDq .field-input:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #181818;
  box-shadow: none;
  outline: none;
}
.cid-uGGuDKppDq .form-control:hover::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input:hover::-webkit-input-placeholder,
.cid-uGGuDKppDq .form-control:focus::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input:focus::-webkit-input-placeholder,
.cid-uGGuDKppDq .form-control:hover::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input:hover::-webkit-input-placeholder,
.cid-uGGuDKppDq .form-control:focus::-webkit-input-placeholder,
.cid-uGGuDKppDq .field-input:focus::-webkit-input-placeholder {
  color: #383838;
}
.cid-uGGuDKppDq .form-control:hover:-moz-placeholder,
.cid-uGGuDKppDq .field-input:hover:-moz-placeholder,
.cid-uGGuDKppDq .form-control:focus:-moz-placeholder,
.cid-uGGuDKppDq .field-input:focus:-moz-placeholder,
.cid-uGGuDKppDq .form-control:hover:-moz-placeholder,
.cid-uGGuDKppDq .field-input:hover:-moz-placeholder,
.cid-uGGuDKppDq .form-control:focus:-moz-placeholder,
.cid-uGGuDKppDq .field-input:focus:-moz-placeholder {
  color: #383838;
}
.cid-uGGuDKppDq .jq-number__spin:hover,
.cid-uGGuDKppDq .jq-number__spin:focus {
  background-color: #181818;
  border-color: #ffffff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-uGGuDKppDq .jq-number__spin {
  background-color: #ffffff;
  border-color: #181818;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uGGuDKppDq .jq-selectbox li,
.cid-uGGuDKppDq .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uGGuDKppDq .jq-selectbox li:hover,
.cid-uGGuDKppDq .jq-selectbox li.selected {
  background-color: #181818;
  color: #ffffff;
}
.cid-uGGuDKppDq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uGGuDKppDq .jq-number__spin.minus:hover:after,
.cid-uGGuDKppDq .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uGGuDKppDq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uGGuDKppDq .jq-number__spin.minus:after,
.cid-uGGuDKppDq .jq-number__spin.plus:after {
  border-top-color: #181818;
  border-bottom-color: #181818;
}
.cid-uGGuDKppDq input::-webkit-clear-button {
  display: none;
}
.cid-uGGuDKppDq input::-webkit-inner-spin-button {
  display: none;
}
.cid-uGGuDKppDq input::-webkit-outer-spin-button {
  display: none;
}
.cid-uGGuDKppDq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uGGuDKppDq .col-md-6 {
  margin-bottom: 2rem;
}
.cid-uGGuDKppDq .form-group {
  margin-bottom: 0.4rem;
}
.cid-uGGuDKppDq .form-control {
  min-height: 2em;
  font-size: 1rem;
  text-align: center;
}
.cid-uGGuDKppDq .title1 {
  margin: 0;
}
.cid-uGGuDKppDq .align-wrap {
  display: block;
}
.cid-uGGuDKppDq .mbr-iconfont {
  font-size: 1.2rem;
  color: #ed6436 !important;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-uGGuDKppDq form {
    padding: 0;
  }
  .cid-uGGuDKppDq .socicon-wrap {
    margin: auto;
  }
}
.cid-uGGuDKppDq .title {
  color: #ed6436;
}
.cid-uGGuDKppDq .icon-title,
.cid-uGGuDKppDq .align-wrap {
  color: #ffffff;
}
.cid-uGGuDKppDq .links-title {
  color: #ffffff;
}
.cid-uGGuDKppDq .title1,
.cid-uGGuDKppDq .title-col {
  color: #ffffff;
}
