body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Oswald', sans-serif;
  font-size: 6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.6rem;
}
.display-2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 5.76rem;
}
.display-4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Oswald', 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: 4.8rem;
  }
}
/* ---- 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: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.88rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 1.6rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #b0f30a !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #0f7699 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary {
  box-shadow: 0 0 0 100px #b0f30a 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: #b0f30a !important;
  border-color: #b0f30a !important;
  color: #000000 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #000000 !important;
  background-color: #7baa07 !important;
  border-color: #7baa07 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #7baa07 !important;
  border-color: #7baa07 !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 0 0 2px #b0f30a inset !important;
  background: transparent !important;
  border: none !important;
  color: #b0f30a !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 #ffffff 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: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info:hover,
.btn-info:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !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 #0f7699 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: #0f7699 !important;
  border-color: #0f7699 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #084053 !important;
  border-color: #084053 !important;
}
.btn-warning:hover,
.btn-warning:focus {
  box-shadow: 0 0 0 2px #0f7699 inset !important;
  background: transparent !important;
  border: none !important;
  color: #0f7699 !important;
}
.btn-warning span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-warning {
    width: -webkit-fill-available;
  }
}
.btn-danger {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger:hover,
.btn-danger:focus {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: #b1a374 !important;
}
.btn-danger span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-danger {
    width: -webkit-fill-available;
  }
}
.btn-white {
  box-shadow: 0 0 0 100px #ffffff inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover,
.btn-white:focus {
  box-shadow: 0 0 0 2px #ffffff inset !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.btn-white span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-white {
    width: -webkit-fill-available;
  }
}
.btn-black {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover,
.btn-black:focus {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: #333333 !important;
}
.btn-black span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .btn-black {
    width: -webkit-fill-available;
  }
}
.btn-primary-outline {
  box-shadow: 0 0 0 2px #b0f30a 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: #699106;
  color: #699106;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000;
  background-color: #b0f30a;
  border-color: #b0f30a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #b0f30a !important;
  border-color: #b0f30a !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus {
  box-shadow: 0 0 0 100px #b0f30a 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: #b0f30a;
  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 #ffffff 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: #cccccc;
  color: #cccccc;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus {
  box-shadow: 0 0 0 100px #ffffff 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: #ffffff;
  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 #0f7699 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: #062e3c;
  color: #062e3c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #0f7699;
  border-color: #0f7699;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0f7699 !important;
  border-color: #0f7699 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus {
  box-shadow: 0 0 0 100px #0f7699 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: #0f7699;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-warning-outline {
    width: -webkit-fill-available;
  }
}
.btn-danger-outline {
  box-shadow: 0 0 0 2px #b1a374 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus {
  box-shadow: 0 0 0 100px #b1a374 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-danger-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-danger-outline span:after {
  content: '';
  position: absolute;
  background: #b1a374;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-danger-outline {
    width: -webkit-fill-available;
  }
}
.btn-black-outline {
  box-shadow: 0 0 0 2px #333333 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  color: #181818 !important;
  overflow: hidden;
  border-top-left-radius: 0px;
  border: none !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus {
  box-shadow: 0 0 0 100px #333333 inset !important;
  background: transparent !important;
  border: none !important;
  color: white !important;
}
.btn-black-outline span {
  position: relative;
  color: white !important;
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
.btn-black-outline span:after {
  content: '';
  position: absolute;
  background: #333333;
  width: 60px;
  height: 50px;
  right: -1px;
  top: -15px;
  z-index: -1;
}
@media (max-width: 767px) {
  .btn-black-outline {
    width: -webkit-fill-available;
  }
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #b0f30a !important;
}
.text-secondary {
  color: #181818 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #0f7699 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #181818 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #b0f30a !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: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #062e3c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #0f7699;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b0f30a;
  border-color: #b0f30a;
  color: #101701;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b0f30a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #effdcc;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #3cbfec;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #b0f30a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b0f30a;
  color: #000000;
}
.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: #b0f30a;
  border-bottom-color: #b0f30a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #b0f30a !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='%23b0f30a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rGtUi5Rzo2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .nav-item:focus,
.cid-rGtUi5Rzo2 .nav-link:focus {
  outline: none;
}
.cid-rGtUi5Rzo2 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:active,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .navbar-caption:hover {
  color: inherit!important;
}
.cid-rGtUi5Rzo2 .container {
  max-width: 1380px;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rGtUi5Rzo2 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rGtUi5Rzo2 .nav-link:hover,
.cid-rGtUi5Rzo2 .nav-link:active,
.cid-rGtUi5Rzo2 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rGtUi5Rzo2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rGtUi5Rzo2 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rGtUi5Rzo2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGtUi5Rzo2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGtUi5Rzo2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rGtUi5Rzo2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rGtUi5Rzo2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGtUi5Rzo2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGtUi5Rzo2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGtUi5Rzo2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGtUi5Rzo2 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGtUi5Rzo2 .dropdown-item.active,
.cid-rGtUi5Rzo2 .dropdown-item:active {
  background-color: transparent;
}
.cid-rGtUi5Rzo2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGtUi5Rzo2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGtUi5Rzo2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rGtUi5Rzo2 .navbar-buttons {
  text-align: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rGtUi5Rzo2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtUi5Rzo2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGtUi5Rzo2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGtUi5Rzo2 .navbar {
    height: 77px;
  }
  .cid-rGtUi5Rzo2 .navbar.opened {
    height: auto;
  }
  .cid-rGtUi5Rzo2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sewSHNoa3S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sewSHNoa3S .carousel {
  height: 500px;
}
.cid-sewSHNoa3S .carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-sewSHNoa3S .carousel-item,
.cid-sewSHNoa3S .carousel-inner {
  height: 500px;
}
.cid-sewSHNoa3S .mbr-overlay {
  z-index: 1;
}
.cid-sewSHNoa3S .carousel-caption {
  bottom: 40px;
}
.cid-sewSHNoa3S .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sewSHNoa3S .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sewSHNoa3S .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sewSHNoa3S .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sewSHNoa3S .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sewSHNoa3S .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sewSHNoa3S .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sewSHNoa3S .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sewSHNoa3S .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sewSHNoa3S .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sewSHNoa3S .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sewSHNoa3S .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sewSHNoa3S .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sewSHNoa3S .carousel-indicators li.active,
.cid-sewSHNoa3S .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sewSHNoa3S .carousel-indicators li::after,
.cid-sewSHNoa3S .carousel-indicators li::before {
  content: none;
}
.cid-sewSHNoa3S .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sewSHNoa3S .carousel-indicators {
    display: none !important;
  }
}
.cid-sewSHNoa3S P {
  color: #b0f30a;
}
.cid-rMf5opySie {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-11-1920x1280.jpg");
}
.cid-rMf5opySie .mbr-text {
  color: #767676;
}
.cid-rMf5opySie img {
  width: 100%;
}
.cid-rMf5opySie .card-img {
  margin-bottom: 0rem;
}
.cid-rMf5opySie .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-rMf5opySie .card-box {
  padding: 2rem 1rem;
}
.cid-rMf5opySie p {
  font-weight: 400;
}
.cid-rMf5opySie .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-rMf5opySie .card {
    margin-bottom: 2rem;
  }
}
.cid-rMf5opySie .mbr-text,
.cid-rMf5opySie .mbr-section-btn {
  text-align: center;
}
.cid-rMf5opySie .card-title,
.cid-rMf5opySie .card-img {
  text-align: center;
}
.cid-sGbjmyWWIZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-17-1920x1280.jpg");
}
.cid-sGbjmyWWIZ .price-term {
  vertical-align: top;
}
@media (min-width: 1200px) {
  .cid-sGbjmyWWIZ .container {
    max-width: 1300px;
    padding: 0 2rem;
  }
}
.cid-sGbjmyWWIZ h4 {
  margin: 0;
}
.cid-sGbjmyWWIZ .card1 {
  background: #4f4943;
}
.cid-sGbjmyWWIZ .card2 {
  background: #8bb621;
}
.cid-sGbjmyWWIZ .icon {
  font-size: 4rem;
  color: #181818;
  display: inline-block;
}
@media (min-width: 767px) {
  .cid-sGbjmyWWIZ .center-card {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    padding: 0;
    z-index: 10;
    background: #8bb621;
    border-radius: 30px;
  }
}
.cid-sGbjmyWWIZ .plan-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  padding: 0 1rem;
}
.cid-sGbjmyWWIZ .plan-item .mbr-iconfont {
  margin-left: 2rem;
  font-size: 18px;
  position: relative;
  top: 8px;
}
.cid-sGbjmyWWIZ .plan-item p {
  margin: 0;
  padding: 6px 0;
  font-weight: 500;
  width: 100%;
}
.cid-sGbjmyWWIZ .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-sGbjmyWWIZ .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-sGbjmyWWIZ .plan-header {
  padding: 2rem 2rem 0rem 2rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.cid-sGbjmyWWIZ .plan-body {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 1rem 1rem;
}
.cid-sGbjmyWWIZ .plan-price {
  padding: 2rem 1rem;
}
.cid-sGbjmyWWIZ .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
}
.cid-sGbjmyWWIZ .row {
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-sGbjmyWWIZ .price-value,
.cid-sGbjmyWWIZ .price-value2 {
  vertical-align: top;
}
@media (max-width: 992px) {
  .cid-sGbjmyWWIZ .plan {
    margin-bottom: 3rem;
  }
  .cid-sGbjmyWWIZ .content {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sGbjmyWWIZ .plan-price {
    padding: 2rem 1rem;
  }
  .cid-sGbjmyWWIZ .plan-body {
    padding: 0;
  }
  .cid-sGbjmyWWIZ .plan-header {
    padding: 2rem 1rem;
  }
}
.cid-sGbjmyWWIZ .plan-title {
  color: #f2f2f4;
}
.cid-sGbjmyWWIZ .plan-title2 {
  color: #ffffff;
}
.cid-sGbjmyWWIZ .month2,
.cid-sGbjmyWWIZ .plan-header {
  color: #ffffff;
  text-align: center;
}
.cid-sGbjmyWWIZ .item2 {
  color: #ffffff;
}
.cid-sGbjmyWWIZ .price-figure2 {
  color: #ffffff;
}
.cid-sGbjmyWWIZ .price-value2 {
  color: #ffffff;
}
.cid-sGbjmyWWIZ H2 {
  color: #ffffff;
}
.cid-sGbjmyWWIZ .plan-item p,
.cid-sGbjmyWWIZ .plan-item .mbr-iconfont {
  color: #ffffff;
}
.cid-sGbjmyWWIZ .price-figure,
.cid-sGbjmyWWIZ .plan-price {
  color: #f2f2f4;
}
.cid-sGbjmyWWIZ .month,
.cid-sGbjmyWWIZ .plan-header {
  color: #aff0f6;
}
.cid-sGbjmyWWIZ .price-figure2,
.cid-sGbjmyWWIZ .plan-price {
  text-align: center;
}
.cid-sGbjmyWWIZ .mbr-text,
.cid-sGbjmyWWIZ .mbr-section-btn,
.cid-sGbjmyWWIZ .content {
  color: #ffffff;
}
.cid-s3BCqbXvCf {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/capa2-768x508.jpg");
}
.cid-s3BCqbXvCf .container-fluid {
  padding: 0 3rem;
}
.cid-s3BCqbXvCf .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-s3BCqbXvCf .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-s3BCqbXvCf .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-s3BCqbXvCf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-s3BCqbXvCf .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-s3BCqbXvCf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-s3BCqbXvCf a.close:hover {
  color: #ffffff;
}
.cid-s3BCqbXvCf svg {
  transition: all 0.5s ease-in;
}
.cid-s3BCqbXvCf svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-s3BCqbXvCf svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-s3BCqbXvCf svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-s3BCqbXvCf .container-fluid {
    padding: 0 1rem;
  }
}
.cid-snNrB7PjUY {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #f2f2f4;
}
.cid-snNrB7PjUY img {
  width: 180px;
  margin: auto;
}
.cid-snNrB7PjUY .card {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-snNrB7PjUY H1 {
  color: #ed6436;
}
.cid-t4SB5gFShS {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #f2f2f4;
}
.cid-t4SB5gFShS img {
  width: 180px;
  margin: auto;
}
.cid-t4SB5gFShS .card {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-t4SB5gFShS H1 {
  color: #ed6436;
}
.cid-sOzpxi9IxC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1280x854.jpg");
}
.cid-sOzpxi9IxC .carousel {
  z-index: 2;
  position: relative;
}
.cid-sOzpxi9IxC .user {
  padding: 0 !important;
}
.cid-sOzpxi9IxC .mbr-iconfont {
  font-size: 3rem;
  color: #181818 !important;
}
.cid-sOzpxi9IxC .user_image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  position: relative;
}
.cid-sOzpxi9IxC .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sOzpxi9IxC .user_image:before {
  content: '';
  position: absolute;
  height: 198px;
  width: 198px;
  left: 0px;
  top: 0px;
  background: transparent;
  border-radius: 100%;
  z-index: 0;
}
.cid-sOzpxi9IxC .carousel-item {
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sOzpxi9IxC .carousel-item.active,
.cid-sOzpxi9IxC .carousel-item-next,
.cid-sOzpxi9IxC .carousel-item-prev {
  display: flex;
}
.cid-sOzpxi9IxC .user_name {
  margin: 0;
}
.cid-sOzpxi9IxC .carousel-controls a {
  font-size: 2rem;
}
.cid-sOzpxi9IxC .carousel-controls a span {
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  top: 100px;
  padding: 10px;
  border-radius: 50%;
  color: #383838;
  background: transparent;
  opacity: 0.5;
}
.cid-sOzpxi9IxC .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-sOzpxi9IxC ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-sOzpxi9IxC .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #383838;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-sOzpxi9IxC .carousel-indicators li:hover {
  opacity: 1;
}
.cid-sOzpxi9IxC .carousel-indicators .active {
  opacity: 1;
  width: 8px;
  height: 8px;
}
.cid-sOzpxi9IxC .carousel-indicators .active:before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: -3px;
  top: -3px;
  background: transparent;
  border-radius: 100%;
  z-index: -1;
}
.cid-rMntoAsNof {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #0b1b3f;
}
.cid-rMntoAsNof .google-map {
  height: 25rem;
  position: relative;
}
.cid-rMntoAsNof .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rMntoAsNof .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rMntoAsNof .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rMntoAsNof .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rMntoAsNof .wrapper {
  margin-top: -10rem;
  background: #e4d295;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-rMntoAsNof .form-container {
  padding: 3rem;
}
.cid-rMntoAsNof .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-rMntoAsNof .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #0f7699, #4f4943);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-rMntoAsNof .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-rMntoAsNof .form-group,
  .cid-rMntoAsNof .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-rMntoAsNof .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-rMntoAsNof .form-control:focus,
.cid-rMntoAsNof .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-rMntoAsNof textarea.form-control {
  min-height: 170px;
}
.cid-rMntoAsNof .form-group {
  margin-bottom: 1rem;
}
.cid-rMntoAsNof input::-webkit-input-placeholder,
.cid-rMntoAsNof textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-rMntoAsNof input:-moz-placeholder,
.cid-rMntoAsNof textarea:-moz-placeholder {
  color: #565656;
}
.cid-rMntoAsNof .jq-selectbox li,
.cid-rMntoAsNof .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-rMntoAsNof .jq-selectbox li:hover,
.cid-rMntoAsNof .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-rMntoAsNof .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-rMntoAsNof .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rMntoAsNof .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rMntoAsNof .text-block {
    margin-bottom: 2rem;
  }
  .cid-rMntoAsNof .wrapper {
    margin-top: 0;
  }
}
.cid-rMntoAsNof .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rMntoAsNof .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-rMntoAsNof .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rMntoAsNof .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-rMntoAsNof .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rMntoAsNof .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rMntoAsNof .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rMntoAsNof .mbr-text,
.cid-rMntoAsNof .social-list .mbr-iconfont-social {
  color: #a0ed19;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .nav-item:focus,
.cid-rMfGfkzY0w .nav-link:focus {
  outline: none;
}
.cid-rMfGfkzY0w .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rMfGfkzY0w .dropdown .dropdown-menu .dropdown-item:active,
.cid-rMfGfkzY0w .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rMfGfkzY0w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMfGfkzY0w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .navbar-caption:hover {
  color: inherit!important;
}
.cid-rMfGfkzY0w .container {
  max-width: 1380px;
}
.cid-rMfGfkzY0w .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rMfGfkzY0w .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rMfGfkzY0w .nav-link:hover,
.cid-rMfGfkzY0w .nav-link:active,
.cid-rMfGfkzY0w .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rMfGfkzY0w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rMfGfkzY0w .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rMfGfkzY0w .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMfGfkzY0w .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMfGfkzY0w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMfGfkzY0w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMfGfkzY0w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rMfGfkzY0w .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMfGfkzY0w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMfGfkzY0w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMfGfkzY0w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMfGfkzY0w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMfGfkzY0w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMfGfkzY0w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMfGfkzY0w .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMfGfkzY0w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMfGfkzY0w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMfGfkzY0w .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-rMfGfkzY0w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMfGfkzY0w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMfGfkzY0w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMfGfkzY0w .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMfGfkzY0w .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMfGfkzY0w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMfGfkzY0w .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rMfGfkzY0w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMfGfkzY0w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMfGfkzY0w .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rMfGfkzY0w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMfGfkzY0w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMfGfkzY0w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMfGfkzY0w .dropdown-item.active,
.cid-rMfGfkzY0w .dropdown-item:active {
  background-color: transparent;
}
.cid-rMfGfkzY0w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMfGfkzY0w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMfGfkzY0w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMfGfkzY0w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rMfGfkzY0w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMfGfkzY0w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMfGfkzY0w ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMfGfkzY0w .navbar-buttons {
  text-align: center;
}
.cid-rMfGfkzY0w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMfGfkzY0w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rMfGfkzY0w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMfGfkzY0w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMfGfkzY0w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMfGfkzY0w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMfGfkzY0w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMfGfkzY0w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMfGfkzY0w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMfGfkzY0w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMfGfkzY0w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMfGfkzY0w a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMfGfkzY0w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rMfGfkzY0w .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-rMfGfkzY0w .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMfGfkzY0w .navbar {
    height: 77px;
  }
  .cid-rMfGfkzY0w .navbar.opened {
    height: auto;
  }
  .cid-rMfGfkzY0w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMgyxAS6sn {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/face-diagnstico-510x340.jpg");
}
.cid-rMgyxAS6sn .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rMgyxAS6sn .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rMgyxAS6sn .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rMgyxAS6sn .mbr-text,
.cid-rMgyxAS6sn .mbr-section-btn {
  text-align: left;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .nav-item:focus,
.cid-rMhnJVLTKb .nav-link:focus {
  outline: none;
}
.cid-rMhnJVLTKb .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rMhnJVLTKb .dropdown .dropdown-menu .dropdown-item:active,
.cid-rMhnJVLTKb .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rMhnJVLTKb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMhnJVLTKb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .navbar-caption:hover {
  color: inherit!important;
}
.cid-rMhnJVLTKb .container {
  max-width: 1380px;
}
.cid-rMhnJVLTKb .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rMhnJVLTKb .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rMhnJVLTKb .nav-link:hover,
.cid-rMhnJVLTKb .nav-link:active,
.cid-rMhnJVLTKb .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rMhnJVLTKb .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-rMhnJVLTKb .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rMhnJVLTKb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMhnJVLTKb .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMhnJVLTKb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMhnJVLTKb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMhnJVLTKb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-rMhnJVLTKb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMhnJVLTKb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMhnJVLTKb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMhnJVLTKb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMhnJVLTKb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMhnJVLTKb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMhnJVLTKb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMhnJVLTKb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMhnJVLTKb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMhnJVLTKb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMhnJVLTKb .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-rMhnJVLTKb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMhnJVLTKb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMhnJVLTKb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMhnJVLTKb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMhnJVLTKb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMhnJVLTKb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMhnJVLTKb .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rMhnJVLTKb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMhnJVLTKb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMhnJVLTKb .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rMhnJVLTKb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMhnJVLTKb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMhnJVLTKb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMhnJVLTKb .dropdown-item.active,
.cid-rMhnJVLTKb .dropdown-item:active {
  background-color: transparent;
}
.cid-rMhnJVLTKb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMhnJVLTKb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMhnJVLTKb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMhnJVLTKb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rMhnJVLTKb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMhnJVLTKb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMhnJVLTKb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMhnJVLTKb .navbar-buttons {
  text-align: center;
}
.cid-rMhnJVLTKb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMhnJVLTKb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rMhnJVLTKb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMhnJVLTKb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMhnJVLTKb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMhnJVLTKb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMhnJVLTKb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMhnJVLTKb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMhnJVLTKb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMhnJVLTKb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMhnJVLTKb .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMhnJVLTKb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMhnJVLTKb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rMhnJVLTKb .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-rMhnJVLTKb .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMhnJVLTKb .navbar {
    height: 77px;
  }
  .cid-rMhnJVLTKb .navbar.opened {
    height: auto;
  }
  .cid-rMhnJVLTKb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMhnJYTPHo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/face-seo-510x339.jpg");
}
.cid-rMhnJYTPHo .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rMhnJYTPHo .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rMhnJYTPHo .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rMhnJYTPHo .mbr-text,
.cid-rMhnJYTPHo .mbr-section-btn {
  text-align: left;
}
.cid-rMhnJYTPHo P {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rMhAtcMPro .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-rMhAtcMPro .nav-item:focus,
.cid-rMhAtcMPro .nav-link:focus {
  outline: none;
}
.cid-rMhAtcMPro .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rMhAtcMPro .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-rMhAtcMPro .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rMhAtcMPro .dropdown .dropdown-menu .dropdown-item:active,
.cid-rMhAtcMPro .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rMhAtcMPro .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMhAtcMPro .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMhAtcMPro .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-rMhAtcMPro .navbar-caption:hover {
  color: inherit!important;
}
.cid-rMhAtcMPro .container {
  max-width: 1380px;
}
.cid-rMhAtcMPro .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rMhAtcMPro .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rMhAtcMPro .nav-link:hover,
.cid-rMhAtcMPro .nav-link:active,
.cid-rMhAtcMPro .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rMhAtcMPro .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rMhAtcMPro .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rMhAtcMPro .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMhAtcMPro .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMhAtcMPro .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMhAtcMPro .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMhAtcMPro .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rMhAtcMPro .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMhAtcMPro .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMhAtcMPro .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMhAtcMPro .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-rMhAtcMPro .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMhAtcMPro .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMhAtcMPro .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMhAtcMPro .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMhAtcMPro .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMhAtcMPro .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMhAtcMPro .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMhAtcMPro .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMhAtcMPro .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-rMhAtcMPro .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMhAtcMPro .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMhAtcMPro .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMhAtcMPro .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMhAtcMPro .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMhAtcMPro .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMhAtcMPro .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rMhAtcMPro .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMhAtcMPro .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMhAtcMPro .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rMhAtcMPro .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMhAtcMPro .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMhAtcMPro .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-rMhAtcMPro .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMhAtcMPro .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMhAtcMPro .dropdown-item.active,
.cid-rMhAtcMPro .dropdown-item:active {
  background-color: transparent;
}
.cid-rMhAtcMPro .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMhAtcMPro .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMhAtcMPro .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMhAtcMPro .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rMhAtcMPro .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMhAtcMPro .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMhAtcMPro ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMhAtcMPro .navbar-buttons {
  text-align: center;
}
.cid-rMhAtcMPro button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMhAtcMPro button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rMhAtcMPro button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMhAtcMPro button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMhAtcMPro button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMhAtcMPro button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMhAtcMPro nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMhAtcMPro nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMhAtcMPro nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMhAtcMPro nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMhAtcMPro .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMhAtcMPro a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMhAtcMPro .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rMhAtcMPro .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-rMhAtcMPro .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMhAtcMPro .navbar {
    height: 77px;
  }
  .cid-rMhAtcMPro .navbar.opened {
    height: auto;
  }
  .cid-rMhAtcMPro .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMhAtecLs3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/face-crm-1-965x644.jpg");
}
.cid-rMhAtecLs3 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rMhAtecLs3 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rMhAtecLs3 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rMhAtecLs3 .mbr-text,
.cid-rMhAtecLs3 .mbr-section-btn {
  text-align: left;
}
.cid-rMhAtecLs3 P {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rGtUi5Rzo2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .nav-item:focus,
.cid-rGtUi5Rzo2 .nav-link:focus {
  outline: none;
}
.cid-rGtUi5Rzo2 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item {
  font-weight: 700!important;
  padding: 0!important;
  border-bottom: 1px solid lightgray;
  margin: 0.5rem 1rem!important;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:active,
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rGtUi5Rzo2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rGtUi5Rzo2 .navbar-caption:hover {
  color: inherit!important;
}
.cid-rGtUi5Rzo2 .container {
  max-width: 1380px;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rGtUi5Rzo2 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rGtUi5Rzo2 .nav-link:hover,
.cid-rGtUi5Rzo2 .nav-link:active,
.cid-rGtUi5Rzo2 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rGtUi5Rzo2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rGtUi5Rzo2 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rGtUi5Rzo2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rGtUi5Rzo2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rGtUi5Rzo2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rGtUi5Rzo2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rGtUi5Rzo2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rGtUi5Rzo2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rGtUi5Rzo2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rGtUi5Rzo2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rGtUi5Rzo2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rGtUi5Rzo2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rGtUi5Rzo2 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rGtUi5Rzo2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rGtUi5Rzo2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rGtUi5Rzo2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rGtUi5Rzo2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rGtUi5Rzo2 .dropdown-item.active,
.cid-rGtUi5Rzo2 .dropdown-item:active {
  background-color: transparent;
}
.cid-rGtUi5Rzo2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rGtUi5Rzo2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rGtUi5Rzo2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rGtUi5Rzo2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rGtUi5Rzo2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rGtUi5Rzo2 .navbar-buttons {
  text-align: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rGtUi5Rzo2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rGtUi5Rzo2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rGtUi5Rzo2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rGtUi5Rzo2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rGtUi5Rzo2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rGtUi5Rzo2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.cid-rGtUi5Rzo2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rGtUi5Rzo2 .navbar {
    height: 77px;
  }
  .cid-rGtUi5Rzo2 .navbar.opened {
    height: auto;
  }
  .cid-rGtUi5Rzo2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMWcBJrUPG {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/capa4-950x604.jpg");
}
.cid-rMWcBJrUPG .container-fluid {
  padding: 0 3rem;
}
.cid-rMWcBJrUPG .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-rMWcBJrUPG .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-rMWcBJrUPG .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rMWcBJrUPG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rMWcBJrUPG .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-rMWcBJrUPG a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rMWcBJrUPG a.close:hover {
  color: #ffffff;
}
.cid-rMWcBJrUPG svg {
  transition: all 0.5s ease-in;
}
.cid-rMWcBJrUPG svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-rMWcBJrUPG svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-rMWcBJrUPG svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-rMWcBJrUPG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-rMWlCwNRb0 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #cdd4f6;
}
.cid-rMWlCwNRb0 .mbr-shop {
  display: table;
  width: 100%;
}
.cid-rMWlCwNRb0 .mbr-shop .row {
  margin: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-rMWlCwNRb0 .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-rMWlCwNRb0 .categories {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-rMWlCwNRb0 .mbr-gallery-item {
    width: 33.33%;
  }
}
.cid-rMWlCwNRb0 li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-rMWlCwNRb0 .container {
  max-width: 1400px;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter ul li:before {
  content: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-rMWlCwNRb0 .sidebar_wraper {
  padding: 1rem 0;
}
.cid-rMWlCwNRb0 .galleryItem {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.cid-rMWlCwNRb0 .item-title {
  padding-bottom: 0.4rem;
  font-weight: 700;
}
.cid-rMWlCwNRb0 .display-5 {
  font-size: 1.4rem;
}
.cid-rMWlCwNRb0 .shop-item-price,
.cid-rMWlCwNRb0 .oldprice {
  font-size: 1.1rem;
  font-weight: 600!important;
}
.cid-rMWlCwNRb0 .mbr-shop .sidebar-background:after {
  background: transparent!important;
  background-color: rgba(0, 0, 0, 0.05);
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  top: -20px;
  right: 3px;
}
.cid-rMWlCwNRb0 .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-rMWlCwNRb0 .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-rMWlCwNRb0 .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-rMWlCwNRb0 .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-rMWlCwNRb0 .mbr-shop .hide-modal {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rMWlCwNRb0 .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-rMWlCwNRb0 .mbr-shop .filter-by-pu,
.cid-rMWlCwNRb0 .mbr-shop .filter-by-pd,
.cid-rMWlCwNRb0 .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-rMWlCwNRb0 .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-rMWlCwNRb0 .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem h4,
.cid-rMWlCwNRb0 .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem h5,
.cid-rMWlCwNRb0 .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem p,
.cid-rMWlCwNRb0 .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-rMWlCwNRb0 .mbr-shop .item-button {
  text-align: center;
}
.cid-rMWlCwNRb0 .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-rMWlCwNRb0 .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-rMWlCwNRb0 .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-rMWlCwNRb0 .mbr-shop .sidebar-block {
  position: relative;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-rMWlCwNRb0 .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #5b686b;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item__hided h4,
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item__hided h5,
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-rMWlCwNRb0 .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-rMWlCwNRb0 .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-rMWlCwNRb0 .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-rMWlCwNRb0 .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-rMWlCwNRb0 .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-rMWlCwNRb0 .mbr-shop .range-controls {
  position: relative;
}
.cid-rMWlCwNRb0 .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-rMWlCwNRb0 .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-rMWlCwNRb0 .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-rMWlCwNRb0 .mbr-shop .toggle:hover,
.cid-rMWlCwNRb0 .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-rMWlCwNRb0 .mbr-shop .min-toggle {
  left: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .max-toggle {
  right: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .hided-by-price {
  display: none;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-rMWlCwNRb0 .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-rMWlCwNRb0 .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-rMWlCwNRb0 .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-rMWlCwNRb0 .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rMWlCwNRb0 .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-rMWlCwNRb0 .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-rMWlCwNRb0 .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-rMWlCwNRb0 .mbr-shop .shop-items .onsale,
.cid-rMWlCwNRb0 .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-rMWlCwNRb0 .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-rMWlCwNRb0 .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-rMWlCwNRb0 .mbr-shop .price-range {
  display: inline-block;
}
.cid-rMWlCwNRb0 .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-rMWlCwNRb0 .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-rMWlCwNRb0 .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-rMWlCwNRb0 .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-rMWlCwNRb0 .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-rMWlCwNRb0 .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-rMWlCwNRb0 .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-rMWlCwNRb0 .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-rMWlCwNRb0 .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-rMWlCwNRb0 .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-rMWlCwNRb0 .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item {
    width: 50%;
  }
  .cid-rMWlCwNRb0 .mbr-shop__row {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cid-rMWlCwNRb0 .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-rMWlCwNRb0 .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-rMWlCwNRb0 .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-rMWlCwNRb0 .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-rMWlCwNRb0 .wrapper-shop-items,
  .cid-rMWlCwNRb0 .mbr-shop__row {
    padding: 0;
  }
  .cid-rMWlCwNRb0 .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-rMWlCwNRb0 .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-rMWlCwNRb0 .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-rMWlCwNRb0 .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-rMWlCwNRb0 .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-rMWlCwNRb0 .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-rMWlCwNRb0 .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-rMWlCwNRb0 .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-rMWlCwNRb0 .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-rMWlCwNRb0 .range-controls {
  display: block !important;
}
.cid-rMWlCwNRb0 .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMWlCwNRb0 .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-rMWlCwNRb0 LI {
  text-align: center;
}
.cid-rMWlCwNRb0 .sidebar-title {
  text-align: center;
}
.cid-rMWlCwNRb0 .card-description UL {
  text-align: right;
}
.cid-sU9zX8MQWF {
  padding-top: 120px;
  padding-bottom: 135px;
  position: relative;
  background-image: url("../../../assets/images/mbr-1920x952.jpg");
}
.cid-sU9zX8MQWF .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sU9zX8MQWF a.panel-title {
  display: flex;
  align-items: center;
}
.cid-sU9zX8MQWF a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sU9zX8MQWF h6 {
  font-weight: 700;
  margin-bottom: 0;
}
.cid-sU9zX8MQWF .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #b0f30a;
}
.cid-sU9zX8MQWF H6 {
  color: #4479d9;
}
.cid-s9DZ6XURKt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f2f2f4;
}
.cid-s9DZ6XURKt .mbr-section-subtitle {
  color: #767676;
}
.cid-s9DZ6XURKt .container-table {
  margin: 0 auto;
}
.cid-s9DZ6XURKt .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-s9DZ6XURKt .dataTables_wrapper {
  display: block;
}
.cid-s9DZ6XURKt .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-s9DZ6XURKt .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-s9DZ6XURKt table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-s9DZ6XURKt table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #cccccc;
  transition: all .2s;
}
.cid-s9DZ6XURKt table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-s9DZ6XURKt table td {
  border: 1px solid #cccccc;
}
.cid-s9DZ6XURKt .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-s9DZ6XURKt .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-s9DZ6XURKt .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-s9DZ6XURKt .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-s9DZ6XURKt .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-s9DZ6XURKt .dataTables_filter {
    text-align: center;
  }
  .cid-s9DZ6XURKt .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-s9DZ6XURKt .head-item,
.cid-s9DZ6XURKt .body-item {
  text-align: center;
}
.cid-rN0pOIZ5cO {
  padding-top: 15px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpg");
}
.cid-rN0pOIZ5cO .menu-item {
  padding: 0 1rem 1rem 1rem;
}
.cid-rN0pOIZ5cO .menu-item .special-label {
  display: none;
}
.cid-rN0pOIZ5cO .menu-item.special-item {
  padding-bottom: 0;
  margin-bottom: 1rem;
  border: 2px solid #ff3366;
}
.cid-rN0pOIZ5cO .menu-item.special-item .special-label {
  display: block;
  width: 100%;
  word-break: break-word;
}
.cid-rN0pOIZ5cO .menu-item.special-item .special-label .label-text {
  max-width: 100%;
  background: #ff3366;
  padding: .5rem 1rem;
  display: inline-block;
}
.cid-rN0pOIZ5cO .special-label {
  color: #fff;
}
.cid-rN0pOIZ5cO .menu-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-rN0pOIZ5cO .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
  width: 100%;
}
.cid-rN0pOIZ5cO .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-rN0pOIZ5cO .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-rN0pOIZ5cO .menu-row {
  margin: 0;
}
.cid-rN0pOIZ5cO .group-title {
  color: #0b1b3f;
  font-weight: bold;
}
.cid-rN0pOIZ5cO SPAN {
  color: #787324;
}
.cid-rN0pOIZ5cO .box-text {
  color: #0b1b3f;
}
.cid-rN0pOIZ5cO .mbr-section-title,
.cid-rN0pOIZ5cO .ornament {
  text-align: center;
  color: #0f7699;
}
.cid-rN0pOIZ5cO .item-title {
  color: #181818;
}
.cid-rPSRmcDX92 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/capa2-768x508.jpg");
}
.cid-rPSRmcDX92 *:focus {
  outline: none;
}
.cid-rPSRmcDX92 .form-group {
  margin-bottom: 2rem;
}
.cid-rPSRmcDX92 .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #000000;
  color: #000000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-rPSRmcDX92 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-rPSRmcDX92 .form-control::-webkit-input-placeholder {
  color: #000000;
}
.cid-rPSRmcDX92 .form-control::-moz-placeholder {
  color: #000000;
}
.cid-rPSRmcDX92 .form-control:-ms-input-placeholder {
  color: #000000;
}
.cid-rPSRmcDX92 .form-control:-moz-placeholder {
  color: #000000;
}
.cid-rPSRmcDX92 input.form-control {
  padding: 1px 0;
}
.cid-rPSRmcDX92 .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-rPSRmcDX92 .soc-item .socicon {
  font-size: 1.5rem;
  color: #000000;
  opacity: 1;
}
.cid-rPSRmcDX92 .soc-item .socicon:hover {
  opacity: .5;
}
.cid-rPSRmcDX92 .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-rPSRmcDX92 .first-column,
  .cid-rPSRmcDX92 .form-1 {
    text-align: center;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rPsSMgblUT .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-rPsSMgblUT .nav-item:focus,
.cid-rPsSMgblUT .nav-link:focus {
  outline: none;
}
.cid-rPsSMgblUT .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rPsSMgblUT .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-rPsSMgblUT .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rPsSMgblUT .dropdown .dropdown-menu .dropdown-item:active,
.cid-rPsSMgblUT .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rPsSMgblUT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPsSMgblUT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPsSMgblUT .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-rPsSMgblUT .navbar-caption:hover {
  color: inherit!important;
}
.cid-rPsSMgblUT .container {
  max-width: 1380px;
}
.cid-rPsSMgblUT .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rPsSMgblUT .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rPsSMgblUT .nav-link:hover,
.cid-rPsSMgblUT .nav-link:active,
.cid-rPsSMgblUT .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rPsSMgblUT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rPsSMgblUT .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rPsSMgblUT .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPsSMgblUT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPsSMgblUT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPsSMgblUT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPsSMgblUT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rPsSMgblUT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPsSMgblUT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPsSMgblUT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPsSMgblUT .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-rPsSMgblUT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPsSMgblUT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPsSMgblUT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPsSMgblUT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPsSMgblUT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPsSMgblUT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPsSMgblUT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPsSMgblUT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPsSMgblUT .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-rPsSMgblUT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPsSMgblUT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPsSMgblUT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPsSMgblUT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPsSMgblUT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPsSMgblUT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPsSMgblUT .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rPsSMgblUT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPsSMgblUT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPsSMgblUT .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rPsSMgblUT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPsSMgblUT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPsSMgblUT .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-rPsSMgblUT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPsSMgblUT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPsSMgblUT .dropdown-item.active,
.cid-rPsSMgblUT .dropdown-item:active {
  background-color: transparent;
}
.cid-rPsSMgblUT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPsSMgblUT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPsSMgblUT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPsSMgblUT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rPsSMgblUT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPsSMgblUT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPsSMgblUT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPsSMgblUT .navbar-buttons {
  text-align: center;
}
.cid-rPsSMgblUT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPsSMgblUT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rPsSMgblUT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPsSMgblUT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPsSMgblUT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPsSMgblUT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPsSMgblUT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPsSMgblUT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPsSMgblUT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPsSMgblUT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPsSMgblUT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPsSMgblUT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPsSMgblUT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPsSMgblUT .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-rPsSMgblUT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPsSMgblUT .navbar {
    height: 77px;
  }
  .cid-rPsSMgblUT .navbar.opened {
    height: auto;
  }
  .cid-rPsSMgblUT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s6ByDoXS8z {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-s6ByDoXS8z .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-s6ByDoXS8z .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-s6ByDoXS8z .rev,
.cid-s6ByDoXS8z .mbr-iconfont {
  display: inline-block;
}
.cid-s6ByDoXS8z .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-s6ByDoXS8z .card-img {
  position: relative;
}
.cid-s6ByDoXS8z .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-s6ByDoXS8z .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-s6ByDoXS8z .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-s6ByDoXS8z .card-box {
  padding: 1.5rem;
}
.cid-s6ByDoXS8z .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-s6ByDoXS8z .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-s6ByDoXS8z .mbr-section-title,
.cid-s6ByDoXS8z .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-s6ByDoXS8z .card-text,
.cid-s6ByDoXS8z .mbr-section-btn,
.cid-s6ByDoXS8z .ico-line {
  text-align: left;
  color: #767676;
}
.cid-s6ByDoXS8z .mbr-text,
.cid-s6ByDoXS8z .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-s6ByDoXS8z .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-s7mr0VRKdt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #e4d295;
}
.cid-s7mr0VRKdt img {
  width: 100%;
  height: 130px;
  object-fit: cover;
}
.cid-s7mr0VRKdt .row {
  justify-content: center;
}
.cid-s7mr0VRKdt .img-wrap span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-s7mr0VRKdt .img-wrap {
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: relative;
}
.cid-s7mr0VRKdt .img-wrap:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: black;
  opacity: 0;
}
.cid-s7mr0VRKdt .img-wrap:hover:before {
  opacity: 0.2;
}
.cid-s7mr0VRKdt .img-wrap:hover span {
  opacity: 1;
}
@media (min-width: 992px) {
  .cid-s7mr0VRKdt .col-lg-x {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-s7mr0VRKdt .item {
  padding: 0.5rem;
}
@media (max-width: 767px) {
  .cid-s7mr0VRKdt .item {
    padding: 0.5rem;
  }
  .cid-s7mr0VRKdt .row {
    padding: 0 0.5rem;
  }
}
.cid-s7mr0VRKdt .btn {
  border-radius: 0;
}
.cid-s7mr0VRKdt .btn .mbr-iconfont {
  font-size: 1rem!important;
  margin: 0 0.5rem;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .nav-item:focus,
.cid-rPxhwVRUl6 .nav-link:focus {
  outline: none;
}
.cid-rPxhwVRUl6 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rPxhwVRUl6 .dropdown .dropdown-menu .dropdown-item:active,
.cid-rPxhwVRUl6 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rPxhwVRUl6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rPxhwVRUl6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .navbar-caption:hover {
  color: inherit!important;
}
.cid-rPxhwVRUl6 .container {
  max-width: 1380px;
}
.cid-rPxhwVRUl6 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rPxhwVRUl6 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rPxhwVRUl6 .nav-link:hover,
.cid-rPxhwVRUl6 .nav-link:active,
.cid-rPxhwVRUl6 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rPxhwVRUl6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rPxhwVRUl6 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rPxhwVRUl6 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rPxhwVRUl6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rPxhwVRUl6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rPxhwVRUl6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rPxhwVRUl6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rPxhwVRUl6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rPxhwVRUl6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rPxhwVRUl6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rPxhwVRUl6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rPxhwVRUl6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rPxhwVRUl6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rPxhwVRUl6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rPxhwVRUl6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rPxhwVRUl6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rPxhwVRUl6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rPxhwVRUl6 .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-rPxhwVRUl6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rPxhwVRUl6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rPxhwVRUl6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rPxhwVRUl6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rPxhwVRUl6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rPxhwVRUl6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rPxhwVRUl6 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rPxhwVRUl6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rPxhwVRUl6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rPxhwVRUl6 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rPxhwVRUl6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rPxhwVRUl6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rPxhwVRUl6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rPxhwVRUl6 .dropdown-item.active,
.cid-rPxhwVRUl6 .dropdown-item:active {
  background-color: transparent;
}
.cid-rPxhwVRUl6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rPxhwVRUl6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rPxhwVRUl6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rPxhwVRUl6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rPxhwVRUl6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rPxhwVRUl6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rPxhwVRUl6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rPxhwVRUl6 .navbar-buttons {
  text-align: center;
}
.cid-rPxhwVRUl6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rPxhwVRUl6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rPxhwVRUl6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rPxhwVRUl6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rPxhwVRUl6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rPxhwVRUl6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rPxhwVRUl6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPxhwVRUl6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rPxhwVRUl6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rPxhwVRUl6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rPxhwVRUl6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rPxhwVRUl6 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPxhwVRUl6 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rPxhwVRUl6 .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-rPxhwVRUl6 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rPxhwVRUl6 .navbar {
    height: 77px;
  }
  .cid-rPxhwVRUl6 .navbar.opened {
    height: auto;
  }
  .cid-rPxhwVRUl6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rPxhx7bGQ1 {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #110f0f;
}
.cid-rPxhx7bGQ1 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rPxhx7bGQ1 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rPxhx7bGQ1 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rPxhx7bGQ1 .mbr-text,
.cid-rPxhx7bGQ1 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-rPxhx7bGQ1 P {
  color: #cccccc;
  text-align: center;
}
.cid-rPxhx7bGQ1 .card-title,
.cid-rPxhx7bGQ1 .card-img {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .nav-item:focus,
.cid-rRUeqslY4Q .nav-link:focus {
  outline: none;
}
.cid-rRUeqslY4Q .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rRUeqslY4Q .dropdown .dropdown-menu .dropdown-item:active,
.cid-rRUeqslY4Q .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rRUeqslY4Q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rRUeqslY4Q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .navbar-caption:hover {
  color: inherit!important;
}
.cid-rRUeqslY4Q .container {
  max-width: 1380px;
}
.cid-rRUeqslY4Q .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rRUeqslY4Q .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rRUeqslY4Q .nav-link:hover,
.cid-rRUeqslY4Q .nav-link:active,
.cid-rRUeqslY4Q .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rRUeqslY4Q .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-rRUeqslY4Q .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rRUeqslY4Q .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rRUeqslY4Q .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rRUeqslY4Q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rRUeqslY4Q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rRUeqslY4Q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-rRUeqslY4Q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rRUeqslY4Q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rRUeqslY4Q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rRUeqslY4Q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rRUeqslY4Q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rRUeqslY4Q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rRUeqslY4Q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rRUeqslY4Q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rRUeqslY4Q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rRUeqslY4Q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rRUeqslY4Q .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-rRUeqslY4Q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rRUeqslY4Q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rRUeqslY4Q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rRUeqslY4Q .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rRUeqslY4Q .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rRUeqslY4Q .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rRUeqslY4Q .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rRUeqslY4Q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rRUeqslY4Q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rRUeqslY4Q .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rRUeqslY4Q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rRUeqslY4Q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rRUeqslY4Q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rRUeqslY4Q .dropdown-item.active,
.cid-rRUeqslY4Q .dropdown-item:active {
  background-color: transparent;
}
.cid-rRUeqslY4Q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rRUeqslY4Q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rRUeqslY4Q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rRUeqslY4Q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rRUeqslY4Q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rRUeqslY4Q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rRUeqslY4Q ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRUeqslY4Q .navbar-buttons {
  text-align: center;
}
.cid-rRUeqslY4Q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rRUeqslY4Q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rRUeqslY4Q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rRUeqslY4Q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rRUeqslY4Q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rRUeqslY4Q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rRUeqslY4Q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRUeqslY4Q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rRUeqslY4Q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rRUeqslY4Q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rRUeqslY4Q .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rRUeqslY4Q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rRUeqslY4Q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rRUeqslY4Q .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-rRUeqslY4Q .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rRUeqslY4Q .navbar {
    height: 77px;
  }
  .cid-rRUeqslY4Q .navbar.opened {
    height: auto;
  }
  .cid-rRUeqslY4Q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rRUeqsPoBc {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-1920x1357.jpg");
}
.cid-rRUeqsPoBc .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rRUeqsPoBc .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rRUeqsPoBc .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rRUeqsPoBc .mbr-text,
.cid-rRUeqsPoBc .mbr-section-btn {
  text-align: center;
}
.cid-rRUeqsPoBc P {
  color: #ffffff;
  text-align: center;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sUTzJTw6Y3 {
  padding-top: 100px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/background4.jpg");
}
.cid-sUTzJTw6Y3 .mbr-overlay {
  background: linear-gradient(90deg, #0b4805, #8bc24c);
}
.cid-sUTzJTw6Y3 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sUTzJTw6Y3 .text-content {
  padding-right: 1.5rem;
}
.cid-sUTzJTw6Y3 .mbr-text,
.cid-sUTzJTw6Y3 .mbr-section-btn {
  color: #ffffff;
}
.cid-sUTzJTw6Y3 .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.3);
  border-radius: .25rem;
}
.cid-sUTzJTw6Y3 .counter-container {
  padding: 1rem 0;
  position: relative;
}
.cid-sUTzJTw6Y3 .counter-container ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.cid-sUTzJTw6Y3 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-sUTzJTw6Y3 .counter-container ul li:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  position: absolute;
  left: 0px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  margin: 4px 0px;
  line-height: 10px;
  transition: all .2s;
  width: 16px;
  height: 16px;
  font-size: 16px !important;
  font-weight: 500;
  background: none;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sUTzJTw6Y3 .main-row {
    margin: 0;
  }
  .cid-sUTzJTw6Y3 .mbr-section-title,
  .cid-sUTzJTw6Y3 .mbr-text,
  .cid-sUTzJTw6Y3 .list,
  .cid-sUTzJTw6Y3 .mbr-section-btn {
    text-align: center !important;
  }
  .cid-sUTzJTw6Y3 .text-content {
    padding: 0;
  }
}
.cid-sUTzJTw6Y3 .mbr-section-title {
  color: #f3fbff;
  text-align: left;
}
.cid-sUTzJTw6Y3 .list {
  color: #f7ed4a;
}
.cid-sUYCMDeseO {
  display: flex;
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background11.jpg");
}
.cid-sUYCMDeseO .mbr-overlay {
  background: #8ff496;
  background: linear-gradient(90deg, #8ff496, #b2ccd2);
}
.cid-sUYCMDeseO .mbr-section-title {
  margin: 0;
}
.cid-sUYCMDeseO .mbr-text {
  color: #efefef;
}
.cid-sUYCMDeseO .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sUYCMDeseO .card-img {
  text-align: left;
}
.cid-sUYCMDeseO .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sUYCMDeseO .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sUYCMDeseO .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sUYCMDeseO .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 592px) {
  .cid-sUYCMDeseO .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 591px) {
  .cid-sUYCMDeseO .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sUYCMDeseO .title-cont,
.cid-sUYCMDeseO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-sUYCMDeseO .card-title,
.cid-sUYCMDeseO .card-img {
  color: #181818;
}
.cid-sUYCMDeseO .mbr-section-subtitle,
.cid-sUYCMDeseO .mbr-section-btn {
  color: #0b3508;
  text-align: center;
}
.cid-sUYCMDeseO .main-title {
  color: #0b3508;
}
.cid-sUYCMDeseO .card-box .mbr-text {
  color: #496f06;
}
.cid-sUP0Z2CBo4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sUP0Z2CBo4 .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-sUP0Z2CBo4 .card .card-block {
  background: #ffffff;
  padding: 2rem;
  position: relative;
}
.cid-sUP0Z2CBo4 .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: "";
  display: block;
}
.cid-sUP0Z2CBo4 .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-sUP0Z2CBo4 .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-sUP0Z2CBo4 .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-sUP0Z2CBo4 .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-sUP0Z2CBo4 .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sUP0Z2CBo4 .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-sUP0Z2CBo4 .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-sUP0Z2CBo4 .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-sUP0Z2CBo4 .card-block P {
  text-align: center;
  color: #0b1b3f;
}
.cid-sUP0Z2CBo4 .main-title {
  color: #ffffff;
}
.cid-sUP0Z2CBo4 .mbr-author-name P {
  color: #ffffff;
}
.cid-sUP0Z2CBo4 .mbr-author-desc P {
  color: #f7ed4a;
}
.cid-udY6HOWiFm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("");
}
.cid-udY6HOWiFm .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-udY6HOWiFm .card .card-block {
  background: #ffffff;
  padding: 2rem;
  position: relative;
}
.cid-udY6HOWiFm .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: "";
  display: block;
}
.cid-udY6HOWiFm .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-udY6HOWiFm .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-udY6HOWiFm .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-udY6HOWiFm .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-udY6HOWiFm .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-udY6HOWiFm .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-udY6HOWiFm .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-udY6HOWiFm .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-udY6HOWiFm .card-block P {
  text-align: center;
  color: #0b1b3f;
}
.cid-udY6HOWiFm .main-title {
  color: #ffffff;
}
.cid-udY6HOWiFm .mbr-author-name P {
  color: #ffffff;
}
.cid-udY6HOWiFm .mbr-author-desc P {
  color: #f7ed4a;
  text-align: center;
}
.cid-udY98Cha0V {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("");
}
.cid-udY98Cha0V .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-udY98Cha0V .card .card-block {
  background: #ffffff;
  padding: 2rem;
  position: relative;
}
.cid-udY98Cha0V .card .card-block:before {
  position: absolute;
  left: calc(50% - 7px);
  bottom: -7px;
  width: 14px;
  height: 14px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #ffffff;
  content: "";
  display: block;
}
.cid-udY98Cha0V .card .mbr-author {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 0;
  border-top: none;
  padding: 1.25rem;
  background: transparent;
}
.cid-udY98Cha0V .card .mbr-author .mbr-author-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
}
.cid-udY98Cha0V .card .mbr-author .mbr-author-img.img-margin {
  margin-right: 1.25rem;
}
.cid-udY98Cha0V .card .mbr-author .mbr-author-img img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-udY98Cha0V .card .mbr-author .name-wrap {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-udY98Cha0V .card .mbr-author .name-wrap .mbr-author-name p {
  margin-bottom: 0px;
}
.cid-udY98Cha0V .card .mbr-author .name-wrap .mbr-author-desc p {
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .cid-udY98Cha0V .card:not(.last-card) {
    margin-bottom: 2rem;
  }
}
.cid-udY98Cha0V .card-block P {
  text-align: center;
  color: #0b1b3f;
}
.cid-udY98Cha0V .main-title {
  color: #ffffff;
}
.cid-udY98Cha0V .mbr-author-name P {
  color: #ffffff;
}
.cid-udY98Cha0V .mbr-author-desc P {
  color: #f7ed4a;
}
.cid-sUPoMocQVh {
  padding-top: 30px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-5-1920x1080.jpg");
}
.cid-sUPoMocQVh .title-text {
  margin-bottom: 70px;
}
.cid-sUPoMocQVh .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-sUPoMocQVh .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-sUPoMocQVh .title-text .mbr-section-title {
  color: #130947;
}
.cid-sUPoMocQVh .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-sUPoMocQVh .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-sUPoMocQVh .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-sUPoMocQVh .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sUPoMocQVh .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-sUPoMocQVh .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sUPoMocQVh .accordion-content {
  flex-basis: 100%;
}
.cid-sUPoMocQVh .panel-group {
  width: 100%;
}
.cid-sUPoMocQVh .panel-text,
.cid-sUPoMocQVh .header-text,
.cid-sUPoMocQVh .mbr-section-subtitle {
  color: #222222;
}
.cid-sUPoMocQVh .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-sUPoMocQVh .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-sUPoMocQVh .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f1f1f1;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-sUPoMocQVh .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-sUPoMocQVh .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-sUPoMocQVh .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-sUPoMocQVh .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-sUPoMocQVh .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-sUPoMocQVh .card .card-header a.panel-title .toggle-icon:before,
.cid-sUPoMocQVh .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-sUPoMocQVh .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-sUPoMocQVh .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-sUPoMocQVh .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #4f87fb;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sUPoMocQVh .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-sUPoMocQVh .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #ffffff !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sUPoMocQVh .card .panel-body {
  background: #130947;
  padding: 30px 55px 35px 40px !important;
}
.cid-sUPoMocQVh .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-sUPoMocQVh .title-text .mbr-section-title {
  color: #ffffff;
}
.cid-sUPoMocQVh .title-text .mbr-section-subtitle {
  color: #9ea8ef;
}
.cid-sUPoMocQVh .panel-text {
  color: #ffffff;
  text-align: left;
}
.cid-sUPoMocQVh .header-text {
  text-align: center;
}
.cid-sUPoMocQVh .title-text .mbr-text {
  color: #ffffff;
}
.cid-sUQky9Dw82 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1279.jpg");
}
.cid-sUQky9Dw82 .mbr-section-title,
.cid-sUQky9Dw82 .mbr-section-subtitle {
  color: #000000;
}
.cid-sUQky9Dw82 .mbr-section-text {
  color: #232323;
}
.cid-sUQky9Dw82 .mbr-text,
.cid-sUQky9Dw82 .typed-text,
.cid-sUQky9Dw82 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sUQky9Dw82 .btn {
  margin-left: 4px !important;
}
.cid-sUQky9Dw82 .animated-element {
  color: #0b1b3f;
}
.cid-sUQky9Dw82 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #0b1b3f;
}
.cid-sUQky9Dw82 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-sUQky9Dw82 .typed-text,
  .cid-sUQky9Dw82 .mbr-section-subtitle,
  .cid-sUQky9Dw82 .mbr-section-text,
  .cid-sUQky9Dw82 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sUQky9Dw82 .mbr-section-text,
.cid-sUQky9Dw82 .mbr-section-btn {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sexazO4Ahb {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #110f0f;
}
@media (min-width: 992px) {
  .cid-sexazO4Ahb .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-sexazO4Ahb .content {
    padding: 0 2rem;
  }
}
.cid-sexazO4Ahb .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-sexazO4Ahb .content {
    margin: auto;
  }
}
.cid-sexazO4Ahb li {
  list-style: none;
}
.cid-sexazO4Ahb .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-sexazO4Ahb .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-sexazO4Ahb .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #7aba59 !important;
}
.cid-sexazO4Ahb h4 {
  margin: 0;
}
.cid-sexazO4Ahb ul {
  padding: 0;
  margin: 0;
}
.cid-sexazO4Ahb H2 {
  color: #ed6436;
}
.cid-sexazO4Ahb .mbr-text,
.cid-sexazO4Ahb .mbr-section-btn {
  color: #ffffff;
}
.cid-sexazO4Ahb .item1 {
  color: #aff0f6;
}
.cid-sexazO4Ahb H1 {
  color: #ffffff;
}
.cid-sexazO4Ahb P {
  color: #ed6436;
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .nav-item:focus,
.cid-sexaa5Ldqc .nav-link:focus {
  outline: none;
}
.cid-sexaa5Ldqc .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sexaa5Ldqc .dropdown .dropdown-menu .dropdown-item:active,
.cid-sexaa5Ldqc .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sexaa5Ldqc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sexaa5Ldqc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .navbar-caption:hover {
  color: inherit!important;
}
.cid-sexaa5Ldqc .container {
  max-width: 1380px;
}
.cid-sexaa5Ldqc .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sexaa5Ldqc .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sexaa5Ldqc .nav-link:hover,
.cid-sexaa5Ldqc .nav-link:active,
.cid-sexaa5Ldqc .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sexaa5Ldqc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sexaa5Ldqc .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sexaa5Ldqc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sexaa5Ldqc .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sexaa5Ldqc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sexaa5Ldqc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sexaa5Ldqc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sexaa5Ldqc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sexaa5Ldqc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sexaa5Ldqc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sexaa5Ldqc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sexaa5Ldqc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sexaa5Ldqc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sexaa5Ldqc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sexaa5Ldqc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sexaa5Ldqc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sexaa5Ldqc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sexaa5Ldqc .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-sexaa5Ldqc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sexaa5Ldqc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sexaa5Ldqc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sexaa5Ldqc .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sexaa5Ldqc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sexaa5Ldqc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sexaa5Ldqc .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sexaa5Ldqc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sexaa5Ldqc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sexaa5Ldqc .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sexaa5Ldqc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sexaa5Ldqc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sexaa5Ldqc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sexaa5Ldqc .dropdown-item.active,
.cid-sexaa5Ldqc .dropdown-item:active {
  background-color: transparent;
}
.cid-sexaa5Ldqc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sexaa5Ldqc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sexaa5Ldqc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sexaa5Ldqc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sexaa5Ldqc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sexaa5Ldqc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sexaa5Ldqc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sexaa5Ldqc .navbar-buttons {
  text-align: center;
}
.cid-sexaa5Ldqc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sexaa5Ldqc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sexaa5Ldqc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sexaa5Ldqc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sexaa5Ldqc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sexaa5Ldqc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sexaa5Ldqc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sexaa5Ldqc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sexaa5Ldqc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sexaa5Ldqc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sexaa5Ldqc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sexaa5Ldqc a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sexaa5Ldqc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sexaa5Ldqc .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-sexaa5Ldqc .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sexaa5Ldqc .navbar {
    height: 77px;
  }
  .cid-sexaa5Ldqc .navbar.opened {
    height: auto;
  }
  .cid-sexaa5Ldqc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .nav-item:focus,
.cid-sk6CNLU5Dw .nav-link:focus {
  outline: none;
}
.cid-sk6CNLU5Dw .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sk6CNLU5Dw .dropdown .dropdown-menu .dropdown-item:active,
.cid-sk6CNLU5Dw .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sk6CNLU5Dw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sk6CNLU5Dw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .navbar-caption:hover {
  color: inherit!important;
}
.cid-sk6CNLU5Dw .container {
  max-width: 1380px;
}
.cid-sk6CNLU5Dw .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sk6CNLU5Dw .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sk6CNLU5Dw .nav-link:hover,
.cid-sk6CNLU5Dw .nav-link:active,
.cid-sk6CNLU5Dw .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sk6CNLU5Dw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sk6CNLU5Dw .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sk6CNLU5Dw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sk6CNLU5Dw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sk6CNLU5Dw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sk6CNLU5Dw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sk6CNLU5Dw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sk6CNLU5Dw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sk6CNLU5Dw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sk6CNLU5Dw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sk6CNLU5Dw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sk6CNLU5Dw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sk6CNLU5Dw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sk6CNLU5Dw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sk6CNLU5Dw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sk6CNLU5Dw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sk6CNLU5Dw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sk6CNLU5Dw .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-sk6CNLU5Dw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sk6CNLU5Dw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sk6CNLU5Dw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sk6CNLU5Dw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sk6CNLU5Dw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sk6CNLU5Dw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sk6CNLU5Dw .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sk6CNLU5Dw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sk6CNLU5Dw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sk6CNLU5Dw .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sk6CNLU5Dw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sk6CNLU5Dw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sk6CNLU5Dw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sk6CNLU5Dw .dropdown-item.active,
.cid-sk6CNLU5Dw .dropdown-item:active {
  background-color: transparent;
}
.cid-sk6CNLU5Dw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sk6CNLU5Dw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sk6CNLU5Dw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sk6CNLU5Dw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sk6CNLU5Dw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sk6CNLU5Dw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sk6CNLU5Dw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sk6CNLU5Dw .navbar-buttons {
  text-align: center;
}
.cid-sk6CNLU5Dw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sk6CNLU5Dw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sk6CNLU5Dw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sk6CNLU5Dw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sk6CNLU5Dw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sk6CNLU5Dw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sk6CNLU5Dw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sk6CNLU5Dw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sk6CNLU5Dw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sk6CNLU5Dw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sk6CNLU5Dw .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sk6CNLU5Dw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sk6CNLU5Dw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sk6CNLU5Dw .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-sk6CNLU5Dw .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sk6CNLU5Dw .navbar {
    height: 77px;
  }
  .cid-sk6CNLU5Dw .navbar.opened {
    height: auto;
  }
  .cid-sk6CNLU5Dw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sk6CNMgowg {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sk6CNMgowg .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sk6CNMgowg .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sk6CNMgowg .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sk6CNMgowg .mbr-text,
.cid-sk6CNMgowg .mbr-section-btn {
  text-align: left;
  color: #c1c1c1;
}
.cid-sk6CNMgowg P {
  color: #000000;
  text-align: left;
}
.cid-sk6CNMgowg .card-title,
.cid-sk6CNMgowg .card-img {
  text-align: left;
  color: #c1c1c1;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-srVg4UGQUf .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-srVg4UGQUf .nav-item:focus,
.cid-srVg4UGQUf .nav-link:focus {
  outline: none;
}
.cid-srVg4UGQUf .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-srVg4UGQUf .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-srVg4UGQUf .dropdown .dropdown-menu .dropdown-item:hover,
.cid-srVg4UGQUf .dropdown .dropdown-menu .dropdown-item:active,
.cid-srVg4UGQUf .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-srVg4UGQUf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-srVg4UGQUf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-srVg4UGQUf .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-srVg4UGQUf .navbar-caption:hover {
  color: inherit!important;
}
.cid-srVg4UGQUf .container {
  max-width: 1380px;
}
.cid-srVg4UGQUf .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-srVg4UGQUf .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-srVg4UGQUf .nav-link:hover,
.cid-srVg4UGQUf .nav-link:active,
.cid-srVg4UGQUf .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-srVg4UGQUf .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-srVg4UGQUf .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-srVg4UGQUf .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-srVg4UGQUf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-srVg4UGQUf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-srVg4UGQUf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-srVg4UGQUf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-srVg4UGQUf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-srVg4UGQUf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-srVg4UGQUf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-srVg4UGQUf .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-srVg4UGQUf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-srVg4UGQUf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-srVg4UGQUf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-srVg4UGQUf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-srVg4UGQUf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-srVg4UGQUf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-srVg4UGQUf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-srVg4UGQUf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-srVg4UGQUf .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-srVg4UGQUf .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-srVg4UGQUf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-srVg4UGQUf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-srVg4UGQUf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-srVg4UGQUf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-srVg4UGQUf .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-srVg4UGQUf .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-srVg4UGQUf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-srVg4UGQUf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-srVg4UGQUf .icons-menu span {
  color: #f7ed4a !important;
}
.cid-srVg4UGQUf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-srVg4UGQUf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-srVg4UGQUf .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-srVg4UGQUf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-srVg4UGQUf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-srVg4UGQUf .dropdown-item.active,
.cid-srVg4UGQUf .dropdown-item:active {
  background-color: transparent;
}
.cid-srVg4UGQUf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-srVg4UGQUf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-srVg4UGQUf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-srVg4UGQUf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-srVg4UGQUf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-srVg4UGQUf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-srVg4UGQUf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-srVg4UGQUf .navbar-buttons {
  text-align: center;
}
.cid-srVg4UGQUf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-srVg4UGQUf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-srVg4UGQUf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-srVg4UGQUf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-srVg4UGQUf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-srVg4UGQUf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-srVg4UGQUf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srVg4UGQUf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-srVg4UGQUf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-srVg4UGQUf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-srVg4UGQUf .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-srVg4UGQUf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-srVg4UGQUf .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-srVg4UGQUf .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-srVg4UGQUf .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-srVg4UGQUf .navbar {
    height: 77px;
  }
  .cid-srVg4UGQUf .navbar.opened {
    height: auto;
  }
  .cid-srVg4UGQUf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-srVg4V1oMI {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-4-1920x1357.jpg");
}
.cid-srVg4V1oMI .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-srVg4V1oMI .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-srVg4V1oMI .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-srVg4V1oMI .mbr-text,
.cid-srVg4V1oMI .mbr-section-btn {
  text-align: center;
}
.cid-srVg4V1oMI P {
  color: #ffffff;
  text-align: left;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-ss478tphKW .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-ss478tphKW .nav-item:focus,
.cid-ss478tphKW .nav-link:focus {
  outline: none;
}
.cid-ss478tphKW .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-ss478tphKW .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-ss478tphKW .dropdown .dropdown-menu .dropdown-item:hover,
.cid-ss478tphKW .dropdown .dropdown-menu .dropdown-item:active,
.cid-ss478tphKW .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-ss478tphKW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ss478tphKW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ss478tphKW .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-ss478tphKW .navbar-caption:hover {
  color: inherit!important;
}
.cid-ss478tphKW .container {
  max-width: 1380px;
}
.cid-ss478tphKW .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-ss478tphKW .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-ss478tphKW .nav-link:hover,
.cid-ss478tphKW .nav-link:active,
.cid-ss478tphKW .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-ss478tphKW .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-ss478tphKW .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-ss478tphKW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ss478tphKW .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ss478tphKW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ss478tphKW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ss478tphKW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-ss478tphKW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ss478tphKW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ss478tphKW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ss478tphKW .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-ss478tphKW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ss478tphKW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ss478tphKW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ss478tphKW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ss478tphKW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ss478tphKW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ss478tphKW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ss478tphKW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ss478tphKW .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-ss478tphKW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ss478tphKW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ss478tphKW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ss478tphKW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ss478tphKW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ss478tphKW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ss478tphKW .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-ss478tphKW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ss478tphKW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ss478tphKW .icons-menu span {
  color: #f7ed4a !important;
}
.cid-ss478tphKW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ss478tphKW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ss478tphKW .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-ss478tphKW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ss478tphKW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ss478tphKW .dropdown-item.active,
.cid-ss478tphKW .dropdown-item:active {
  background-color: transparent;
}
.cid-ss478tphKW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ss478tphKW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ss478tphKW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ss478tphKW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-ss478tphKW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ss478tphKW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ss478tphKW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ss478tphKW .navbar-buttons {
  text-align: center;
}
.cid-ss478tphKW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ss478tphKW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-ss478tphKW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ss478tphKW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ss478tphKW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ss478tphKW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ss478tphKW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ss478tphKW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ss478tphKW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ss478tphKW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ss478tphKW .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ss478tphKW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ss478tphKW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ss478tphKW .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-ss478tphKW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ss478tphKW .navbar {
    height: 77px;
  }
  .cid-ss478tphKW .navbar.opened {
    height: auto;
  }
  .cid-ss478tphKW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ss478uwYjG {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2-1920x1281.jpg");
}
.cid-ss478uwYjG .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-ss478uwYjG .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-ss478uwYjG .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-ss478uwYjG .mbr-text,
.cid-ss478uwYjG .mbr-section-btn {
  text-align: left;
}
.cid-ss478uwYjG P {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sswLsSNuTg .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-sswLsSNuTg .nav-item:focus,
.cid-sswLsSNuTg .nav-link:focus {
  outline: none;
}
.cid-sswLsSNuTg .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sswLsSNuTg .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-sswLsSNuTg .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sswLsSNuTg .dropdown .dropdown-menu .dropdown-item:active,
.cid-sswLsSNuTg .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sswLsSNuTg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sswLsSNuTg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sswLsSNuTg .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-sswLsSNuTg .navbar-caption:hover {
  color: inherit!important;
}
.cid-sswLsSNuTg .container {
  max-width: 1380px;
}
.cid-sswLsSNuTg .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sswLsSNuTg .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sswLsSNuTg .nav-link:hover,
.cid-sswLsSNuTg .nav-link:active,
.cid-sswLsSNuTg .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sswLsSNuTg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sswLsSNuTg .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sswLsSNuTg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sswLsSNuTg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sswLsSNuTg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sswLsSNuTg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sswLsSNuTg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sswLsSNuTg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sswLsSNuTg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sswLsSNuTg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sswLsSNuTg .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-sswLsSNuTg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sswLsSNuTg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sswLsSNuTg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sswLsSNuTg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sswLsSNuTg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sswLsSNuTg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sswLsSNuTg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sswLsSNuTg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sswLsSNuTg .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-sswLsSNuTg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sswLsSNuTg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sswLsSNuTg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sswLsSNuTg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sswLsSNuTg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sswLsSNuTg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sswLsSNuTg .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sswLsSNuTg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sswLsSNuTg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sswLsSNuTg .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sswLsSNuTg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sswLsSNuTg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sswLsSNuTg .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-sswLsSNuTg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sswLsSNuTg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sswLsSNuTg .dropdown-item.active,
.cid-sswLsSNuTg .dropdown-item:active {
  background-color: transparent;
}
.cid-sswLsSNuTg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sswLsSNuTg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sswLsSNuTg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sswLsSNuTg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sswLsSNuTg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sswLsSNuTg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sswLsSNuTg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sswLsSNuTg .navbar-buttons {
  text-align: center;
}
.cid-sswLsSNuTg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sswLsSNuTg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sswLsSNuTg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sswLsSNuTg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sswLsSNuTg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sswLsSNuTg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sswLsSNuTg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sswLsSNuTg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sswLsSNuTg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sswLsSNuTg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sswLsSNuTg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sswLsSNuTg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sswLsSNuTg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sswLsSNuTg .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-sswLsSNuTg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sswLsSNuTg .navbar {
    height: 77px;
  }
  .cid-sswLsSNuTg .navbar.opened {
    height: auto;
  }
  .cid-sswLsSNuTg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sswLsTGo9T {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #aff0f6;
}
.cid-sswLsTGo9T .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sswLsTGo9T .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sswLsTGo9T .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sswLsTGo9T .mbr-text {
  color: #6d7a8c;
}
.cid-sswLsTGo9T .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sswLsTGo9T .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sswLsTGo9T .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sswLsTGo9T .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sswLsTGo9T .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sswLsTGo9T .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sswLsTGo9T .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sswLsTGo9T .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sswLsTGo9T .separator,
  .cid-sswLsTGo9T .sep-holder,
  .cid-sswLsTGo9T .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLsTGo9T .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sswLsTGo9T .mbr-text,
.cid-sswLsTGo9T .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sswLsTGo9T .mbr-section-subtitle,
.cid-sswLsTGo9T .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sswLsTGo9T .mbr-section-title,
.cid-sswLsTGo9T .separator,
.cid-sswLsTGo9T .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sswLsWpR7b {
  background-image: url("../../../assets/images/01-640x425.jpg");
}
.cid-sswLsWpR7b .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLsWpR7b .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLsWpR7b .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLsWpR7b .mbr-text {
  color: #ffffff;
}
.cid-sswLsWpR7b .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLsWpR7b .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLsWpR7b .mbr-section-btn {
  display: flex;
}
.cid-sswLsWpR7b .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLsWpR7b .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLsWpR7b .mbr-section-btn.display-4,
.cid-sswLsWpR7b .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLsWpR7b .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLsWpR7b .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLsWpR7b .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLsWpR7b .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLsWpR7b .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLsWpR7b .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLsWpR7b .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLsWpR7b .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLsWpR7b .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLsWpR7b .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLsWpR7b a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLsWpR7b a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLsWpR7b .separator,
  .cid-sswLsWpR7b .sep-holder,
  .cid-sswLsWpR7b .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLsWpR7b .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLsWpR7b .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLsWpR7b .mbr-section-subtitle,
.cid-sswLsWpR7b .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLsWpR7b .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLsX02qb {
  background-image: url("../../../assets/images/02-640x425.jpg");
}
.cid-sswLsX02qb .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLsX02qb .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLsX02qb .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLsX02qb .mbr-text {
  color: #ffffff;
}
.cid-sswLsX02qb .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLsX02qb .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLsX02qb .mbr-section-btn {
  display: flex;
}
.cid-sswLsX02qb .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLsX02qb .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLsX02qb .mbr-section-btn.display-4,
.cid-sswLsX02qb .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLsX02qb .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLsX02qb .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLsX02qb .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLsX02qb .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLsX02qb .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLsX02qb .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLsX02qb .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLsX02qb .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLsX02qb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLsX02qb .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLsX02qb a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLsX02qb a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLsX02qb .separator,
  .cid-sswLsX02qb .sep-holder,
  .cid-sswLsX02qb .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLsX02qb .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLsX02qb .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLsX02qb .mbr-section-subtitle,
.cid-sswLsX02qb .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLsX02qb .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLsXA9jd {
  background-image: url("../../../assets/images/03-640x425.jpg");
}
.cid-sswLsXA9jd .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLsXA9jd .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLsXA9jd .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLsXA9jd .mbr-text {
  color: #ffffff;
}
.cid-sswLsXA9jd .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLsXA9jd .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLsXA9jd .mbr-section-btn {
  display: flex;
}
.cid-sswLsXA9jd .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLsXA9jd .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLsXA9jd .mbr-section-btn.display-4,
.cid-sswLsXA9jd .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLsXA9jd .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLsXA9jd .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLsXA9jd .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLsXA9jd .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLsXA9jd .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLsXA9jd .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLsXA9jd .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLsXA9jd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLsXA9jd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLsXA9jd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLsXA9jd a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLsXA9jd a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLsXA9jd .separator,
  .cid-sswLsXA9jd .sep-holder,
  .cid-sswLsXA9jd .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLsXA9jd .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLsXA9jd .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLsXA9jd .mbr-section-subtitle,
.cid-sswLsXA9jd .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLsXA9jd .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLsZKWEe {
  background-image: url("../../../assets/images/04-640x425.jpg");
}
.cid-sswLsZKWEe .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLsZKWEe .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLsZKWEe .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLsZKWEe .mbr-text {
  color: #ffffff;
}
.cid-sswLsZKWEe .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLsZKWEe .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLsZKWEe .mbr-section-btn {
  display: flex;
}
.cid-sswLsZKWEe .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLsZKWEe .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLsZKWEe .mbr-section-btn.display-4,
.cid-sswLsZKWEe .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLsZKWEe .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLsZKWEe .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLsZKWEe .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLsZKWEe .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLsZKWEe .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLsZKWEe .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLsZKWEe .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLsZKWEe .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLsZKWEe .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLsZKWEe .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLsZKWEe a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLsZKWEe a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLsZKWEe .separator,
  .cid-sswLsZKWEe .sep-holder,
  .cid-sswLsZKWEe .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLsZKWEe .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLsZKWEe .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLsZKWEe .mbr-section-subtitle,
.cid-sswLsZKWEe .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLsZKWEe .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLt0GGg9 {
  background-image: url("../../../assets/images/05-640x425.jpg");
}
.cid-sswLt0GGg9 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLt0GGg9 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLt0GGg9 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLt0GGg9 .mbr-text {
  color: #ffffff;
}
.cid-sswLt0GGg9 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLt0GGg9 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLt0GGg9 .mbr-section-btn {
  display: flex;
}
.cid-sswLt0GGg9 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLt0GGg9 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLt0GGg9 .mbr-section-btn.display-4,
.cid-sswLt0GGg9 .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLt0GGg9 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLt0GGg9 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLt0GGg9 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLt0GGg9 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLt0GGg9 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLt0GGg9 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLt0GGg9 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLt0GGg9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLt0GGg9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLt0GGg9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLt0GGg9 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLt0GGg9 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLt0GGg9 .separator,
  .cid-sswLt0GGg9 .sep-holder,
  .cid-sswLt0GGg9 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLt0GGg9 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLt0GGg9 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLt0GGg9 .mbr-section-subtitle,
.cid-sswLt0GGg9 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLt0GGg9 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLt0YwMG {
  background-image: url("../../../assets/images/06-640x425.jpg");
}
.cid-sswLt0YwMG .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLt0YwMG .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLt0YwMG .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLt0YwMG .mbr-text {
  color: #ffffff;
}
.cid-sswLt0YwMG .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLt0YwMG .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLt0YwMG .mbr-section-btn {
  display: flex;
}
.cid-sswLt0YwMG .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLt0YwMG .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLt0YwMG .mbr-section-btn.display-4,
.cid-sswLt0YwMG .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLt0YwMG .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLt0YwMG .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLt0YwMG .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLt0YwMG .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLt0YwMG .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLt0YwMG .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLt0YwMG .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLt0YwMG .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLt0YwMG .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLt0YwMG .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLt0YwMG a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLt0YwMG a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLt0YwMG .separator,
  .cid-sswLt0YwMG .sep-holder,
  .cid-sswLt0YwMG .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLt0YwMG .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLt0YwMG .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLt0YwMG .mbr-section-subtitle,
.cid-sswLt0YwMG .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLt0YwMG .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLt25pLX {
  background-image: url("../../../assets/images/07-640x425.jpg");
}
.cid-sswLt25pLX .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLt25pLX .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLt25pLX .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLt25pLX .mbr-text {
  color: #ffffff;
}
.cid-sswLt25pLX .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLt25pLX .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLt25pLX .mbr-section-btn {
  display: flex;
}
.cid-sswLt25pLX .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLt25pLX .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLt25pLX .mbr-section-btn.display-4,
.cid-sswLt25pLX .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLt25pLX .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLt25pLX .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLt25pLX .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLt25pLX .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLt25pLX .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLt25pLX .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLt25pLX .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLt25pLX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLt25pLX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLt25pLX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLt25pLX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLt25pLX a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLt25pLX .separator,
  .cid-sswLt25pLX .sep-holder,
  .cid-sswLt25pLX .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLt25pLX .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLt25pLX .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLt25pLX .mbr-section-subtitle,
.cid-sswLt25pLX .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLt25pLX .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLt497CA {
  background-image: url("../../../assets/images/12-640x425.jpg");
}
.cid-sswLt497CA .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLt497CA .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLt497CA .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLt497CA .mbr-text {
  color: #ffffff;
}
.cid-sswLt497CA .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLt497CA .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLt497CA .mbr-section-btn {
  display: flex;
}
.cid-sswLt497CA .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLt497CA .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLt497CA .mbr-section-btn.display-4,
.cid-sswLt497CA .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLt497CA .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLt497CA .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLt497CA .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLt497CA .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLt497CA .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLt497CA .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLt497CA .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLt497CA .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLt497CA .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLt497CA .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLt497CA a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLt497CA a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLt497CA .separator,
  .cid-sswLt497CA .sep-holder,
  .cid-sswLt497CA .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLt497CA .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLt497CA .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLt497CA .mbr-section-subtitle,
.cid-sswLt497CA .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLt497CA .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sswLt2zn4S {
  background-image: url("../../../assets/images/11-640x425.jpg");
}
.cid-sswLt2zn4S .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sswLt2zn4S .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sswLt2zn4S .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sswLt2zn4S .mbr-text {
  color: #ffffff;
}
.cid-sswLt2zn4S .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sswLt2zn4S .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sswLt2zn4S .mbr-section-btn {
  display: flex;
}
.cid-sswLt2zn4S .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sswLt2zn4S .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sswLt2zn4S .mbr-section-btn.display-4,
.cid-sswLt2zn4S .btn.display-4 {
  font-size: 12px !important;
}
.cid-sswLt2zn4S .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sswLt2zn4S .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sswLt2zn4S .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sswLt2zn4S .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sswLt2zn4S .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sswLt2zn4S .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sswLt2zn4S .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sswLt2zn4S .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sswLt2zn4S .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sswLt2zn4S .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sswLt2zn4S a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sswLt2zn4S a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sswLt2zn4S .separator,
  .cid-sswLt2zn4S .sep-holder,
  .cid-sswLt2zn4S .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sswLt2zn4S .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sswLt2zn4S .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sswLt2zn4S .mbr-section-subtitle,
.cid-sswLt2zn4S .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sswLt2zn4S .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-st51L8USBg .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-st51L8USBg .nav-item:focus,
.cid-st51L8USBg .nav-link:focus {
  outline: none;
}
.cid-st51L8USBg .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-st51L8USBg .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-st51L8USBg .dropdown .dropdown-menu .dropdown-item:hover,
.cid-st51L8USBg .dropdown .dropdown-menu .dropdown-item:active,
.cid-st51L8USBg .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-st51L8USBg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-st51L8USBg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-st51L8USBg .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-st51L8USBg .navbar-caption:hover {
  color: inherit!important;
}
.cid-st51L8USBg .container {
  max-width: 1380px;
}
.cid-st51L8USBg .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-st51L8USBg .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-st51L8USBg .nav-link:hover,
.cid-st51L8USBg .nav-link:active,
.cid-st51L8USBg .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-st51L8USBg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-st51L8USBg .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-st51L8USBg .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-st51L8USBg .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-st51L8USBg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-st51L8USBg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-st51L8USBg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-st51L8USBg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-st51L8USBg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-st51L8USBg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-st51L8USBg .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-st51L8USBg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-st51L8USBg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-st51L8USBg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-st51L8USBg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-st51L8USBg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-st51L8USBg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-st51L8USBg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-st51L8USBg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-st51L8USBg .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-st51L8USBg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-st51L8USBg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-st51L8USBg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-st51L8USBg .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-st51L8USBg .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-st51L8USBg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-st51L8USBg .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-st51L8USBg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-st51L8USBg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-st51L8USBg .icons-menu span {
  color: #f7ed4a !important;
}
.cid-st51L8USBg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-st51L8USBg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-st51L8USBg .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-st51L8USBg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-st51L8USBg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-st51L8USBg .dropdown-item.active,
.cid-st51L8USBg .dropdown-item:active {
  background-color: transparent;
}
.cid-st51L8USBg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-st51L8USBg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-st51L8USBg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-st51L8USBg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-st51L8USBg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-st51L8USBg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-st51L8USBg ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-st51L8USBg .navbar-buttons {
  text-align: center;
}
.cid-st51L8USBg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-st51L8USBg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-st51L8USBg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-st51L8USBg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-st51L8USBg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-st51L8USBg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-st51L8USBg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-st51L8USBg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-st51L8USBg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-st51L8USBg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-st51L8USBg .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-st51L8USBg a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-st51L8USBg .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-st51L8USBg .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-st51L8USBg .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-st51L8USBg .navbar {
    height: 77px;
  }
  .cid-st51L8USBg .navbar.opened {
    height: auto;
  }
  .cid-st51L8USBg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-st5fdV8Lrb {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1056.jpg");
}
.cid-st5fdV8Lrb .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-st5fdV8Lrb .number {
  color: #ffffff;
}
.cid-st5fdV8Lrb .period {
  display: block;
}
.cid-st5fdV8Lrb .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-st5fdV8Lrb .period {
    font-size: 0.8rem;
  }
}
.cid-st5fdV8Lrb .btn {
  height: 100%;
  margin: 0;
}
.cid-st5fdV8Lrb .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-st5fdV8Lrb .mbr-section-title {
  color: #ffffff;
}
.cid-st5fdV8Lrb .mbr-text {
  color: #ffffff;
}
.cid-st5fdV8Lrb .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-st5fdV8Lrb .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-st5fdV8Lrb .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-st5fdV8Lrb .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-st5fdV8Lrb H3 {
  color: #ffffff;
  text-align: center;
}
.cid-st5fdV8Lrb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-st51L9mAcS {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-st51L9mAcS .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-st51L9mAcS .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-st51L9mAcS .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-st51L9mAcS .mbr-text {
  color: #6d7a8c;
}
.cid-st51L9mAcS .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-st51L9mAcS .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-st51L9mAcS .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-st51L9mAcS .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-st51L9mAcS .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-st51L9mAcS .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-st51L9mAcS .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-st51L9mAcS .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-st51L9mAcS .separator,
  .cid-st51L9mAcS .sep-holder,
  .cid-st51L9mAcS .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-st51L9mAcS .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-st51L9mAcS .mbr-text,
.cid-st51L9mAcS .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-st51L9mAcS .mbr-section-subtitle,
.cid-st51L9mAcS .mbr-section-title .accent-word {
  text-align: left;
}
.cid-st51L9mAcS .mbr-section-title,
.cid-st51L9mAcS .separator,
.cid-st51L9mAcS .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-stmIWbkmpI .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-stmIWbkmpI .nav-item:focus,
.cid-stmIWbkmpI .nav-link:focus {
  outline: none;
}
.cid-stmIWbkmpI .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-stmIWbkmpI .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-stmIWbkmpI .dropdown .dropdown-menu .dropdown-item:hover,
.cid-stmIWbkmpI .dropdown .dropdown-menu .dropdown-item:active,
.cid-stmIWbkmpI .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-stmIWbkmpI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stmIWbkmpI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stmIWbkmpI .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-stmIWbkmpI .navbar-caption:hover {
  color: inherit!important;
}
.cid-stmIWbkmpI .container {
  max-width: 1380px;
}
.cid-stmIWbkmpI .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-stmIWbkmpI .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-stmIWbkmpI .nav-link:hover,
.cid-stmIWbkmpI .nav-link:active,
.cid-stmIWbkmpI .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-stmIWbkmpI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-stmIWbkmpI .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-stmIWbkmpI .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-stmIWbkmpI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stmIWbkmpI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stmIWbkmpI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stmIWbkmpI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-stmIWbkmpI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stmIWbkmpI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stmIWbkmpI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stmIWbkmpI .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-stmIWbkmpI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stmIWbkmpI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stmIWbkmpI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stmIWbkmpI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stmIWbkmpI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stmIWbkmpI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-stmIWbkmpI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stmIWbkmpI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stmIWbkmpI .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-stmIWbkmpI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stmIWbkmpI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stmIWbkmpI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stmIWbkmpI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stmIWbkmpI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-stmIWbkmpI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stmIWbkmpI .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-stmIWbkmpI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stmIWbkmpI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stmIWbkmpI .icons-menu span {
  color: #f7ed4a !important;
}
.cid-stmIWbkmpI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stmIWbkmpI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stmIWbkmpI .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-stmIWbkmpI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stmIWbkmpI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stmIWbkmpI .dropdown-item.active,
.cid-stmIWbkmpI .dropdown-item:active {
  background-color: transparent;
}
.cid-stmIWbkmpI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stmIWbkmpI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stmIWbkmpI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stmIWbkmpI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-stmIWbkmpI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stmIWbkmpI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stmIWbkmpI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stmIWbkmpI .navbar-buttons {
  text-align: center;
}
.cid-stmIWbkmpI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stmIWbkmpI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-stmIWbkmpI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stmIWbkmpI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stmIWbkmpI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stmIWbkmpI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stmIWbkmpI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stmIWbkmpI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stmIWbkmpI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stmIWbkmpI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stmIWbkmpI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stmIWbkmpI a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stmIWbkmpI .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stmIWbkmpI .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-stmIWbkmpI .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stmIWbkmpI .navbar {
    height: 77px;
  }
  .cid-stmIWbkmpI .navbar.opened {
    height: auto;
  }
  .cid-stmIWbkmpI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stmIWbNB4r {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1440.jpg");
}
.cid-stmIWbNB4r .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-stmIWbNB4r .number {
  color: #ffffff;
}
.cid-stmIWbNB4r .period {
  display: block;
}
.cid-stmIWbNB4r .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-stmIWbNB4r .period {
    font-size: 0.8rem;
  }
}
.cid-stmIWbNB4r .btn {
  height: 100%;
  margin: 0;
}
.cid-stmIWbNB4r .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-stmIWbNB4r .mbr-section-title {
  color: #ffffff;
}
.cid-stmIWbNB4r .mbr-text {
  color: #ffffff;
}
.cid-stmIWbNB4r .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-stmIWbNB4r .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-stmIWbNB4r .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-stmIWbNB4r .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-stmIWbNB4r H3 {
  color: #ffffff;
  text-align: center;
}
.cid-stmIWbNB4r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stmIWci7fD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f295;
}
.cid-stmIWci7fD .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-stmIWci7fD .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-stmIWci7fD .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-stmIWci7fD .mbr-text {
  color: #6d7a8c;
}
.cid-stmIWci7fD .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-stmIWci7fD .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-stmIWci7fD .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-stmIWci7fD .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-stmIWci7fD .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-stmIWci7fD .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-stmIWci7fD .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-stmIWci7fD .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-stmIWci7fD .separator,
  .cid-stmIWci7fD .sep-holder,
  .cid-stmIWci7fD .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stmIWci7fD .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-stmIWci7fD .mbr-text,
.cid-stmIWci7fD .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-stmIWci7fD .mbr-section-subtitle,
.cid-stmIWci7fD .mbr-section-title .accent-word {
  text-align: left;
}
.cid-stmIWci7fD .mbr-section-title,
.cid-stmIWci7fD .separator,
.cid-stmIWci7fD .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-stDp4M8jcy .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-stDp4M8jcy .nav-item:focus,
.cid-stDp4M8jcy .nav-link:focus {
  outline: none;
}
.cid-stDp4M8jcy .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-stDp4M8jcy .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-stDp4M8jcy .dropdown .dropdown-menu .dropdown-item:hover,
.cid-stDp4M8jcy .dropdown .dropdown-menu .dropdown-item:active,
.cid-stDp4M8jcy .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-stDp4M8jcy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stDp4M8jcy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stDp4M8jcy .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-stDp4M8jcy .navbar-caption:hover {
  color: inherit!important;
}
.cid-stDp4M8jcy .container {
  max-width: 1380px;
}
.cid-stDp4M8jcy .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-stDp4M8jcy .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-stDp4M8jcy .nav-link:hover,
.cid-stDp4M8jcy .nav-link:active,
.cid-stDp4M8jcy .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-stDp4M8jcy .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-stDp4M8jcy .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-stDp4M8jcy .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-stDp4M8jcy .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stDp4M8jcy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stDp4M8jcy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stDp4M8jcy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-stDp4M8jcy .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stDp4M8jcy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stDp4M8jcy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stDp4M8jcy .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-stDp4M8jcy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stDp4M8jcy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stDp4M8jcy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stDp4M8jcy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stDp4M8jcy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stDp4M8jcy .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-stDp4M8jcy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stDp4M8jcy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stDp4M8jcy .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-stDp4M8jcy .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stDp4M8jcy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stDp4M8jcy .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stDp4M8jcy .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stDp4M8jcy .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-stDp4M8jcy .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stDp4M8jcy .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-stDp4M8jcy .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stDp4M8jcy .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stDp4M8jcy .icons-menu span {
  color: #f7ed4a !important;
}
.cid-stDp4M8jcy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stDp4M8jcy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stDp4M8jcy .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-stDp4M8jcy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stDp4M8jcy .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stDp4M8jcy .dropdown-item.active,
.cid-stDp4M8jcy .dropdown-item:active {
  background-color: transparent;
}
.cid-stDp4M8jcy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stDp4M8jcy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stDp4M8jcy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stDp4M8jcy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-stDp4M8jcy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stDp4M8jcy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stDp4M8jcy ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stDp4M8jcy .navbar-buttons {
  text-align: center;
}
.cid-stDp4M8jcy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stDp4M8jcy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-stDp4M8jcy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stDp4M8jcy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stDp4M8jcy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stDp4M8jcy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stDp4M8jcy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stDp4M8jcy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stDp4M8jcy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stDp4M8jcy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stDp4M8jcy .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stDp4M8jcy a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stDp4M8jcy .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stDp4M8jcy .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-stDp4M8jcy .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stDp4M8jcy .navbar {
    height: 77px;
  }
  .cid-stDp4M8jcy .navbar.opened {
    height: auto;
  }
  .cid-stDp4M8jcy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stDp4MuydG {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1-1920x1344.jpg");
}
.cid-stDp4MuydG .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-stDp4MuydG .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-stDp4MuydG .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-stDp4MuydG .mbr-text,
.cid-stDp4MuydG .mbr-section-btn {
  text-align: center;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .nav-item:focus,
.cid-su6Yc8Nbdn .nav-link:focus {
  outline: none;
}
.cid-su6Yc8Nbdn .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .dropdown .dropdown-menu .dropdown-item:hover,
.cid-su6Yc8Nbdn .dropdown .dropdown-menu .dropdown-item:active,
.cid-su6Yc8Nbdn .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-su6Yc8Nbdn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-su6Yc8Nbdn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .navbar-caption:hover {
  color: inherit!important;
}
.cid-su6Yc8Nbdn .container {
  max-width: 1380px;
}
.cid-su6Yc8Nbdn .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-su6Yc8Nbdn .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-su6Yc8Nbdn .nav-link:hover,
.cid-su6Yc8Nbdn .nav-link:active,
.cid-su6Yc8Nbdn .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-su6Yc8Nbdn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-su6Yc8Nbdn .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-su6Yc8Nbdn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-su6Yc8Nbdn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-su6Yc8Nbdn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-su6Yc8Nbdn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-su6Yc8Nbdn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-su6Yc8Nbdn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-su6Yc8Nbdn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-su6Yc8Nbdn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-su6Yc8Nbdn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-su6Yc8Nbdn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-su6Yc8Nbdn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-su6Yc8Nbdn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-su6Yc8Nbdn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-su6Yc8Nbdn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-su6Yc8Nbdn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-su6Yc8Nbdn .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-su6Yc8Nbdn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-su6Yc8Nbdn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-su6Yc8Nbdn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-su6Yc8Nbdn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-su6Yc8Nbdn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-su6Yc8Nbdn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-su6Yc8Nbdn .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-su6Yc8Nbdn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-su6Yc8Nbdn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-su6Yc8Nbdn .icons-menu span {
  color: #f7ed4a !important;
}
.cid-su6Yc8Nbdn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-su6Yc8Nbdn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-su6Yc8Nbdn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-su6Yc8Nbdn .dropdown-item.active,
.cid-su6Yc8Nbdn .dropdown-item:active {
  background-color: transparent;
}
.cid-su6Yc8Nbdn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-su6Yc8Nbdn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-su6Yc8Nbdn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-su6Yc8Nbdn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-su6Yc8Nbdn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-su6Yc8Nbdn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-su6Yc8Nbdn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-su6Yc8Nbdn .navbar-buttons {
  text-align: center;
}
.cid-su6Yc8Nbdn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-su6Yc8Nbdn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-su6Yc8Nbdn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-su6Yc8Nbdn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-su6Yc8Nbdn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-su6Yc8Nbdn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-su6Yc8Nbdn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su6Yc8Nbdn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-su6Yc8Nbdn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-su6Yc8Nbdn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-su6Yc8Nbdn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-su6Yc8Nbdn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-su6Yc8Nbdn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-su6Yc8Nbdn .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-su6Yc8Nbdn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-su6Yc8Nbdn .navbar {
    height: 77px;
  }
  .cid-su6Yc8Nbdn .navbar.opened {
    height: auto;
  }
  .cid-su6Yc8Nbdn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-su6Yc9x3Qn {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/manganez.fw-1702x1021.png");
}
.cid-su6Yc9x3Qn .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-su6Yc9x3Qn .number {
  color: #ffffff;
}
.cid-su6Yc9x3Qn .period {
  display: block;
}
.cid-su6Yc9x3Qn .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-su6Yc9x3Qn .period {
    font-size: 0.8rem;
  }
}
.cid-su6Yc9x3Qn .btn {
  height: 100%;
  margin: 0;
}
.cid-su6Yc9x3Qn .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-su6Yc9x3Qn .mbr-section-title {
  color: #ffffff;
}
.cid-su6Yc9x3Qn .mbr-text {
  color: #ffffff;
}
.cid-su6Yc9x3Qn .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-su6Yc9x3Qn .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-su6Yc9x3Qn .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-su6Yc9x3Qn .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-su6Yc9x3Qn H3 {
  color: #ffffff;
  text-align: center;
}
.cid-su6Yc9x3Qn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-su6YcaawFl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #110f0f;
}
.cid-su6YcaawFl .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-su6YcaawFl .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-su6YcaawFl .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-su6YcaawFl .mbr-text {
  color: #6d7a8c;
}
.cid-su6YcaawFl .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-su6YcaawFl .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-su6YcaawFl .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-su6YcaawFl .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-su6YcaawFl .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-su6YcaawFl .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-su6YcaawFl .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-su6YcaawFl .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-su6YcaawFl .separator,
  .cid-su6YcaawFl .sep-holder,
  .cid-su6YcaawFl .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-su6YcaawFl .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-su6YcaawFl .mbr-text,
.cid-su6YcaawFl .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-su6YcaawFl .mbr-section-subtitle,
.cid-su6YcaawFl .mbr-section-title .accent-word {
  text-align: left;
}
.cid-su6YcaawFl .mbr-section-title,
.cid-su6YcaawFl .separator,
.cid-su6YcaawFl .sep-holder {
  text-align: center;
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-svaJqWAvap .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-svaJqWAvap .nav-item:focus,
.cid-svaJqWAvap .nav-link:focus {
  outline: none;
}
.cid-svaJqWAvap .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-svaJqWAvap .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-svaJqWAvap .dropdown .dropdown-menu .dropdown-item:hover,
.cid-svaJqWAvap .dropdown .dropdown-menu .dropdown-item:active,
.cid-svaJqWAvap .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-svaJqWAvap .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svaJqWAvap .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-svaJqWAvap .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-svaJqWAvap .navbar-caption:hover {
  color: inherit!important;
}
.cid-svaJqWAvap .container {
  max-width: 1380px;
}
.cid-svaJqWAvap .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-svaJqWAvap .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-svaJqWAvap .nav-link:hover,
.cid-svaJqWAvap .nav-link:active,
.cid-svaJqWAvap .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-svaJqWAvap .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-svaJqWAvap .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-svaJqWAvap .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-svaJqWAvap .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-svaJqWAvap .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svaJqWAvap .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svaJqWAvap .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-svaJqWAvap .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-svaJqWAvap .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svaJqWAvap .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-svaJqWAvap .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-svaJqWAvap .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svaJqWAvap .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-svaJqWAvap .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-svaJqWAvap .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svaJqWAvap .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svaJqWAvap .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-svaJqWAvap .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svaJqWAvap .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svaJqWAvap .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-svaJqWAvap .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-svaJqWAvap .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svaJqWAvap .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svaJqWAvap .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-svaJqWAvap .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-svaJqWAvap .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-svaJqWAvap .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-svaJqWAvap .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-svaJqWAvap .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-svaJqWAvap .icons-menu span {
  color: #f7ed4a !important;
}
.cid-svaJqWAvap .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svaJqWAvap .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svaJqWAvap .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-svaJqWAvap .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svaJqWAvap .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svaJqWAvap .dropdown-item.active,
.cid-svaJqWAvap .dropdown-item:active {
  background-color: transparent;
}
.cid-svaJqWAvap .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svaJqWAvap .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svaJqWAvap .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svaJqWAvap .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-svaJqWAvap .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svaJqWAvap .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svaJqWAvap ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svaJqWAvap .navbar-buttons {
  text-align: center;
}
.cid-svaJqWAvap button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-svaJqWAvap button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-svaJqWAvap button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-svaJqWAvap button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-svaJqWAvap button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-svaJqWAvap button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-svaJqWAvap nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svaJqWAvap nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-svaJqWAvap nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-svaJqWAvap nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-svaJqWAvap .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-svaJqWAvap a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svaJqWAvap .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-svaJqWAvap .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-svaJqWAvap .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svaJqWAvap .navbar {
    height: 77px;
  }
  .cid-svaJqWAvap .navbar.opened {
    height: auto;
  }
  .cid-svaJqWAvap .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svaJqZ4fmg {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-svaJqZ4fmg .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-svaJqZ4fmg .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-svaJqZ4fmg .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-svaJqZ4fmg .mbr-text {
  color: #6d7a8c;
}
.cid-svaJqZ4fmg .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-svaJqZ4fmg .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-svaJqZ4fmg .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-svaJqZ4fmg .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-svaJqZ4fmg .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-svaJqZ4fmg .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-svaJqZ4fmg .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-svaJqZ4fmg .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-svaJqZ4fmg .separator,
  .cid-svaJqZ4fmg .sep-holder,
  .cid-svaJqZ4fmg .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-svaJqZ4fmg .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-svaJqZ4fmg .mbr-text,
.cid-svaJqZ4fmg .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-svaJqZ4fmg .mbr-section-subtitle,
.cid-svaJqZ4fmg .mbr-section-title .accent-word {
  text-align: left;
}
.cid-svaJqZ4fmg .mbr-section-title,
.cid-svaJqZ4fmg .separator,
.cid-svaJqZ4fmg .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-svaJqZ4fmg .mbr-text,
.cid-svaJqZ4fmg .mbr-section-btn P {
  text-align: left;
}
.cid-svaJr0AYaA {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
@media (max-width: 992px) {
  .cid-svaJr0AYaA {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-svaJr0AYaA .box {
  background-image: url("../../../assets/images/mbr-1-1920x1080.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-svaJr0AYaA .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-svaJr0AYaA .box:hover {
    background-size: 110%;
  }
}
.cid-svaJr0AYaA .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-svaJr0AYaA .icon-wrap span {
  padding-left: 8px;
}
.cid-svaJr0AYaA .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-svaJr0AYaA .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-svaJr0AYaA .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-svaJr0AYaA .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-svaJr0AYaA .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-svaJr0AYaA .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-svaJr0AYaA a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-svaJr0AYaA a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-svaJr0AYaA {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-svaJr0AYaA .box {
    height: 250px;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .nav-item:focus,
.cid-stHZKQ2T6b .nav-link:focus {
  outline: none;
}
.cid-stHZKQ2T6b .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .dropdown .dropdown-menu .dropdown-item:hover,
.cid-stHZKQ2T6b .dropdown .dropdown-menu .dropdown-item:active,
.cid-stHZKQ2T6b .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-stHZKQ2T6b .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stHZKQ2T6b .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .navbar-caption:hover {
  color: inherit!important;
}
.cid-stHZKQ2T6b .container {
  max-width: 1380px;
}
.cid-stHZKQ2T6b .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-stHZKQ2T6b .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-stHZKQ2T6b .nav-link:hover,
.cid-stHZKQ2T6b .nav-link:active,
.cid-stHZKQ2T6b .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-stHZKQ2T6b .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-stHZKQ2T6b .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-stHZKQ2T6b .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-stHZKQ2T6b .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stHZKQ2T6b .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stHZKQ2T6b .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stHZKQ2T6b .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-stHZKQ2T6b .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stHZKQ2T6b .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stHZKQ2T6b .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stHZKQ2T6b .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stHZKQ2T6b .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stHZKQ2T6b .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stHZKQ2T6b .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stHZKQ2T6b .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-stHZKQ2T6b .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stHZKQ2T6b .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stHZKQ2T6b .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-stHZKQ2T6b .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stHZKQ2T6b .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stHZKQ2T6b .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stHZKQ2T6b .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stHZKQ2T6b .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-stHZKQ2T6b .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stHZKQ2T6b .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-stHZKQ2T6b .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stHZKQ2T6b .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stHZKQ2T6b .icons-menu span {
  color: #f7ed4a !important;
}
.cid-stHZKQ2T6b .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stHZKQ2T6b .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stHZKQ2T6b .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stHZKQ2T6b .dropdown-item.active,
.cid-stHZKQ2T6b .dropdown-item:active {
  background-color: transparent;
}
.cid-stHZKQ2T6b .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stHZKQ2T6b .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stHZKQ2T6b .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stHZKQ2T6b .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-stHZKQ2T6b .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stHZKQ2T6b .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stHZKQ2T6b ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stHZKQ2T6b .navbar-buttons {
  text-align: center;
}
.cid-stHZKQ2T6b button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stHZKQ2T6b button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-stHZKQ2T6b button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stHZKQ2T6b button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stHZKQ2T6b button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stHZKQ2T6b button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stHZKQ2T6b nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stHZKQ2T6b nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stHZKQ2T6b nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stHZKQ2T6b nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stHZKQ2T6b .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stHZKQ2T6b a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stHZKQ2T6b .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stHZKQ2T6b .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-stHZKQ2T6b .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stHZKQ2T6b .navbar {
    height: 77px;
  }
  .cid-stHZKQ2T6b .navbar.opened {
    height: auto;
  }
  .cid-stHZKQ2T6b .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stHZKQqt1A {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/belem.fw-1598x898.png");
}
.cid-stHZKQqt1A .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-stHZKQqt1A .number {
  color: #ffffff;
}
.cid-stHZKQqt1A .period {
  display: block;
}
.cid-stHZKQqt1A .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-stHZKQqt1A .period {
    font-size: 0.8rem;
  }
}
.cid-stHZKQqt1A .btn {
  height: 100%;
  margin: 0;
}
.cid-stHZKQqt1A .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-stHZKQqt1A .mbr-section-title {
  color: #ffffff;
}
.cid-stHZKQqt1A .mbr-text {
  color: #ffffff;
}
.cid-stHZKQqt1A .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-stHZKQqt1A .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-stHZKQqt1A .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-stHZKQqt1A .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-stHZKQqt1A H3 {
  color: #ffffff;
  text-align: center;
}
.cid-stHZKQqt1A .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stHZKQIze2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-stHZKQIze2 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-stHZKQIze2 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-stHZKQIze2 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-stHZKQIze2 .mbr-text {
  color: #6d7a8c;
}
.cid-stHZKQIze2 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-stHZKQIze2 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-stHZKQIze2 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-stHZKQIze2 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-stHZKQIze2 .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-stHZKQIze2 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-stHZKQIze2 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-stHZKQIze2 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-stHZKQIze2 .separator,
  .cid-stHZKQIze2 .sep-holder,
  .cid-stHZKQIze2 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stHZKQIze2 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-stHZKQIze2 .mbr-text,
.cid-stHZKQIze2 .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-stHZKQIze2 .mbr-section-subtitle,
.cid-stHZKQIze2 .mbr-section-title .accent-word {
  text-align: left;
}
.cid-stHZKQIze2 .mbr-section-title,
.cid-stHZKQIze2 .separator,
.cid-stHZKQIze2 .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-stHZKR0Mcc {
  background-image: url("../../../assets/images/fechada-1920x1080.jpg");
}
.cid-stHZKR0Mcc .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-stHZKR0Mcc .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-stHZKR0Mcc .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-stHZKR0Mcc .mbr-text {
  color: #ffffff;
}
.cid-stHZKR0Mcc .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-stHZKR0Mcc .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stHZKR0Mcc .mbr-section-btn {
  display: flex;
}
.cid-stHZKR0Mcc .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-stHZKR0Mcc .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-stHZKR0Mcc .mbr-section-btn.display-4,
.cid-stHZKR0Mcc .btn.display-4 {
  font-size: 12px !important;
}
.cid-stHZKR0Mcc .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-stHZKR0Mcc .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stHZKR0Mcc .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-stHZKR0Mcc .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-stHZKR0Mcc .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stHZKR0Mcc .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-stHZKR0Mcc .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-stHZKR0Mcc .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stHZKR0Mcc .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stHZKR0Mcc .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stHZKR0Mcc a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stHZKR0Mcc a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-stHZKR0Mcc .separator,
  .cid-stHZKR0Mcc .sep-holder,
  .cid-stHZKR0Mcc .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stHZKR0Mcc .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-stHZKR0Mcc .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-stHZKR0Mcc .mbr-section-subtitle,
.cid-stHZKR0Mcc .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-stHZKR0Mcc .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-stIbcnqDO8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-stIbcnqDO8 .content-slider {
  display: -webkit-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-stIbcnqDO8 .modal-body .close {
  background: #1b1b1b;
}
.cid-stIbcnqDO8 .modal-body .close span {
  font-style: normal;
}
.cid-stIbcnqDO8 .content-slider-wrap {
  width: 100%;
}
.cid-stIbcnqDO8 .carousel-inner > .active,
.cid-stIbcnqDO8 .carousel-inner > .next,
.cid-stIbcnqDO8 .carousel-inner > .prev {
  display: flex;
}
.cid-stIbcnqDO8 .carousel-control .icon-next,
.cid-stIbcnqDO8 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-stIbcnqDO8 .carousel-control:hover {
  background: #b0f30a !important;
  opacity: 0.9;
}
.cid-stIbcnqDO8 .carousel-control:hover span {
  color: white !important;
}
.cid-stIbcnqDO8 .mbr-iconfont {
  color: black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.2rem !important;
  font-weight: 900;
}
@media (max-width: 767px) {
  .cid-stIbcnqDO8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-stIbcnqDO8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-stIbcnqDO8 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-stIbcnqDO8 .boxed-slider > div {
  position: relative;
}
.cid-stIbcnqDO8 .container img {
  width: 100%;
}
.cid-stIbcnqDO8 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-stIbcnqDO8 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stIbcnqDO8 .mbr-table-cell {
  padding: 0;
}
.cid-stIbcnqDO8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-stIbcnqDO8 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-stIbcnqDO8 .mbr-overlay {
  z-index: 1;
}
.cid-stIbcnqDO8 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stIbcnqDO8 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-stIbcnqDO8 .carousel-item.active.right,
.cid-stIbcnqDO8 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stIbcnqDO8 .carousel-item.active.left,
.cid-stIbcnqDO8 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-stIbcnqDO8 .carousel-item.active,
.cid-stIbcnqDO8 .carousel-item.next.left,
.cid-stIbcnqDO8 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: -1.5rem;
  font-size: 35px;
  border-radius: 6px;
  background-color: white;
  z-index: 11;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-stIbcnqDO8 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 12px;
  width: 12px;
  max-height: 15px;
  margin: 3px;
  background-color: lightgray;
  border-radius: 50%;
  opacity: 0.5;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators li.active,
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
  background-color: #b0f30a;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators li::after,
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-stIbcnqDO8 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-stIbcnqDO8 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-stIbcnqDO8 .mbr-slider > .container img {
  width: 100%;
}
.cid-stIbcnqDO8 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-stIbcnqDO8 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-stIbcnqDO8 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-stIbcnqDO8 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-stIbcnqDO8 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-stIbcnqDO8 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-stIbcnqDO8 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-stIbcnqDO8 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-stIbcnqDO8 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-stIbcnqDO8 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-stIbcnqDO8 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-stIbcnqDO8 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-stIbcnqDO8 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-stIbcnqDO8 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-stIbcnqDO8 .carousel-inner {
  height: 100%;
}
.cid-stIbcnqDO8 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-stIbcnqDO8 .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-stIbcnqDO8 .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-stIbcnqDO8 .carousel-item .container-slide {
  text-align: center;
}
.cid-stIbcnqDO8 P {
  text-align: right;
}
.cid-stHZKRMoqg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-stHZKRMoqg .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-stHZKRMoqg .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-stHZKRMoqg .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-stHZKRMoqg .mbr-text {
  color: #6d7a8c;
}
.cid-stHZKRMoqg .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-stHZKRMoqg .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-stHZKRMoqg .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-stHZKRMoqg .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-stHZKRMoqg .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-stHZKRMoqg .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-stHZKRMoqg .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-stHZKRMoqg .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-stHZKRMoqg .separator,
  .cid-stHZKRMoqg .sep-holder,
  .cid-stHZKRMoqg .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stHZKRMoqg .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-stHZKRMoqg .mbr-text,
.cid-stHZKRMoqg .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-stHZKRMoqg .mbr-section-subtitle,
.cid-stHZKRMoqg .mbr-section-title .accent-word {
  text-align: left;
}
.cid-stHZKRMoqg .mbr-section-title,
.cid-stHZKRMoqg .separator,
.cid-stHZKRMoqg .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-suLftJVeKK .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-suLftJVeKK .nav-item:focus,
.cid-suLftJVeKK .nav-link:focus {
  outline: none;
}
.cid-suLftJVeKK .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-suLftJVeKK .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-suLftJVeKK .dropdown .dropdown-menu .dropdown-item:hover,
.cid-suLftJVeKK .dropdown .dropdown-menu .dropdown-item:active,
.cid-suLftJVeKK .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-suLftJVeKK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-suLftJVeKK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-suLftJVeKK .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-suLftJVeKK .navbar-caption:hover {
  color: inherit!important;
}
.cid-suLftJVeKK .container {
  max-width: 1380px;
}
.cid-suLftJVeKK .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-suLftJVeKK .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-suLftJVeKK .nav-link:hover,
.cid-suLftJVeKK .nav-link:active,
.cid-suLftJVeKK .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-suLftJVeKK .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-suLftJVeKK .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-suLftJVeKK .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-suLftJVeKK .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-suLftJVeKK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-suLftJVeKK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-suLftJVeKK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-suLftJVeKK .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-suLftJVeKK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-suLftJVeKK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-suLftJVeKK .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-suLftJVeKK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-suLftJVeKK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-suLftJVeKK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-suLftJVeKK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-suLftJVeKK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-suLftJVeKK .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-suLftJVeKK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-suLftJVeKK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-suLftJVeKK .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-suLftJVeKK .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-suLftJVeKK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-suLftJVeKK .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-suLftJVeKK .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-suLftJVeKK .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-suLftJVeKK .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-suLftJVeKK .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-suLftJVeKK .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-suLftJVeKK .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-suLftJVeKK .icons-menu span {
  color: #f7ed4a !important;
}
.cid-suLftJVeKK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-suLftJVeKK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-suLftJVeKK .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-suLftJVeKK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-suLftJVeKK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-suLftJVeKK .dropdown-item.active,
.cid-suLftJVeKK .dropdown-item:active {
  background-color: transparent;
}
.cid-suLftJVeKK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-suLftJVeKK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-suLftJVeKK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-suLftJVeKK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-suLftJVeKK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-suLftJVeKK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-suLftJVeKK ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-suLftJVeKK .navbar-buttons {
  text-align: center;
}
.cid-suLftJVeKK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-suLftJVeKK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-suLftJVeKK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-suLftJVeKK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-suLftJVeKK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-suLftJVeKK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-suLftJVeKK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suLftJVeKK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-suLftJVeKK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-suLftJVeKK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-suLftJVeKK .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-suLftJVeKK a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-suLftJVeKK .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-suLftJVeKK .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-suLftJVeKK .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-suLftJVeKK .navbar {
    height: 77px;
  }
  .cid-suLftJVeKK .navbar.opened {
    height: auto;
  }
  .cid-suLftJVeKK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-suLftKmhpW {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1440x1920.jpeg");
}
.cid-suLftKmhpW .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-suLftKmhpW .number {
  color: #ffffff;
}
.cid-suLftKmhpW .period {
  display: block;
}
.cid-suLftKmhpW .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-suLftKmhpW .period {
    font-size: 0.8rem;
  }
}
.cid-suLftKmhpW .btn {
  height: 100%;
  margin: 0;
}
.cid-suLftKmhpW .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-suLftKmhpW .mbr-section-title {
  color: #ffffff;
}
.cid-suLftKmhpW .mbr-text {
  color: #ffffff;
}
.cid-suLftKmhpW .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-suLftKmhpW .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-suLftKmhpW .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-suLftKmhpW .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-suLftKmhpW H3 {
  color: #ffffff;
  text-align: center;
}
.cid-suLftKmhpW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-suLftLwqO4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #7f1933;
}
.cid-suLftLwqO4 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-suLftLwqO4 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-suLftLwqO4 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-suLftLwqO4 .mbr-text {
  color: #6d7a8c;
}
.cid-suLftLwqO4 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-suLftLwqO4 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-suLftLwqO4 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-suLftLwqO4 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-suLftLwqO4 .separator .sep-holder .sep-line {
  border-color: #ffffff !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #ffffff;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-suLftLwqO4 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-suLftLwqO4 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-suLftLwqO4 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-suLftLwqO4 .separator,
  .cid-suLftLwqO4 .sep-holder,
  .cid-suLftLwqO4 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-suLftLwqO4 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-suLftLwqO4 .mbr-text,
.cid-suLftLwqO4 .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-suLftLwqO4 .mbr-section-subtitle,
.cid-suLftLwqO4 .mbr-section-title .accent-word {
  text-align: left;
}
.cid-suLftLwqO4 .mbr-section-title,
.cid-suLftLwqO4 .separator,
.cid-suLftLwqO4 .sep-holder {
  text-align: center;
  color: #ffffff;
}
.cid-suLftM1Tb9 {
  background-image: url("../../../assets/images/aai-na-arvore.fw-1917x958.png");
}
.cid-suLftM1Tb9 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-suLftM1Tb9 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-suLftM1Tb9 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-suLftM1Tb9 .mbr-text {
  color: #ffffff;
}
.cid-suLftM1Tb9 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-suLftM1Tb9 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-suLftM1Tb9 .mbr-section-btn {
  display: flex;
}
.cid-suLftM1Tb9 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-suLftM1Tb9 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-suLftM1Tb9 .mbr-section-btn.display-4,
.cid-suLftM1Tb9 .btn.display-4 {
  font-size: 12px !important;
}
.cid-suLftM1Tb9 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-suLftM1Tb9 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-suLftM1Tb9 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-suLftM1Tb9 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-suLftM1Tb9 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-suLftM1Tb9 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-suLftM1Tb9 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-suLftM1Tb9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-suLftM1Tb9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-suLftM1Tb9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-suLftM1Tb9 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-suLftM1Tb9 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-suLftM1Tb9 .separator,
  .cid-suLftM1Tb9 .sep-holder,
  .cid-suLftM1Tb9 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-suLftM1Tb9 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-suLftM1Tb9 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-suLftM1Tb9 .mbr-section-subtitle,
.cid-suLftM1Tb9 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-suLftM1Tb9 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-suLftMWXwS {
  background-image: url("../../../assets/images/rio-cupijo.fw-1-1917x958.png");
}
.cid-suLftMWXwS .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-suLftMWXwS .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-suLftMWXwS .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-suLftMWXwS .mbr-text {
  color: #ffffff;
}
.cid-suLftMWXwS .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-suLftMWXwS .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-suLftMWXwS .mbr-section-btn {
  display: flex;
}
.cid-suLftMWXwS .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-suLftMWXwS .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-suLftMWXwS .mbr-section-btn.display-4,
.cid-suLftMWXwS .btn.display-4 {
  font-size: 12px !important;
}
.cid-suLftMWXwS .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-suLftMWXwS .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-suLftMWXwS .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-suLftMWXwS .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-suLftMWXwS .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-suLftMWXwS .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-suLftMWXwS .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-suLftMWXwS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-suLftMWXwS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-suLftMWXwS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-suLftMWXwS a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-suLftMWXwS a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-suLftMWXwS .separator,
  .cid-suLftMWXwS .sep-holder,
  .cid-suLftMWXwS .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-suLftMWXwS .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-suLftMWXwS .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-suLftMWXwS .mbr-section-subtitle,
.cid-suLftMWXwS .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-suLftMWXwS .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-syHSzGXjAA .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-syHSzGXjAA .nav-item:focus,
.cid-syHSzGXjAA .nav-link:focus {
  outline: none;
}
.cid-syHSzGXjAA .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-syHSzGXjAA .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-syHSzGXjAA .dropdown .dropdown-menu .dropdown-item:hover,
.cid-syHSzGXjAA .dropdown .dropdown-menu .dropdown-item:active,
.cid-syHSzGXjAA .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-syHSzGXjAA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-syHSzGXjAA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-syHSzGXjAA .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-syHSzGXjAA .navbar-caption:hover {
  color: inherit!important;
}
.cid-syHSzGXjAA .container {
  max-width: 1380px;
}
.cid-syHSzGXjAA .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-syHSzGXjAA .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-syHSzGXjAA .nav-link:hover,
.cid-syHSzGXjAA .nav-link:active,
.cid-syHSzGXjAA .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-syHSzGXjAA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-syHSzGXjAA .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-syHSzGXjAA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-syHSzGXjAA .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-syHSzGXjAA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-syHSzGXjAA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-syHSzGXjAA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-syHSzGXjAA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-syHSzGXjAA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-syHSzGXjAA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-syHSzGXjAA .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-syHSzGXjAA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-syHSzGXjAA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-syHSzGXjAA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-syHSzGXjAA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-syHSzGXjAA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-syHSzGXjAA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-syHSzGXjAA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-syHSzGXjAA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-syHSzGXjAA .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-syHSzGXjAA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-syHSzGXjAA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-syHSzGXjAA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-syHSzGXjAA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-syHSzGXjAA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-syHSzGXjAA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-syHSzGXjAA .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-syHSzGXjAA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-syHSzGXjAA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-syHSzGXjAA .icons-menu span {
  color: #f7ed4a !important;
}
.cid-syHSzGXjAA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-syHSzGXjAA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-syHSzGXjAA .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-syHSzGXjAA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-syHSzGXjAA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-syHSzGXjAA .dropdown-item.active,
.cid-syHSzGXjAA .dropdown-item:active {
  background-color: transparent;
}
.cid-syHSzGXjAA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-syHSzGXjAA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-syHSzGXjAA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-syHSzGXjAA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-syHSzGXjAA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-syHSzGXjAA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-syHSzGXjAA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-syHSzGXjAA .navbar-buttons {
  text-align: center;
}
.cid-syHSzGXjAA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-syHSzGXjAA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-syHSzGXjAA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-syHSzGXjAA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-syHSzGXjAA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-syHSzGXjAA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-syHSzGXjAA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-syHSzGXjAA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-syHSzGXjAA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-syHSzGXjAA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-syHSzGXjAA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-syHSzGXjAA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-syHSzGXjAA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-syHSzGXjAA .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-syHSzGXjAA .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-syHSzGXjAA .navbar {
    height: 77px;
  }
  .cid-syHSzGXjAA .navbar.opened {
    height: auto;
  }
  .cid-syHSzGXjAA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-syHSzHy2PR {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/03-1081x699.jpg");
}
.cid-syHSzHy2PR .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-syHSzHy2PR .number {
  color: #ffffff;
}
.cid-syHSzHy2PR .period {
  display: block;
}
.cid-syHSzHy2PR .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-syHSzHy2PR .period {
    font-size: 0.8rem;
  }
}
.cid-syHSzHy2PR .btn {
  height: 100%;
  margin: 0;
}
.cid-syHSzHy2PR .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-syHSzHy2PR .mbr-section-title {
  color: #ffffff;
}
.cid-syHSzHy2PR .mbr-text {
  color: #ffffff;
}
.cid-syHSzHy2PR .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-syHSzHy2PR .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #f9f295;
  border: 2px solid #f9f295;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-syHSzHy2PR .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-syHSzHy2PR .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #f9f295;
  color: #000000;
}
.cid-syHSzHy2PR H3 {
  color: #ffffff;
  text-align: center;
}
.cid-syHSzHy2PR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-syHSzHWH1S {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-syHSzHWH1S .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-syHSzHWH1S .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-syHSzHWH1S .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-syHSzHWH1S .mbr-text {
  color: #6d7a8c;
}
.cid-syHSzHWH1S .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-syHSzHWH1S .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-syHSzHWH1S .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-syHSzHWH1S .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-syHSzHWH1S .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-syHSzHWH1S .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-syHSzHWH1S .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-syHSzHWH1S .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-syHSzHWH1S .separator,
  .cid-syHSzHWH1S .sep-holder,
  .cid-syHSzHWH1S .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzHWH1S .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-syHSzHWH1S .mbr-text,
.cid-syHSzHWH1S .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-syHSzHWH1S .mbr-section-subtitle,
.cid-syHSzHWH1S .mbr-section-title .accent-word {
  text-align: left;
}
.cid-syHSzHWH1S .mbr-section-title,
.cid-syHSzHWH1S .separator,
.cid-syHSzHWH1S .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-syHSzIluUZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f9f4b1;
}
.cid-syHSzIluUZ .video-wrapper iframe {
  width: 100%;
}
.cid-syHSzIluUZ .mbr-section-title,
.cid-syHSzIluUZ .mbr-section-subtitle,
.cid-syHSzIluUZ .mbr-text {
  text-align: center;
}
.cid-syHSzIluUZ .mbr-section-subtitle {
  text-align: center;
}
.cid-syHSzIluUZ .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-syHSzIyt4o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-syHSzIyt4o {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-syHSzIyt4o .box {
  background-image: url("../../../assets/images/capa-video-1-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-syHSzIyt4o .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-syHSzIyt4o .box:hover {
    background-size: 110%;
  }
}
.cid-syHSzIyt4o .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syHSzIyt4o .icon-wrap span {
  padding-left: 8px;
}
.cid-syHSzIyt4o .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syHSzIyt4o .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzIyt4o .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-syHSzIyt4o .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzIyt4o .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzIyt4o .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzIyt4o a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzIyt4o a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-syHSzIyt4o {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-syHSzIyt4o .box {
    height: 250px;
  }
}
.cid-syHSzIPm47 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-syHSzIPm47 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-syHSzIPm47 .box {
  background-image: url("../../../assets/images/capa-video-2-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-syHSzIPm47 .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-syHSzIPm47 .box:hover {
    background-size: 110%;
  }
}
.cid-syHSzIPm47 .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syHSzIPm47 .icon-wrap span {
  padding-left: 8px;
}
.cid-syHSzIPm47 .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syHSzIPm47 .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzIPm47 .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-syHSzIPm47 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzIPm47 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzIPm47 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzIPm47 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzIPm47 a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-syHSzIPm47 {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-syHSzIPm47 .box {
    height: 250px;
  }
}
.cid-syHSzJ3ZHC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-syHSzJ3ZHC {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-syHSzJ3ZHC .box {
  background-image: url("../../../assets/images/capa-video-3-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-syHSzJ3ZHC .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-syHSzJ3ZHC .box:hover {
    background-size: 110%;
  }
}
.cid-syHSzJ3ZHC .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-syHSzJ3ZHC .icon-wrap span {
  padding-left: 8px;
}
.cid-syHSzJ3ZHC .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-syHSzJ3ZHC .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzJ3ZHC .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-syHSzJ3ZHC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzJ3ZHC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzJ3ZHC .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzJ3ZHC a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzJ3ZHC a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-syHSzJ3ZHC {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-syHSzJ3ZHC .box {
    height: 250px;
  }
}
.cid-syHSzJi7mK {
  background-image: url("../../../assets/images/01-1081x699.jpg");
}
.cid-syHSzJi7mK .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzJi7mK .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzJi7mK .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzJi7mK .mbr-text {
  color: #ffffff;
}
.cid-syHSzJi7mK .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzJi7mK .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzJi7mK .mbr-section-btn {
  display: flex;
}
.cid-syHSzJi7mK .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzJi7mK .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzJi7mK .mbr-section-btn.display-4,
.cid-syHSzJi7mK .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzJi7mK .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzJi7mK .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzJi7mK .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzJi7mK .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzJi7mK .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzJi7mK .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzJi7mK .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzJi7mK .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzJi7mK .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzJi7mK .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzJi7mK a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzJi7mK a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzJi7mK .separator,
  .cid-syHSzJi7mK .sep-holder,
  .cid-syHSzJi7mK .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzJi7mK .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzJi7mK .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzJi7mK .mbr-section-subtitle,
.cid-syHSzJi7mK .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzJi7mK .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzJCteI {
  background-image: url("../../../assets/images/02-1081x699.jpg");
}
.cid-syHSzJCteI .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzJCteI .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzJCteI .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzJCteI .mbr-text {
  color: #ffffff;
}
.cid-syHSzJCteI .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzJCteI .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzJCteI .mbr-section-btn {
  display: flex;
}
.cid-syHSzJCteI .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzJCteI .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzJCteI .mbr-section-btn.display-4,
.cid-syHSzJCteI .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzJCteI .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzJCteI .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzJCteI .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzJCteI .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzJCteI .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzJCteI .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzJCteI .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzJCteI .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzJCteI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzJCteI .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzJCteI a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzJCteI a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzJCteI .separator,
  .cid-syHSzJCteI .sep-holder,
  .cid-syHSzJCteI .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzJCteI .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzJCteI .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzJCteI .mbr-section-subtitle,
.cid-syHSzJCteI .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzJCteI .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzJX7aF {
  background-image: url("../../../assets/images/03-1081x699.jpg");
}
.cid-syHSzJX7aF .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzJX7aF .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzJX7aF .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzJX7aF .mbr-text {
  color: #ffffff;
}
.cid-syHSzJX7aF .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzJX7aF .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzJX7aF .mbr-section-btn {
  display: flex;
}
.cid-syHSzJX7aF .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzJX7aF .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzJX7aF .mbr-section-btn.display-4,
.cid-syHSzJX7aF .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzJX7aF .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzJX7aF .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzJX7aF .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzJX7aF .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzJX7aF .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzJX7aF .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzJX7aF .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzJX7aF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzJX7aF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzJX7aF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzJX7aF a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzJX7aF a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzJX7aF .separator,
  .cid-syHSzJX7aF .sep-holder,
  .cid-syHSzJX7aF .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzJX7aF .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzJX7aF .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzJX7aF .mbr-section-subtitle,
.cid-syHSzJX7aF .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzJX7aF .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzKhPVt {
  background-image: url("../../../assets/images/04-1081x699.jpg");
}
.cid-syHSzKhPVt .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzKhPVt .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzKhPVt .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzKhPVt .mbr-text {
  color: #ffffff;
}
.cid-syHSzKhPVt .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzKhPVt .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzKhPVt .mbr-section-btn {
  display: flex;
}
.cid-syHSzKhPVt .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzKhPVt .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzKhPVt .mbr-section-btn.display-4,
.cid-syHSzKhPVt .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzKhPVt .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzKhPVt .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzKhPVt .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzKhPVt .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzKhPVt .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzKhPVt .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzKhPVt .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzKhPVt .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzKhPVt .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzKhPVt .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzKhPVt a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzKhPVt a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzKhPVt .separator,
  .cid-syHSzKhPVt .sep-holder,
  .cid-syHSzKhPVt .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzKhPVt .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzKhPVt .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzKhPVt .mbr-section-subtitle,
.cid-syHSzKhPVt .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzKhPVt .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzKAqYj {
  background-image: url("../../../assets/images/05-1081x699.jpg");
}
.cid-syHSzKAqYj .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzKAqYj .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzKAqYj .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzKAqYj .mbr-text {
  color: #ffffff;
}
.cid-syHSzKAqYj .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzKAqYj .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzKAqYj .mbr-section-btn {
  display: flex;
}
.cid-syHSzKAqYj .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzKAqYj .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzKAqYj .mbr-section-btn.display-4,
.cid-syHSzKAqYj .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzKAqYj .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzKAqYj .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzKAqYj .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzKAqYj .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzKAqYj .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzKAqYj .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzKAqYj .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzKAqYj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzKAqYj .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzKAqYj .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzKAqYj a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzKAqYj a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzKAqYj .separator,
  .cid-syHSzKAqYj .sep-holder,
  .cid-syHSzKAqYj .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzKAqYj .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzKAqYj .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzKAqYj .mbr-section-subtitle,
.cid-syHSzKAqYj .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzKAqYj .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzKTHhx {
  background-image: url("../../../assets/images/06-1081x699.jpg");
}
.cid-syHSzKTHhx .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzKTHhx .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzKTHhx .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzKTHhx .mbr-text {
  color: #ffffff;
}
.cid-syHSzKTHhx .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzKTHhx .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzKTHhx .mbr-section-btn {
  display: flex;
}
.cid-syHSzKTHhx .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzKTHhx .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzKTHhx .mbr-section-btn.display-4,
.cid-syHSzKTHhx .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzKTHhx .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzKTHhx .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzKTHhx .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzKTHhx .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzKTHhx .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzKTHhx .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzKTHhx .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzKTHhx .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzKTHhx .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzKTHhx .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzKTHhx a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzKTHhx a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzKTHhx .separator,
  .cid-syHSzKTHhx .sep-holder,
  .cid-syHSzKTHhx .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzKTHhx .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzKTHhx .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzKTHhx .mbr-section-subtitle,
.cid-syHSzKTHhx .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzKTHhx .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzLbepf {
  background-image: url("../../../assets/images/07-1081x699.jpg");
}
.cid-syHSzLbepf .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzLbepf .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzLbepf .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzLbepf .mbr-text {
  color: #ffffff;
}
.cid-syHSzLbepf .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzLbepf .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzLbepf .mbr-section-btn {
  display: flex;
}
.cid-syHSzLbepf .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzLbepf .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzLbepf .mbr-section-btn.display-4,
.cid-syHSzLbepf .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzLbepf .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzLbepf .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzLbepf .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzLbepf .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzLbepf .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzLbepf .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzLbepf .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzLbepf .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzLbepf .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzLbepf .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzLbepf a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzLbepf a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzLbepf .separator,
  .cid-syHSzLbepf .sep-holder,
  .cid-syHSzLbepf .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzLbepf .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzLbepf .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzLbepf .mbr-section-subtitle,
.cid-syHSzLbepf .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzLbepf .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzLvtbZ {
  background-image: url("../../../assets/images/08-1081x699.jpg");
}
.cid-syHSzLvtbZ .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzLvtbZ .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzLvtbZ .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzLvtbZ .mbr-text {
  color: #ffffff;
}
.cid-syHSzLvtbZ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzLvtbZ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzLvtbZ .mbr-section-btn {
  display: flex;
}
.cid-syHSzLvtbZ .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzLvtbZ .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzLvtbZ .mbr-section-btn.display-4,
.cid-syHSzLvtbZ .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzLvtbZ .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzLvtbZ .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzLvtbZ .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzLvtbZ .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzLvtbZ .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzLvtbZ .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzLvtbZ .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzLvtbZ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzLvtbZ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzLvtbZ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzLvtbZ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzLvtbZ a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzLvtbZ .separator,
  .cid-syHSzLvtbZ .sep-holder,
  .cid-syHSzLvtbZ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzLvtbZ .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzLvtbZ .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzLvtbZ .mbr-section-subtitle,
.cid-syHSzLvtbZ .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzLvtbZ .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-syHSzLPliC {
  background-image: url("../../../assets/images/09-1081x699.jpg");
}
.cid-syHSzLPliC .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-syHSzLPliC .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-syHSzLPliC .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-syHSzLPliC .mbr-text {
  color: #ffffff;
}
.cid-syHSzLPliC .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-syHSzLPliC .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-syHSzLPliC .mbr-section-btn {
  display: flex;
}
.cid-syHSzLPliC .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-syHSzLPliC .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-syHSzLPliC .mbr-section-btn.display-4,
.cid-syHSzLPliC .btn.display-4 {
  font-size: 12px !important;
}
.cid-syHSzLPliC .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-syHSzLPliC .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-syHSzLPliC .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-syHSzLPliC .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-syHSzLPliC .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-syHSzLPliC .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-syHSzLPliC .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-syHSzLPliC .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-syHSzLPliC .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-syHSzLPliC .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-syHSzLPliC a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-syHSzLPliC a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-syHSzLPliC .separator,
  .cid-syHSzLPliC .sep-holder,
  .cid-syHSzLPliC .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-syHSzLPliC .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-syHSzLPliC .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-syHSzLPliC .mbr-section-subtitle,
.cid-syHSzLPliC .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-syHSzLPliC .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sAm9ucahBP .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-sAm9ucahBP .nav-item:focus,
.cid-sAm9ucahBP .nav-link:focus {
  outline: none;
}
.cid-sAm9ucahBP .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sAm9ucahBP .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-sAm9ucahBP .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sAm9ucahBP .dropdown .dropdown-menu .dropdown-item:active,
.cid-sAm9ucahBP .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sAm9ucahBP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAm9ucahBP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sAm9ucahBP .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-sAm9ucahBP .navbar-caption:hover {
  color: inherit!important;
}
.cid-sAm9ucahBP .container {
  max-width: 1380px;
}
.cid-sAm9ucahBP .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sAm9ucahBP .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sAm9ucahBP .nav-link:hover,
.cid-sAm9ucahBP .nav-link:active,
.cid-sAm9ucahBP .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sAm9ucahBP .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sAm9ucahBP .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sAm9ucahBP .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sAm9ucahBP .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sAm9ucahBP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sAm9ucahBP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sAm9ucahBP .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sAm9ucahBP .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sAm9ucahBP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sAm9ucahBP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sAm9ucahBP .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-sAm9ucahBP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sAm9ucahBP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sAm9ucahBP .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sAm9ucahBP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sAm9ucahBP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sAm9ucahBP .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sAm9ucahBP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sAm9ucahBP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sAm9ucahBP .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-sAm9ucahBP .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sAm9ucahBP .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sAm9ucahBP .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sAm9ucahBP .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sAm9ucahBP .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sAm9ucahBP .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sAm9ucahBP .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sAm9ucahBP .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sAm9ucahBP .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sAm9ucahBP .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sAm9ucahBP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sAm9ucahBP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sAm9ucahBP .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-sAm9ucahBP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sAm9ucahBP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sAm9ucahBP .dropdown-item.active,
.cid-sAm9ucahBP .dropdown-item:active {
  background-color: transparent;
}
.cid-sAm9ucahBP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sAm9ucahBP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sAm9ucahBP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sAm9ucahBP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sAm9ucahBP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sAm9ucahBP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAm9ucahBP ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sAm9ucahBP .navbar-buttons {
  text-align: center;
}
.cid-sAm9ucahBP button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAm9ucahBP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sAm9ucahBP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAm9ucahBP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAm9ucahBP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAm9ucahBP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAm9ucahBP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAm9ucahBP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAm9ucahBP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAm9ucahBP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAm9ucahBP .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sAm9ucahBP a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sAm9ucahBP .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sAm9ucahBP .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-sAm9ucahBP .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sAm9ucahBP .navbar {
    height: 77px;
  }
  .cid-sAm9ucahBP .navbar.opened {
    height: auto;
  }
  .cid-sAm9ucahBP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sAm9ugMpEZ {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1371.jpg");
}
.cid-sAm9ugMpEZ .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sAm9ugMpEZ .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sAm9ugMpEZ .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sAm9ugMpEZ .mbr-text,
.cid-sAm9ugMpEZ .mbr-section-btn {
  text-align: center;
}
.cid-sAm9ugMpEZ P {
  color: #ffffff;
  text-align: left;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .nav-item:focus,
.cid-sBnwEwYBZH .nav-link:focus {
  outline: none;
}
.cid-sBnwEwYBZH .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sBnwEwYBZH .dropdown .dropdown-menu .dropdown-item:active,
.cid-sBnwEwYBZH .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sBnwEwYBZH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sBnwEwYBZH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .navbar-caption:hover {
  color: inherit!important;
}
.cid-sBnwEwYBZH .container {
  max-width: 1380px;
}
.cid-sBnwEwYBZH .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sBnwEwYBZH .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sBnwEwYBZH .nav-link:hover,
.cid-sBnwEwYBZH .nav-link:active,
.cid-sBnwEwYBZH .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sBnwEwYBZH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sBnwEwYBZH .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sBnwEwYBZH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sBnwEwYBZH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sBnwEwYBZH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sBnwEwYBZH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sBnwEwYBZH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sBnwEwYBZH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sBnwEwYBZH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sBnwEwYBZH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sBnwEwYBZH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sBnwEwYBZH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sBnwEwYBZH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sBnwEwYBZH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sBnwEwYBZH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sBnwEwYBZH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sBnwEwYBZH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sBnwEwYBZH .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-sBnwEwYBZH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sBnwEwYBZH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sBnwEwYBZH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sBnwEwYBZH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sBnwEwYBZH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sBnwEwYBZH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sBnwEwYBZH .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sBnwEwYBZH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sBnwEwYBZH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sBnwEwYBZH .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sBnwEwYBZH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sBnwEwYBZH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sBnwEwYBZH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sBnwEwYBZH .dropdown-item.active,
.cid-sBnwEwYBZH .dropdown-item:active {
  background-color: transparent;
}
.cid-sBnwEwYBZH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sBnwEwYBZH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sBnwEwYBZH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sBnwEwYBZH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sBnwEwYBZH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sBnwEwYBZH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sBnwEwYBZH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sBnwEwYBZH .navbar-buttons {
  text-align: center;
}
.cid-sBnwEwYBZH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sBnwEwYBZH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sBnwEwYBZH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sBnwEwYBZH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sBnwEwYBZH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sBnwEwYBZH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sBnwEwYBZH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBnwEwYBZH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sBnwEwYBZH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sBnwEwYBZH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sBnwEwYBZH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sBnwEwYBZH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sBnwEwYBZH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sBnwEwYBZH .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-sBnwEwYBZH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sBnwEwYBZH .navbar {
    height: 77px;
  }
  .cid-sBnwEwYBZH .navbar.opened {
    height: auto;
  }
  .cid-sBnwEwYBZH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sBnwExK439 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/03-1081x699.jpg");
}
.cid-sBnwExK439 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sBnwExK439 .number {
  color: #ffffff;
}
.cid-sBnwExK439 .period {
  display: block;
}
.cid-sBnwExK439 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sBnwExK439 .period {
    font-size: 0.8rem;
  }
}
.cid-sBnwExK439 .btn {
  height: 100%;
  margin: 0;
}
.cid-sBnwExK439 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sBnwExK439 .mbr-section-title {
  color: #ffffff;
}
.cid-sBnwExK439 .mbr-text {
  color: #ffffff;
}
.cid-sBnwExK439 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sBnwExK439 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #f9f295;
  border: 2px solid #f9f295;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sBnwExK439 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sBnwExK439 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #f9f295;
  color: #000000;
}
.cid-sBnwExK439 H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sBnwExK439 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sBnwEyeDMF {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #f9e087;
}
.cid-sBnwEyeDMF .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sBnwEyeDMF .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sBnwEyeDMF .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sBnwEyeDMF .mbr-text {
  color: #6d7a8c;
}
.cid-sBnwEyeDMF .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sBnwEyeDMF .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sBnwEyeDMF .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sBnwEyeDMF .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sBnwEyeDMF .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sBnwEyeDMF .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sBnwEyeDMF .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sBnwEyeDMF .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sBnwEyeDMF .separator,
  .cid-sBnwEyeDMF .sep-holder,
  .cid-sBnwEyeDMF .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEyeDMF .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sBnwEyeDMF .mbr-text,
.cid-sBnwEyeDMF .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sBnwEyeDMF .mbr-section-subtitle,
.cid-sBnwEyeDMF .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sBnwEyeDMF .mbr-section-title,
.cid-sBnwEyeDMF .separator,
.cid-sBnwEyeDMF .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sBnwEyCUKd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #f9f4b1;
}
.cid-sBnwEyCUKd .video-wrapper iframe {
  width: 100%;
}
.cid-sBnwEyCUKd .mbr-section-title,
.cid-sBnwEyCUKd .mbr-section-subtitle,
.cid-sBnwEyCUKd .mbr-text {
  text-align: center;
}
.cid-sBnwEyCUKd .mbr-section-subtitle {
  text-align: center;
}
.cid-sBnwEyCUKd .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sBnwEySQIV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sBnwEySQIV {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-sBnwEySQIV .box {
  background-image: url("../../../assets/images/capa-video-1-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sBnwEySQIV .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-sBnwEySQIV .box:hover {
    background-size: 110%;
  }
}
.cid-sBnwEySQIV .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-sBnwEySQIV .icon-wrap span {
  padding-left: 8px;
}
.cid-sBnwEySQIV .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sBnwEySQIV .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEySQIV .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-sBnwEySQIV .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEySQIV .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEySQIV .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEySQIV a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEySQIV a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sBnwEySQIV {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-sBnwEySQIV .box {
    height: 250px;
  }
}
.cid-sBnwEz9UTQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sBnwEz9UTQ {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-sBnwEz9UTQ .box {
  background-image: url("../../../assets/images/capa-video-2-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sBnwEz9UTQ .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-sBnwEz9UTQ .box:hover {
    background-size: 110%;
  }
}
.cid-sBnwEz9UTQ .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-sBnwEz9UTQ .icon-wrap span {
  padding-left: 8px;
}
.cid-sBnwEz9UTQ .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sBnwEz9UTQ .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEz9UTQ .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-sBnwEz9UTQ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEz9UTQ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEz9UTQ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEz9UTQ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEz9UTQ a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sBnwEz9UTQ {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-sBnwEz9UTQ .box {
    height: 250px;
  }
}
.cid-sBnwEzpcel {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sBnwEzpcel {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.cid-sBnwEzpcel .box {
  background-image: url("../../../assets/images/capa-video-3-1181x664.jpg");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sBnwEzpcel .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-sBnwEzpcel .box:hover {
    background-size: 110%;
  }
}
.cid-sBnwEzpcel .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-sBnwEzpcel .icon-wrap span {
  padding-left: 8px;
}
.cid-sBnwEzpcel .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sBnwEzpcel .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEzpcel .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-sBnwEzpcel .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEzpcel .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEzpcel .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEzpcel a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEzpcel a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sBnwEzpcel {
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .cid-sBnwEzpcel .box {
    height: 250px;
  }
}
.cid-sBnwEzGu81 {
  background-image: url("../../../assets/images/01-1081x699.jpg");
}
.cid-sBnwEzGu81 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEzGu81 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEzGu81 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEzGu81 .mbr-text {
  color: #ffffff;
}
.cid-sBnwEzGu81 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEzGu81 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEzGu81 .mbr-section-btn {
  display: flex;
}
.cid-sBnwEzGu81 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEzGu81 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEzGu81 .mbr-section-btn.display-4,
.cid-sBnwEzGu81 .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEzGu81 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEzGu81 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEzGu81 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEzGu81 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEzGu81 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEzGu81 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEzGu81 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEzGu81 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEzGu81 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEzGu81 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEzGu81 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEzGu81 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEzGu81 .separator,
  .cid-sBnwEzGu81 .sep-holder,
  .cid-sBnwEzGu81 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEzGu81 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEzGu81 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEzGu81 .mbr-section-subtitle,
.cid-sBnwEzGu81 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEzGu81 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEA47Ej {
  background-image: url("../../../assets/images/02-1081x699.jpg");
}
.cid-sBnwEA47Ej .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEA47Ej .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEA47Ej .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEA47Ej .mbr-text {
  color: #ffffff;
}
.cid-sBnwEA47Ej .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEA47Ej .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEA47Ej .mbr-section-btn {
  display: flex;
}
.cid-sBnwEA47Ej .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEA47Ej .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEA47Ej .mbr-section-btn.display-4,
.cid-sBnwEA47Ej .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEA47Ej .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEA47Ej .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEA47Ej .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEA47Ej .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEA47Ej .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEA47Ej .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEA47Ej .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEA47Ej .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEA47Ej .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEA47Ej .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEA47Ej a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEA47Ej a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEA47Ej .separator,
  .cid-sBnwEA47Ej .sep-holder,
  .cid-sBnwEA47Ej .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEA47Ej .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEA47Ej .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEA47Ej .mbr-section-subtitle,
.cid-sBnwEA47Ej .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEA47Ej .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEApptU {
  background-image: url("../../../assets/images/03-1081x699.jpg");
}
.cid-sBnwEApptU .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEApptU .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEApptU .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEApptU .mbr-text {
  color: #ffffff;
}
.cid-sBnwEApptU .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEApptU .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEApptU .mbr-section-btn {
  display: flex;
}
.cid-sBnwEApptU .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEApptU .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEApptU .mbr-section-btn.display-4,
.cid-sBnwEApptU .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEApptU .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEApptU .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEApptU .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEApptU .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEApptU .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEApptU .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEApptU .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEApptU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEApptU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEApptU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEApptU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEApptU a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEApptU .separator,
  .cid-sBnwEApptU .sep-holder,
  .cid-sBnwEApptU .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEApptU .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEApptU .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEApptU .mbr-section-subtitle,
.cid-sBnwEApptU .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEApptU .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEAKpsb {
  background-image: url("../../../assets/images/04-1081x699.jpg");
}
.cid-sBnwEAKpsb .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEAKpsb .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEAKpsb .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEAKpsb .mbr-text {
  color: #ffffff;
}
.cid-sBnwEAKpsb .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEAKpsb .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEAKpsb .mbr-section-btn {
  display: flex;
}
.cid-sBnwEAKpsb .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEAKpsb .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEAKpsb .mbr-section-btn.display-4,
.cid-sBnwEAKpsb .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEAKpsb .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEAKpsb .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEAKpsb .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEAKpsb .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEAKpsb .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEAKpsb .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEAKpsb .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEAKpsb .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEAKpsb .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEAKpsb .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEAKpsb a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEAKpsb a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEAKpsb .separator,
  .cid-sBnwEAKpsb .sep-holder,
  .cid-sBnwEAKpsb .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEAKpsb .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEAKpsb .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEAKpsb .mbr-section-subtitle,
.cid-sBnwEAKpsb .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEAKpsb .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEB3nDU {
  background-image: url("../../../assets/images/05-1081x699.jpg");
}
.cid-sBnwEB3nDU .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEB3nDU .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEB3nDU .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEB3nDU .mbr-text {
  color: #ffffff;
}
.cid-sBnwEB3nDU .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEB3nDU .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEB3nDU .mbr-section-btn {
  display: flex;
}
.cid-sBnwEB3nDU .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEB3nDU .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEB3nDU .mbr-section-btn.display-4,
.cid-sBnwEB3nDU .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEB3nDU .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEB3nDU .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEB3nDU .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEB3nDU .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEB3nDU .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEB3nDU .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEB3nDU .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEB3nDU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEB3nDU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEB3nDU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEB3nDU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEB3nDU a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEB3nDU .separator,
  .cid-sBnwEB3nDU .sep-holder,
  .cid-sBnwEB3nDU .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEB3nDU .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEB3nDU .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEB3nDU .mbr-section-subtitle,
.cid-sBnwEB3nDU .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEB3nDU .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEBmcaT {
  background-image: url("../../../assets/images/06-1081x699.jpg");
}
.cid-sBnwEBmcaT .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEBmcaT .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEBmcaT .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEBmcaT .mbr-text {
  color: #ffffff;
}
.cid-sBnwEBmcaT .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEBmcaT .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEBmcaT .mbr-section-btn {
  display: flex;
}
.cid-sBnwEBmcaT .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEBmcaT .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEBmcaT .mbr-section-btn.display-4,
.cid-sBnwEBmcaT .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEBmcaT .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEBmcaT .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEBmcaT .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEBmcaT .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEBmcaT .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEBmcaT .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEBmcaT .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEBmcaT .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEBmcaT .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEBmcaT .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEBmcaT a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEBmcaT a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEBmcaT .separator,
  .cid-sBnwEBmcaT .sep-holder,
  .cid-sBnwEBmcaT .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEBmcaT .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEBmcaT .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEBmcaT .mbr-section-subtitle,
.cid-sBnwEBmcaT .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEBmcaT .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEBJjku {
  background-image: url("../../../assets/images/07-1081x699.jpg");
}
.cid-sBnwEBJjku .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEBJjku .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEBJjku .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEBJjku .mbr-text {
  color: #ffffff;
}
.cid-sBnwEBJjku .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEBJjku .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEBJjku .mbr-section-btn {
  display: flex;
}
.cid-sBnwEBJjku .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEBJjku .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEBJjku .mbr-section-btn.display-4,
.cid-sBnwEBJjku .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEBJjku .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEBJjku .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEBJjku .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEBJjku .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEBJjku .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEBJjku .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEBJjku .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEBJjku .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEBJjku .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEBJjku .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEBJjku a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEBJjku a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEBJjku .separator,
  .cid-sBnwEBJjku .sep-holder,
  .cid-sBnwEBJjku .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEBJjku .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEBJjku .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEBJjku .mbr-section-subtitle,
.cid-sBnwEBJjku .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEBJjku .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwEC53Z3 {
  background-image: url("../../../assets/images/08-1081x699.jpg");
}
.cid-sBnwEC53Z3 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwEC53Z3 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwEC53Z3 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwEC53Z3 .mbr-text {
  color: #ffffff;
}
.cid-sBnwEC53Z3 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwEC53Z3 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwEC53Z3 .mbr-section-btn {
  display: flex;
}
.cid-sBnwEC53Z3 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwEC53Z3 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwEC53Z3 .mbr-section-btn.display-4,
.cid-sBnwEC53Z3 .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwEC53Z3 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwEC53Z3 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwEC53Z3 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwEC53Z3 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwEC53Z3 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwEC53Z3 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwEC53Z3 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwEC53Z3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwEC53Z3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwEC53Z3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwEC53Z3 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwEC53Z3 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwEC53Z3 .separator,
  .cid-sBnwEC53Z3 .sep-holder,
  .cid-sBnwEC53Z3 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwEC53Z3 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwEC53Z3 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwEC53Z3 .mbr-section-subtitle,
.cid-sBnwEC53Z3 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwEC53Z3 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sBnwECpThs {
  background-image: url("../../../assets/images/09-1081x699.jpg");
}
.cid-sBnwECpThs .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sBnwECpThs .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sBnwECpThs .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sBnwECpThs .mbr-text {
  color: #ffffff;
}
.cid-sBnwECpThs .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sBnwECpThs .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sBnwECpThs .mbr-section-btn {
  display: flex;
}
.cid-sBnwECpThs .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sBnwECpThs .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sBnwECpThs .mbr-section-btn.display-4,
.cid-sBnwECpThs .btn.display-4 {
  font-size: 12px !important;
}
.cid-sBnwECpThs .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sBnwECpThs .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sBnwECpThs .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sBnwECpThs .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sBnwECpThs .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sBnwECpThs .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sBnwECpThs .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sBnwECpThs .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sBnwECpThs .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sBnwECpThs .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sBnwECpThs a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sBnwECpThs a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sBnwECpThs .separator,
  .cid-sBnwECpThs .sep-holder,
  .cid-sBnwECpThs .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sBnwECpThs .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sBnwECpThs .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sBnwECpThs .mbr-section-subtitle,
.cid-sBnwECpThs .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sBnwECpThs .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .nav-item:focus,
.cid-sFDTwkqyT2 .nav-link:focus {
  outline: none;
}
.cid-sFDTwkqyT2 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sFDTwkqyT2 .dropdown .dropdown-menu .dropdown-item:active,
.cid-sFDTwkqyT2 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sFDTwkqyT2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDTwkqyT2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .navbar-caption:hover {
  color: inherit!important;
}
.cid-sFDTwkqyT2 .container {
  max-width: 1380px;
}
.cid-sFDTwkqyT2 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sFDTwkqyT2 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sFDTwkqyT2 .nav-link:hover,
.cid-sFDTwkqyT2 .nav-link:active,
.cid-sFDTwkqyT2 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sFDTwkqyT2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sFDTwkqyT2 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sFDTwkqyT2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sFDTwkqyT2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sFDTwkqyT2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDTwkqyT2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sFDTwkqyT2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sFDTwkqyT2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sFDTwkqyT2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDTwkqyT2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDTwkqyT2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sFDTwkqyT2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sFDTwkqyT2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDTwkqyT2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDTwkqyT2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sFDTwkqyT2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDTwkqyT2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDTwkqyT2 .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-sFDTwkqyT2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFDTwkqyT2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDTwkqyT2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sFDTwkqyT2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sFDTwkqyT2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sFDTwkqyT2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sFDTwkqyT2 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sFDTwkqyT2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFDTwkqyT2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFDTwkqyT2 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sFDTwkqyT2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDTwkqyT2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDTwkqyT2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDTwkqyT2 .dropdown-item.active,
.cid-sFDTwkqyT2 .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDTwkqyT2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDTwkqyT2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDTwkqyT2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDTwkqyT2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sFDTwkqyT2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDTwkqyT2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDTwkqyT2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFDTwkqyT2 .navbar-buttons {
  text-align: center;
}
.cid-sFDTwkqyT2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDTwkqyT2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sFDTwkqyT2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sFDTwkqyT2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sFDTwkqyT2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sFDTwkqyT2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sFDTwkqyT2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFDTwkqyT2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sFDTwkqyT2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sFDTwkqyT2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sFDTwkqyT2 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sFDTwkqyT2 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDTwkqyT2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sFDTwkqyT2 .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-sFDTwkqyT2 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFDTwkqyT2 .navbar {
    height: 77px;
  }
  .cid-sFDTwkqyT2 .navbar.opened {
    height: auto;
  }
  .cid-sFDTwkqyT2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sFDTwmd0Zo {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1920x1078.jpg");
}
.cid-sFDTwmd0Zo .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sFDTwmd0Zo .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sFDTwmd0Zo .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sFDTwmd0Zo .mbr-text,
.cid-sFDTwmd0Zo .mbr-section-btn {
  text-align: center;
}
.cid-sFDTwmd0Zo P {
  color: #ffffff;
}
.cid-sFDTwmd0Zo .btn {
  font-family: 'Oswald', sans-serif;
}
.cid-sFDTwmd0Zo .btn-vermelho {
  box-shadow: 0 0 0 100px #ff1493 inset !important;
  background: transparent !important;
  font-weight: 700;
  border-radius: 25px;
  border-top-left-radius: 0px;
  border: none !important;
}
.cid-sFDTwmd0Zo .btn-vermelho,
.cid-sFDTwmd0Zo .btn-vermelho:active {
  background-color: #ff1493 !important;
  border-color: #ff1493 !important;
  color: #ffffff !important;
}
.cid-sFDTwmd0Zo .btn-vermelho:hover,
.cid-sFDTwmd0Zo .btn-vermelho:focus,
.cid-sFDTwmd0Zo .btn-vermelho.focus,
.cid-sFDTwmd0Zo .btn-vermelho.active {
  color: #ffffff !important;
  background-color: #ff1493 !important;
  border-color: #ff1493 !important;
}
.cid-sFDTwmd0Zo .btn-vermelho.disabled,
.cid-sFDTwmd0Zo .btn-vermelho:disabled {
  color: #ffffff !important;
  background-color: #ff1493 !important;
  border-color: #ff1493 !important;
}
.cid-sFDTwmd0Zo .btn-vermelho:hover,
.cid-sFDTwmd0Zo .btn-vermelho:focus {
  box-shadow: 0 0 0 2px #ff1493 inset !important;
  background: transparent !important;
  border: none !important;
  color: #ff1493 !important;
}
.cid-sFDTwmd0Zo .btn-vermelho span {
  font-size: 1.4rem !important;
  padding-right: .6rem !important;
}
@media (max-width: 767px) {
  .cid-sFDTwmd0Zo .btn-vermelho {
    width: -webkit-fill-available;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sGnizVQYoe .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-sGnizVQYoe .nav-item:focus,
.cid-sGnizVQYoe .nav-link:focus {
  outline: none;
}
.cid-sGnizVQYoe .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sGnizVQYoe .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-sGnizVQYoe .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sGnizVQYoe .dropdown .dropdown-menu .dropdown-item:active,
.cid-sGnizVQYoe .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sGnizVQYoe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGnizVQYoe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGnizVQYoe .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-sGnizVQYoe .navbar-caption:hover {
  color: inherit!important;
}
.cid-sGnizVQYoe .container {
  max-width: 1380px;
}
.cid-sGnizVQYoe .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sGnizVQYoe .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sGnizVQYoe .nav-link:hover,
.cid-sGnizVQYoe .nav-link:active,
.cid-sGnizVQYoe .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sGnizVQYoe .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sGnizVQYoe .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sGnizVQYoe .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGnizVQYoe .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGnizVQYoe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGnizVQYoe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGnizVQYoe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sGnizVQYoe .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGnizVQYoe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGnizVQYoe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGnizVQYoe .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-sGnizVQYoe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGnizVQYoe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGnizVQYoe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sGnizVQYoe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGnizVQYoe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGnizVQYoe .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGnizVQYoe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGnizVQYoe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGnizVQYoe .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-sGnizVQYoe .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGnizVQYoe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGnizVQYoe .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGnizVQYoe .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGnizVQYoe .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGnizVQYoe .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sGnizVQYoe .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sGnizVQYoe .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGnizVQYoe .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGnizVQYoe .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sGnizVQYoe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGnizVQYoe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGnizVQYoe .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-sGnizVQYoe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGnizVQYoe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGnizVQYoe .dropdown-item.active,
.cid-sGnizVQYoe .dropdown-item:active {
  background-color: transparent;
}
.cid-sGnizVQYoe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGnizVQYoe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGnizVQYoe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGnizVQYoe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sGnizVQYoe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGnizVQYoe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGnizVQYoe ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGnizVQYoe .navbar-buttons {
  text-align: center;
}
.cid-sGnizVQYoe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGnizVQYoe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sGnizVQYoe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGnizVQYoe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGnizVQYoe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGnizVQYoe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGnizVQYoe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGnizVQYoe nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGnizVQYoe nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGnizVQYoe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGnizVQYoe .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGnizVQYoe a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGnizVQYoe .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGnizVQYoe .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-sGnizVQYoe .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGnizVQYoe .navbar {
    height: 77px;
  }
  .cid-sGnizVQYoe .navbar.opened {
    height: auto;
  }
  .cid-sGnizVQYoe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGnizWiuLn {
  padding-top: 75px;
  padding-bottom: 60px;
}
.cid-sGnizWiuLn .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sGnizWiuLn .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sGnizWiuLn .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sGnizWiuLn .mbr-text,
.cid-sGnizWiuLn .mbr-section-btn {
  text-align: center;
}
.cid-sGnizWiuLn P {
  color: #aff0f6;
  text-align: center;
}
.cid-sGnizWiuLn .card-title,
.cid-sGnizWiuLn .card-img {
  color: #0f7699;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sGAlZhaTA8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sGAlZhaTA8 .carousel {
  height: 500px;
}
.cid-sGAlZhaTA8 .carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-sGAlZhaTA8 .carousel-item,
.cid-sGAlZhaTA8 .carousel-inner {
  height: 500px;
}
.cid-sGAlZhaTA8 .mbr-overlay {
  z-index: 1;
}
.cid-sGAlZhaTA8 .carousel-caption {
  bottom: 40px;
}
.cid-sGAlZhaTA8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sGAlZhaTA8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sGAlZhaTA8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sGAlZhaTA8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sGAlZhaTA8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sGAlZhaTA8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sGAlZhaTA8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sGAlZhaTA8 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sGAlZhaTA8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sGAlZhaTA8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sGAlZhaTA8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sGAlZhaTA8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sGAlZhaTA8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sGAlZhaTA8 .carousel-indicators li.active,
.cid-sGAlZhaTA8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sGAlZhaTA8 .carousel-indicators li::after,
.cid-sGAlZhaTA8 .carousel-indicators li::before {
  content: none;
}
.cid-sGAlZhaTA8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sGAlZhaTA8 .carousel-indicators {
    display: none !important;
  }
}
.cid-sGAlZhaTA8 P {
  color: #ffffff;
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .nav-item:focus,
.cid-sGAlZgrmN5 .nav-link:focus {
  outline: none;
}
.cid-sGAlZgrmN5 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sGAlZgrmN5 .dropdown .dropdown-menu .dropdown-item:active,
.cid-sGAlZgrmN5 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sGAlZgrmN5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGAlZgrmN5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .navbar-caption:hover {
  color: inherit!important;
}
.cid-sGAlZgrmN5 .container {
  max-width: 1380px;
}
.cid-sGAlZgrmN5 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sGAlZgrmN5 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sGAlZgrmN5 .nav-link:hover,
.cid-sGAlZgrmN5 .nav-link:active,
.cid-sGAlZgrmN5 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sGAlZgrmN5 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sGAlZgrmN5 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sGAlZgrmN5 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGAlZgrmN5 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGAlZgrmN5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGAlZgrmN5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGAlZgrmN5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sGAlZgrmN5 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGAlZgrmN5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGAlZgrmN5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGAlZgrmN5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGAlZgrmN5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sGAlZgrmN5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGAlZgrmN5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGAlZgrmN5 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGAlZgrmN5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGAlZgrmN5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGAlZgrmN5 .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-sGAlZgrmN5 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGAlZgrmN5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGAlZgrmN5 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGAlZgrmN5 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGAlZgrmN5 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGAlZgrmN5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sGAlZgrmN5 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sGAlZgrmN5 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGAlZgrmN5 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGAlZgrmN5 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sGAlZgrmN5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGAlZgrmN5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGAlZgrmN5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGAlZgrmN5 .dropdown-item.active,
.cid-sGAlZgrmN5 .dropdown-item:active {
  background-color: transparent;
}
.cid-sGAlZgrmN5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGAlZgrmN5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGAlZgrmN5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGAlZgrmN5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sGAlZgrmN5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGAlZgrmN5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGAlZgrmN5 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGAlZgrmN5 .navbar-buttons {
  text-align: center;
}
.cid-sGAlZgrmN5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGAlZgrmN5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sGAlZgrmN5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGAlZgrmN5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGAlZgrmN5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGAlZgrmN5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGAlZgrmN5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGAlZgrmN5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGAlZgrmN5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGAlZgrmN5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGAlZgrmN5 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGAlZgrmN5 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGAlZgrmN5 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGAlZgrmN5 .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-sGAlZgrmN5 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGAlZgrmN5 .navbar {
    height: 77px;
  }
  .cid-sGAlZgrmN5 .navbar.opened {
    height: auto;
  }
  .cid-sGAlZgrmN5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGAPEoblnt {
  padding-top: 30px;
  padding-bottom: 60px;
}
.cid-sGAPEoblnt .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sGAPEoblnt .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sGAPEoblnt .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sGAPEoblnt .mbr-text,
.cid-sGAPEoblnt .mbr-section-btn {
  text-align: left;
}
.cid-sGAPEoblnt P {
  color: #b0f30a;
  text-align: left;
}
.cid-sGAPEoblnt .card-title,
.cid-sGAPEoblnt .card-img {
  color: #0f7699;
}
.cid-sGAlZomNZF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sGAlZomNZF .google-map {
  height: 25rem;
  position: relative;
}
.cid-sGAlZomNZF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sGAlZomNZF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sGAlZomNZF .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sGAlZomNZF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sGAlZomNZF .wrapper {
  margin-top: -10rem;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-sGAlZomNZF .form-container {
  padding: 3rem;
}
.cid-sGAlZomNZF .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-sGAlZomNZF .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #0f7699, #4f4943);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGAlZomNZF .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-sGAlZomNZF .form-group,
  .cid-sGAlZomNZF .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-sGAlZomNZF .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-sGAlZomNZF .form-control:focus,
.cid-sGAlZomNZF .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-sGAlZomNZF textarea.form-control {
  min-height: 170px;
}
.cid-sGAlZomNZF .form-group {
  margin-bottom: 1rem;
}
.cid-sGAlZomNZF input::-webkit-input-placeholder,
.cid-sGAlZomNZF textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-sGAlZomNZF input:-moz-placeholder,
.cid-sGAlZomNZF textarea:-moz-placeholder {
  color: #565656;
}
.cid-sGAlZomNZF .jq-selectbox li,
.cid-sGAlZomNZF .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGAlZomNZF .jq-selectbox li:hover,
.cid-sGAlZomNZF .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGAlZomNZF .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-sGAlZomNZF .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sGAlZomNZF .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-sGAlZomNZF .text-block {
    margin-bottom: 2rem;
  }
  .cid-sGAlZomNZF .wrapper {
    margin-top: 0;
  }
}
.cid-sGAlZomNZF .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGAlZomNZF .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-sGAlZomNZF .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGAlZomNZF .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-sGAlZomNZF .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-sGAlZomNZF .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sGAlZomNZF .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .nav-item:focus,
.cid-sGUYIWHvsn .nav-link:focus {
  outline: none;
}
.cid-sGUYIWHvsn .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sGUYIWHvsn .dropdown .dropdown-menu .dropdown-item:active,
.cid-sGUYIWHvsn .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sGUYIWHvsn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGUYIWHvsn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .navbar-caption:hover {
  color: inherit!important;
}
.cid-sGUYIWHvsn .container {
  max-width: 1380px;
}
.cid-sGUYIWHvsn .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sGUYIWHvsn .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sGUYIWHvsn .nav-link:hover,
.cid-sGUYIWHvsn .nav-link:active,
.cid-sGUYIWHvsn .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sGUYIWHvsn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-sGUYIWHvsn .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sGUYIWHvsn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sGUYIWHvsn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGUYIWHvsn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGUYIWHvsn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sGUYIWHvsn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sGUYIWHvsn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGUYIWHvsn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGUYIWHvsn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGUYIWHvsn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGUYIWHvsn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sGUYIWHvsn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGUYIWHvsn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGUYIWHvsn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGUYIWHvsn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGUYIWHvsn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGUYIWHvsn .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-sGUYIWHvsn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGUYIWHvsn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGUYIWHvsn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sGUYIWHvsn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGUYIWHvsn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGUYIWHvsn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sGUYIWHvsn .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sGUYIWHvsn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGUYIWHvsn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGUYIWHvsn .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sGUYIWHvsn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGUYIWHvsn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGUYIWHvsn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGUYIWHvsn .dropdown-item.active,
.cid-sGUYIWHvsn .dropdown-item:active {
  background-color: transparent;
}
.cid-sGUYIWHvsn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGUYIWHvsn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGUYIWHvsn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGUYIWHvsn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sGUYIWHvsn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGUYIWHvsn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGUYIWHvsn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGUYIWHvsn .navbar-buttons {
  text-align: center;
}
.cid-sGUYIWHvsn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGUYIWHvsn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sGUYIWHvsn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGUYIWHvsn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGUYIWHvsn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGUYIWHvsn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGUYIWHvsn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGUYIWHvsn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sGUYIWHvsn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sGUYIWHvsn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGUYIWHvsn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sGUYIWHvsn a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGUYIWHvsn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGUYIWHvsn .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-sGUYIWHvsn .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGUYIWHvsn .navbar {
    height: 77px;
  }
  .cid-sGUYIWHvsn .navbar.opened {
    height: auto;
  }
  .cid-sGUYIWHvsn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGUYIX97ea {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-5-1920x1357.jpg");
}
.cid-sGUYIX97ea .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sGUYIX97ea .number {
  color: #ffffff;
}
.cid-sGUYIX97ea .period {
  display: block;
}
.cid-sGUYIX97ea .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sGUYIX97ea .period {
    font-size: 0.8rem;
  }
}
.cid-sGUYIX97ea .btn {
  height: 100%;
  margin: 0;
}
.cid-sGUYIX97ea .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sGUYIX97ea .mbr-section-title {
  color: #ffffff;
}
.cid-sGUYIX97ea .mbr-text {
  color: #ffffff;
}
.cid-sGUYIX97ea .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sGUYIX97ea .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #f9f295;
  border: 2px solid #f9f295;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sGUYIX97ea .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sGUYIX97ea .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #f9f295;
  color: #000000;
}
.cid-sGUYIX97ea H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sGUYIX97ea .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sGUYIXog0z {
  padding-top: 150px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-sGUYIXog0z .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sGUYIXog0z .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sGUYIXog0z .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sGUYIXog0z .mbr-text {
  color: #6d7a8c;
}
.cid-sGUYIXog0z .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sGUYIXog0z .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sGUYIXog0z .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sGUYIXog0z .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sGUYIXog0z .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sGUYIXog0z .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sGUYIXog0z .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sGUYIXog0z .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sGUYIXog0z .separator,
  .cid-sGUYIXog0z .sep-holder,
  .cid-sGUYIXog0z .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sGUYIXog0z .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sGUYIXog0z .mbr-text,
.cid-sGUYIXog0z .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sGUYIXog0z .mbr-section-subtitle,
.cid-sGUYIXog0z .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sGUYIXog0z .mbr-section-title,
.cid-sGUYIXog0z .separator,
.cid-sGUYIXog0z .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sGUYJ15mK3 {
  background-image: url("../../../assets/images/rea-au-curianpolis.fw-577x459.png");
}
.cid-sGUYJ15mK3 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sGUYJ15mK3 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sGUYJ15mK3 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sGUYJ15mK3 .mbr-text {
  color: #ffffff;
}
.cid-sGUYJ15mK3 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sGUYJ15mK3 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sGUYJ15mK3 .mbr-section-btn {
  display: flex;
}
.cid-sGUYJ15mK3 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sGUYJ15mK3 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sGUYJ15mK3 .mbr-section-btn.display-4,
.cid-sGUYJ15mK3 .btn.display-4 {
  font-size: 12px !important;
}
.cid-sGUYJ15mK3 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sGUYJ15mK3 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sGUYJ15mK3 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sGUYJ15mK3 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sGUYJ15mK3 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sGUYJ15mK3 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sGUYJ15mK3 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sGUYJ15mK3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sGUYJ15mK3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sGUYJ15mK3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sGUYJ15mK3 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sGUYJ15mK3 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sGUYJ15mK3 .separator,
  .cid-sGUYJ15mK3 .sep-holder,
  .cid-sGUYJ15mK3 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sGUYJ15mK3 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sGUYJ15mK3 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sGUYJ15mK3 .mbr-section-subtitle,
.cid-sGUYJ15mK3 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sGUYJ15mK3 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .nav-item:focus,
.cid-sJG5kNtX3y .nav-link:focus {
  outline: none;
}
.cid-sJG5kNtX3y .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sJG5kNtX3y .dropdown .dropdown-menu .dropdown-item:active,
.cid-sJG5kNtX3y .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sJG5kNtX3y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sJG5kNtX3y .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .navbar-caption:hover {
  color: inherit!important;
}
.cid-sJG5kNtX3y .container {
  max-width: 1380px;
}
.cid-sJG5kNtX3y .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sJG5kNtX3y .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sJG5kNtX3y .nav-link:hover,
.cid-sJG5kNtX3y .nav-link:active,
.cid-sJG5kNtX3y .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sJG5kNtX3y .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sJG5kNtX3y .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sJG5kNtX3y .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sJG5kNtX3y .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sJG5kNtX3y .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sJG5kNtX3y .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sJG5kNtX3y .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sJG5kNtX3y .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sJG5kNtX3y .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sJG5kNtX3y .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sJG5kNtX3y .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sJG5kNtX3y .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sJG5kNtX3y .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sJG5kNtX3y .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sJG5kNtX3y .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sJG5kNtX3y .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sJG5kNtX3y .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sJG5kNtX3y .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-sJG5kNtX3y .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sJG5kNtX3y .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sJG5kNtX3y .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sJG5kNtX3y .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sJG5kNtX3y .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sJG5kNtX3y .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sJG5kNtX3y .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sJG5kNtX3y .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sJG5kNtX3y .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sJG5kNtX3y .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sJG5kNtX3y .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sJG5kNtX3y .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sJG5kNtX3y .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sJG5kNtX3y .dropdown-item.active,
.cid-sJG5kNtX3y .dropdown-item:active {
  background-color: transparent;
}
.cid-sJG5kNtX3y .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sJG5kNtX3y .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sJG5kNtX3y .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sJG5kNtX3y .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sJG5kNtX3y .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sJG5kNtX3y .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sJG5kNtX3y ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sJG5kNtX3y .navbar-buttons {
  text-align: center;
}
.cid-sJG5kNtX3y button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sJG5kNtX3y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sJG5kNtX3y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sJG5kNtX3y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sJG5kNtX3y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sJG5kNtX3y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sJG5kNtX3y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJG5kNtX3y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sJG5kNtX3y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sJG5kNtX3y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sJG5kNtX3y .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sJG5kNtX3y a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sJG5kNtX3y .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sJG5kNtX3y .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-sJG5kNtX3y .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sJG5kNtX3y .navbar {
    height: 77px;
  }
  .cid-sJG5kNtX3y .navbar.opened {
    height: auto;
  }
  .cid-sJG5kNtX3y .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sJG5kT4DTf {
  padding-top: 120px;
  padding-bottom: 120px;
}
.cid-sJG5kT4DTf .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sJG5kT4DTf .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sJG5kT4DTf .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sJG5kT4DTf .mbr-text,
.cid-sJG5kT4DTf .mbr-section-btn {
  text-align: center;
}
.cid-sJG5kT4DTf P {
  color: #aff0f6;
  text-align: center;
}
.cid-sJG5kT4DTf .card-title,
.cid-sJG5kT4DTf .card-img {
  color: #0f7699;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .nav-item:focus,
.cid-sNJaKTR5XT .nav-link:focus {
  outline: none;
}
.cid-sNJaKTR5XT .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sNJaKTR5XT .dropdown .dropdown-menu .dropdown-item:active,
.cid-sNJaKTR5XT .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sNJaKTR5XT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNJaKTR5XT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .navbar-caption:hover {
  color: inherit!important;
}
.cid-sNJaKTR5XT .container {
  max-width: 1380px;
}
.cid-sNJaKTR5XT .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sNJaKTR5XT .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sNJaKTR5XT .nav-link:hover,
.cid-sNJaKTR5XT .nav-link:active,
.cid-sNJaKTR5XT .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sNJaKTR5XT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sNJaKTR5XT .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sNJaKTR5XT .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sNJaKTR5XT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sNJaKTR5XT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sNJaKTR5XT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sNJaKTR5XT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sNJaKTR5XT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNJaKTR5XT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNJaKTR5XT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sNJaKTR5XT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sNJaKTR5XT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sNJaKTR5XT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sNJaKTR5XT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNJaKTR5XT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNJaKTR5XT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNJaKTR5XT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNJaKTR5XT .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-sNJaKTR5XT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNJaKTR5XT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sNJaKTR5XT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sNJaKTR5XT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sNJaKTR5XT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sNJaKTR5XT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sNJaKTR5XT .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sNJaKTR5XT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNJaKTR5XT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sNJaKTR5XT .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sNJaKTR5XT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNJaKTR5XT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNJaKTR5XT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNJaKTR5XT .dropdown-item.active,
.cid-sNJaKTR5XT .dropdown-item:active {
  background-color: transparent;
}
.cid-sNJaKTR5XT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNJaKTR5XT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sNJaKTR5XT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sNJaKTR5XT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sNJaKTR5XT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNJaKTR5XT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNJaKTR5XT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sNJaKTR5XT .navbar-buttons {
  text-align: center;
}
.cid-sNJaKTR5XT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNJaKTR5XT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sNJaKTR5XT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNJaKTR5XT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNJaKTR5XT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNJaKTR5XT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNJaKTR5XT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNJaKTR5XT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sNJaKTR5XT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sNJaKTR5XT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNJaKTR5XT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sNJaKTR5XT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNJaKTR5XT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNJaKTR5XT .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-sNJaKTR5XT .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNJaKTR5XT .navbar {
    height: 77px;
  }
  .cid-sNJaKTR5XT .navbar.opened {
    height: auto;
  }
  .cid-sNJaKTR5XT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNJb4sUDTd {
  background-image: url("../../../assets/images/mbr-848x360.jpg");
}
.cid-sNJb4sUDTd .box {
  background-image: url("../../../assets/images/avalienos.fw-992x589.png");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sNJb4sUDTd .box {
    background-size: 100%;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .cid-sNJb4sUDTd .box:hover {
    background-size: 110%;
  }
}
.cid-sNJb4sUDTd .icon-wrap {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-shadow: 0px 0 6px rgba(0, 0, 0, 0.3);
}
.cid-sNJb4sUDTd .icon-wrap span {
  padding-left: 8px;
}
.cid-sNJb4sUDTd .mbr-media span {
  font-size: 4rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-sNJb4sUDTd .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sNJb4sUDTd .mbr-media span:hover {
  color: #b0f30a !important;
}
.cid-sNJb4sUDTd .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sNJb4sUDTd .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sNJb4sUDTd .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sNJb4sUDTd a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sNJb4sUDTd a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sNJb4sUDTd .box {
    height: 250px;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .nav-item:focus,
.cid-sNOFkcqG37 .nav-link:focus {
  outline: none;
}
.cid-sNOFkcqG37 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sNOFkcqG37 .dropdown .dropdown-menu .dropdown-item:active,
.cid-sNOFkcqG37 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sNOFkcqG37 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNOFkcqG37 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .navbar-caption:hover {
  color: inherit!important;
}
.cid-sNOFkcqG37 .container {
  max-width: 1380px;
}
.cid-sNOFkcqG37 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sNOFkcqG37 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sNOFkcqG37 .nav-link:hover,
.cid-sNOFkcqG37 .nav-link:active,
.cid-sNOFkcqG37 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sNOFkcqG37 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sNOFkcqG37 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sNOFkcqG37 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sNOFkcqG37 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sNOFkcqG37 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sNOFkcqG37 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sNOFkcqG37 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sNOFkcqG37 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNOFkcqG37 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNOFkcqG37 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sNOFkcqG37 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sNOFkcqG37 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sNOFkcqG37 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sNOFkcqG37 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNOFkcqG37 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNOFkcqG37 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNOFkcqG37 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNOFkcqG37 .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-sNOFkcqG37 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNOFkcqG37 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sNOFkcqG37 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sNOFkcqG37 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sNOFkcqG37 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sNOFkcqG37 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sNOFkcqG37 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sNOFkcqG37 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNOFkcqG37 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sNOFkcqG37 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sNOFkcqG37 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNOFkcqG37 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNOFkcqG37 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNOFkcqG37 .dropdown-item.active,
.cid-sNOFkcqG37 .dropdown-item:active {
  background-color: transparent;
}
.cid-sNOFkcqG37 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNOFkcqG37 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sNOFkcqG37 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sNOFkcqG37 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sNOFkcqG37 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNOFkcqG37 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNOFkcqG37 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sNOFkcqG37 .navbar-buttons {
  text-align: center;
}
.cid-sNOFkcqG37 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNOFkcqG37 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sNOFkcqG37 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNOFkcqG37 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNOFkcqG37 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNOFkcqG37 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNOFkcqG37 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNOFkcqG37 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sNOFkcqG37 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sNOFkcqG37 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNOFkcqG37 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sNOFkcqG37 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNOFkcqG37 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNOFkcqG37 .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-sNOFkcqG37 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNOFkcqG37 .navbar {
    height: 77px;
  }
  .cid-sNOFkcqG37 .navbar.opened {
    height: auto;
  }
  .cid-sNOFkcqG37 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNOFkcNwbQ {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/skid92-1-886x665.jpg");
}
.cid-sNOFkcNwbQ .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sNOFkcNwbQ .number {
  color: #ffffff;
}
.cid-sNOFkcNwbQ .period {
  display: block;
}
.cid-sNOFkcNwbQ .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sNOFkcNwbQ .period {
    font-size: 0.8rem;
  }
}
.cid-sNOFkcNwbQ .btn {
  height: 100%;
  margin: 0;
}
.cid-sNOFkcNwbQ .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sNOFkcNwbQ .mbr-section-title {
  color: #ffffff;
}
.cid-sNOFkcNwbQ .mbr-text {
  color: #ffffff;
}
.cid-sNOFkcNwbQ .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sNOFkcNwbQ .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sNOFkcNwbQ .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sNOFkcNwbQ .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-sNOFkcNwbQ H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sNOFkcNwbQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sNONDjhyAr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3c10a;
}
.cid-sNONDjhyAr .content-slider {
  display: -webkit-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNONDjhyAr .modal-body .close {
  background: #1b1b1b;
}
.cid-sNONDjhyAr .modal-body .close span {
  font-style: normal;
}
.cid-sNONDjhyAr .content-slider-wrap {
  width: 100%;
}
.cid-sNONDjhyAr .carousel-inner > .active,
.cid-sNONDjhyAr .carousel-inner > .next,
.cid-sNONDjhyAr .carousel-inner > .prev {
  display: flex;
}
.cid-sNONDjhyAr .carousel-control .icon-next,
.cid-sNONDjhyAr .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sNONDjhyAr .carousel-control:hover {
  background: #b0f30a !important;
  opacity: 0.9;
}
.cid-sNONDjhyAr .carousel-control:hover span {
  color: white !important;
}
.cid-sNONDjhyAr .mbr-iconfont {
  color: black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.2rem !important;
  font-weight: 900;
}
@media (max-width: 767px) {
  .cid-sNONDjhyAr .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sNONDjhyAr .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sNONDjhyAr .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sNONDjhyAr .boxed-slider > div {
  position: relative;
}
.cid-sNONDjhyAr .container img {
  width: 100%;
}
.cid-sNONDjhyAr .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sNONDjhyAr .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sNONDjhyAr .mbr-table-cell {
  padding: 0;
}
.cid-sNONDjhyAr .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sNONDjhyAr .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sNONDjhyAr .mbr-overlay {
  z-index: 1;
}
.cid-sNONDjhyAr .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sNONDjhyAr .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sNONDjhyAr .carousel-item.active.right,
.cid-sNONDjhyAr .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sNONDjhyAr .carousel-item.active.left,
.cid-sNONDjhyAr .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sNONDjhyAr .carousel-item.active,
.cid-sNONDjhyAr .carousel-item.next.left,
.cid-sNONDjhyAr .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sNONDjhyAr .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: -1.5rem;
  font-size: 35px;
  border-radius: 6px;
  background-color: white;
  z-index: 11;
}
.cid-sNONDjhyAr .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNONDjhyAr .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sNONDjhyAr .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sNONDjhyAr .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sNONDjhyAr .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sNONDjhyAr .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 12px;
  width: 12px;
  max-height: 15px;
  margin: 3px;
  background-color: lightgray;
  border-radius: 50%;
  opacity: 0.5;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sNONDjhyAr .mbr-slider .carousel-indicators li.active,
.cid-sNONDjhyAr .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
  background-color: #b0f30a;
}
.cid-sNONDjhyAr .mbr-slider .carousel-indicators li::after,
.cid-sNONDjhyAr .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sNONDjhyAr .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sNONDjhyAr .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sNONDjhyAr .mbr-slider > .container img {
  width: 100%;
}
.cid-sNONDjhyAr .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sNONDjhyAr .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sNONDjhyAr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sNONDjhyAr .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sNONDjhyAr .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sNONDjhyAr .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sNONDjhyAr .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sNONDjhyAr .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sNONDjhyAr .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sNONDjhyAr .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sNONDjhyAr .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sNONDjhyAr .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sNONDjhyAr .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sNONDjhyAr .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sNONDjhyAr .carousel-inner {
  height: 100%;
}
.cid-sNONDjhyAr .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sNONDjhyAr .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sNONDjhyAr .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sNONDjhyAr .carousel-item .container-slide {
  text-align: center;
}
.cid-sNOFkd4CMd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #110f0f;
}
.cid-sNOFkd4CMd .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sNOFkd4CMd .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sNOFkd4CMd .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sNOFkd4CMd .mbr-text {
  color: #6d7a8c;
}
.cid-sNOFkd4CMd .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sNOFkd4CMd .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sNOFkd4CMd .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sNOFkd4CMd .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sNOFkd4CMd .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sNOFkd4CMd .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sNOFkd4CMd .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sNOFkd4CMd .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sNOFkd4CMd .separator,
  .cid-sNOFkd4CMd .sep-holder,
  .cid-sNOFkd4CMd .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sNOFkd4CMd .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sNOFkd4CMd .mbr-text,
.cid-sNOFkd4CMd .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sNOFkd4CMd .mbr-section-subtitle,
.cid-sNOFkd4CMd .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sNOFkd4CMd .mbr-section-title,
.cid-sNOFkd4CMd .separator,
.cid-sNOFkd4CMd .sep-holder {
  text-align: center;
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sNOSld81oM .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-sNOSld81oM .nav-item:focus,
.cid-sNOSld81oM .nav-link:focus {
  outline: none;
}
.cid-sNOSld81oM .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sNOSld81oM .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-sNOSld81oM .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sNOSld81oM .dropdown .dropdown-menu .dropdown-item:active,
.cid-sNOSld81oM .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sNOSld81oM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNOSld81oM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNOSld81oM .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-sNOSld81oM .navbar-caption:hover {
  color: inherit!important;
}
.cid-sNOSld81oM .container {
  max-width: 1380px;
}
.cid-sNOSld81oM .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sNOSld81oM .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sNOSld81oM .nav-link:hover,
.cid-sNOSld81oM .nav-link:active,
.cid-sNOSld81oM .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sNOSld81oM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-sNOSld81oM .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sNOSld81oM .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sNOSld81oM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sNOSld81oM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sNOSld81oM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sNOSld81oM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-sNOSld81oM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sNOSld81oM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sNOSld81oM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sNOSld81oM .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-sNOSld81oM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sNOSld81oM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sNOSld81oM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sNOSld81oM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sNOSld81oM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sNOSld81oM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sNOSld81oM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sNOSld81oM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sNOSld81oM .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-sNOSld81oM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sNOSld81oM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sNOSld81oM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sNOSld81oM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sNOSld81oM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sNOSld81oM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sNOSld81oM .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sNOSld81oM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sNOSld81oM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sNOSld81oM .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sNOSld81oM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNOSld81oM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNOSld81oM .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-sNOSld81oM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sNOSld81oM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sNOSld81oM .dropdown-item.active,
.cid-sNOSld81oM .dropdown-item:active {
  background-color: transparent;
}
.cid-sNOSld81oM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sNOSld81oM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sNOSld81oM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sNOSld81oM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sNOSld81oM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sNOSld81oM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNOSld81oM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sNOSld81oM .navbar-buttons {
  text-align: center;
}
.cid-sNOSld81oM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNOSld81oM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sNOSld81oM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sNOSld81oM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sNOSld81oM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sNOSld81oM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sNOSld81oM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNOSld81oM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sNOSld81oM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sNOSld81oM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sNOSld81oM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sNOSld81oM a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNOSld81oM .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sNOSld81oM .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-sNOSld81oM .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sNOSld81oM .navbar {
    height: 77px;
  }
  .cid-sNOSld81oM .navbar.opened {
    height: auto;
  }
  .cid-sNOSld81oM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNOSlfPmxX {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/carregadeira95-1-765x1024.jpg");
}
.cid-sNOSlfPmxX .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sNOSlfPmxX .number {
  color: #ffffff;
}
.cid-sNOSlfPmxX .period {
  display: block;
}
.cid-sNOSlfPmxX .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sNOSlfPmxX .period {
    font-size: 0.8rem;
  }
}
.cid-sNOSlfPmxX .btn {
  height: 100%;
  margin: 0;
}
.cid-sNOSlfPmxX .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sNOSlfPmxX .mbr-section-title {
  color: #ffffff;
}
.cid-sNOSlfPmxX .mbr-text {
  color: #ffffff;
}
.cid-sNOSlfPmxX .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sNOSlfPmxX .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sNOSlfPmxX .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sNOSlfPmxX .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-sNOSlfPmxX H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sNOSlfPmxX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sNOTAQI9Ys {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f3c10a;
}
.cid-sNOTAQI9Ys .content-slider {
  display: -webkit-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNOTAQI9Ys .modal-body .close {
  background: #1b1b1b;
}
.cid-sNOTAQI9Ys .modal-body .close span {
  font-style: normal;
}
.cid-sNOTAQI9Ys .content-slider-wrap {
  width: 100%;
}
.cid-sNOTAQI9Ys .carousel-inner > .active,
.cid-sNOTAQI9Ys .carousel-inner > .next,
.cid-sNOTAQI9Ys .carousel-inner > .prev {
  display: flex;
}
.cid-sNOTAQI9Ys .carousel-control .icon-next,
.cid-sNOTAQI9Ys .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sNOTAQI9Ys .carousel-control:hover {
  background: #b0f30a !important;
  opacity: 0.9;
}
.cid-sNOTAQI9Ys .carousel-control:hover span {
  color: white !important;
}
.cid-sNOTAQI9Ys .mbr-iconfont {
  color: black;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.2rem !important;
  font-weight: 900;
}
@media (max-width: 767px) {
  .cid-sNOTAQI9Ys .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sNOTAQI9Ys .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sNOTAQI9Ys .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sNOTAQI9Ys .boxed-slider > div {
  position: relative;
}
.cid-sNOTAQI9Ys .container img {
  width: 100%;
}
.cid-sNOTAQI9Ys .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sNOTAQI9Ys .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sNOTAQI9Ys .mbr-table-cell {
  padding: 0;
}
.cid-sNOTAQI9Ys .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sNOTAQI9Ys .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-sNOTAQI9Ys .mbr-overlay {
  z-index: 1;
}
.cid-sNOTAQI9Ys .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sNOTAQI9Ys .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sNOTAQI9Ys .carousel-item.active.right,
.cid-sNOTAQI9Ys .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sNOTAQI9Ys .carousel-item.active.left,
.cid-sNOTAQI9Ys .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sNOTAQI9Ys .carousel-item.active,
.cid-sNOTAQI9Ys .carousel-item.next.left,
.cid-sNOTAQI9Ys .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-control {
  top: 50%;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: -1.5rem;
  font-size: 35px;
  border-radius: 6px;
  background-color: white;
  z-index: 11;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sNOTAQI9Ys .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 12px;
  width: 12px;
  max-height: 15px;
  margin: 3px;
  background-color: lightgray;
  border-radius: 50%;
  opacity: 0.5;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators li.active,
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
  background-color: #b0f30a;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators li::after,
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sNOTAQI9Ys .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sNOTAQI9Ys .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sNOTAQI9Ys .mbr-slider > .container img {
  width: 100%;
}
.cid-sNOTAQI9Ys .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sNOTAQI9Ys .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sNOTAQI9Ys .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sNOTAQI9Ys .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sNOTAQI9Ys .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sNOTAQI9Ys .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sNOTAQI9Ys .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sNOTAQI9Ys .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sNOTAQI9Ys .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sNOTAQI9Ys .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sNOTAQI9Ys .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sNOTAQI9Ys .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sNOTAQI9Ys .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sNOTAQI9Ys .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-sNOTAQI9Ys .carousel-inner {
  height: 100%;
}
.cid-sNOTAQI9Ys .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-sNOTAQI9Ys .image_wrapper {
  height: 700px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-sNOTAQI9Ys .image_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-sNOTAQI9Ys .carousel-item .container-slide {
  text-align: center;
}
.cid-sNOSlhBBAH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #110f0f;
}
.cid-sNOSlhBBAH .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sNOSlhBBAH .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sNOSlhBBAH .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sNOSlhBBAH .mbr-text {
  color: #6d7a8c;
}
.cid-sNOSlhBBAH .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sNOSlhBBAH .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sNOSlhBBAH .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sNOSlhBBAH .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sNOSlhBBAH .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sNOSlhBBAH .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sNOSlhBBAH .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sNOSlhBBAH .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sNOSlhBBAH .separator,
  .cid-sNOSlhBBAH .sep-holder,
  .cid-sNOSlhBBAH .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sNOSlhBBAH .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sNOSlhBBAH .mbr-text,
.cid-sNOSlhBBAH .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-sNOSlhBBAH .mbr-section-subtitle,
.cid-sNOSlhBBAH .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sNOSlhBBAH .mbr-section-title,
.cid-sNOSlhBBAH .separator,
.cid-sNOSlhBBAH .sep-holder {
  text-align: center;
  color: #ffffff;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-rMgHZig7EH .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-rMgHZig7EH .nav-item:focus,
.cid-rMgHZig7EH .nav-link:focus {
  outline: none;
}
.cid-rMgHZig7EH .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-rMgHZig7EH .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-rMgHZig7EH .dropdown .dropdown-menu .dropdown-item:hover,
.cid-rMgHZig7EH .dropdown .dropdown-menu .dropdown-item:active,
.cid-rMgHZig7EH .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-rMgHZig7EH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rMgHZig7EH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rMgHZig7EH .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-rMgHZig7EH .navbar-caption:hover {
  color: inherit!important;
}
.cid-rMgHZig7EH .container {
  max-width: 1380px;
}
.cid-rMgHZig7EH .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-rMgHZig7EH .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-rMgHZig7EH .nav-link:hover,
.cid-rMgHZig7EH .nav-link:active,
.cid-rMgHZig7EH .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-rMgHZig7EH .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-rMgHZig7EH .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-rMgHZig7EH .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rMgHZig7EH .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rMgHZig7EH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rMgHZig7EH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rMgHZig7EH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-rMgHZig7EH .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rMgHZig7EH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rMgHZig7EH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rMgHZig7EH .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-rMgHZig7EH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rMgHZig7EH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rMgHZig7EH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rMgHZig7EH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rMgHZig7EH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rMgHZig7EH .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rMgHZig7EH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rMgHZig7EH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rMgHZig7EH .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-rMgHZig7EH .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rMgHZig7EH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rMgHZig7EH .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rMgHZig7EH .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rMgHZig7EH .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rMgHZig7EH .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rMgHZig7EH .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-rMgHZig7EH .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rMgHZig7EH .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rMgHZig7EH .icons-menu span {
  color: #f7ed4a !important;
}
.cid-rMgHZig7EH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rMgHZig7EH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rMgHZig7EH .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-rMgHZig7EH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rMgHZig7EH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rMgHZig7EH .dropdown-item.active,
.cid-rMgHZig7EH .dropdown-item:active {
  background-color: transparent;
}
.cid-rMgHZig7EH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rMgHZig7EH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rMgHZig7EH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rMgHZig7EH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-rMgHZig7EH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rMgHZig7EH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rMgHZig7EH ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rMgHZig7EH .navbar-buttons {
  text-align: center;
}
.cid-rMgHZig7EH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rMgHZig7EH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-rMgHZig7EH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rMgHZig7EH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rMgHZig7EH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rMgHZig7EH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rMgHZig7EH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMgHZig7EH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rMgHZig7EH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rMgHZig7EH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rMgHZig7EH .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rMgHZig7EH a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rMgHZig7EH .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rMgHZig7EH .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-rMgHZig7EH .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rMgHZig7EH .navbar {
    height: 77px;
  }
  .cid-rMgHZig7EH .navbar.opened {
    height: auto;
  }
  .cid-rMgHZig7EH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rMgHZiUpix {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpg");
}
.cid-rMgHZiUpix .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-rMgHZiUpix .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rMgHZiUpix .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-rMgHZiUpix .mbr-text,
.cid-rMgHZiUpix .mbr-section-btn {
  text-align: left;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-stkz1FZk7g .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-stkz1FZk7g .nav-item:focus,
.cid-stkz1FZk7g .nav-link:focus {
  outline: none;
}
.cid-stkz1FZk7g .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-stkz1FZk7g .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-stkz1FZk7g .dropdown .dropdown-menu .dropdown-item:hover,
.cid-stkz1FZk7g .dropdown .dropdown-menu .dropdown-item:active,
.cid-stkz1FZk7g .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-stkz1FZk7g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-stkz1FZk7g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-stkz1FZk7g .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-stkz1FZk7g .navbar-caption:hover {
  color: inherit!important;
}
.cid-stkz1FZk7g .container {
  max-width: 1380px;
}
.cid-stkz1FZk7g .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-stkz1FZk7g .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-stkz1FZk7g .nav-link:hover,
.cid-stkz1FZk7g .nav-link:active,
.cid-stkz1FZk7g .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-stkz1FZk7g .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-stkz1FZk7g .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-stkz1FZk7g .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-stkz1FZk7g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-stkz1FZk7g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-stkz1FZk7g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-stkz1FZk7g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-stkz1FZk7g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-stkz1FZk7g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-stkz1FZk7g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-stkz1FZk7g .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-stkz1FZk7g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-stkz1FZk7g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-stkz1FZk7g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-stkz1FZk7g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-stkz1FZk7g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-stkz1FZk7g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-stkz1FZk7g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-stkz1FZk7g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-stkz1FZk7g .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-stkz1FZk7g .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-stkz1FZk7g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-stkz1FZk7g .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-stkz1FZk7g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-stkz1FZk7g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-stkz1FZk7g .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-stkz1FZk7g .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-stkz1FZk7g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-stkz1FZk7g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-stkz1FZk7g .icons-menu span {
  color: #f7ed4a !important;
}
.cid-stkz1FZk7g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-stkz1FZk7g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-stkz1FZk7g .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-stkz1FZk7g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-stkz1FZk7g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-stkz1FZk7g .dropdown-item.active,
.cid-stkz1FZk7g .dropdown-item:active {
  background-color: transparent;
}
.cid-stkz1FZk7g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-stkz1FZk7g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-stkz1FZk7g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-stkz1FZk7g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-stkz1FZk7g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-stkz1FZk7g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-stkz1FZk7g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-stkz1FZk7g .navbar-buttons {
  text-align: center;
}
.cid-stkz1FZk7g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-stkz1FZk7g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-stkz1FZk7g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-stkz1FZk7g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-stkz1FZk7g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-stkz1FZk7g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-stkz1FZk7g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stkz1FZk7g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-stkz1FZk7g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-stkz1FZk7g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-stkz1FZk7g .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-stkz1FZk7g a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-stkz1FZk7g .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-stkz1FZk7g .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-stkz1FZk7g .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-stkz1FZk7g .navbar {
    height: 77px;
  }
  .cid-stkz1FZk7g .navbar.opened {
    height: auto;
  }
  .cid-stkz1FZk7g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-stkz1HFqg0 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/placa-amn.fw-1600x874.png");
}
.cid-stkz1HFqg0 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-stkz1HFqg0 .number {
  color: #ffffff;
}
.cid-stkz1HFqg0 .period {
  display: block;
}
.cid-stkz1HFqg0 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-stkz1HFqg0 .period {
    font-size: 0.8rem;
  }
}
.cid-stkz1HFqg0 .btn {
  height: 100%;
  margin: 0;
}
.cid-stkz1HFqg0 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-stkz1HFqg0 .mbr-section-title {
  color: #ffffff;
}
.cid-stkz1HFqg0 .mbr-text {
  color: #ffffff;
}
.cid-stkz1HFqg0 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-stkz1HFqg0 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-stkz1HFqg0 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-stkz1HFqg0 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-stkz1HFqg0 H3 {
  color: #ffffff;
  text-align: center;
}
.cid-stkz1HFqg0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-stkz1Iq9Xp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-stkz1Iq9Xp .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-stkz1Iq9Xp .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-stkz1Iq9Xp .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-stkz1Iq9Xp .mbr-text {
  color: #6d7a8c;
}
.cid-stkz1Iq9Xp .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-stkz1Iq9Xp .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-stkz1Iq9Xp .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-stkz1Iq9Xp .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-stkz1Iq9Xp .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-stkz1Iq9Xp .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-stkz1Iq9Xp .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-stkz1Iq9Xp .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-stkz1Iq9Xp .separator,
  .cid-stkz1Iq9Xp .sep-holder,
  .cid-stkz1Iq9Xp .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stkz1Iq9Xp .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-stkz1Iq9Xp .mbr-text,
.cid-stkz1Iq9Xp .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-stkz1Iq9Xp .mbr-section-subtitle,
.cid-stkz1Iq9Xp .mbr-section-title .accent-word {
  text-align: left;
}
.cid-stkz1Iq9Xp .mbr-section-title,
.cid-stkz1Iq9Xp .separator,
.cid-stkz1Iq9Xp .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-stkz1KgcRS {
  background-image: url("../../../assets/images/area33.fw-803x813.png");
}
.cid-stkz1KgcRS .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-stkz1KgcRS .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-stkz1KgcRS .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-stkz1KgcRS .mbr-text {
  color: #ffffff;
}
.cid-stkz1KgcRS .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-stkz1KgcRS .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stkz1KgcRS .mbr-section-btn {
  display: flex;
}
.cid-stkz1KgcRS .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-stkz1KgcRS .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-stkz1KgcRS .mbr-section-btn.display-4,
.cid-stkz1KgcRS .btn.display-4 {
  font-size: 12px !important;
}
.cid-stkz1KgcRS .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-stkz1KgcRS .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stkz1KgcRS .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-stkz1KgcRS .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-stkz1KgcRS .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stkz1KgcRS .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-stkz1KgcRS .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-stkz1KgcRS .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stkz1KgcRS .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stkz1KgcRS .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stkz1KgcRS a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stkz1KgcRS a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-stkz1KgcRS .separator,
  .cid-stkz1KgcRS .sep-holder,
  .cid-stkz1KgcRS .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stkz1KgcRS .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-stkz1KgcRS .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-stkz1KgcRS .mbr-section-subtitle,
.cid-stkz1KgcRS .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-stkz1KgcRS .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-stkz1NHAcn {
  background-image: url("../../../assets/images/mapa.fw-1600x874.png");
}
.cid-stkz1NHAcn .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-stkz1NHAcn .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-stkz1NHAcn .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-stkz1NHAcn .mbr-text {
  color: #ffffff;
}
.cid-stkz1NHAcn .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-stkz1NHAcn .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-stkz1NHAcn .mbr-section-btn {
  display: flex;
}
.cid-stkz1NHAcn .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-stkz1NHAcn .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-stkz1NHAcn .mbr-section-btn.display-4,
.cid-stkz1NHAcn .btn.display-4 {
  font-size: 12px !important;
}
.cid-stkz1NHAcn .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-stkz1NHAcn .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-stkz1NHAcn .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-stkz1NHAcn .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-stkz1NHAcn .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-stkz1NHAcn .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-stkz1NHAcn .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-stkz1NHAcn .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-stkz1NHAcn .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-stkz1NHAcn .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-stkz1NHAcn a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-stkz1NHAcn a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-stkz1NHAcn .separator,
  .cid-stkz1NHAcn .sep-holder,
  .cid-stkz1NHAcn .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stkz1NHAcn .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-stkz1NHAcn .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-stkz1NHAcn .mbr-section-subtitle,
.cid-stkz1NHAcn .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-stkz1NHAcn .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-stE24tuVpg {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-stE24tuVpg .video-wrapper iframe {
  width: 100%;
}
.cid-stE24tuVpg .mbr-section-title,
.cid-stE24tuVpg .mbr-section-subtitle,
.cid-stE24tuVpg .mbr-text {
  text-align: center;
}
.cid-stE24tuVpg .mbr-section-subtitle {
  text-align: center;
}
.cid-stE24tuVpg .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-stE7S2FmK4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-stE7S2FmK4 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-stE7S2FmK4 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-stE7S2FmK4 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-stE7S2FmK4 .mbr-text {
  color: #6d7a8c;
}
.cid-stE7S2FmK4 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-stE7S2FmK4 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-stE7S2FmK4 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-stE7S2FmK4 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-stE7S2FmK4 .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-stE7S2FmK4 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-stE7S2FmK4 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-stE7S2FmK4 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-stE7S2FmK4 .separator,
  .cid-stE7S2FmK4 .sep-holder,
  .cid-stE7S2FmK4 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-stE7S2FmK4 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-stE7S2FmK4 .mbr-text,
.cid-stE7S2FmK4 .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-stE7S2FmK4 .mbr-section-subtitle,
.cid-stE7S2FmK4 .mbr-section-title .accent-word {
  text-align: left;
}
.cid-stE7S2FmK4 .mbr-section-title,
.cid-stE7S2FmK4 .separator,
.cid-stE7S2FmK4 .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sP3QVENa2N .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-sP3QVENa2N .nav-item:focus,
.cid-sP3QVENa2N .nav-link:focus {
  outline: none;
}
.cid-sP3QVENa2N .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sP3QVENa2N .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-sP3QVENa2N .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sP3QVENa2N .dropdown .dropdown-menu .dropdown-item:active,
.cid-sP3QVENa2N .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sP3QVENa2N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sP3QVENa2N .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sP3QVENa2N .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-sP3QVENa2N .navbar-caption:hover {
  color: inherit!important;
}
.cid-sP3QVENa2N .container {
  max-width: 1380px;
}
.cid-sP3QVENa2N .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sP3QVENa2N .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sP3QVENa2N .nav-link:hover,
.cid-sP3QVENa2N .nav-link:active,
.cid-sP3QVENa2N .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sP3QVENa2N .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sP3QVENa2N .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sP3QVENa2N .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sP3QVENa2N .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sP3QVENa2N .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sP3QVENa2N .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sP3QVENa2N .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sP3QVENa2N .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sP3QVENa2N .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sP3QVENa2N .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sP3QVENa2N .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-sP3QVENa2N .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sP3QVENa2N .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sP3QVENa2N .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sP3QVENa2N .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sP3QVENa2N .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sP3QVENa2N .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sP3QVENa2N .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sP3QVENa2N .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sP3QVENa2N .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-sP3QVENa2N .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sP3QVENa2N .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sP3QVENa2N .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sP3QVENa2N .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sP3QVENa2N .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sP3QVENa2N .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sP3QVENa2N .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sP3QVENa2N .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sP3QVENa2N .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sP3QVENa2N .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sP3QVENa2N .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sP3QVENa2N .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sP3QVENa2N .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-sP3QVENa2N .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sP3QVENa2N .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sP3QVENa2N .dropdown-item.active,
.cid-sP3QVENa2N .dropdown-item:active {
  background-color: transparent;
}
.cid-sP3QVENa2N .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sP3QVENa2N .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sP3QVENa2N .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sP3QVENa2N .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sP3QVENa2N .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sP3QVENa2N .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sP3QVENa2N ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sP3QVENa2N .navbar-buttons {
  text-align: center;
}
.cid-sP3QVENa2N button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sP3QVENa2N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sP3QVENa2N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sP3QVENa2N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sP3QVENa2N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sP3QVENa2N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sP3QVENa2N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sP3QVENa2N nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sP3QVENa2N nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sP3QVENa2N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sP3QVENa2N .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sP3QVENa2N a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sP3QVENa2N .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sP3QVENa2N .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-sP3QVENa2N .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sP3QVENa2N .navbar {
    height: 77px;
  }
  .cid-sP3QVENa2N .navbar.opened {
    height: auto;
  }
  .cid-sP3QVENa2N .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sP3QVFeCaL {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/placa-amn.fw-1600x874.png");
}
.cid-sP3QVFeCaL .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sP3QVFeCaL .number {
  color: #ffffff;
}
.cid-sP3QVFeCaL .period {
  display: block;
}
.cid-sP3QVFeCaL .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sP3QVFeCaL .period {
    font-size: 0.8rem;
  }
}
.cid-sP3QVFeCaL .btn {
  height: 100%;
  margin: 0;
}
.cid-sP3QVFeCaL .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sP3QVFeCaL .mbr-section-title {
  color: #ffffff;
}
.cid-sP3QVFeCaL .mbr-text {
  color: #ffffff;
}
.cid-sP3QVFeCaL .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sP3QVFeCaL .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sP3QVFeCaL .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sP3QVFeCaL .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-sP3QVFeCaL H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sP3QVFeCaL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sP3QVFzJcY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-sP3QVFzJcY .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sP3QVFzJcY .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sP3QVFzJcY .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sP3QVFzJcY .mbr-text {
  color: #6d7a8c;
}
.cid-sP3QVFzJcY .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sP3QVFzJcY .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sP3QVFzJcY .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sP3QVFzJcY .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sP3QVFzJcY .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sP3QVFzJcY .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sP3QVFzJcY .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sP3QVFzJcY .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sP3QVFzJcY .separator,
  .cid-sP3QVFzJcY .sep-holder,
  .cid-sP3QVFzJcY .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sP3QVFzJcY .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sP3QVFzJcY .mbr-text,
.cid-sP3QVFzJcY .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sP3QVFzJcY .mbr-section-subtitle,
.cid-sP3QVFzJcY .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sP3QVFzJcY .mbr-section-title,
.cid-sP3QVFzJcY .separator,
.cid-sP3QVFzJcY .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sP3QVFRYPj {
  background-image: url("../../../assets/images/area33.fw-803x813.png");
}
.cid-sP3QVFRYPj .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sP3QVFRYPj .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sP3QVFRYPj .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sP3QVFRYPj .mbr-text {
  color: #ffffff;
}
.cid-sP3QVFRYPj .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sP3QVFRYPj .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sP3QVFRYPj .mbr-section-btn {
  display: flex;
}
.cid-sP3QVFRYPj .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sP3QVFRYPj .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sP3QVFRYPj .mbr-section-btn.display-4,
.cid-sP3QVFRYPj .btn.display-4 {
  font-size: 12px !important;
}
.cid-sP3QVFRYPj .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sP3QVFRYPj .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sP3QVFRYPj .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sP3QVFRYPj .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sP3QVFRYPj .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sP3QVFRYPj .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sP3QVFRYPj .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sP3QVFRYPj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sP3QVFRYPj .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sP3QVFRYPj .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sP3QVFRYPj a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sP3QVFRYPj a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sP3QVFRYPj .separator,
  .cid-sP3QVFRYPj .sep-holder,
  .cid-sP3QVFRYPj .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sP3QVFRYPj .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sP3QVFRYPj .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sP3QVFRYPj .mbr-section-subtitle,
.cid-sP3QVFRYPj .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sP3QVFRYPj .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sP3QVG93DJ {
  background-image: url("../../../assets/images/mapa.fw-1600x874.png");
}
.cid-sP3QVG93DJ .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sP3QVG93DJ .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sP3QVG93DJ .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sP3QVG93DJ .mbr-text {
  color: #ffffff;
}
.cid-sP3QVG93DJ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sP3QVG93DJ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sP3QVG93DJ .mbr-section-btn {
  display: flex;
}
.cid-sP3QVG93DJ .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sP3QVG93DJ .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sP3QVG93DJ .mbr-section-btn.display-4,
.cid-sP3QVG93DJ .btn.display-4 {
  font-size: 12px !important;
}
.cid-sP3QVG93DJ .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sP3QVG93DJ .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sP3QVG93DJ .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sP3QVG93DJ .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sP3QVG93DJ .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sP3QVG93DJ .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sP3QVG93DJ .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sP3QVG93DJ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sP3QVG93DJ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sP3QVG93DJ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sP3QVG93DJ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sP3QVG93DJ a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sP3QVG93DJ .separator,
  .cid-sP3QVG93DJ .sep-holder,
  .cid-sP3QVG93DJ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sP3QVG93DJ .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sP3QVG93DJ .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sP3QVG93DJ .mbr-section-subtitle,
.cid-sP3QVG93DJ .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sP3QVG93DJ .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sP3QVGqpof {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sP3QVGqpof .video-wrapper iframe {
  width: 100%;
}
.cid-sP3QVGqpof .mbr-section-title,
.cid-sP3QVGqpof .mbr-section-subtitle,
.cid-sP3QVGqpof .mbr-text {
  text-align: center;
}
.cid-sP3QVGqpof .mbr-section-subtitle {
  text-align: center;
}
.cid-sP3QVGqpof .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sP3QVGD2bE {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-sP3QVGD2bE .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sP3QVGD2bE .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sP3QVGD2bE .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sP3QVGD2bE .mbr-text {
  color: #6d7a8c;
}
.cid-sP3QVGD2bE .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sP3QVGD2bE .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sP3QVGD2bE .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sP3QVGD2bE .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sP3QVGD2bE .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sP3QVGD2bE .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sP3QVGD2bE .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sP3QVGD2bE .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sP3QVGD2bE .separator,
  .cid-sP3QVGD2bE .sep-holder,
  .cid-sP3QVGD2bE .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sP3QVGD2bE .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sP3QVGD2bE .mbr-text,
.cid-sP3QVGD2bE .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sP3QVGD2bE .mbr-section-subtitle,
.cid-sP3QVGD2bE .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sP3QVGD2bE .mbr-section-title,
.cid-sP3QVGD2bE .separator,
.cid-sP3QVGD2bE .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .nav-item:focus,
.cid-sQuvkW85Lu .nav-link:focus {
  outline: none;
}
.cid-sQuvkW85Lu .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sQuvkW85Lu .dropdown .dropdown-menu .dropdown-item:active,
.cid-sQuvkW85Lu .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sQuvkW85Lu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQuvkW85Lu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .navbar-caption:hover {
  color: inherit!important;
}
.cid-sQuvkW85Lu .container {
  max-width: 1380px;
}
.cid-sQuvkW85Lu .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sQuvkW85Lu .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sQuvkW85Lu .nav-link:hover,
.cid-sQuvkW85Lu .nav-link:active,
.cid-sQuvkW85Lu .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sQuvkW85Lu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sQuvkW85Lu .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sQuvkW85Lu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sQuvkW85Lu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQuvkW85Lu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQuvkW85Lu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQuvkW85Lu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sQuvkW85Lu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sQuvkW85Lu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQuvkW85Lu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQuvkW85Lu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sQuvkW85Lu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sQuvkW85Lu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQuvkW85Lu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQuvkW85Lu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sQuvkW85Lu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQuvkW85Lu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQuvkW85Lu .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-sQuvkW85Lu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sQuvkW85Lu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQuvkW85Lu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQuvkW85Lu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sQuvkW85Lu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sQuvkW85Lu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sQuvkW85Lu .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sQuvkW85Lu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sQuvkW85Lu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sQuvkW85Lu .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sQuvkW85Lu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQuvkW85Lu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQuvkW85Lu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQuvkW85Lu .dropdown-item.active,
.cid-sQuvkW85Lu .dropdown-item:active {
  background-color: transparent;
}
.cid-sQuvkW85Lu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQuvkW85Lu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQuvkW85Lu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQuvkW85Lu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sQuvkW85Lu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQuvkW85Lu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQuvkW85Lu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sQuvkW85Lu .navbar-buttons {
  text-align: center;
}
.cid-sQuvkW85Lu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sQuvkW85Lu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sQuvkW85Lu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sQuvkW85Lu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sQuvkW85Lu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sQuvkW85Lu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sQuvkW85Lu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQuvkW85Lu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sQuvkW85Lu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sQuvkW85Lu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sQuvkW85Lu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sQuvkW85Lu a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sQuvkW85Lu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sQuvkW85Lu .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-sQuvkW85Lu .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQuvkW85Lu .navbar {
    height: 77px;
  }
  .cid-sQuvkW85Lu .navbar.opened {
    height: auto;
  }
  .cid-sQuvkW85Lu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQuvkX9ajH {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sQuvkX9ajH .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #232323;
  padding: 0;
}
.cid-sQuvkX9ajH .rev,
.cid-sQuvkX9ajH .mbr-iconfont {
  display: inline-block;
}
.cid-sQuvkX9ajH .card-img {
  position: relative;
}
.cid-sQuvkX9ajH .card:hover .image-btn {
  opacity: 1;
  bottom: 10px;
}
.cid-sQuvkX9ajH .image-btn {
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.cid-sQuvkX9ajH .card-title {
  color: #0087ab;
  margin: 0;
  text-align: center;
}
.cid-sQuvkX9ajH .card-box {
  padding: 1.5rem;
}
.cid-sQuvkX9ajH .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-sQuvkX9ajH .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-sQuvkX9ajH .mbr-section-title,
.cid-sQuvkX9ajH .line-wrap {
  text-align: center;
  color: #ffffff;
}
.cid-sQuvkX9ajH .card-text,
.cid-sQuvkX9ajH .mbr-section-btn,
.cid-sQuvkX9ajH .ico-line {
  text-align: left;
  color: #767676;
}
.cid-sQuvkX9ajH .mbr-text,
.cid-sQuvkX9ajH .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-sQuvkX9ajH .image-btn {
    opacity: 1;
    bottom: 10px;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sRaxVpp483 .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-sRaxVpp483 .nav-item:focus,
.cid-sRaxVpp483 .nav-link:focus {
  outline: none;
}
.cid-sRaxVpp483 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sRaxVpp483 .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-sRaxVpp483 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sRaxVpp483 .dropdown .dropdown-menu .dropdown-item:active,
.cid-sRaxVpp483 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sRaxVpp483 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRaxVpp483 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sRaxVpp483 .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-sRaxVpp483 .navbar-caption:hover {
  color: inherit!important;
}
.cid-sRaxVpp483 .container {
  max-width: 1380px;
}
.cid-sRaxVpp483 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sRaxVpp483 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sRaxVpp483 .nav-link:hover,
.cid-sRaxVpp483 .nav-link:active,
.cid-sRaxVpp483 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sRaxVpp483 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sRaxVpp483 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sRaxVpp483 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sRaxVpp483 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRaxVpp483 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRaxVpp483 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRaxVpp483 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sRaxVpp483 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sRaxVpp483 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRaxVpp483 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRaxVpp483 .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-sRaxVpp483 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRaxVpp483 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sRaxVpp483 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sRaxVpp483 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRaxVpp483 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRaxVpp483 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sRaxVpp483 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRaxVpp483 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRaxVpp483 .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-sRaxVpp483 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sRaxVpp483 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRaxVpp483 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRaxVpp483 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sRaxVpp483 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sRaxVpp483 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sRaxVpp483 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sRaxVpp483 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sRaxVpp483 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sRaxVpp483 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sRaxVpp483 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRaxVpp483 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRaxVpp483 .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-sRaxVpp483 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRaxVpp483 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRaxVpp483 .dropdown-item.active,
.cid-sRaxVpp483 .dropdown-item:active {
  background-color: transparent;
}
.cid-sRaxVpp483 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRaxVpp483 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRaxVpp483 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRaxVpp483 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sRaxVpp483 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRaxVpp483 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRaxVpp483 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sRaxVpp483 .navbar-buttons {
  text-align: center;
}
.cid-sRaxVpp483 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRaxVpp483 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sRaxVpp483 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRaxVpp483 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRaxVpp483 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRaxVpp483 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRaxVpp483 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRaxVpp483 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRaxVpp483 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRaxVpp483 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRaxVpp483 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sRaxVpp483 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRaxVpp483 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sRaxVpp483 .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-sRaxVpp483 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRaxVpp483 .navbar {
    height: 77px;
  }
  .cid-sRaxVpp483 .navbar.opened {
    height: auto;
  }
  .cid-sRaxVpp483 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRaxVq1ElI {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}
.cid-sRaxVq1ElI .container-fluid {
  padding: 0 3rem;
}
.cid-sRaxVq1ElI .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-sRaxVq1ElI .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sRaxVq1ElI .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sRaxVq1ElI .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sRaxVq1ElI .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sRaxVq1ElI a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sRaxVq1ElI a.close:hover {
  color: #ffffff;
}
.cid-sRaxVq1ElI svg {
  transition: all 0.5s ease-in;
}
.cid-sRaxVq1ElI svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-sRaxVq1ElI svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-sRaxVq1ElI svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sRaxVq1ElI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sRaxVqtabz {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9f4b1;
}
.cid-sRaxVqtabz .mbr-shop {
  display: table;
  width: 100%;
}
.cid-sRaxVqtabz .mbr-shop .row {
  margin: 0;
}
.cid-sRaxVqtabz .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-sRaxVqtabz .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-sRaxVqtabz .categories {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sRaxVqtabz .mbr-gallery-item {
    width: 33.33%;
  }
}
.cid-sRaxVqtabz li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-sRaxVqtabz .container {
  max-width: 1400px;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter ul li:before {
  content: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-sRaxVqtabz .sidebar_wraper {
  padding: 1rem 0;
}
.cid-sRaxVqtabz .galleryItem {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.cid-sRaxVqtabz .item-title {
  padding-bottom: 0.4rem;
  font-weight: 700;
}
.cid-sRaxVqtabz .display-5 {
  font-size: 1.4rem;
}
.cid-sRaxVqtabz .shop-item-price,
.cid-sRaxVqtabz .oldprice {
  font-size: 1.1rem;
  font-weight: 600!important;
}
.cid-sRaxVqtabz .mbr-shop .sidebar-background:after {
  background: transparent!important;
  background-color: rgba(0, 0, 0, 0.05);
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  top: -20px;
  right: 3px;
}
.cid-sRaxVqtabz .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-sRaxVqtabz .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-sRaxVqtabz .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-sRaxVqtabz .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-sRaxVqtabz .mbr-shop .hide-modal {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRaxVqtabz .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sRaxVqtabz .mbr-shop .filter-by-pu,
.cid-sRaxVqtabz .mbr-shop .filter-by-pd,
.cid-sRaxVqtabz .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-sRaxVqtabz .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-sRaxVqtabz .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem h4,
.cid-sRaxVqtabz .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem h5,
.cid-sRaxVqtabz .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem p,
.cid-sRaxVqtabz .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-sRaxVqtabz .mbr-shop .item-button {
  text-align: center;
}
.cid-sRaxVqtabz .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-sRaxVqtabz .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-sRaxVqtabz .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-sRaxVqtabz .mbr-shop .sidebar-block {
  position: relative;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-sRaxVqtabz .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #f2f2f4;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item__hided h4,
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item__hided h5,
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-sRaxVqtabz .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-sRaxVqtabz .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-sRaxVqtabz .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-sRaxVqtabz .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-sRaxVqtabz .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-sRaxVqtabz .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-sRaxVqtabz .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sRaxVqtabz .mbr-shop .range-controls {
  position: relative;
}
.cid-sRaxVqtabz .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-sRaxVqtabz .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-sRaxVqtabz .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-sRaxVqtabz .mbr-shop .toggle:hover,
.cid-sRaxVqtabz .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-sRaxVqtabz .mbr-shop .min-toggle {
  left: 0;
}
.cid-sRaxVqtabz .mbr-shop .max-toggle {
  right: 0;
}
.cid-sRaxVqtabz .mbr-shop .hided-by-price {
  display: none;
}
.cid-sRaxVqtabz .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-sRaxVqtabz .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-sRaxVqtabz .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sRaxVqtabz .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-sRaxVqtabz .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-sRaxVqtabz .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-sRaxVqtabz .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-sRaxVqtabz .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-sRaxVqtabz .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sRaxVqtabz .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRaxVqtabz .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRaxVqtabz .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-sRaxVqtabz .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-sRaxVqtabz .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-sRaxVqtabz .mbr-shop .shop-items .onsale,
.cid-sRaxVqtabz .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-sRaxVqtabz .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-sRaxVqtabz .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-sRaxVqtabz .mbr-shop .price-range {
  display: inline-block;
}
.cid-sRaxVqtabz .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-sRaxVqtabz .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-sRaxVqtabz .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-sRaxVqtabz .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-sRaxVqtabz .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-sRaxVqtabz .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-sRaxVqtabz .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-sRaxVqtabz .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-sRaxVqtabz .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-sRaxVqtabz .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-sRaxVqtabz .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-sRaxVqtabz .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sRaxVqtabz .mbr-shop .mbr-gallery-item {
    width: 50%;
  }
  .cid-sRaxVqtabz .mbr-shop__row {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cid-sRaxVqtabz .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-sRaxVqtabz .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-sRaxVqtabz .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-sRaxVqtabz .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-sRaxVqtabz .wrapper-shop-items,
  .cid-sRaxVqtabz .mbr-shop__row {
    padding: 0;
  }
  .cid-sRaxVqtabz .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-sRaxVqtabz .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-sRaxVqtabz .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-sRaxVqtabz .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-sRaxVqtabz .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-sRaxVqtabz .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-sRaxVqtabz .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-sRaxVqtabz .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-sRaxVqtabz .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-sRaxVqtabz .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-sRaxVqtabz .range-controls {
  display: block !important;
}
.cid-sRaxVqtabz .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRaxVqtabz .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sRaxVqtabz LI {
  text-align: center;
}
.cid-sRaxVqtabz .sidebar-title {
  text-align: center;
}
.cid-sRaxVqtabz .card-description UL {
  text-align: right;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .nav-item:focus,
.cid-sRDg2dN5Yz .nav-link:focus {
  outline: none;
}
.cid-sRDg2dN5Yz .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sRDg2dN5Yz .dropdown .dropdown-menu .dropdown-item:active,
.cid-sRDg2dN5Yz .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sRDg2dN5Yz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sRDg2dN5Yz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .navbar-caption:hover {
  color: inherit!important;
}
.cid-sRDg2dN5Yz .container {
  max-width: 1380px;
}
.cid-sRDg2dN5Yz .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sRDg2dN5Yz .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sRDg2dN5Yz .nav-link:hover,
.cid-sRDg2dN5Yz .nav-link:active,
.cid-sRDg2dN5Yz .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sRDg2dN5Yz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sRDg2dN5Yz .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sRDg2dN5Yz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sRDg2dN5Yz .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sRDg2dN5Yz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sRDg2dN5Yz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sRDg2dN5Yz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sRDg2dN5Yz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sRDg2dN5Yz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sRDg2dN5Yz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sRDg2dN5Yz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sRDg2dN5Yz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sRDg2dN5Yz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sRDg2dN5Yz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sRDg2dN5Yz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sRDg2dN5Yz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sRDg2dN5Yz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sRDg2dN5Yz .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-sRDg2dN5Yz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sRDg2dN5Yz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sRDg2dN5Yz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sRDg2dN5Yz .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sRDg2dN5Yz .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sRDg2dN5Yz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sRDg2dN5Yz .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sRDg2dN5Yz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sRDg2dN5Yz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sRDg2dN5Yz .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sRDg2dN5Yz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sRDg2dN5Yz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sRDg2dN5Yz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sRDg2dN5Yz .dropdown-item.active,
.cid-sRDg2dN5Yz .dropdown-item:active {
  background-color: transparent;
}
.cid-sRDg2dN5Yz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sRDg2dN5Yz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sRDg2dN5Yz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sRDg2dN5Yz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sRDg2dN5Yz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sRDg2dN5Yz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sRDg2dN5Yz ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sRDg2dN5Yz .navbar-buttons {
  text-align: center;
}
.cid-sRDg2dN5Yz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sRDg2dN5Yz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sRDg2dN5Yz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sRDg2dN5Yz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sRDg2dN5Yz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sRDg2dN5Yz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sRDg2dN5Yz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRDg2dN5Yz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sRDg2dN5Yz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sRDg2dN5Yz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sRDg2dN5Yz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sRDg2dN5Yz a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sRDg2dN5Yz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sRDg2dN5Yz .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-sRDg2dN5Yz .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRDg2dN5Yz .navbar {
    height: 77px;
  }
  .cid-sRDg2dN5Yz .navbar.opened {
    height: auto;
  }
  .cid-sRDg2dN5Yz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sRDg2eLyPF {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/capa4-950x604.jpg");
}
.cid-sRDg2eLyPF .container-fluid {
  padding: 0 3rem;
}
.cid-sRDg2eLyPF .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-sRDg2eLyPF .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sRDg2eLyPF .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sRDg2eLyPF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sRDg2eLyPF .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-sRDg2eLyPF a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sRDg2eLyPF a.close:hover {
  color: #ffffff;
}
.cid-sRDg2eLyPF svg {
  transition: all 0.5s ease-in;
}
.cid-sRDg2eLyPF svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-sRDg2eLyPF svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-sRDg2eLyPF svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-sRDg2eLyPF .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sRDg2eLyPF H1 {
  color: #64f50f;
}
.cid-sRDg2g5XsO {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #cdd4f6;
}
.cid-sRDg2g5XsO .mbr-shop {
  display: table;
  width: 100%;
}
.cid-sRDg2g5XsO .mbr-shop .row {
  margin: 0;
}
.cid-sRDg2g5XsO .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-sRDg2g5XsO .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-sRDg2g5XsO .categories {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-sRDg2g5XsO .mbr-gallery-item {
    width: 33.33%;
  }
}
.cid-sRDg2g5XsO li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-sRDg2g5XsO .container {
  max-width: 1400px;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter ul li:before {
  content: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-sRDg2g5XsO .sidebar_wraper {
  padding: 1rem 0;
}
.cid-sRDg2g5XsO .galleryItem {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.cid-sRDg2g5XsO .item-title {
  padding-bottom: 0.4rem;
  font-weight: 700;
}
.cid-sRDg2g5XsO .display-5 {
  font-size: 1.4rem;
}
.cid-sRDg2g5XsO .shop-item-price,
.cid-sRDg2g5XsO .oldprice {
  font-size: 1.1rem;
  font-weight: 600!important;
}
.cid-sRDg2g5XsO .mbr-shop .sidebar-background:after {
  background: transparent!important;
  background-color: rgba(0, 0, 0, 0.05);
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  top: -20px;
  right: 3px;
}
.cid-sRDg2g5XsO .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-sRDg2g5XsO .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-sRDg2g5XsO .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-sRDg2g5XsO .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-sRDg2g5XsO .mbr-shop .hide-modal {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRDg2g5XsO .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-sRDg2g5XsO .mbr-shop .filter-by-pu,
.cid-sRDg2g5XsO .mbr-shop .filter-by-pd,
.cid-sRDg2g5XsO .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-sRDg2g5XsO .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-sRDg2g5XsO .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem h4,
.cid-sRDg2g5XsO .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem h5,
.cid-sRDg2g5XsO .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem p,
.cid-sRDg2g5XsO .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-sRDg2g5XsO .mbr-shop .item-button {
  text-align: center;
}
.cid-sRDg2g5XsO .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-sRDg2g5XsO .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-sRDg2g5XsO .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-sRDg2g5XsO .mbr-shop .sidebar-block {
  position: relative;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-sRDg2g5XsO .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #5b686b;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item__hided h4,
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item__hided h5,
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-sRDg2g5XsO .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-sRDg2g5XsO .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-sRDg2g5XsO .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-sRDg2g5XsO .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-sRDg2g5XsO .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-sRDg2g5XsO .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-sRDg2g5XsO .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-sRDg2g5XsO .mbr-shop .range-controls {
  position: relative;
}
.cid-sRDg2g5XsO .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-sRDg2g5XsO .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-sRDg2g5XsO .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-sRDg2g5XsO .mbr-shop .toggle:hover,
.cid-sRDg2g5XsO .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-sRDg2g5XsO .mbr-shop .min-toggle {
  left: 0;
}
.cid-sRDg2g5XsO .mbr-shop .max-toggle {
  right: 0;
}
.cid-sRDg2g5XsO .mbr-shop .hided-by-price {
  display: none;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-sRDg2g5XsO .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-sRDg2g5XsO .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-sRDg2g5XsO .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-sRDg2g5XsO .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-sRDg2g5XsO .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRDg2g5XsO .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-sRDg2g5XsO .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-sRDg2g5XsO .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-sRDg2g5XsO .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-sRDg2g5XsO .mbr-shop .shop-items .onsale,
.cid-sRDg2g5XsO .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-sRDg2g5XsO .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-sRDg2g5XsO .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-sRDg2g5XsO .mbr-shop .price-range {
  display: inline-block;
}
.cid-sRDg2g5XsO .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-sRDg2g5XsO .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-sRDg2g5XsO .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-sRDg2g5XsO .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-sRDg2g5XsO .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-sRDg2g5XsO .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-sRDg2g5XsO .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-sRDg2g5XsO .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-sRDg2g5XsO .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-sRDg2g5XsO .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-sRDg2g5XsO .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-sRDg2g5XsO .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item {
    width: 50%;
  }
  .cid-sRDg2g5XsO .mbr-shop__row {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cid-sRDg2g5XsO .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-sRDg2g5XsO .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-sRDg2g5XsO .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-sRDg2g5XsO .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-sRDg2g5XsO .wrapper-shop-items,
  .cid-sRDg2g5XsO .mbr-shop__row {
    padding: 0;
  }
  .cid-sRDg2g5XsO .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-sRDg2g5XsO .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-sRDg2g5XsO .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-sRDg2g5XsO .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-sRDg2g5XsO .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-sRDg2g5XsO .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-sRDg2g5XsO .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-sRDg2g5XsO .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-sRDg2g5XsO .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-sRDg2g5XsO .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-sRDg2g5XsO .range-controls {
  display: block !important;
}
.cid-sRDg2g5XsO .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sRDg2g5XsO .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sRDg2g5XsO LI {
  text-align: center;
}
.cid-sRDg2g5XsO .sidebar-title {
  text-align: center;
}
.cid-sRDg2g5XsO .card-description UL {
  text-align: right;
}
.cid-sRDg2g5XsO .shop-item-price,
.cid-sRDg2g5XsO .price-block {
  color: #0f7699;
}
.cid-sRDg2iDo4g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f2f2f4;
}
.cid-sRDg2iDo4g .mbr-section-subtitle {
  color: #767676;
}
.cid-sRDg2iDo4g .container-table {
  margin: 0 auto;
}
.cid-sRDg2iDo4g .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sRDg2iDo4g .dataTables_wrapper {
  display: block;
}
.cid-sRDg2iDo4g .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sRDg2iDo4g .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sRDg2iDo4g table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sRDg2iDo4g table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #cccccc;
  transition: all .2s;
}
.cid-sRDg2iDo4g table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sRDg2iDo4g table td {
  border: 1px solid #cccccc;
}
.cid-sRDg2iDo4g .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sRDg2iDo4g .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sRDg2iDo4g .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sRDg2iDo4g .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sRDg2iDo4g .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sRDg2iDo4g .dataTables_filter {
    text-align: center;
  }
  .cid-sRDg2iDo4g .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sRDg2iDo4g .head-item,
.cid-sRDg2iDo4g .body-item {
  text-align: center;
}
.cid-sRDg2nxozA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpg");
}
.cid-sRDg2nxozA .menu-item {
  padding: 0 1rem 1rem 1rem;
}
.cid-sRDg2nxozA .menu-item .special-label {
  display: none;
}
.cid-sRDg2nxozA .menu-item.special-item {
  padding-bottom: 0;
  margin-bottom: 1rem;
  border: 2px solid #ff3366;
}
.cid-sRDg2nxozA .menu-item.special-item .special-label {
  display: block;
  width: 100%;
  word-break: break-word;
}
.cid-sRDg2nxozA .menu-item.special-item .special-label .label-text {
  max-width: 100%;
  background: #ff3366;
  padding: .5rem 1rem;
  display: inline-block;
}
.cid-sRDg2nxozA .special-label {
  color: #fff;
}
.cid-sRDg2nxozA .menu-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-sRDg2nxozA .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
  width: 100%;
}
.cid-sRDg2nxozA .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sRDg2nxozA .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-sRDg2nxozA .menu-row {
  margin: 0;
}
.cid-sRDg2nxozA .group-title {
  color: #110f0f;
  font-weight: bold;
}
.cid-sRDg2nxozA SPAN {
  color: #0f7699;
}
.cid-sRDg2q4TrJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/capa2-768x508.jpg");
}
.cid-sRDg2q4TrJ *:focus {
  outline: none;
}
.cid-sRDg2q4TrJ .form-group {
  margin-bottom: 2rem;
}
.cid-sRDg2q4TrJ .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #000000;
  color: #000000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-sRDg2q4TrJ .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-sRDg2q4TrJ .form-control::-webkit-input-placeholder {
  color: #000000;
}
.cid-sRDg2q4TrJ .form-control::-moz-placeholder {
  color: #000000;
}
.cid-sRDg2q4TrJ .form-control:-ms-input-placeholder {
  color: #000000;
}
.cid-sRDg2q4TrJ .form-control:-moz-placeholder {
  color: #000000;
}
.cid-sRDg2q4TrJ input.form-control {
  padding: 1px 0;
}
.cid-sRDg2q4TrJ .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-sRDg2q4TrJ .soc-item .socicon {
  font-size: 1.5rem;
  color: #000000;
  opacity: 1;
}
.cid-sRDg2q4TrJ .soc-item .socicon:hover {
  opacity: .5;
}
.cid-sRDg2q4TrJ .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-sRDg2q4TrJ .first-column,
  .cid-sRDg2q4TrJ .form-1 {
    text-align: center;
  }
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .nav-item:focus,
.cid-sSfqh9SUTo .nav-link:focus {
  outline: none;
}
.cid-sSfqh9SUTo .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sSfqh9SUTo .dropdown .dropdown-menu .dropdown-item:active,
.cid-sSfqh9SUTo .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sSfqh9SUTo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sSfqh9SUTo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .navbar-caption:hover {
  color: inherit!important;
}
.cid-sSfqh9SUTo .container {
  max-width: 1380px;
}
.cid-sSfqh9SUTo .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sSfqh9SUTo .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sSfqh9SUTo .nav-link:hover,
.cid-sSfqh9SUTo .nav-link:active,
.cid-sSfqh9SUTo .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sSfqh9SUTo .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sSfqh9SUTo .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sSfqh9SUTo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sSfqh9SUTo .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sSfqh9SUTo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sSfqh9SUTo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sSfqh9SUTo .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sSfqh9SUTo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sSfqh9SUTo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sSfqh9SUTo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sSfqh9SUTo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sSfqh9SUTo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sSfqh9SUTo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sSfqh9SUTo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sSfqh9SUTo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sSfqh9SUTo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sSfqh9SUTo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sSfqh9SUTo .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-sSfqh9SUTo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sSfqh9SUTo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sSfqh9SUTo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sSfqh9SUTo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sSfqh9SUTo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sSfqh9SUTo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sSfqh9SUTo .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sSfqh9SUTo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sSfqh9SUTo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sSfqh9SUTo .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sSfqh9SUTo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sSfqh9SUTo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sSfqh9SUTo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sSfqh9SUTo .dropdown-item.active,
.cid-sSfqh9SUTo .dropdown-item:active {
  background-color: transparent;
}
.cid-sSfqh9SUTo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sSfqh9SUTo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sSfqh9SUTo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sSfqh9SUTo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sSfqh9SUTo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sSfqh9SUTo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sSfqh9SUTo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sSfqh9SUTo .navbar-buttons {
  text-align: center;
}
.cid-sSfqh9SUTo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sSfqh9SUTo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sSfqh9SUTo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sSfqh9SUTo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sSfqh9SUTo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sSfqh9SUTo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sSfqh9SUTo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSfqh9SUTo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sSfqh9SUTo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sSfqh9SUTo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sSfqh9SUTo .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sSfqh9SUTo a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sSfqh9SUTo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sSfqh9SUTo .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-sSfqh9SUTo .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sSfqh9SUTo .navbar {
    height: 77px;
  }
  .cid-sSfqh9SUTo .navbar.opened {
    height: auto;
  }
  .cid-sSfqh9SUTo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sSfqhajdO9 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1-1920x1344.jpg");
}
.cid-sSfqhajdO9 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-sSfqhajdO9 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-sSfqhajdO9 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-sSfqhajdO9 .mbr-text,
.cid-sSfqhajdO9 .mbr-section-btn {
  text-align: left;
}
.cid-sUSVUsQ0vd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sUSVUsQ0vd .media-container-row .mbr-text {
  text-align: center;
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .nav-item:focus,
.cid-sVEdCxrQSO .nav-link:focus {
  outline: none;
}
.cid-sVEdCxrQSO .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sVEdCxrQSO .dropdown .dropdown-menu .dropdown-item:active,
.cid-sVEdCxrQSO .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sVEdCxrQSO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sVEdCxrQSO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .navbar-caption:hover {
  color: inherit!important;
}
.cid-sVEdCxrQSO .container {
  max-width: 1380px;
}
.cid-sVEdCxrQSO .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sVEdCxrQSO .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sVEdCxrQSO .nav-link:hover,
.cid-sVEdCxrQSO .nav-link:active,
.cid-sVEdCxrQSO .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sVEdCxrQSO .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sVEdCxrQSO .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sVEdCxrQSO .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sVEdCxrQSO .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sVEdCxrQSO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sVEdCxrQSO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sVEdCxrQSO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sVEdCxrQSO .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sVEdCxrQSO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sVEdCxrQSO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sVEdCxrQSO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sVEdCxrQSO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sVEdCxrQSO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sVEdCxrQSO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sVEdCxrQSO .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sVEdCxrQSO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sVEdCxrQSO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sVEdCxrQSO .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-sVEdCxrQSO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sVEdCxrQSO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sVEdCxrQSO .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sVEdCxrQSO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sVEdCxrQSO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sVEdCxrQSO .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sVEdCxrQSO .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sVEdCxrQSO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sVEdCxrQSO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sVEdCxrQSO .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sVEdCxrQSO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sVEdCxrQSO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sVEdCxrQSO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sVEdCxrQSO .dropdown-item.active,
.cid-sVEdCxrQSO .dropdown-item:active {
  background-color: transparent;
}
.cid-sVEdCxrQSO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sVEdCxrQSO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sVEdCxrQSO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sVEdCxrQSO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sVEdCxrQSO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sVEdCxrQSO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sVEdCxrQSO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sVEdCxrQSO .navbar-buttons {
  text-align: center;
}
.cid-sVEdCxrQSO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sVEdCxrQSO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sVEdCxrQSO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sVEdCxrQSO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sVEdCxrQSO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sVEdCxrQSO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sVEdCxrQSO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sVEdCxrQSO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sVEdCxrQSO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sVEdCxrQSO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sVEdCxrQSO .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sVEdCxrQSO a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sVEdCxrQSO .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sVEdCxrQSO .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-sVEdCxrQSO .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sVEdCxrQSO .navbar {
    height: 77px;
  }
  .cid-sVEdCxrQSO .navbar.opened {
    height: auto;
  }
  .cid-sVEdCxrQSO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sVEdCxOUxy {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1285.jpg");
}
.cid-sVEdCxOUxy .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sVEdCxOUxy .number {
  color: #ffffff;
}
.cid-sVEdCxOUxy .period {
  display: block;
}
.cid-sVEdCxOUxy .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sVEdCxOUxy .period {
    font-size: 0.8rem;
  }
}
.cid-sVEdCxOUxy .btn {
  height: 100%;
  margin: 0;
}
.cid-sVEdCxOUxy .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sVEdCxOUxy .mbr-section-title {
  color: #ffffff;
}
.cid-sVEdCxOUxy .mbr-text {
  color: #ffffff;
}
.cid-sVEdCxOUxy .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sVEdCxOUxy .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sVEdCxOUxy .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sVEdCxOUxy .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-sVEdCxOUxy H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sVEdCxOUxy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sVEdCy6sx7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-sVEdCy6sx7 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sVEdCy6sx7 .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sVEdCy6sx7 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sVEdCy6sx7 .mbr-text {
  color: #6d7a8c;
}
.cid-sVEdCy6sx7 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sVEdCy6sx7 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sVEdCy6sx7 .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sVEdCy6sx7 .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sVEdCy6sx7 .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sVEdCy6sx7 .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sVEdCy6sx7 .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sVEdCy6sx7 .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sVEdCy6sx7 .separator,
  .cid-sVEdCy6sx7 .sep-holder,
  .cid-sVEdCy6sx7 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sVEdCy6sx7 .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sVEdCy6sx7 .mbr-text,
.cid-sVEdCy6sx7 .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sVEdCy6sx7 .mbr-section-subtitle,
.cid-sVEdCy6sx7 .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sVEdCy6sx7 .mbr-section-title,
.cid-sVEdCy6sx7 .separator,
.cid-sVEdCy6sx7 .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sVEdCymbmQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sVEdCymbmQ .media-container-row .mbr-text {
  text-align: center;
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .nav-item:focus,
.cid-t5ynMcdzDA .nav-link:focus {
  outline: none;
}
.cid-t5ynMcdzDA .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .dropdown .dropdown-menu .dropdown-item:hover,
.cid-t5ynMcdzDA .dropdown .dropdown-menu .dropdown-item:active,
.cid-t5ynMcdzDA .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-t5ynMcdzDA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t5ynMcdzDA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .navbar-caption:hover {
  color: inherit!important;
}
.cid-t5ynMcdzDA .container {
  max-width: 1380px;
}
.cid-t5ynMcdzDA .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-t5ynMcdzDA .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-t5ynMcdzDA .nav-link:hover,
.cid-t5ynMcdzDA .nav-link:active,
.cid-t5ynMcdzDA .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-t5ynMcdzDA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-t5ynMcdzDA .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-t5ynMcdzDA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t5ynMcdzDA .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t5ynMcdzDA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t5ynMcdzDA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t5ynMcdzDA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-t5ynMcdzDA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t5ynMcdzDA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t5ynMcdzDA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t5ynMcdzDA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t5ynMcdzDA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t5ynMcdzDA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t5ynMcdzDA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t5ynMcdzDA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t5ynMcdzDA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t5ynMcdzDA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t5ynMcdzDA .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-t5ynMcdzDA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t5ynMcdzDA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t5ynMcdzDA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t5ynMcdzDA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t5ynMcdzDA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t5ynMcdzDA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t5ynMcdzDA .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-t5ynMcdzDA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t5ynMcdzDA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t5ynMcdzDA .icons-menu span {
  color: #f7ed4a !important;
}
.cid-t5ynMcdzDA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t5ynMcdzDA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t5ynMcdzDA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t5ynMcdzDA .dropdown-item.active,
.cid-t5ynMcdzDA .dropdown-item:active {
  background-color: transparent;
}
.cid-t5ynMcdzDA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t5ynMcdzDA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t5ynMcdzDA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t5ynMcdzDA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-t5ynMcdzDA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t5ynMcdzDA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t5ynMcdzDA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t5ynMcdzDA .navbar-buttons {
  text-align: center;
}
.cid-t5ynMcdzDA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t5ynMcdzDA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-t5ynMcdzDA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t5ynMcdzDA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t5ynMcdzDA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t5ynMcdzDA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t5ynMcdzDA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5ynMcdzDA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t5ynMcdzDA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t5ynMcdzDA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t5ynMcdzDA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t5ynMcdzDA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t5ynMcdzDA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t5ynMcdzDA .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-t5ynMcdzDA .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t5ynMcdzDA .navbar {
    height: 77px;
  }
  .cid-t5ynMcdzDA .navbar.opened {
    height: auto;
  }
  .cid-t5ynMcdzDA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t5ynMcIORh {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-1920x1440.jpg");
}
.cid-t5ynMcIORh .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-t5ynMcIORh .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-t5ynMcIORh .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-t5ynMcIORh .mbr-text,
.cid-t5ynMcIORh .mbr-section-btn {
  text-align: center;
}
.cid-t5ynMcIORh P {
  color: #ffffff;
  text-align: left;
}
.cid-t5ynMcUlQn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-t5ynMcUlQn .media-container-row .mbr-text {
  text-align: center;
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .nav-item:focus,
.cid-t84Ke7dg0d .nav-link:focus {
  outline: none;
}
.cid-t84Ke7dg0d .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .dropdown .dropdown-menu .dropdown-item:hover,
.cid-t84Ke7dg0d .dropdown .dropdown-menu .dropdown-item:active,
.cid-t84Ke7dg0d .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-t84Ke7dg0d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t84Ke7dg0d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .navbar-caption:hover {
  color: inherit!important;
}
.cid-t84Ke7dg0d .container {
  max-width: 1380px;
}
.cid-t84Ke7dg0d .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-t84Ke7dg0d .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-t84Ke7dg0d .nav-link:hover,
.cid-t84Ke7dg0d .nav-link:active,
.cid-t84Ke7dg0d .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-t84Ke7dg0d .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-t84Ke7dg0d .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-t84Ke7dg0d .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t84Ke7dg0d .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t84Ke7dg0d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t84Ke7dg0d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t84Ke7dg0d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-t84Ke7dg0d .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t84Ke7dg0d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t84Ke7dg0d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t84Ke7dg0d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t84Ke7dg0d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t84Ke7dg0d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t84Ke7dg0d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t84Ke7dg0d .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t84Ke7dg0d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t84Ke7dg0d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t84Ke7dg0d .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-t84Ke7dg0d .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t84Ke7dg0d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t84Ke7dg0d .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t84Ke7dg0d .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t84Ke7dg0d .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t84Ke7dg0d .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t84Ke7dg0d .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-t84Ke7dg0d .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t84Ke7dg0d .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t84Ke7dg0d .icons-menu span {
  color: #f7ed4a !important;
}
.cid-t84Ke7dg0d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t84Ke7dg0d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t84Ke7dg0d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t84Ke7dg0d .dropdown-item.active,
.cid-t84Ke7dg0d .dropdown-item:active {
  background-color: transparent;
}
.cid-t84Ke7dg0d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t84Ke7dg0d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t84Ke7dg0d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t84Ke7dg0d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-t84Ke7dg0d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t84Ke7dg0d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t84Ke7dg0d ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t84Ke7dg0d .navbar-buttons {
  text-align: center;
}
.cid-t84Ke7dg0d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t84Ke7dg0d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-t84Ke7dg0d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t84Ke7dg0d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t84Ke7dg0d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t84Ke7dg0d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t84Ke7dg0d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t84Ke7dg0d nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t84Ke7dg0d nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t84Ke7dg0d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t84Ke7dg0d .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t84Ke7dg0d a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t84Ke7dg0d .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t84Ke7dg0d .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-t84Ke7dg0d .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t84Ke7dg0d .navbar {
    height: 77px;
  }
  .cid-t84Ke7dg0d .navbar.opened {
    height: auto;
  }
  .cid-t84Ke7dg0d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t86WNG5CA9 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #0b1b3f;
}
.cid-t86WNG5CA9 .mbr-section-title,
.cid-t86WNG5CA9 .mbr-section-subtitle {
  color: #000000;
}
.cid-t86WNG5CA9 .mbr-section-text {
  color: #232323;
}
.cid-t86WNG5CA9 .mbr-text,
.cid-t86WNG5CA9 .typed-text,
.cid-t86WNG5CA9 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-t86WNG5CA9 .btn {
  margin-left: 4px !important;
}
.cid-t86WNG5CA9 .animated-element {
  color: #ff3366;
}
.cid-t86WNG5CA9 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ff3366;
}
.cid-t86WNG5CA9 .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-t86WNG5CA9 .typed-text,
  .cid-t86WNG5CA9 .mbr-section-subtitle,
  .cid-t86WNG5CA9 .mbr-section-text,
  .cid-t86WNG5CA9 .mbr-section-btn {
    text-align: center !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-t86WNG5CA9 .mbr-section-subtitle,
.cid-t86WNG5CA9 .typed-text {
  color: #ffffff;
}
.cid-t86WNG5CA9 .mbr-section-text,
.cid-t86WNG5CA9 .mbr-section-btn {
  color: #ffffff;
}
.cid-t84Ke7BrBn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/mbr-1-1920x1056.jpg");
}
.cid-t84Ke7BrBn .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-t84Ke7BrBn .number {
  color: #ffffff;
}
.cid-t84Ke7BrBn .period {
  display: block;
}
.cid-t84Ke7BrBn .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-t84Ke7BrBn .period {
    font-size: 0.8rem;
  }
}
.cid-t84Ke7BrBn .btn {
  height: 100%;
  margin: 0;
}
.cid-t84Ke7BrBn .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-t84Ke7BrBn .mbr-section-title {
  color: #ffffff;
}
.cid-t84Ke7BrBn .mbr-text {
  color: #ffffff;
}
.cid-t84Ke7BrBn .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-t84Ke7BrBn .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-t84Ke7BrBn .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-t84Ke7BrBn .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-t84Ke7BrBn H3 {
  color: #ffffff;
  text-align: center;
}
.cid-t84Ke7BrBn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t84Ke7S3IA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f7ed4a;
}
.cid-t84Ke7S3IA .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-t84Ke7S3IA .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-t84Ke7S3IA .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-t84Ke7S3IA .mbr-text {
  color: #6d7a8c;
}
.cid-t84Ke7S3IA .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-t84Ke7S3IA .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-t84Ke7S3IA .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-t84Ke7S3IA .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-t84Ke7S3IA .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-t84Ke7S3IA .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-t84Ke7S3IA .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-t84Ke7S3IA .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-t84Ke7S3IA .separator,
  .cid-t84Ke7S3IA .sep-holder,
  .cid-t84Ke7S3IA .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-t84Ke7S3IA .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-t84Ke7S3IA .mbr-text,
.cid-t84Ke7S3IA .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-t84Ke7S3IA .mbr-section-subtitle,
.cid-t84Ke7S3IA .mbr-section-title .accent-word {
  text-align: left;
}
.cid-t84Ke7S3IA .mbr-section-title,
.cid-t84Ke7S3IA .separator,
.cid-t84Ke7S3IA .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-t84Ke89SG1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-t84Ke89SG1 .media-container-row .mbr-text {
  text-align: center;
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .nav-item:focus,
.cid-tbh7HPGbmY .nav-link:focus {
  outline: none;
}
.cid-tbh7HPGbmY .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tbh7HPGbmY .dropdown .dropdown-menu .dropdown-item:active,
.cid-tbh7HPGbmY .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-tbh7HPGbmY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbh7HPGbmY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .navbar-caption:hover {
  color: inherit!important;
}
.cid-tbh7HPGbmY .container {
  max-width: 1380px;
}
.cid-tbh7HPGbmY .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tbh7HPGbmY .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tbh7HPGbmY .nav-link:hover,
.cid-tbh7HPGbmY .nav-link:active,
.cid-tbh7HPGbmY .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-tbh7HPGbmY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-tbh7HPGbmY .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-tbh7HPGbmY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tbh7HPGbmY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbh7HPGbmY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbh7HPGbmY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbh7HPGbmY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-tbh7HPGbmY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tbh7HPGbmY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbh7HPGbmY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbh7HPGbmY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tbh7HPGbmY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tbh7HPGbmY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbh7HPGbmY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbh7HPGbmY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tbh7HPGbmY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbh7HPGbmY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbh7HPGbmY .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-tbh7HPGbmY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tbh7HPGbmY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbh7HPGbmY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbh7HPGbmY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tbh7HPGbmY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tbh7HPGbmY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tbh7HPGbmY .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-tbh7HPGbmY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tbh7HPGbmY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tbh7HPGbmY .icons-menu span {
  color: #f7ed4a !important;
}
.cid-tbh7HPGbmY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbh7HPGbmY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbh7HPGbmY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbh7HPGbmY .dropdown-item.active,
.cid-tbh7HPGbmY .dropdown-item:active {
  background-color: transparent;
}
.cid-tbh7HPGbmY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbh7HPGbmY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbh7HPGbmY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbh7HPGbmY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-tbh7HPGbmY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbh7HPGbmY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbh7HPGbmY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tbh7HPGbmY .navbar-buttons {
  text-align: center;
}
.cid-tbh7HPGbmY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tbh7HPGbmY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tbh7HPGbmY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tbh7HPGbmY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tbh7HPGbmY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tbh7HPGbmY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tbh7HPGbmY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbh7HPGbmY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tbh7HPGbmY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tbh7HPGbmY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tbh7HPGbmY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tbh7HPGbmY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tbh7HPGbmY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tbh7HPGbmY .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-tbh7HPGbmY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbh7HPGbmY .navbar {
    height: 77px;
  }
  .cid-tbh7HPGbmY .navbar.opened {
    height: auto;
  }
  .cid-tbh7HPGbmY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbh7HQhrlo {
  background-image: url("../../../assets/images/placa-amn.fw-1600x874.png");
}
.cid-tbh7HQhrlo .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-tbh7HQhrlo .number {
  color: #ffffff;
}
.cid-tbh7HQhrlo .period {
  display: block;
}
.cid-tbh7HQhrlo .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-tbh7HQhrlo .period {
    font-size: 0.8rem;
  }
}
.cid-tbh7HQhrlo .btn {
  height: 100%;
  margin: 0;
}
.cid-tbh7HQhrlo .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tbh7HQhrlo .mbr-section-title {
  color: #ffffff;
}
.cid-tbh7HQhrlo .mbr-text {
  color: #ffffff;
}
.cid-tbh7HQhrlo .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tbh7HQhrlo .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tbh7HQhrlo .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-tbh7HQhrlo .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-tbh7HQhrlo H3 {
  color: #ffffff;
  text-align: center;
}
.cid-tbh7HQhrlo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tbh7HQH67e {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-tbh7HQH67e .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tbh7HQH67e .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-tbh7HQH67e .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tbh7HQH67e .mbr-text {
  color: #6d7a8c;
}
.cid-tbh7HQH67e .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-tbh7HQH67e .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-tbh7HQH67e .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-tbh7HQH67e .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-tbh7HQH67e .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-tbh7HQH67e .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tbh7HQH67e .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-tbh7HQH67e .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-tbh7HQH67e .separator,
  .cid-tbh7HQH67e .sep-holder,
  .cid-tbh7HQH67e .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tbh7HQH67e .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-tbh7HQH67e .mbr-text,
.cid-tbh7HQH67e .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-tbh7HQH67e .mbr-section-subtitle,
.cid-tbh7HQH67e .mbr-section-title .accent-word {
  text-align: left;
}
.cid-tbh7HQH67e .mbr-section-title,
.cid-tbh7HQH67e .separator,
.cid-tbh7HQH67e .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-tbh7HR03mi {
  background-image: url("../../../assets/images/area33.fw-803x813.png");
}
.cid-tbh7HR03mi .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tbh7HR03mi .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tbh7HR03mi .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tbh7HR03mi .mbr-text {
  color: #ffffff;
}
.cid-tbh7HR03mi .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tbh7HR03mi .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tbh7HR03mi .mbr-section-btn {
  display: flex;
}
.cid-tbh7HR03mi .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tbh7HR03mi .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tbh7HR03mi .mbr-section-btn.display-4,
.cid-tbh7HR03mi .btn.display-4 {
  font-size: 12px !important;
}
.cid-tbh7HR03mi .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tbh7HR03mi .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tbh7HR03mi .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tbh7HR03mi .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tbh7HR03mi .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tbh7HR03mi .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tbh7HR03mi .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tbh7HR03mi .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tbh7HR03mi .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tbh7HR03mi .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tbh7HR03mi a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tbh7HR03mi a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tbh7HR03mi .separator,
  .cid-tbh7HR03mi .sep-holder,
  .cid-tbh7HR03mi .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tbh7HR03mi .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tbh7HR03mi .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tbh7HR03mi .mbr-section-subtitle,
.cid-tbh7HR03mi .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tbh7HR03mi .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tbh7HRjBBy {
  background-image: url("../../../assets/images/mapa.fw-1600x874.png");
}
.cid-tbh7HRjBBy .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tbh7HRjBBy .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tbh7HRjBBy .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tbh7HRjBBy .mbr-text {
  color: #ffffff;
}
.cid-tbh7HRjBBy .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tbh7HRjBBy .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tbh7HRjBBy .mbr-section-btn {
  display: flex;
}
.cid-tbh7HRjBBy .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tbh7HRjBBy .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tbh7HRjBBy .mbr-section-btn.display-4,
.cid-tbh7HRjBBy .btn.display-4 {
  font-size: 12px !important;
}
.cid-tbh7HRjBBy .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tbh7HRjBBy .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tbh7HRjBBy .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tbh7HRjBBy .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tbh7HRjBBy .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tbh7HRjBBy .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tbh7HRjBBy .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tbh7HRjBBy .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tbh7HRjBBy .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tbh7HRjBBy .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tbh7HRjBBy a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tbh7HRjBBy a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tbh7HRjBBy .separator,
  .cid-tbh7HRjBBy .sep-holder,
  .cid-tbh7HRjBBy .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tbh7HRjBBy .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tbh7HRjBBy .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tbh7HRjBBy .mbr-section-subtitle,
.cid-tbh7HRjBBy .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tbh7HRjBBy .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tbh7HRCrDM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tbh7HRCrDM .video-wrapper iframe {
  width: 100%;
}
.cid-tbh7HRCrDM .mbr-section-title,
.cid-tbh7HRCrDM .mbr-section-subtitle,
.cid-tbh7HRCrDM .mbr-text {
  text-align: center;
}
.cid-tbh7HRCrDM .mbr-section-subtitle {
  text-align: center;
}
.cid-tbh7HRCrDM .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tbh7HRSgaD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-tbh7HRSgaD .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tbh7HRSgaD .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-tbh7HRSgaD .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tbh7HRSgaD .mbr-text {
  color: #6d7a8c;
}
.cid-tbh7HRSgaD .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-tbh7HRSgaD .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-tbh7HRSgaD .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-tbh7HRSgaD .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-tbh7HRSgaD .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-tbh7HRSgaD .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tbh7HRSgaD .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-tbh7HRSgaD .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-tbh7HRSgaD .separator,
  .cid-tbh7HRSgaD .sep-holder,
  .cid-tbh7HRSgaD .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tbh7HRSgaD .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-tbh7HRSgaD .mbr-text,
.cid-tbh7HRSgaD .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-tbh7HRSgaD .mbr-section-subtitle,
.cid-tbh7HRSgaD .mbr-section-title .accent-word {
  text-align: left;
}
.cid-tbh7HRSgaD .mbr-section-title,
.cid-tbh7HRSgaD .separator,
.cid-tbh7HRSgaD .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-tbh7HS9Rb0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-tbh7HS9Rb0 .media-container-row .mbr-text {
  text-align: center;
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .nav-item:focus,
.cid-tqihZ7MUFJ .nav-link:focus {
  outline: none;
}
.cid-tqihZ7MUFJ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tqihZ7MUFJ .dropdown .dropdown-menu .dropdown-item:active,
.cid-tqihZ7MUFJ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-tqihZ7MUFJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tqihZ7MUFJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .navbar-caption:hover {
  color: inherit!important;
}
.cid-tqihZ7MUFJ .container {
  max-width: 1380px;
}
.cid-tqihZ7MUFJ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tqihZ7MUFJ .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tqihZ7MUFJ .nav-link:hover,
.cid-tqihZ7MUFJ .nav-link:active,
.cid-tqihZ7MUFJ .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-tqihZ7MUFJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-tqihZ7MUFJ .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-tqihZ7MUFJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tqihZ7MUFJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tqihZ7MUFJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tqihZ7MUFJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tqihZ7MUFJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-tqihZ7MUFJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tqihZ7MUFJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tqihZ7MUFJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tqihZ7MUFJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tqihZ7MUFJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tqihZ7MUFJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tqihZ7MUFJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tqihZ7MUFJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tqihZ7MUFJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tqihZ7MUFJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tqihZ7MUFJ .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-tqihZ7MUFJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tqihZ7MUFJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tqihZ7MUFJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tqihZ7MUFJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tqihZ7MUFJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tqihZ7MUFJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tqihZ7MUFJ .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-tqihZ7MUFJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tqihZ7MUFJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tqihZ7MUFJ .icons-menu span {
  color: #f7ed4a !important;
}
.cid-tqihZ7MUFJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tqihZ7MUFJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tqihZ7MUFJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tqihZ7MUFJ .dropdown-item.active,
.cid-tqihZ7MUFJ .dropdown-item:active {
  background-color: transparent;
}
.cid-tqihZ7MUFJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tqihZ7MUFJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tqihZ7MUFJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tqihZ7MUFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-tqihZ7MUFJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tqihZ7MUFJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tqihZ7MUFJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tqihZ7MUFJ .navbar-buttons {
  text-align: center;
}
.cid-tqihZ7MUFJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tqihZ7MUFJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tqihZ7MUFJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tqihZ7MUFJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tqihZ7MUFJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tqihZ7MUFJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tqihZ7MUFJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqihZ7MUFJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tqihZ7MUFJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tqihZ7MUFJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tqihZ7MUFJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tqihZ7MUFJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqihZ7MUFJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tqihZ7MUFJ .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-tqihZ7MUFJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tqihZ7MUFJ .navbar {
    height: 77px;
  }
  .cid-tqihZ7MUFJ .navbar.opened {
    height: auto;
  }
  .cid-tqihZ7MUFJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqihZ8lROm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tqihZ8lROm .carousel {
  height: 500px;
}
.cid-tqihZ8lROm .carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-tqihZ8lROm .carousel-item,
.cid-tqihZ8lROm .carousel-inner {
  height: 500px;
}
.cid-tqihZ8lROm .mbr-overlay {
  z-index: 1;
}
.cid-tqihZ8lROm .carousel-caption {
  bottom: 40px;
}
.cid-tqihZ8lROm .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tqihZ8lROm .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tqihZ8lROm .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-tqihZ8lROm .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tqihZ8lROm .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tqihZ8lROm .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-tqihZ8lROm .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tqihZ8lROm .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tqihZ8lROm .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqihZ8lROm .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqihZ8lROm .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tqihZ8lROm .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tqihZ8lROm .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tqihZ8lROm .carousel-indicators li.active,
.cid-tqihZ8lROm .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tqihZ8lROm .carousel-indicators li::after,
.cid-tqihZ8lROm .carousel-indicators li::before {
  content: none;
}
.cid-tqihZ8lROm .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tqihZ8lROm .carousel-indicators {
    display: none !important;
  }
}
.cid-tqihZ8lROm P {
  color: #b0f30a;
}
.cid-tqihZ8U43x {
  padding-top: 45px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-11-1920x1280.jpg");
}
.cid-tqihZ8U43x .mbr-text {
  color: #767676;
}
.cid-tqihZ8U43x img {
  width: 100%;
}
.cid-tqihZ8U43x .card-img {
  margin-bottom: 0rem;
}
.cid-tqihZ8U43x .card-wrapper {
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
}
.cid-tqihZ8U43x .card-box {
  padding: 2rem 1rem;
}
.cid-tqihZ8U43x p {
  font-weight: 400;
}
.cid-tqihZ8U43x .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tqihZ8U43x .card {
    margin-bottom: 2rem;
  }
}
.cid-tqihZ8U43x .mbr-text,
.cid-tqihZ8U43x .mbr-section-btn {
  text-align: center;
}
.cid-tqihZ8U43x .card-title,
.cid-tqihZ8U43x .card-img {
  text-align: center;
}
.cid-tqihZ9l383 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-17-1920x1280.jpg");
}
.cid-tqihZ9l383 .price-term {
  vertical-align: top;
}
@media (min-width: 1200px) {
  .cid-tqihZ9l383 .container {
    max-width: 1300px;
    padding: 0 2rem;
  }
}
.cid-tqihZ9l383 h4 {
  margin: 0;
}
.cid-tqihZ9l383 .card1 {
  background: #4f4943;
}
.cid-tqihZ9l383 .card2 {
  background: #8bb621;
}
.cid-tqihZ9l383 .icon {
  font-size: 4rem;
  color: #181818;
  display: inline-block;
}
@media (min-width: 767px) {
  .cid-tqihZ9l383 .center-card {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    padding: 0;
    z-index: 10;
    background: #8bb621;
    border-radius: 30px;
  }
}
.cid-tqihZ9l383 .plan-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
  padding: 0 1rem;
}
.cid-tqihZ9l383 .plan-item .mbr-iconfont {
  margin-left: 2rem;
  font-size: 18px;
  position: relative;
  top: 8px;
}
.cid-tqihZ9l383 .plan-item p {
  margin: 0;
  padding: 6px 0;
  font-weight: 500;
  width: 100%;
}
.cid-tqihZ9l383 .plan-body .mbr-section-btn {
  padding: 44px 0 0;
}
.cid-tqihZ9l383 .plan-body .mbr-section-btn .btn {
  margin-bottom: 14px;
}
.cid-tqihZ9l383 .plan-header {
  padding: 2rem 2rem 0rem 2rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.cid-tqihZ9l383 .plan-body {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 1rem 1rem;
}
.cid-tqihZ9l383 .plan-price {
  padding: 2rem 1rem;
}
.cid-tqihZ9l383 .plan {
  word-break: break-word;
  position: relative;
  max-width: 400px;
  margin-bottom: 1rem;
}
.cid-tqihZ9l383 .row {
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tqihZ9l383 .price-value,
.cid-tqihZ9l383 .price-value2 {
  vertical-align: top;
}
@media (max-width: 992px) {
  .cid-tqihZ9l383 .plan {
    margin-bottom: 3rem;
  }
  .cid-tqihZ9l383 .content {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqihZ9l383 .plan-price {
    padding: 2rem 1rem;
  }
  .cid-tqihZ9l383 .plan-body {
    padding: 0;
  }
  .cid-tqihZ9l383 .plan-header {
    padding: 2rem 1rem;
  }
}
.cid-tqihZ9l383 .plan-title {
  color: #f2f2f4;
}
.cid-tqihZ9l383 .plan-title2 {
  color: #ffffff;
}
.cid-tqihZ9l383 .month2,
.cid-tqihZ9l383 .plan-header {
  color: #ffffff;
  text-align: center;
}
.cid-tqihZ9l383 .item2 {
  color: #ffffff;
}
.cid-tqihZ9l383 .price-figure2 {
  color: #ffffff;
}
.cid-tqihZ9l383 .price-value2 {
  color: #ffffff;
}
.cid-tqihZ9l383 H2 {
  color: #ffffff;
}
.cid-tqihZ9l383 .plan-item p,
.cid-tqihZ9l383 .plan-item .mbr-iconfont {
  color: #ffffff;
}
.cid-tqihZ9l383 .price-figure,
.cid-tqihZ9l383 .plan-price {
  color: #f2f2f4;
}
.cid-tqihZ9l383 .month,
.cid-tqihZ9l383 .plan-header {
  color: #aff0f6;
}
.cid-tqihZ9l383 .price-figure2,
.cid-tqihZ9l383 .plan-price {
  text-align: center;
}
.cid-tqihZ9l383 .mbr-text,
.cid-tqihZ9l383 .mbr-section-btn,
.cid-tqihZ9l383 .content {
  color: #ffffff;
}
.cid-tqihZaifEu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/capa2-768x508.jpg");
}
.cid-tqihZaifEu .container-fluid {
  padding: 0 3rem;
}
.cid-tqihZaifEu .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-tqihZaifEu .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tqihZaifEu .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tqihZaifEu .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tqihZaifEu .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-tqihZaifEu a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tqihZaifEu a.close:hover {
  color: #ffffff;
}
.cid-tqihZaifEu svg {
  transition: all 0.5s ease-in;
}
.cid-tqihZaifEu svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-tqihZaifEu svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-tqihZaifEu svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-tqihZaifEu .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tqihZaGv3B {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #f2f2f4;
}
.cid-tqihZaGv3B img {
  width: 180px;
  margin: auto;
}
.cid-tqihZaGv3B .card {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-tqihZaGv3B H1 {
  color: #ed6436;
}
.cid-tqihZb70eV {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #f2f2f4;
}
.cid-tqihZb70eV img {
  width: 180px;
  margin: auto;
}
.cid-tqihZb70eV .card {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.cid-tqihZb70eV H1 {
  color: #ed6436;
}
.cid-tqihZbvv6G {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #c1c1c1;
}
.cid-tqihZbvv6G .mbr-section-title {
  letter-spacing: 0.1em;
  color: #ed6436;
}
.cid-tqihZbvv6G .mbr-section-subtitle {
  color: #000000;
  letter-spacing: 0.03em;
}
.cid-tqihZbvv6G .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-tqihZbvv6G .wrap-img {
  padding-bottom: 1rem;
}
.cid-tqihZbvv6G .wrap-img img {
  max-width: 100%;
}
.cid-tqihZbvv6G .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tqihZc5UTW {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/mbr-1280x854.jpg");
}
.cid-tqihZc5UTW .carousel {
  z-index: 2;
  position: relative;
}
.cid-tqihZc5UTW .user {
  padding: 0 !important;
}
.cid-tqihZc5UTW .mbr-iconfont {
  font-size: 3rem;
  color: #181818 !important;
}
.cid-tqihZc5UTW .user_image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  position: relative;
}
.cid-tqihZc5UTW .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tqihZc5UTW .user_image:before {
  content: '';
  position: absolute;
  height: 198px;
  width: 198px;
  left: 0px;
  top: 0px;
  background: transparent;
  border-radius: 100%;
  z-index: 0;
}
.cid-tqihZc5UTW .carousel-item {
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tqihZc5UTW .carousel-item.active,
.cid-tqihZc5UTW .carousel-item-next,
.cid-tqihZc5UTW .carousel-item-prev {
  display: flex;
}
.cid-tqihZc5UTW .user_name {
  margin: 0;
}
.cid-tqihZc5UTW .carousel-controls a {
  font-size: 2rem;
}
.cid-tqihZc5UTW .carousel-controls a span {
  position: absolute;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  top: 100px;
  padding: 10px;
  border-radius: 50%;
  color: #383838;
  background: transparent;
  opacity: 0.5;
}
.cid-tqihZc5UTW .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-tqihZc5UTW ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-tqihZc5UTW .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #383838;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
  position: relative;
}
.cid-tqihZc5UTW .carousel-indicators li:hover {
  opacity: 1;
}
.cid-tqihZc5UTW .carousel-indicators .active {
  opacity: 1;
  width: 8px;
  height: 8px;
}
.cid-tqihZc5UTW .carousel-indicators .active:before {
  content: '';
  position: absolute;
  height: 14px;
  width: 14px;
  left: -3px;
  top: -3px;
  background: transparent;
  border-radius: 100%;
  z-index: -1;
}
.cid-tqihZd4r10 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #0b1b3f;
}
.cid-tqihZd4r10 .google-map {
  height: 25rem;
  position: relative;
}
.cid-tqihZd4r10 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tqihZd4r10 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tqihZd4r10 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tqihZd4r10 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tqihZd4r10 .wrapper {
  margin-top: -10rem;
  background: #e4d295;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tqihZd4r10 .form-container {
  padding: 3rem;
}
.cid-tqihZd4r10 .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-tqihZd4r10 .content-panel {
  padding: 2rem;
  background: linear-gradient(45deg, #0f7699, #4f4943);
  height: 100%;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  overflow: hidden;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tqihZd4r10 .mbr-text {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-tqihZd4r10 .form-group,
  .cid-tqihZd4r10 .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-tqihZd4r10 .form-control {
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
  padding: .5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #efefef;
  color: #565656;
  border-radius: .25rem;
  font-size: 1rem;
  line-height: 1.43;
}
.cid-tqihZd4r10 .form-control:focus,
.cid-tqihZd4r10 .form-control:hover {
  border: 1px solid #e8e8e8;
  background-color: #ffffff;
}
.cid-tqihZd4r10 textarea.form-control {
  min-height: 170px;
}
.cid-tqihZd4r10 .form-group {
  margin-bottom: 1rem;
}
.cid-tqihZd4r10 input::-webkit-input-placeholder,
.cid-tqihZd4r10 textarea::-webkit-input-placeholder {
  color: #565656;
}
.cid-tqihZd4r10 input:-moz-placeholder,
.cid-tqihZd4r10 textarea:-moz-placeholder {
  color: #565656;
}
.cid-tqihZd4r10 .jq-selectbox li,
.cid-tqihZd4r10 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-tqihZd4r10 .jq-selectbox li:hover,
.cid-tqihZd4r10 .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-tqihZd4r10 .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
.cid-tqihZd4r10 .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tqihZd4r10 .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-tqihZd4r10 .text-block {
    margin-bottom: 2rem;
  }
  .cid-tqihZd4r10 .wrapper {
    margin-top: 0;
  }
}
.cid-tqihZd4r10 .social-list {
  margin-top: auto;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tqihZd4r10 .social-list .mbr-iconfont-social {
  font-size: 1.2rem;
  color: #fff;
}
.cid-tqihZd4r10 .social-list .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tqihZd4r10 .social-list .soc-item {
  margin: 15px 3px 0px 3px;
}
.cid-tqihZd4r10 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tqihZd4r10 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tqihZd4r10 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tqihZd4r10 .mbr-text,
.cid-tqihZd4r10 .social-list .mbr-iconfont-social {
  color: #a0ed19;
}
.cid-tqihZdBB34 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-tqihZdBB34 .media-container-row .mbr-text {
  text-align: center;
}
.cid-txGIqh7z6a .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-txGIqh7z6a .nav-item:focus,
.cid-txGIqh7z6a .nav-link:focus {
  outline: none;
}
.cid-txGIqh7z6a .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-txGIqh7z6a .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-txGIqh7z6a .dropdown .dropdown-menu .dropdown-item:hover,
.cid-txGIqh7z6a .dropdown .dropdown-menu .dropdown-item:active,
.cid-txGIqh7z6a .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-txGIqh7z6a .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-txGIqh7z6a .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-txGIqh7z6a .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-txGIqh7z6a .navbar-caption:hover {
  color: inherit!important;
}
.cid-txGIqh7z6a .container {
  max-width: 1380px;
}
.cid-txGIqh7z6a .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-txGIqh7z6a .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-txGIqh7z6a .nav-link:hover,
.cid-txGIqh7z6a .nav-link:active,
.cid-txGIqh7z6a .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-txGIqh7z6a .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-txGIqh7z6a .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-txGIqh7z6a .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-txGIqh7z6a .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-txGIqh7z6a .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-txGIqh7z6a .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-txGIqh7z6a .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-txGIqh7z6a .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-txGIqh7z6a .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-txGIqh7z6a .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-txGIqh7z6a .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-txGIqh7z6a .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-txGIqh7z6a .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-txGIqh7z6a .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-txGIqh7z6a .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-txGIqh7z6a .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-txGIqh7z6a .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-txGIqh7z6a .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-txGIqh7z6a .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-txGIqh7z6a .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-txGIqh7z6a .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-txGIqh7z6a .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-txGIqh7z6a .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-txGIqh7z6a .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-txGIqh7z6a .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-txGIqh7z6a .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-txGIqh7z6a .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-txGIqh7z6a .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-txGIqh7z6a .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-txGIqh7z6a .icons-menu span {
  color: #f7ed4a !important;
}
.cid-txGIqh7z6a .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-txGIqh7z6a .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-txGIqh7z6a .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-txGIqh7z6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-txGIqh7z6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-txGIqh7z6a .dropdown-item.active,
.cid-txGIqh7z6a .dropdown-item:active {
  background-color: transparent;
}
.cid-txGIqh7z6a .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-txGIqh7z6a .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-txGIqh7z6a .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-txGIqh7z6a .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-txGIqh7z6a .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-txGIqh7z6a .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-txGIqh7z6a ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-txGIqh7z6a .navbar-buttons {
  text-align: center;
}
.cid-txGIqh7z6a button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-txGIqh7z6a button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-txGIqh7z6a button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-txGIqh7z6a button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-txGIqh7z6a button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-txGIqh7z6a button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-txGIqh7z6a nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txGIqh7z6a nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-txGIqh7z6a nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-txGIqh7z6a nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-txGIqh7z6a .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-txGIqh7z6a a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-txGIqh7z6a .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-txGIqh7z6a .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-txGIqh7z6a .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txGIqh7z6a .navbar {
    height: 77px;
  }
  .cid-txGIqh7z6a .navbar.opened {
    height: auto;
  }
  .cid-txGIqh7z6a .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-txGIqhDwTl {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/capa4-950x604.jpg");
}
.cid-txGIqhDwTl .container-fluid {
  padding: 0 3rem;
}
.cid-txGIqhDwTl .mbr-media span {
  font-size: 48px;
  cursor: pointer;
  background-color: #ffffff;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #353535;
}
.cid-txGIqhDwTl .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-txGIqhDwTl .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-txGIqhDwTl .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-txGIqhDwTl .modalWindow .modalWindow-video {
  height: 44.9943757vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-txGIqhDwTl a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-txGIqhDwTl a.close:hover {
  color: #ffffff;
}
.cid-txGIqhDwTl svg {
  transition: all 0.5s ease-in;
}
.cid-txGIqhDwTl svg .blick {
  transiton: opacity 0.5s ease-in;
  opacity: 1;
}
.cid-txGIqhDwTl svg:hover {
  cursor: pointer;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.cid-txGIqhDwTl svg:hover .blick {
  transition: opacity 0.5s ease-in;
  opacity: 0;
}
@media (max-width: 767px) {
  .cid-txGIqhDwTl .container-fluid {
    padding: 0 1rem;
  }
}
.cid-txGIqi5Vhx {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #cdd4f6;
}
.cid-txGIqi5Vhx .mbr-shop {
  display: table;
  width: 100%;
}
.cid-txGIqi5Vhx .mbr-shop .row {
  margin: 0;
}
.cid-txGIqi5Vhx .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-txGIqi5Vhx .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-txGIqi5Vhx .categories {
  padding: 0;
}
@media (min-width: 992px) {
  .cid-txGIqi5Vhx .mbr-gallery-item {
    width: 33.33%;
  }
}
.cid-txGIqi5Vhx li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-txGIqi5Vhx .container {
  max-width: 1400px;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter ul li:before {
  content: none;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-txGIqi5Vhx .sidebar_wraper {
  padding: 1rem 0;
}
.cid-txGIqi5Vhx .galleryItem {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  overflow: hidden;
}
.cid-txGIqi5Vhx .item-title {
  padding-bottom: 0.4rem;
  font-weight: 700;
}
.cid-txGIqi5Vhx .display-5 {
  font-size: 1.4rem;
}
.cid-txGIqi5Vhx .shop-item-price,
.cid-txGIqi5Vhx .oldprice {
  font-size: 1.1rem;
  font-weight: 600!important;
}
.cid-txGIqi5Vhx .mbr-shop .sidebar-background:after {
  background: transparent!important;
  background-color: rgba(0, 0, 0, 0.05);
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  top: -20px;
  right: 3px;
}
.cid-txGIqi5Vhx .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-txGIqi5Vhx .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-txGIqi5Vhx .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-txGIqi5Vhx .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-txGIqi5Vhx .mbr-shop .hide-modal {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-txGIqi5Vhx .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-txGIqi5Vhx .mbr-shop .filter-by-pu,
.cid-txGIqi5Vhx .mbr-shop .filter-by-pd,
.cid-txGIqi5Vhx .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-txGIqi5Vhx .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-txGIqi5Vhx .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem h4,
.cid-txGIqi5Vhx .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem h5,
.cid-txGIqi5Vhx .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem p,
.cid-txGIqi5Vhx .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-txGIqi5Vhx .mbr-shop .item-button {
  text-align: center;
}
.cid-txGIqi5Vhx .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-txGIqi5Vhx .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-txGIqi5Vhx .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-txGIqi5Vhx .mbr-shop .sidebar-block {
  position: relative;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-txGIqi5Vhx .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #5b686b;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item__hided h4,
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item__hided h5,
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 10px 0 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-txGIqi5Vhx .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-txGIqi5Vhx .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-txGIqi5Vhx .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-txGIqi5Vhx .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-txGIqi5Vhx .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-txGIqi5Vhx .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-txGIqi5Vhx .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-txGIqi5Vhx .mbr-shop .range-controls {
  position: relative;
}
.cid-txGIqi5Vhx .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-txGIqi5Vhx .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-txGIqi5Vhx .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-txGIqi5Vhx .mbr-shop .toggle:hover,
.cid-txGIqi5Vhx .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-txGIqi5Vhx .mbr-shop .min-toggle {
  left: 0;
}
.cid-txGIqi5Vhx .mbr-shop .max-toggle {
  right: 0;
}
.cid-txGIqi5Vhx .mbr-shop .hided-by-price {
  display: none;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-txGIqi5Vhx .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-txGIqi5Vhx .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-txGIqi5Vhx .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-txGIqi5Vhx .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-txGIqi5Vhx .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-txGIqi5Vhx .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-txGIqi5Vhx .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-txGIqi5Vhx .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-txGIqi5Vhx .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-txGIqi5Vhx .mbr-shop .shop-items .onsale,
.cid-txGIqi5Vhx .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-txGIqi5Vhx .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-txGIqi5Vhx .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-txGIqi5Vhx .mbr-shop .price-range {
  display: inline-block;
}
.cid-txGIqi5Vhx .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-txGIqi5Vhx .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-txGIqi5Vhx .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-txGIqi5Vhx .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-txGIqi5Vhx .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-txGIqi5Vhx .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-txGIqi5Vhx .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-txGIqi5Vhx .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-txGIqi5Vhx .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-txGIqi5Vhx .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-txGIqi5Vhx .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-txGIqi5Vhx .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item {
    width: 50%;
  }
  .cid-txGIqi5Vhx .mbr-shop__row {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .cid-txGIqi5Vhx .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-txGIqi5Vhx .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-txGIqi5Vhx .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-txGIqi5Vhx .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-txGIqi5Vhx .wrapper-shop-items,
  .cid-txGIqi5Vhx .mbr-shop__row {
    padding: 0;
  }
  .cid-txGIqi5Vhx .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-txGIqi5Vhx .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-txGIqi5Vhx .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-txGIqi5Vhx .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-txGIqi5Vhx .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-txGIqi5Vhx .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-txGIqi5Vhx .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-txGIqi5Vhx .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-txGIqi5Vhx .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-txGIqi5Vhx .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-txGIqi5Vhx .range-controls {
  display: block !important;
}
.cid-txGIqi5Vhx .sort-buttons {
  display: block !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-txGIqi5Vhx .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-txGIqi5Vhx LI {
  text-align: center;
}
.cid-txGIqi5Vhx .sidebar-title {
  text-align: center;
}
.cid-txGIqi5Vhx .card-description UL {
  text-align: right;
}
.cid-txGIqjeyjp {
  padding-top: 120px;
  padding-bottom: 135px;
  position: relative;
  background-image: url("../../../assets/images/mbr-1920x952.jpg");
}
.cid-txGIqjeyjp .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-txGIqjeyjp a.panel-title {
  display: flex;
  align-items: center;
}
.cid-txGIqjeyjp a.panel-title:focus {
  text-decoration: none !important;
}
.cid-txGIqjeyjp h6 {
  font-weight: 700;
  margin-bottom: 0;
}
.cid-txGIqjeyjp .mbr-iconfont {
  padding-right: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #b0f30a;
}
.cid-txGIqjeyjp H6 {
  color: #4479d9;
}
.cid-txGIqjL8M1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f2f2f4;
}
.cid-txGIqjL8M1 .mbr-section-subtitle {
  color: #767676;
}
.cid-txGIqjL8M1 .container-table {
  margin: 0 auto;
}
.cid-txGIqjL8M1 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-txGIqjL8M1 .dataTables_wrapper {
  display: block;
}
.cid-txGIqjL8M1 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-txGIqjL8M1 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-txGIqjL8M1 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-txGIqjL8M1 table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #cccccc;
  transition: all .2s;
}
.cid-txGIqjL8M1 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-txGIqjL8M1 table td {
  border: 1px solid #cccccc;
}
.cid-txGIqjL8M1 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-txGIqjL8M1 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-txGIqjL8M1 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-txGIqjL8M1 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-txGIqjL8M1 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-txGIqjL8M1 .dataTables_filter {
    text-align: center;
  }
  .cid-txGIqjL8M1 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-txGIqjL8M1 .head-item,
.cid-txGIqjL8M1 .body-item {
  text-align: center;
}
.cid-txGIqlTszf {
  padding-top: 15px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpg");
}
.cid-txGIqlTszf .menu-item {
  padding: 0 1rem 1rem 1rem;
}
.cid-txGIqlTszf .menu-item .special-label {
  display: none;
}
.cid-txGIqlTszf .menu-item.special-item {
  padding-bottom: 0;
  margin-bottom: 1rem;
  border: 2px solid #ff3366;
}
.cid-txGIqlTszf .menu-item.special-item .special-label {
  display: block;
  width: 100%;
  word-break: break-word;
}
.cid-txGIqlTszf .menu-item.special-item .special-label .label-text {
  max-width: 100%;
  background: #ff3366;
  padding: .5rem 1rem;
  display: inline-block;
}
.cid-txGIqlTszf .special-label {
  color: #fff;
}
.cid-txGIqlTszf .menu-box {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-txGIqlTszf .menu-box .box-text {
  word-break: break-word;
  padding-right: 2rem;
  width: 100%;
}
.cid-txGIqlTszf .menu-box .box-price {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-txGIqlTszf .menu-row .menu-item:last-child {
  margin-bottom: 2rem;
}
.cid-txGIqlTszf .menu-row {
  margin: 0;
}
.cid-txGIqlTszf .group-title {
  color: #aff0f6;
  font-weight: bold;
}
.cid-txGIqlTszf SPAN {
  color: #0b1b3f;
}
.cid-txGIqlTszf .box-text {
  color: #0b1b3f;
}
.cid-txGIqlTszf .mbr-section-title,
.cid-txGIqlTszf .ornament {
  text-align: center;
  color: #0f7699;
}
.cid-txGIqmJkpm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/capa2-768x508.jpg");
}
.cid-txGIqmJkpm *:focus {
  outline: none;
}
.cid-txGIqmJkpm .form-group {
  margin-bottom: 2rem;
}
.cid-txGIqmJkpm .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #000000;
  color: #000000;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-txGIqmJkpm .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-txGIqmJkpm .form-control::-webkit-input-placeholder {
  color: #000000;
}
.cid-txGIqmJkpm .form-control::-moz-placeholder {
  color: #000000;
}
.cid-txGIqmJkpm .form-control:-ms-input-placeholder {
  color: #000000;
}
.cid-txGIqmJkpm .form-control:-moz-placeholder {
  color: #000000;
}
.cid-txGIqmJkpm input.form-control {
  padding: 1px 0;
}
.cid-txGIqmJkpm .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-txGIqmJkpm .soc-item .socicon {
  font-size: 1.5rem;
  color: #000000;
  opacity: 1;
}
.cid-txGIqmJkpm .soc-item .socicon:hover {
  opacity: .5;
}
.cid-txGIqmJkpm .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-txGIqmJkpm .first-column,
  .cid-txGIqmJkpm .form-1 {
    text-align: center;
  }
}
.cid-txGIqnjbm0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-txGIqnjbm0 .media-container-row .mbr-text {
  text-align: center;
}
.cid-sYnAsy660M .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-sYnAsy660M .nav-item:focus,
.cid-sYnAsy660M .nav-link:focus {
  outline: none;
}
.cid-sYnAsy660M .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-sYnAsy660M .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-sYnAsy660M .dropdown .dropdown-menu .dropdown-item:hover,
.cid-sYnAsy660M .dropdown .dropdown-menu .dropdown-item:active,
.cid-sYnAsy660M .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-sYnAsy660M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sYnAsy660M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sYnAsy660M .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-sYnAsy660M .navbar-caption:hover {
  color: inherit!important;
}
.cid-sYnAsy660M .container {
  max-width: 1380px;
}
.cid-sYnAsy660M .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-sYnAsy660M .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-sYnAsy660M .nav-link:hover,
.cid-sYnAsy660M .nav-link:active,
.cid-sYnAsy660M .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-sYnAsy660M .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-sYnAsy660M .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-sYnAsy660M .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sYnAsy660M .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sYnAsy660M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sYnAsy660M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sYnAsy660M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-sYnAsy660M .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sYnAsy660M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sYnAsy660M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sYnAsy660M .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-sYnAsy660M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sYnAsy660M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sYnAsy660M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sYnAsy660M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sYnAsy660M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sYnAsy660M .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sYnAsy660M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sYnAsy660M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sYnAsy660M .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-sYnAsy660M .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sYnAsy660M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sYnAsy660M .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sYnAsy660M .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sYnAsy660M .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sYnAsy660M .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sYnAsy660M .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-sYnAsy660M .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sYnAsy660M .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sYnAsy660M .icons-menu span {
  color: #f7ed4a !important;
}
.cid-sYnAsy660M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sYnAsy660M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sYnAsy660M .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-sYnAsy660M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sYnAsy660M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sYnAsy660M .dropdown-item.active,
.cid-sYnAsy660M .dropdown-item:active {
  background-color: transparent;
}
.cid-sYnAsy660M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sYnAsy660M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sYnAsy660M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sYnAsy660M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-sYnAsy660M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sYnAsy660M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sYnAsy660M ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sYnAsy660M .navbar-buttons {
  text-align: center;
}
.cid-sYnAsy660M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sYnAsy660M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-sYnAsy660M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sYnAsy660M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sYnAsy660M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sYnAsy660M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sYnAsy660M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYnAsy660M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sYnAsy660M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sYnAsy660M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sYnAsy660M .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sYnAsy660M a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sYnAsy660M .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sYnAsy660M .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-sYnAsy660M .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sYnAsy660M .navbar {
    height: 77px;
  }
  .cid-sYnAsy660M .navbar.opened {
    height: auto;
  }
  .cid-sYnAsy660M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sYnAsywMu7 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/placa-amn.fw-1600x874.png");
}
.cid-sYnAsywMu7 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-sYnAsywMu7 .number {
  color: #ffffff;
}
.cid-sYnAsywMu7 .period {
  display: block;
}
.cid-sYnAsywMu7 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-sYnAsywMu7 .period {
    font-size: 0.8rem;
  }
}
.cid-sYnAsywMu7 .btn {
  height: 100%;
  margin: 0;
}
.cid-sYnAsywMu7 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-sYnAsywMu7 .mbr-section-title {
  color: #ffffff;
}
.cid-sYnAsywMu7 .mbr-text {
  color: #ffffff;
}
.cid-sYnAsywMu7 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-sYnAsywMu7 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sYnAsywMu7 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-sYnAsywMu7 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-sYnAsywMu7 H3 {
  color: #ffffff;
  text-align: center;
}
.cid-sYnAsywMu7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYnAsyR0PG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f3c10a;
}
.cid-sYnAsyR0PG .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sYnAsyR0PG .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sYnAsyR0PG .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sYnAsyR0PG .mbr-text {
  color: #6d7a8c;
}
.cid-sYnAsyR0PG .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sYnAsyR0PG .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sYnAsyR0PG .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sYnAsyR0PG .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sYnAsyR0PG .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sYnAsyR0PG .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sYnAsyR0PG .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sYnAsyR0PG .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sYnAsyR0PG .separator,
  .cid-sYnAsyR0PG .sep-holder,
  .cid-sYnAsyR0PG .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sYnAsyR0PG .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sYnAsyR0PG .mbr-text,
.cid-sYnAsyR0PG .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sYnAsyR0PG .mbr-section-subtitle,
.cid-sYnAsyR0PG .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sYnAsyR0PG .mbr-section-title,
.cid-sYnAsyR0PG .separator,
.cid-sYnAsyR0PG .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sYnAsz8m5a {
  background-image: url("../../../assets/images/area33.fw-803x813.png");
}
.cid-sYnAsz8m5a .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sYnAsz8m5a .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sYnAsz8m5a .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sYnAsz8m5a .mbr-text {
  color: #ffffff;
}
.cid-sYnAsz8m5a .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sYnAsz8m5a .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sYnAsz8m5a .mbr-section-btn {
  display: flex;
}
.cid-sYnAsz8m5a .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sYnAsz8m5a .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sYnAsz8m5a .mbr-section-btn.display-4,
.cid-sYnAsz8m5a .btn.display-4 {
  font-size: 12px !important;
}
.cid-sYnAsz8m5a .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sYnAsz8m5a .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sYnAsz8m5a .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sYnAsz8m5a .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sYnAsz8m5a .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sYnAsz8m5a .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sYnAsz8m5a .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sYnAsz8m5a .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sYnAsz8m5a .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sYnAsz8m5a .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sYnAsz8m5a a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sYnAsz8m5a a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sYnAsz8m5a .separator,
  .cid-sYnAsz8m5a .sep-holder,
  .cid-sYnAsz8m5a .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sYnAsz8m5a .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sYnAsz8m5a .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sYnAsz8m5a .mbr-section-subtitle,
.cid-sYnAsz8m5a .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sYnAsz8m5a .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sYnAszqwDN {
  background-image: url("../../../assets/images/mapa.fw-1600x874.png");
}
.cid-sYnAszqwDN .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-sYnAszqwDN .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-sYnAszqwDN .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-sYnAszqwDN .mbr-text {
  color: #ffffff;
}
.cid-sYnAszqwDN .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-sYnAszqwDN .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-sYnAszqwDN .mbr-section-btn {
  display: flex;
}
.cid-sYnAszqwDN .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-sYnAszqwDN .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-sYnAszqwDN .mbr-section-btn.display-4,
.cid-sYnAszqwDN .btn.display-4 {
  font-size: 12px !important;
}
.cid-sYnAszqwDN .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-sYnAszqwDN .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-sYnAszqwDN .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-sYnAszqwDN .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-sYnAszqwDN .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-sYnAszqwDN .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-sYnAszqwDN .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-sYnAszqwDN .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sYnAszqwDN .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sYnAszqwDN .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sYnAszqwDN a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-sYnAszqwDN a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-sYnAszqwDN .separator,
  .cid-sYnAszqwDN .sep-holder,
  .cid-sYnAszqwDN .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sYnAszqwDN .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-sYnAszqwDN .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-sYnAszqwDN .mbr-section-subtitle,
.cid-sYnAszqwDN .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-sYnAszqwDN .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-sYnAszIdSy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYnAszIdSy .video-wrapper iframe {
  width: 100%;
}
.cid-sYnAszIdSy .mbr-section-title,
.cid-sYnAszIdSy .mbr-section-subtitle,
.cid-sYnAszIdSy .mbr-text {
  text-align: center;
}
.cid-sYnAszIdSy .mbr-section-subtitle {
  text-align: center;
}
.cid-sYnAszIdSy .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYnAszW0RV {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-sYnAszW0RV .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-sYnAszW0RV .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-sYnAszW0RV .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-sYnAszW0RV .mbr-text {
  color: #6d7a8c;
}
.cid-sYnAszW0RV .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-sYnAszW0RV .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-sYnAszW0RV .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-sYnAszW0RV .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-sYnAszW0RV .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-sYnAszW0RV .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-sYnAszW0RV .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-sYnAszW0RV .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-sYnAszW0RV .separator,
  .cid-sYnAszW0RV .sep-holder,
  .cid-sYnAszW0RV .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-sYnAszW0RV .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-sYnAszW0RV .mbr-text,
.cid-sYnAszW0RV .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-sYnAszW0RV .mbr-section-subtitle,
.cid-sYnAszW0RV .mbr-section-title .accent-word {
  text-align: left;
}
.cid-sYnAszW0RV .mbr-section-title,
.cid-sYnAszW0RV .separator,
.cid-sYnAszW0RV .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-sYnAsAeOCA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-sYnAsAeOCA .media-container-row .mbr-text {
  text-align: center;
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .nav-item:focus,
.cid-tz9wuKZzrA .nav-link:focus {
  outline: none;
}
.cid-tz9wuKZzrA .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .dropdown .dropdown-menu .dropdown-item:hover,
.cid-tz9wuKZzrA .dropdown .dropdown-menu .dropdown-item:active,
.cid-tz9wuKZzrA .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-tz9wuKZzrA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tz9wuKZzrA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .navbar-caption:hover {
  color: inherit!important;
}
.cid-tz9wuKZzrA .container {
  max-width: 1380px;
}
.cid-tz9wuKZzrA .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-tz9wuKZzrA .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-tz9wuKZzrA .nav-link:hover,
.cid-tz9wuKZzrA .nav-link:active,
.cid-tz9wuKZzrA .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-tz9wuKZzrA .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-tz9wuKZzrA .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-tz9wuKZzrA .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-tz9wuKZzrA .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tz9wuKZzrA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tz9wuKZzrA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tz9wuKZzrA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-tz9wuKZzrA .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tz9wuKZzrA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tz9wuKZzrA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tz9wuKZzrA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tz9wuKZzrA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tz9wuKZzrA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tz9wuKZzrA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tz9wuKZzrA .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tz9wuKZzrA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tz9wuKZzrA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tz9wuKZzrA .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-tz9wuKZzrA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tz9wuKZzrA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tz9wuKZzrA .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tz9wuKZzrA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tz9wuKZzrA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tz9wuKZzrA .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tz9wuKZzrA .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-tz9wuKZzrA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tz9wuKZzrA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tz9wuKZzrA .icons-menu span {
  color: #f7ed4a !important;
}
.cid-tz9wuKZzrA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tz9wuKZzrA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tz9wuKZzrA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tz9wuKZzrA .dropdown-item.active,
.cid-tz9wuKZzrA .dropdown-item:active {
  background-color: transparent;
}
.cid-tz9wuKZzrA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tz9wuKZzrA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tz9wuKZzrA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tz9wuKZzrA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-tz9wuKZzrA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tz9wuKZzrA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tz9wuKZzrA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tz9wuKZzrA .navbar-buttons {
  text-align: center;
}
.cid-tz9wuKZzrA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tz9wuKZzrA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-tz9wuKZzrA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tz9wuKZzrA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tz9wuKZzrA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tz9wuKZzrA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tz9wuKZzrA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tz9wuKZzrA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tz9wuKZzrA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tz9wuKZzrA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tz9wuKZzrA .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tz9wuKZzrA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tz9wuKZzrA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tz9wuKZzrA .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-tz9wuKZzrA .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tz9wuKZzrA .navbar {
    height: 77px;
  }
  .cid-tz9wuKZzrA .navbar.opened {
    height: auto;
  }
  .cid-tz9wuKZzrA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tz9wuLvv20 {
  background-image: url("../../../assets/images/imagem01-1280x720.jpg");
}
.cid-tz9wuLvv20 .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-tz9wuLvv20 .number {
  color: #ffffff;
}
.cid-tz9wuLvv20 .period {
  display: block;
}
.cid-tz9wuLvv20 .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-tz9wuLvv20 .period {
    font-size: 0.8rem;
  }
}
.cid-tz9wuLvv20 .btn {
  height: 100%;
  margin: 0;
}
.cid-tz9wuLvv20 .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-tz9wuLvv20 .mbr-section-title {
  color: #ffffff;
}
.cid-tz9wuLvv20 .mbr-text {
  color: #ffffff;
}
.cid-tz9wuLvv20 .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-tz9wuLvv20 .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tz9wuLvv20 .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-tz9wuLvv20 .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-tz9wuLvv20 H3 {
  color: #ffffff;
  text-align: center;
}
.cid-tz9wuLvv20 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tz9wuLSg8Z {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-tz9wuLSg8Z .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tz9wuLSg8Z .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-tz9wuLSg8Z .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tz9wuLSg8Z .mbr-text {
  color: #6d7a8c;
}
.cid-tz9wuLSg8Z .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-tz9wuLSg8Z .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-tz9wuLSg8Z .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-tz9wuLSg8Z .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-tz9wuLSg8Z .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-tz9wuLSg8Z .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tz9wuLSg8Z .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-tz9wuLSg8Z .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-tz9wuLSg8Z .separator,
  .cid-tz9wuLSg8Z .sep-holder,
  .cid-tz9wuLSg8Z .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tz9wuLSg8Z .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-tz9wuLSg8Z .mbr-text,
.cid-tz9wuLSg8Z .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-tz9wuLSg8Z .mbr-section-subtitle,
.cid-tz9wuLSg8Z .mbr-section-title .accent-word {
  text-align: left;
}
.cid-tz9wuLSg8Z .mbr-section-title,
.cid-tz9wuLSg8Z .separator,
.cid-tz9wuLSg8Z .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-tz9wuMf8Yj {
  background-image: url("../../../assets/images/imagem02-1280x720.jpg");
}
.cid-tz9wuMf8Yj .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tz9wuMf8Yj .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tz9wuMf8Yj .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tz9wuMf8Yj .mbr-text {
  color: #ffffff;
}
.cid-tz9wuMf8Yj .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tz9wuMf8Yj .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tz9wuMf8Yj .mbr-section-btn {
  display: flex;
}
.cid-tz9wuMf8Yj .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tz9wuMf8Yj .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tz9wuMf8Yj .mbr-section-btn.display-4,
.cid-tz9wuMf8Yj .btn.display-4 {
  font-size: 12px !important;
}
.cid-tz9wuMf8Yj .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tz9wuMf8Yj .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tz9wuMf8Yj .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tz9wuMf8Yj .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tz9wuMf8Yj .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tz9wuMf8Yj .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tz9wuMf8Yj .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tz9wuMf8Yj .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tz9wuMf8Yj .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tz9wuMf8Yj .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tz9wuMf8Yj a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tz9wuMf8Yj a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tz9wuMf8Yj .separator,
  .cid-tz9wuMf8Yj .sep-holder,
  .cid-tz9wuMf8Yj .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tz9wuMf8Yj .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tz9wuMf8Yj .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tz9wuMf8Yj .mbr-section-subtitle,
.cid-tz9wuMf8Yj .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tz9wuMf8Yj .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tz9wuMD5EX {
  background-image: url("../../../assets/images/imagem03-1280x720.jpg");
}
.cid-tz9wuMD5EX .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tz9wuMD5EX .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tz9wuMD5EX .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tz9wuMD5EX .mbr-text {
  color: #ffffff;
}
.cid-tz9wuMD5EX .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tz9wuMD5EX .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tz9wuMD5EX .mbr-section-btn {
  display: flex;
}
.cid-tz9wuMD5EX .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tz9wuMD5EX .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tz9wuMD5EX .mbr-section-btn.display-4,
.cid-tz9wuMD5EX .btn.display-4 {
  font-size: 12px !important;
}
.cid-tz9wuMD5EX .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tz9wuMD5EX .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tz9wuMD5EX .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tz9wuMD5EX .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tz9wuMD5EX .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tz9wuMD5EX .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tz9wuMD5EX .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tz9wuMD5EX .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tz9wuMD5EX .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tz9wuMD5EX .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tz9wuMD5EX a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tz9wuMD5EX a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tz9wuMD5EX .separator,
  .cid-tz9wuMD5EX .sep-holder,
  .cid-tz9wuMD5EX .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tz9wuMD5EX .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tz9wuMD5EX .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tz9wuMD5EX .mbr-section-subtitle,
.cid-tz9wuMD5EX .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tz9wuMD5EX .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1BPUlIo {
  background-image: url("../../../assets/images/imagem04-1280x720.jpg");
}
.cid-tza1BPUlIo .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1BPUlIo .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1BPUlIo .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1BPUlIo .mbr-text {
  color: #ffffff;
}
.cid-tza1BPUlIo .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1BPUlIo .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1BPUlIo .mbr-section-btn {
  display: flex;
}
.cid-tza1BPUlIo .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1BPUlIo .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1BPUlIo .mbr-section-btn.display-4,
.cid-tza1BPUlIo .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1BPUlIo .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1BPUlIo .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1BPUlIo .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1BPUlIo .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1BPUlIo .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1BPUlIo .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1BPUlIo .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1BPUlIo .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1BPUlIo .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1BPUlIo .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1BPUlIo a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1BPUlIo a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1BPUlIo .separator,
  .cid-tza1BPUlIo .sep-holder,
  .cid-tza1BPUlIo .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1BPUlIo .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1BPUlIo .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1BPUlIo .mbr-section-subtitle,
.cid-tza1BPUlIo .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1BPUlIo .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1GrV4Ip {
  background-image: url("../../../assets/images/imagem05-1280x720.jpg");
}
.cid-tza1GrV4Ip .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1GrV4Ip .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1GrV4Ip .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1GrV4Ip .mbr-text {
  color: #ffffff;
}
.cid-tza1GrV4Ip .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1GrV4Ip .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1GrV4Ip .mbr-section-btn {
  display: flex;
}
.cid-tza1GrV4Ip .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1GrV4Ip .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1GrV4Ip .mbr-section-btn.display-4,
.cid-tza1GrV4Ip .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1GrV4Ip .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1GrV4Ip .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1GrV4Ip .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1GrV4Ip .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1GrV4Ip .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1GrV4Ip .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1GrV4Ip .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1GrV4Ip .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1GrV4Ip .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1GrV4Ip .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1GrV4Ip a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1GrV4Ip a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1GrV4Ip .separator,
  .cid-tza1GrV4Ip .sep-holder,
  .cid-tza1GrV4Ip .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1GrV4Ip .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1GrV4Ip .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1GrV4Ip .mbr-section-subtitle,
.cid-tza1GrV4Ip .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1GrV4Ip .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1H6BIj4 {
  background-image: url("../../../assets/images/imagem06-1280x720.jpg");
}
.cid-tza1H6BIj4 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1H6BIj4 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1H6BIj4 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1H6BIj4 .mbr-text {
  color: #ffffff;
}
.cid-tza1H6BIj4 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1H6BIj4 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1H6BIj4 .mbr-section-btn {
  display: flex;
}
.cid-tza1H6BIj4 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1H6BIj4 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1H6BIj4 .mbr-section-btn.display-4,
.cid-tza1H6BIj4 .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1H6BIj4 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1H6BIj4 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1H6BIj4 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1H6BIj4 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1H6BIj4 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1H6BIj4 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1H6BIj4 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1H6BIj4 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1H6BIj4 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1H6BIj4 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1H6BIj4 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1H6BIj4 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1H6BIj4 .separator,
  .cid-tza1H6BIj4 .sep-holder,
  .cid-tza1H6BIj4 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1H6BIj4 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1H6BIj4 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1H6BIj4 .mbr-section-subtitle,
.cid-tza1H6BIj4 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1H6BIj4 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1HGYLUh {
  background-image: url("../../../assets/images/imagem07-1280x720.jpg");
}
.cid-tza1HGYLUh .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1HGYLUh .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1HGYLUh .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1HGYLUh .mbr-text {
  color: #ffffff;
}
.cid-tza1HGYLUh .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1HGYLUh .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1HGYLUh .mbr-section-btn {
  display: flex;
}
.cid-tza1HGYLUh .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1HGYLUh .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1HGYLUh .mbr-section-btn.display-4,
.cid-tza1HGYLUh .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1HGYLUh .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1HGYLUh .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1HGYLUh .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1HGYLUh .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1HGYLUh .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1HGYLUh .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1HGYLUh .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1HGYLUh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1HGYLUh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1HGYLUh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1HGYLUh a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1HGYLUh a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1HGYLUh .separator,
  .cid-tza1HGYLUh .sep-holder,
  .cid-tza1HGYLUh .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1HGYLUh .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1HGYLUh .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1HGYLUh .mbr-section-subtitle,
.cid-tza1HGYLUh .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1HGYLUh .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1IeXGcH {
  background-image: url("../../../assets/images/imagem08-1280x720.jpg");
}
.cid-tza1IeXGcH .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1IeXGcH .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1IeXGcH .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1IeXGcH .mbr-text {
  color: #ffffff;
}
.cid-tza1IeXGcH .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1IeXGcH .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1IeXGcH .mbr-section-btn {
  display: flex;
}
.cid-tza1IeXGcH .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1IeXGcH .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1IeXGcH .mbr-section-btn.display-4,
.cid-tza1IeXGcH .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1IeXGcH .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1IeXGcH .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1IeXGcH .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1IeXGcH .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1IeXGcH .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1IeXGcH .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1IeXGcH .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1IeXGcH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1IeXGcH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1IeXGcH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1IeXGcH a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1IeXGcH a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1IeXGcH .separator,
  .cid-tza1IeXGcH .sep-holder,
  .cid-tza1IeXGcH .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1IeXGcH .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1IeXGcH .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1IeXGcH .mbr-section-subtitle,
.cid-tza1IeXGcH .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1IeXGcH .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1ISMznQ {
  background-image: url("../../../assets/images/imagem09-1280x720.jpg");
}
.cid-tza1ISMznQ .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1ISMznQ .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1ISMznQ .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1ISMznQ .mbr-text {
  color: #ffffff;
}
.cid-tza1ISMznQ .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1ISMznQ .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1ISMznQ .mbr-section-btn {
  display: flex;
}
.cid-tza1ISMznQ .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1ISMznQ .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1ISMznQ .mbr-section-btn.display-4,
.cid-tza1ISMznQ .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1ISMznQ .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1ISMznQ .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1ISMznQ .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1ISMznQ .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1ISMznQ .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1ISMznQ .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1ISMznQ .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1ISMznQ .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1ISMznQ .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1ISMznQ .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1ISMznQ a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1ISMznQ a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1ISMznQ .separator,
  .cid-tza1ISMznQ .sep-holder,
  .cid-tza1ISMznQ .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1ISMznQ .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1ISMznQ .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1ISMznQ .mbr-section-subtitle,
.cid-tza1ISMznQ .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1ISMznQ .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1Jt2IXH {
  background-image: url("../../../assets/images/imagem10-1280x720.jpg");
}
.cid-tza1Jt2IXH .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1Jt2IXH .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1Jt2IXH .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1Jt2IXH .mbr-text {
  color: #ffffff;
}
.cid-tza1Jt2IXH .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1Jt2IXH .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1Jt2IXH .mbr-section-btn {
  display: flex;
}
.cid-tza1Jt2IXH .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1Jt2IXH .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1Jt2IXH .mbr-section-btn.display-4,
.cid-tza1Jt2IXH .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1Jt2IXH .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1Jt2IXH .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1Jt2IXH .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1Jt2IXH .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1Jt2IXH .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1Jt2IXH .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1Jt2IXH .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1Jt2IXH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1Jt2IXH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1Jt2IXH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1Jt2IXH a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1Jt2IXH a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1Jt2IXH .separator,
  .cid-tza1Jt2IXH .sep-holder,
  .cid-tza1Jt2IXH .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1Jt2IXH .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1Jt2IXH .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1Jt2IXH .mbr-section-subtitle,
.cid-tza1Jt2IXH .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1Jt2IXH .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1K2DMCm {
  background-image: url("../../../assets/images/imagem11-1280x720.jpg");
}
.cid-tza1K2DMCm .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1K2DMCm .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1K2DMCm .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1K2DMCm .mbr-text {
  color: #ffffff;
}
.cid-tza1K2DMCm .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1K2DMCm .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1K2DMCm .mbr-section-btn {
  display: flex;
}
.cid-tza1K2DMCm .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1K2DMCm .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1K2DMCm .mbr-section-btn.display-4,
.cid-tza1K2DMCm .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1K2DMCm .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1K2DMCm .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1K2DMCm .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1K2DMCm .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1K2DMCm .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1K2DMCm .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1K2DMCm .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1K2DMCm .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1K2DMCm .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1K2DMCm .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1K2DMCm a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1K2DMCm a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1K2DMCm .separator,
  .cid-tza1K2DMCm .sep-holder,
  .cid-tza1K2DMCm .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1K2DMCm .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1K2DMCm .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1K2DMCm .mbr-section-subtitle,
.cid-tza1K2DMCm .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1K2DMCm .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1KHlIJk {
  background-image: url("../../../assets/images/imagem12-1280x720.jpg");
}
.cid-tza1KHlIJk .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1KHlIJk .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1KHlIJk .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1KHlIJk .mbr-text {
  color: #ffffff;
}
.cid-tza1KHlIJk .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1KHlIJk .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1KHlIJk .mbr-section-btn {
  display: flex;
}
.cid-tza1KHlIJk .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1KHlIJk .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1KHlIJk .mbr-section-btn.display-4,
.cid-tza1KHlIJk .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1KHlIJk .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1KHlIJk .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1KHlIJk .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1KHlIJk .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1KHlIJk .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1KHlIJk .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1KHlIJk .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1KHlIJk .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1KHlIJk .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1KHlIJk .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1KHlIJk a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1KHlIJk a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1KHlIJk .separator,
  .cid-tza1KHlIJk .sep-holder,
  .cid-tza1KHlIJk .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1KHlIJk .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1KHlIJk .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1KHlIJk .mbr-section-subtitle,
.cid-tza1KHlIJk .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1KHlIJk .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1LfCU10 {
  background-image: url("../../../assets/images/imagem13-1280x720.jpg");
}
.cid-tza1LfCU10 .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1LfCU10 .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1LfCU10 .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1LfCU10 .mbr-text {
  color: #ffffff;
}
.cid-tza1LfCU10 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1LfCU10 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1LfCU10 .mbr-section-btn {
  display: flex;
}
.cid-tza1LfCU10 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1LfCU10 .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1LfCU10 .mbr-section-btn.display-4,
.cid-tza1LfCU10 .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1LfCU10 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1LfCU10 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1LfCU10 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1LfCU10 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1LfCU10 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1LfCU10 .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1LfCU10 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1LfCU10 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1LfCU10 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1LfCU10 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1LfCU10 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1LfCU10 a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1LfCU10 .separator,
  .cid-tza1LfCU10 .sep-holder,
  .cid-tza1LfCU10 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1LfCU10 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1LfCU10 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1LfCU10 .mbr-section-subtitle,
.cid-tza1LfCU10 .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1LfCU10 .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1LOhf1Q {
  background-image: url("../../../assets/images/imagem14-1280x720.jpg");
}
.cid-tza1LOhf1Q .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1LOhf1Q .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1LOhf1Q .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1LOhf1Q .mbr-text {
  color: #ffffff;
}
.cid-tza1LOhf1Q .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1LOhf1Q .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1LOhf1Q .mbr-section-btn {
  display: flex;
}
.cid-tza1LOhf1Q .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1LOhf1Q .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1LOhf1Q .mbr-section-btn.display-4,
.cid-tza1LOhf1Q .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1LOhf1Q .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1LOhf1Q .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1LOhf1Q .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1LOhf1Q .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1LOhf1Q .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1LOhf1Q .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1LOhf1Q .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1LOhf1Q .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1LOhf1Q .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1LOhf1Q .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1LOhf1Q a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1LOhf1Q a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1LOhf1Q .separator,
  .cid-tza1LOhf1Q .sep-holder,
  .cid-tza1LOhf1Q .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1LOhf1Q .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1LOhf1Q .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1LOhf1Q .mbr-section-subtitle,
.cid-tza1LOhf1Q .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1LOhf1Q .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tza1MqfPTU {
  background-image: url("../../../assets/images/imagem15-1280x720.jpg");
}
.cid-tza1MqfPTU .mbr-section-subtitle {
  color: #b0f30a;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-tza1MqfPTU .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tza1MqfPTU .mbr-section-title .accent-word {
  color: #b0f30a;
}
.cid-tza1MqfPTU .mbr-text {
  color: #ffffff;
}
.cid-tza1MqfPTU .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #181818;
  margin-left: 0.6rem;
}
.cid-tza1MqfPTU .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #b0f30a;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tza1MqfPTU .mbr-section-btn {
  display: flex;
}
.cid-tza1MqfPTU .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 24px;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tza1MqfPTU .mbr-section-btn .btn-primary:hover {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #f7ed4a !important;
}
.cid-tza1MqfPTU .mbr-section-btn.display-4,
.cid-tza1MqfPTU .btn.display-4 {
  font-size: 12px !important;
}
.cid-tza1MqfPTU .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tza1MqfPTU .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tza1MqfPTU .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #b0f30a;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tza1MqfPTU .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tza1MqfPTU .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tza1MqfPTU .video-wrap .mbr-text {
  line-height: 22px;
  font-weight: 800;
  letter-spacing: 0px;
  color: #181818;
}
.cid-tza1MqfPTU .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tza1MqfPTU .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tza1MqfPTU .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tza1MqfPTU .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tza1MqfPTU a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #f7ed4a;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-tza1MqfPTU a.close:hover {
  color: #f7ed4a;
}
@media (max-width: 991px) {
  .cid-tza1MqfPTU .separator,
  .cid-tza1MqfPTU .sep-holder,
  .cid-tza1MqfPTU .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tza1MqfPTU .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tza1MqfPTU .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tza1MqfPTU .mbr-section-subtitle,
.cid-tza1MqfPTU .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-tza1MqfPTU .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-tz9wuNn2Tf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b2ccd2;
}
.cid-tz9wuNn2Tf .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tz9wuNn2Tf .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-tz9wuNn2Tf .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tz9wuNn2Tf .mbr-text {
  color: #6d7a8c;
}
.cid-tz9wuNn2Tf .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-tz9wuNn2Tf .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-tz9wuNn2Tf .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-tz9wuNn2Tf .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-tz9wuNn2Tf .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-tz9wuNn2Tf .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-tz9wuNn2Tf .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-tz9wuNn2Tf .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-tz9wuNn2Tf .separator,
  .cid-tz9wuNn2Tf .sep-holder,
  .cid-tz9wuNn2Tf .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tz9wuNn2Tf .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-tz9wuNn2Tf .mbr-text,
.cid-tz9wuNn2Tf .mbr-section-btn {
  color: #4b0101;
  text-align: left;
}
.cid-tz9wuNn2Tf .mbr-section-subtitle,
.cid-tz9wuNn2Tf .mbr-section-title .accent-word {
  text-align: left;
}
.cid-tz9wuNn2Tf .mbr-section-title,
.cid-tz9wuNn2Tf .separator,
.cid-tz9wuNn2Tf .sep-holder {
  text-align: center;
  color: #4b0101;
}
.cid-tz9wuNLO24 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-tz9wuNLO24 .media-container-row .mbr-text {
  text-align: center;
}
.cid-t4VINp58UJ .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-t4VINp58UJ .nav-item:focus,
.cid-t4VINp58UJ .nav-link:focus {
  outline: none;
}
.cid-t4VINp58UJ .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-t4VINp58UJ .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-t4VINp58UJ .dropdown .dropdown-menu .dropdown-item:hover,
.cid-t4VINp58UJ .dropdown .dropdown-menu .dropdown-item:active,
.cid-t4VINp58UJ .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-t4VINp58UJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t4VINp58UJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-t4VINp58UJ .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-t4VINp58UJ .navbar-caption:hover {
  color: inherit!important;
}
.cid-t4VINp58UJ .container {
  max-width: 1380px;
}
.cid-t4VINp58UJ .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-t4VINp58UJ .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-t4VINp58UJ .nav-link:hover,
.cid-t4VINp58UJ .nav-link:active,
.cid-t4VINp58UJ .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-t4VINp58UJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-t4VINp58UJ .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-t4VINp58UJ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-t4VINp58UJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-t4VINp58UJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t4VINp58UJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t4VINp58UJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-t4VINp58UJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-t4VINp58UJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t4VINp58UJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t4VINp58UJ .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-t4VINp58UJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t4VINp58UJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-t4VINp58UJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-t4VINp58UJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t4VINp58UJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t4VINp58UJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-t4VINp58UJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t4VINp58UJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t4VINp58UJ .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-t4VINp58UJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-t4VINp58UJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t4VINp58UJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t4VINp58UJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-t4VINp58UJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-t4VINp58UJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-t4VINp58UJ .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-t4VINp58UJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-t4VINp58UJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-t4VINp58UJ .icons-menu span {
  color: #f7ed4a !important;
}
.cid-t4VINp58UJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t4VINp58UJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t4VINp58UJ .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-t4VINp58UJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t4VINp58UJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-t4VINp58UJ .dropdown-item.active,
.cid-t4VINp58UJ .dropdown-item:active {
  background-color: transparent;
}
.cid-t4VINp58UJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t4VINp58UJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t4VINp58UJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t4VINp58UJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-t4VINp58UJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t4VINp58UJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t4VINp58UJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-t4VINp58UJ .navbar-buttons {
  text-align: center;
}
.cid-t4VINp58UJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-t4VINp58UJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-t4VINp58UJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t4VINp58UJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t4VINp58UJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t4VINp58UJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t4VINp58UJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4VINp58UJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t4VINp58UJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t4VINp58UJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t4VINp58UJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-t4VINp58UJ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t4VINp58UJ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-t4VINp58UJ .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-t4VINp58UJ .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-t4VINp58UJ .navbar {
    height: 77px;
  }
  .cid-t4VINp58UJ .navbar.opened {
    height: auto;
  }
  .cid-t4VINp58UJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t4VINppaSH {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-18-1920x1280.jpg");
}
.cid-t4VINppaSH .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-t4VINppaSH .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-t4VINppaSH .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-t4VINppaSH .mbr-text,
.cid-t4VINppaSH .mbr-section-btn {
  text-align: left;
  color: #13b703;
}
.cid-t4VINppaSH P {
  color: #b0f30a;
  text-align: left;
}
.cid-t4VINppaSH .card-title,
.cid-t4VINppaSH .card-img {
  color: #0f7699;
}
.cid-t4VINq1Zcg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-t4VINq1Zcg .media-container-row .mbr-text {
  text-align: center;
}
.cid-uakfpXGyFC .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-uakfpXGyFC .nav-item:focus,
.cid-uakfpXGyFC .nav-link:focus {
  outline: none;
}
.cid-uakfpXGyFC .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-uakfpXGyFC .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-uakfpXGyFC .dropdown .dropdown-menu .dropdown-item:hover,
.cid-uakfpXGyFC .dropdown .dropdown-menu .dropdown-item:active,
.cid-uakfpXGyFC .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-uakfpXGyFC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uakfpXGyFC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uakfpXGyFC .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-uakfpXGyFC .navbar-caption:hover {
  color: inherit!important;
}
.cid-uakfpXGyFC .container {
  max-width: 1380px;
}
.cid-uakfpXGyFC .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-uakfpXGyFC .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-uakfpXGyFC .nav-link:hover,
.cid-uakfpXGyFC .nav-link:active,
.cid-uakfpXGyFC .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-uakfpXGyFC .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-uakfpXGyFC .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-uakfpXGyFC .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uakfpXGyFC .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uakfpXGyFC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uakfpXGyFC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uakfpXGyFC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-uakfpXGyFC .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uakfpXGyFC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uakfpXGyFC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uakfpXGyFC .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-uakfpXGyFC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uakfpXGyFC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uakfpXGyFC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uakfpXGyFC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uakfpXGyFC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uakfpXGyFC .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uakfpXGyFC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uakfpXGyFC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uakfpXGyFC .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-uakfpXGyFC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uakfpXGyFC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uakfpXGyFC .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uakfpXGyFC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uakfpXGyFC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uakfpXGyFC .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uakfpXGyFC .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-uakfpXGyFC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uakfpXGyFC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uakfpXGyFC .icons-menu span {
  color: #f7ed4a !important;
}
.cid-uakfpXGyFC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uakfpXGyFC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uakfpXGyFC .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-uakfpXGyFC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uakfpXGyFC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uakfpXGyFC .dropdown-item.active,
.cid-uakfpXGyFC .dropdown-item:active {
  background-color: transparent;
}
.cid-uakfpXGyFC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uakfpXGyFC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uakfpXGyFC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uakfpXGyFC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-uakfpXGyFC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uakfpXGyFC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uakfpXGyFC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uakfpXGyFC .navbar-buttons {
  text-align: center;
}
.cid-uakfpXGyFC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uakfpXGyFC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-uakfpXGyFC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uakfpXGyFC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uakfpXGyFC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uakfpXGyFC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uakfpXGyFC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uakfpXGyFC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uakfpXGyFC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uakfpXGyFC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uakfpXGyFC .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uakfpXGyFC a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uakfpXGyFC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uakfpXGyFC .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-uakfpXGyFC .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uakfpXGyFC .navbar {
    height: 77px;
  }
  .cid-uakfpXGyFC .navbar.opened {
    height: auto;
  }
  .cid-uakfpXGyFC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uakfpYAkc9 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-2-1920x1080.jpeg");
}
.cid-uakfpYAkc9 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uakfpYAkc9 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uakfpYAkc9 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uakfpYAkc9 .mbr-text,
.cid-uakfpYAkc9 .mbr-section-btn {
  text-align: left;
}
.cid-uakfpYAkc9 P {
  color: #b0f30a;
  text-align: left;
}
.cid-uakfpYAkc9 .card-title,
.cid-uakfpYAkc9 .card-img {
  color: #13b703;
}
.cid-uakfq0m9Jb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-uakfq0m9Jb .media-container-row .mbr-text {
  text-align: center;
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .nav-item:focus,
.cid-ulzZxaPsj9 .nav-link:focus {
  outline: none;
}
.cid-ulzZxaPsj9 .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .dropdown .dropdown-menu .dropdown-item:hover,
.cid-ulzZxaPsj9 .dropdown .dropdown-menu .dropdown-item:active,
.cid-ulzZxaPsj9 .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-ulzZxaPsj9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ulzZxaPsj9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .navbar-caption:hover {
  color: inherit!important;
}
.cid-ulzZxaPsj9 .container {
  max-width: 1380px;
}
.cid-ulzZxaPsj9 .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-ulzZxaPsj9 .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-ulzZxaPsj9 .nav-link:hover,
.cid-ulzZxaPsj9 .nav-link:active,
.cid-ulzZxaPsj9 .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-ulzZxaPsj9 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
}
.cid-ulzZxaPsj9 .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-ulzZxaPsj9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-ulzZxaPsj9 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-ulzZxaPsj9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ulzZxaPsj9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ulzZxaPsj9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6rem);
  }
}
.cid-ulzZxaPsj9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-ulzZxaPsj9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ulzZxaPsj9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ulzZxaPsj9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-ulzZxaPsj9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-ulzZxaPsj9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ulzZxaPsj9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ulzZxaPsj9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-ulzZxaPsj9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ulzZxaPsj9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ulzZxaPsj9 .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-ulzZxaPsj9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-ulzZxaPsj9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ulzZxaPsj9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ulzZxaPsj9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ulzZxaPsj9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-ulzZxaPsj9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-ulzZxaPsj9 .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-ulzZxaPsj9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-ulzZxaPsj9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-ulzZxaPsj9 .icons-menu span {
  color: #f7ed4a !important;
}
.cid-ulzZxaPsj9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ulzZxaPsj9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ulzZxaPsj9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ulzZxaPsj9 .dropdown-item.active,
.cid-ulzZxaPsj9 .dropdown-item:active {
  background-color: transparent;
}
.cid-ulzZxaPsj9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ulzZxaPsj9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ulzZxaPsj9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ulzZxaPsj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-ulzZxaPsj9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ulzZxaPsj9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ulzZxaPsj9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ulzZxaPsj9 .navbar-buttons {
  text-align: center;
}
.cid-ulzZxaPsj9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ulzZxaPsj9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-ulzZxaPsj9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ulzZxaPsj9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ulzZxaPsj9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ulzZxaPsj9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ulzZxaPsj9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulzZxaPsj9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ulzZxaPsj9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ulzZxaPsj9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ulzZxaPsj9 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-ulzZxaPsj9 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-ulzZxaPsj9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-ulzZxaPsj9 .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-ulzZxaPsj9 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ulzZxaPsj9 .navbar {
    height: 77px;
  }
  .cid-ulzZxaPsj9 .navbar.opened {
    height: auto;
  }
  .cid-ulzZxaPsj9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ulzZxc7hmK {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x1200.jpg");
}
.cid-ulzZxc7hmK .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-ulzZxc7hmK .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-ulzZxc7hmK .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-ulzZxc7hmK .mbr-text,
.cid-ulzZxc7hmK .mbr-section-btn {
  text-align: center;
}
.cid-ulzZxc7hmK P {
  color: #ffffff;
  text-align: left;
}
.cid-ulzZxcVcKp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-ulzZxcVcKp .media-container-row .mbr-text {
  text-align: center;
}
.cid-umhR28P04w .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-umhR28P04w .nav-item:focus,
.cid-umhR28P04w .nav-link:focus {
  outline: none;
}
.cid-umhR28P04w .navbar-short {
  box-shadow: 0px 0px 10px 0px rgba(150, 150, 150, 0.3);
}
.cid-umhR28P04w .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-umhR28P04w .dropdown .dropdown-menu .dropdown-item:hover,
.cid-umhR28P04w .dropdown .dropdown-menu .dropdown-item:active,
.cid-umhR28P04w .dropdown .dropdown-menu .dropdown-item:focus {
  color: #b0f30a !important;
}
.cid-umhR28P04w .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umhR28P04w .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-umhR28P04w .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-umhR28P04w .navbar-caption:hover {
  color: inherit!important;
}
.cid-umhR28P04w .container {
  max-width: 1380px;
}
.cid-umhR28P04w .nav-dropdown .link {
  padding: 0.8rem 0 !important;
  margin: 0rem 1.5rem !important;
}
.cid-umhR28P04w .nav-link {
  font-weight: 700!important;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.cid-umhR28P04w .nav-link:hover,
.cid-umhR28P04w .nav-link:active,
.cid-umhR28P04w .nav-link:focus {
  border-bottom: 3px solid #b0f30a;
  color: #b0f30a !important;
}
.cid-umhR28P04w .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #465052;
  background: none;
}
.cid-umhR28P04w .navbar.opened {
  transition: all .3s;
  background: #465052 !important;
}
.cid-umhR28P04w .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-umhR28P04w .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-umhR28P04w .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umhR28P04w .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umhR28P04w .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-umhR28P04w .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-umhR28P04w .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umhR28P04w .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umhR28P04w .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-umhR28P04w .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umhR28P04w .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-umhR28P04w .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-umhR28P04w .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umhR28P04w .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umhR28P04w .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-umhR28P04w .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umhR28P04w .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umhR28P04w .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-umhR28P04w .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-umhR28P04w .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umhR28P04w .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umhR28P04w .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-umhR28P04w .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-umhR28P04w .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-umhR28P04w .navbar.navbar-short {
  background: #465052 !important;
  min-height: 60px;
}
.cid-umhR28P04w .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-umhR28P04w .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-umhR28P04w .icons-menu span {
  color: #f7ed4a !important;
}
.cid-umhR28P04w .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umhR28P04w .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umhR28P04w .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-umhR28P04w .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umhR28P04w .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umhR28P04w .dropdown-item.active,
.cid-umhR28P04w .dropdown-item:active {
  background-color: transparent;
}
.cid-umhR28P04w .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umhR28P04w .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umhR28P04w .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umhR28P04w .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #465052;
}
.cid-umhR28P04w .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umhR28P04w .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umhR28P04w ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-umhR28P04w .navbar-buttons {
  text-align: center;
}
.cid-umhR28P04w button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-umhR28P04w button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #181818;
}
.cid-umhR28P04w button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-umhR28P04w button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-umhR28P04w button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-umhR28P04w button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-umhR28P04w nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-umhR28P04w nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-umhR28P04w nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-umhR28P04w nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-umhR28P04w .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-umhR28P04w a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-umhR28P04w .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-umhR28P04w .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-umhR28P04w .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umhR28P04w .navbar {
    height: 77px;
  }
  .cid-umhR28P04w .navbar.opened {
    height: auto;
  }
  .cid-umhR28P04w .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umhR29HYYm {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/manganez.fw-1702x1021.png");
}
.cid-umhR29HYYm .number-wrap {
  color: #ffffff;
  text-align: center;
}
.cid-umhR29HYYm .number {
  color: #ffffff;
}
.cid-umhR29HYYm .period {
  display: block;
}
.cid-umhR29HYYm .dot {
  display: none;
}
@media (max-width: 767px) {
  .cid-umhR29HYYm .period {
    font-size: 0.8rem;
  }
}
.cid-umhR29HYYm .btn {
  height: 100%;
  margin: 0;
}
.cid-umhR29HYYm .mbr-section-btn {
  margin-bottom: 1.2rem;
}
.cid-umhR29HYYm .mbr-section-title {
  color: #ffffff;
}
.cid-umhR29HYYm .mbr-text {
  color: #ffffff;
}
.cid-umhR29HYYm .icons-menu .soc-item {
  padding-left: 8px;
  padding-right: 8px;
}
.cid-umhR29HYYm .icons-menu .soc-item .mbr-iconfont {
  font-size: 2rem;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-umhR29HYYm .icons-menu .soc-item .mbr-iconfont:before {
  padding: 0.6rem;
}
.cid-umhR29HYYm .icons-menu .soc-item .mbr-iconfont:hover {
  background-color: #000000;
  color: #ffffff;
}
.cid-umhR29HYYm H3 {
  color: #ffffff;
  text-align: center;
}
.cid-umhR29HYYm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umhR2awoCI {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #110f0f;
}
.cid-umhR2awoCI .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-umhR2awoCI .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-umhR2awoCI .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-umhR2awoCI .mbr-text {
  color: #6d7a8c;
}
.cid-umhR2awoCI .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-umhR2awoCI .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 13px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.275rem;
}
.cid-umhR2awoCI .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-umhR2awoCI .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 100%;
}
.cid-umhR2awoCI .separator .sep-holder .sep-line {
  border-color: #000000 !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #000000;
  position: relative;
  top: 1px;
  width: 100%;
}
.cid-umhR2awoCI .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-umhR2awoCI .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-umhR2awoCI .mbr-section-btn .btn.display-4 {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
@media (max-width: 991px) {
  .cid-umhR2awoCI .separator,
  .cid-umhR2awoCI .sep-holder,
  .cid-umhR2awoCI .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-umhR2awoCI .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-umhR2awoCI .mbr-text,
.cid-umhR2awoCI .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-umhR2awoCI .mbr-section-subtitle,
.cid-umhR2awoCI .mbr-section-title .accent-word {
  text-align: left;
}
.cid-umhR2awoCI .mbr-section-title,
.cid-umhR2awoCI .separator,
.cid-umhR2awoCI .sep-holder {
  text-align: center;
  color: #ffffff;
}
.cid-umhR2bonhG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #465052;
}
.cid-umhR2bonhG .media-container-row .mbr-text {
  text-align: center;
}
