@import url(https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap);





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #1ba1e2 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #823c40 !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #4e2426;
  border-color: #4e2426;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #823c40 !important;
  border-color: #823c40 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #4e2426 !important;
  border-color: #4e2426 !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #4e2426 !important;
  border-color: #4e2426 !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #823c40;
  border-color: #823c40;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #3c1c1e;
  color: #3c1c1e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #823c40;
  border-color: #823c40;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #823c40 !important;
  border-color: #823c40 !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #1ba1e2 !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #823c40 !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #106087 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #3c1c1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #823c40;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1ba1e2;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #c27b7f;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #1ba1e2;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #1ba1e2;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #1ba1e2;
  border-bottom-color: #1ba1e2;
}
.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: #1ba1e2 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%231ba1e2' %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-rf2NdG5r32 .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-rf2NdG5r32 .nav-item:focus,
.cid-rf2NdG5r32 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rf2NdG5r32 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rf2NdG5r32 .nav-item .nav-link {
    position: relative;
  }
  .cid-rf2NdG5r32 .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #1ba1e2, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rf2NdG5r32 .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rf2NdG5r32 .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rf2NdG5r32 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rf2NdG5r32 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rf2NdG5r32 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rf2NdG5r32 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rf2NdG5r32 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rf2NdG5r32 .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-rf2NdG5r32 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rf2NdG5r32 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rf2NdG5r32 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-rf2NdG5r32 .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rf2NdG5r32 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rf2NdG5r32 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rf2NdG5r32 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rf2NdG5r32 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rf2NdG5r32 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rf2NdG5r32 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rf2NdG5r32 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rf2NdG5r32 .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-rf2NdG5r32 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rf2NdG5r32 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rf2NdG5r32 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rf2NdG5r32 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rf2NdG5r32 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rf2NdG5r32 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rf2NdG5r32 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rf2NdG5r32 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rf2NdG5r32 .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-rf2NdG5r32 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rf2NdG5r32 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rf2NdG5r32 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rf2NdG5r32 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rf2NdG5r32 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rf2NdG5r32 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rf2NdG5r32 .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rf2NdG5r32 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rf2NdG5r32 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rf2NdG5r32 .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-rf2NdG5r32 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rf2NdG5r32 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rf2NdG5r32 .dropdown-item.active,
.cid-rf2NdG5r32 .dropdown-item:active {
  background-color: transparent;
}
.cid-rf2NdG5r32 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rf2NdG5r32 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rf2NdG5r32 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rf2NdG5r32 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rf2NdG5r32 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rf2NdG5r32 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rf2NdG5r32 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rf2NdG5r32 .navbar-buttons {
  text-align: center;
}
.cid-rf2NdG5r32 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rf2NdG5r32 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rf2NdG5r32 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rf2NdG5r32 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rf2NdG5r32 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rf2NdG5r32 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rf2NdG5r32 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf2NdG5r32 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rf2NdG5r32 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rf2NdG5r32 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rf2NdG5r32 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rf2NdG5r32 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rf2NdG5r32 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rf2NdG5r32 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rf2NdG5r32 .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rf2NdG5r32 .navbar {
    height: 77px;
  }
  .cid-rf2NdG5r32 .navbar.opened {
    height: auto;
  }
  .cid-rf2NdG5r32 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rdB8zGgyAw {
  background-image: url("../../../assets/images/cellulare-non-riceve-1296x879.jpg");
}
.cid-rdB8zGgyAw .mbr-section-title,
.cid-rdB8zGgyAw .mbr-section-subtitle {
  color: #879a9f;
}
.cid-rdB8zGgyAw .mbr-section-text {
  color: #767676;
}
.cid-rdB8zGgyAw .mbr-text,
.cid-rdB8zGgyAw .typed-text,
.cid-rdB8zGgyAw .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-rdB8zGgyAw .btn {
  margin-left: 4px !important;
}
.cid-rdB8zGgyAw .animated-element {
  color: #ffffff;
}
.cid-rdB8zGgyAw .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ffffff;
}
@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-rdB8zGgyAw .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-rdB8zGgyAw .mbr-section-subtitle,
.cid-rdB8zGgyAw .typed-text {
  color: #cccccc;
  text-align: left;
}
.cid-rdB8zGgyAw .mbr-section-text,
.cid-rdB8zGgyAw .mbr-section-btn {
  color: #cccccc;
}
.cid-sd8aVMeYlA {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-sd8aVMeYlA .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sd8aVMeYlA H2 {
  color: #efefef;
}
.cid-sdgtVHxTKc {
  display: flex;
  background-image: url("../../../assets/images/mobile-tower-2000x1125.jpg");
}
.cid-sdgtVHxTKc .mbr-overlay {
  background: #000000;
}
.cid-sdgtVHxTKc .mbr-section-title {
  margin: 0;
}
.cid-sdgtVHxTKc .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sdgtVHxTKc .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-sdgtVHxTKc .card-img {
  text-align: left;
}
.cid-sdgtVHxTKc .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-sdgtVHxTKc .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-sdgtVHxTKc .header-content .text-row {
  margin: auto 0;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sdgtVHxTKc .features-row {
  -webkit-justify-content: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-sdgtVHxTKc .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sdgtVHxTKc .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-sdgtVHxTKc .card-title,
.cid-sdgtVHxTKc .card-img {
  color: #ffffff;
  text-align: left;
}
.cid-sdgtVHxTKc .mbr-section-subtitle,
.cid-sdgtVHxTKc .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-sdVJYQP11A {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sdVJYQP11A .container-fluid {
  padding: 0 3rem;
}
.cid-sdVJYQP11A .media-container-column {
  padding: 0 2rem;
}
.cid-sdVJYQP11A .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sdVJYQP11A .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sdVJYQP11A .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sf41GFkxkG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sf41GFkxkG H1 {
  color: #ffffff;
}
.cid-sf41GFkxkG .mbr-text,
.cid-sf41GFkxkG .mbr-section-btn {
  color: #bbbbbb;
  text-align: left;
}
.cid-sf41GFkxkG img {
  width: 100%;
  border-radius: 10px;
}
@media (min-width: 1200px) {
  .cid-sf41GFkxkG .col-lg-6 {
    padding: 0 2rem;
  }
}
.cid-sdyr1YGRmk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-sdyr1YGRmk .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sdyr1YGRmk H2 {
  color: #efefef;
  text-align: center;
}
.cid-sdACGZNGBs {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sdACGZNGBs p {
  color: #767676;
}
.cid-sdACGZNGBs .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdACGZNGBs .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sdACGZNGBs .row-element,
.cid-sdACGZNGBs .image-element {
  padding: 0;
}
.cid-sdACGZNGBs .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdACGZNGBs .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdACGZNGBs .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdACGZNGBs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdACGZNGBs .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdACGZNGBs .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdACGZNGBs .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdACGZNGBs .underline .line {
    height: 2px;
  }
  .cid-sdACGZNGBs .mbr-title,
  .cid-sdACGZNGBs .underline,
  .cid-sdACGZNGBs .mbr-text,
  .cid-sdACGZNGBs .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdACGZNGBs .mbr-title,
.cid-sdACGZNGBs .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdACGZNGBs .mbr-text,
.cid-sdACGZNGBs .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-rdB7yEkQ3A {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rdB7yEkQ3A p {
  color: #767676;
}
.cid-rdB7yEkQ3A .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rdB7yEkQ3A .row-element,
.cid-rdB7yEkQ3A .image-element {
  padding: 0;
}
.cid-rdB7yEkQ3A .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdB7yEkQ3A .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rdB7yEkQ3A .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdB7yEkQ3A .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rdB7yEkQ3A .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rdB7yEkQ3A .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rdB7yEkQ3A .text-content {
    padding: 2rem 1rem;
  }
  .cid-rdB7yEkQ3A .underline .line {
    height: 2px;
  }
  .cid-rdB7yEkQ3A .mbr-title,
  .cid-rdB7yEkQ3A .underline,
  .cid-rdB7yEkQ3A .mbr-text,
  .cid-rdB7yEkQ3A .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-rdB7yEkQ3A .mbr-title,
.cid-rdB7yEkQ3A .underline {
  color: #efefef;
  text-align: left;
}
.cid-rdB7yEkQ3A .mbr-text,
.cid-rdB7yEkQ3A .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-rdB7Cab6L2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rdB7Cab6L2 p {
  color: #767676;
}
.cid-rdB7Cab6L2 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rdB7Cab6L2 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rdB7Cab6L2 .row-element,
.cid-rdB7Cab6L2 .image-element {
  padding: 0;
}
.cid-rdB7Cab6L2 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdB7Cab6L2 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rdB7Cab6L2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdB7Cab6L2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rdB7Cab6L2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rdB7Cab6L2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rdB7Cab6L2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-rdB7Cab6L2 .underline .line {
    height: 2px;
  }
  .cid-rdB7Cab6L2 .mbr-title,
  .cid-rdB7Cab6L2 .underline,
  .cid-rdB7Cab6L2 .mbr-text,
  .cid-rdB7Cab6L2 .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-rdB7Cab6L2 .mbr-title,
.cid-rdB7Cab6L2 .underline {
  color: #efefef;
  text-align: left;
}
.cid-rdB7Cab6L2 .mbr-text,
.cid-rdB7Cab6L2 .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-rdBfsQ3UVd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rdBfsQ3UVd p {
  color: #767676;
}
.cid-rdBfsQ3UVd .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rdBfsQ3UVd .row-element,
.cid-rdBfsQ3UVd .image-element {
  padding: 0;
}
.cid-rdBfsQ3UVd .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdBfsQ3UVd .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rdBfsQ3UVd .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdBfsQ3UVd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rdBfsQ3UVd .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rdBfsQ3UVd .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rdBfsQ3UVd .text-content {
    padding: 2rem 1rem;
  }
  .cid-rdBfsQ3UVd .underline .line {
    height: 2px;
  }
  .cid-rdBfsQ3UVd .mbr-title,
  .cid-rdBfsQ3UVd .underline,
  .cid-rdBfsQ3UVd .mbr-text,
  .cid-rdBfsQ3UVd .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-rdBfsQ3UVd .mbr-title,
.cid-rdBfsQ3UVd .underline {
  color: #efefef;
  text-align: left;
}
.cid-rdBfsQ3UVd .mbr-text,
.cid-rdBfsQ3UVd .mbr-section-btn B {
  color: #ffffff;
}
.cid-rdBfsQ3UVd .mbr-text,
.cid-rdBfsQ3UVd .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-rdBftHfD2p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rdBftHfD2p p {
  color: #767676;
}
.cid-rdBftHfD2p .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-rdBftHfD2p .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rdBftHfD2p .row-element,
.cid-rdBftHfD2p .image-element {
  padding: 0;
}
.cid-rdBftHfD2p .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rdBftHfD2p .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-rdBftHfD2p .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rdBftHfD2p .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rdBftHfD2p .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-rdBftHfD2p .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rdBftHfD2p .text-content {
    padding: 2rem 1rem;
  }
  .cid-rdBftHfD2p .underline .line {
    height: 2px;
  }
  .cid-rdBftHfD2p .mbr-title,
  .cid-rdBftHfD2p .underline,
  .cid-rdBftHfD2p .mbr-text,
  .cid-rdBftHfD2p .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-rdBftHfD2p .mbr-title,
.cid-rdBftHfD2p .underline {
  color: #efefef;
  text-align: left;
}
.cid-rdBftHfD2p .mbr-text,
.cid-rdBftHfD2p .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-s4rm1fwr9y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-s4rm1fwr9y p {
  color: #767676;
}
.cid-s4rm1fwr9y .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-s4rm1fwr9y .row-element,
.cid-s4rm1fwr9y .image-element {
  padding: 0;
}
.cid-s4rm1fwr9y .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s4rm1fwr9y .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s4rm1fwr9y .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-s4rm1fwr9y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-s4rm1fwr9y .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-s4rm1fwr9y .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-s4rm1fwr9y .text-content {
    padding: 2rem 1rem;
  }
  .cid-s4rm1fwr9y .underline .line {
    height: 2px;
  }
  .cid-s4rm1fwr9y .mbr-title,
  .cid-s4rm1fwr9y .underline,
  .cid-s4rm1fwr9y .mbr-text,
  .cid-s4rm1fwr9y .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-s4rm1fwr9y .mbr-title,
.cid-s4rm1fwr9y .underline {
  color: #efefef;
  text-align: left;
}
.cid-s4rm1fwr9y .mbr-text,
.cid-s4rm1fwr9y .mbr-section-btn B {
  color: #ffffff;
}
.cid-s4rm1fwr9y .mbr-text,
.cid-s4rm1fwr9y .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-sdzMdh8Pv2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #101010;
}
.cid-sdzMdh8Pv2 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sdzMdh8Pv2 H2 {
  color: #efefef;
  text-align: center;
}
.cid-sdb5UNltAD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sdb5UNltAD p {
  color: #767676;
}
.cid-sdb5UNltAD .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdb5UNltAD .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sdb5UNltAD .row-element,
.cid-sdb5UNltAD .image-element {
  padding: 0;
}
.cid-sdb5UNltAD .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdb5UNltAD .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdb5UNltAD .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdb5UNltAD .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdb5UNltAD .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdb5UNltAD .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdb5UNltAD .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdb5UNltAD .underline .line {
    height: 2px;
  }
  .cid-sdb5UNltAD .mbr-title,
  .cid-sdb5UNltAD .underline,
  .cid-sdb5UNltAD .mbr-text,
  .cid-sdb5UNltAD .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdb5UNltAD .mbr-title,
.cid-sdb5UNltAD .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdb5UNltAD .mbr-text,
.cid-sdb5UNltAD .mbr-section-btn B {
  color: #ffffff;
}
.cid-sdb5UNltAD .mbr-text,
.cid-sdb5UNltAD .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-sdyyaHaDmX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sdyyaHaDmX p {
  color: #767676;
}
.cid-sdyyaHaDmX .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdyyaHaDmX .row-element,
.cid-sdyyaHaDmX .image-element {
  padding: 0;
}
.cid-sdyyaHaDmX .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdyyaHaDmX .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdyyaHaDmX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdyyaHaDmX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdyyaHaDmX .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdyyaHaDmX .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdyyaHaDmX .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdyyaHaDmX .underline .line {
    height: 2px;
  }
  .cid-sdyyaHaDmX .mbr-title,
  .cid-sdyyaHaDmX .underline,
  .cid-sdyyaHaDmX .mbr-text,
  .cid-sdyyaHaDmX .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdyyaHaDmX .mbr-title,
.cid-sdyyaHaDmX .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdyyaHaDmX .mbr-text,
.cid-sdyyaHaDmX .mbr-section-btn B {
  color: #ffffff;
}
.cid-sdyyaHaDmX .mbr-text,
.cid-sdyyaHaDmX .mbr-section-btn {
  text-align: left;
  color: #cccccc;
}
.cid-rfCRpcrWb8 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #101010;
}
.cid-rfCRpcrWb8 .mbr-section-subtitle {
  color: #cccccc;
}
.cid-rfCRpcrWb8 H2 {
  color: #efefef;
}
.cid-sdFDbnEAYX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sdFDbnEAYX p {
  color: #767676;
}
.cid-sdFDbnEAYX .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdFDbnEAYX .row-element,
.cid-sdFDbnEAYX .image-element {
  padding: 0;
}
.cid-sdFDbnEAYX .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdFDbnEAYX .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdFDbnEAYX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdFDbnEAYX .underline .line {
  width: 10rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdFDbnEAYX .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdFDbnEAYX .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdFDbnEAYX .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdFDbnEAYX .underline .line {
    height: 2px;
  }
  .cid-sdFDbnEAYX .mbr-title,
  .cid-sdFDbnEAYX .underline,
  .cid-sdFDbnEAYX .mbr-text,
  .cid-sdFDbnEAYX .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdFDbnEAYX .mbr-title,
.cid-sdFDbnEAYX .underline {
  color: #ffffff;
  text-align: left;
}
.cid-sdFDbnEAYX .mbr-text,
.cid-sdFDbnEAYX .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-sdB1YiFZzW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sdB1YiFZzW p {
  color: #767676;
}
.cid-sdB1YiFZzW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdB1YiFZzW .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sdB1YiFZzW .row-element,
.cid-sdB1YiFZzW .image-element {
  padding: 0;
}
.cid-sdB1YiFZzW .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdB1YiFZzW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdB1YiFZzW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdB1YiFZzW .underline .line {
  width: 10rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdB1YiFZzW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdB1YiFZzW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdB1YiFZzW .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdB1YiFZzW .underline .line {
    height: 2px;
  }
  .cid-sdB1YiFZzW .mbr-title,
  .cid-sdB1YiFZzW .underline,
  .cid-sdB1YiFZzW .mbr-text,
  .cid-sdB1YiFZzW .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdB1YiFZzW .mbr-title,
.cid-sdB1YiFZzW .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdB1YiFZzW .mbr-text,
.cid-sdB1YiFZzW .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-sfXQbnCB5s {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sfXQbnCB5s .container-fluid {
  padding: 0 3rem;
}
.cid-sfXQbnCB5s .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1ba1e2 50%, #fe525b 120%);
  display: inline-block;
}
.cid-sfXQbnCB5s .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-sfXQbnCB5s .timeline-text-content p {
  margin-bottom: 0;
}
.cid-sfXQbnCB5s .time-line-date-content {
  margin-right: 2rem;
}
.cid-sfXQbnCB5s .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-sfXQbnCB5s .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.cid-sfXQbnCB5s .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fe525b;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-sfXQbnCB5s .separline:before,
.cid-sfXQbnCB5s .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-sfXQbnCB5s .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #fe525b;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-sfXQbnCB5s .container-fluid {
    padding: 0 1rem;
  }
  .cid-sfXQbnCB5s .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-sfXQbnCB5s .separline:before,
  .cid-sfXQbnCB5s .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-sfXQbnCB5s .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-sfXQbnCB5s .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-sfXQbnCB5s .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-sfXQbnCB5s .time-line-date-content p {
    float: left !important;
  }
  .cid-sfXQbnCB5s .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-sfXQbnCB5s .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-sfXQbnCB5s .mbr-section-title,
.cid-sfXQbnCB5s .underline {
  color: #ffffff;
}
.cid-sfXQbnCB5s .mbr-section-subtitle {
  color: #767676;
}
.cid-sfXQbnCB5s .mbr-timeline-date {
  color: #ffffff;
  text-align: right;
}
.cid-sfXQbnCB5s .mbr-timeline-title {
  color: #efefef;
}
.cid-sfXQbnCB5s .mbr-timeline-text {
  color: #767676;
}
.cid-sdNvkyL3kE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sdNvkyL3kE .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sdNvkyL3kE H2 {
  color: #efefef;
}
.cid-sdQKU6b27Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sdQKU6b27Z p {
  color: #767676;
}
.cid-sdQKU6b27Z .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdQKU6b27Z .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sdQKU6b27Z .row-element,
.cid-sdQKU6b27Z .image-element {
  padding: 0;
}
.cid-sdQKU6b27Z .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdQKU6b27Z .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdQKU6b27Z .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdQKU6b27Z .underline .line {
  width: 10rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdQKU6b27Z .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdQKU6b27Z .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdQKU6b27Z .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdQKU6b27Z .underline .line {
    height: 2px;
  }
  .cid-sdQKU6b27Z .mbr-title,
  .cid-sdQKU6b27Z .underline,
  .cid-sdQKU6b27Z .mbr-text,
  .cid-sdQKU6b27Z .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdQKU6b27Z .mbr-title,
.cid-sdQKU6b27Z .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdQKU6b27Z .mbr-text,
.cid-sdQKU6b27Z .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-sdQKYhsWVi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sdQKYhsWVi li {
  list-style: none;
}
.cid-sdQKYhsWVi .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-sdQKYhsWVi .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-sdQKYhsWVi h4 {
  margin: 0;
}
.cid-sdQKYhsWVi .item {
  color: #57468b;
}
.cid-sdQKYhsWVi ul {
  padding: 0;
  margin: 0;
}
.cid-sdQKYhsWVi .col-title {
  color: #57468b;
}
.cid-sdQKYhsWVi .col-title1 {
  color: #ffffff;
  text-align: left;
}
.cid-sdQKYhsWVi .col-title2 {
  color: #ffffff;
  text-align: left;
}
.cid-sdQKYhsWVi .col-title3 {
  color: #ffffff;
  text-align: left;
}
.cid-sdQKYhsWVi .col-title4 {
  color: #ffffff;
  text-align: left;
}
.cid-sdQKYhsWVi .item1 {
  color: #cccccc;
  text-align: left;
}
.cid-sdQKYhsWVi .item2 {
  color: #cccccc;
}
.cid-sdQKYhsWVi .item3 {
  color: #cccccc;
}
.cid-sdQKYhsWVi .item4 {
  color: #cccccc;
}
@media (max-width: 768px) {
  .cid-sdQKYhsWVi .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-sdRLsljhq9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sdRLsljhq9 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sdRLsljhq9 .media-container-row .mbr-text {
  color: #cccccc;
}
.cid-sdNfDEFdyP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sdNfDEFdyP p {
  color: #767676;
}
.cid-sdNfDEFdyP .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-sdNfDEFdyP .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sdNfDEFdyP .row-element,
.cid-sdNfDEFdyP .image-element {
  padding: 0;
}
.cid-sdNfDEFdyP .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sdNfDEFdyP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdNfDEFdyP .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdNfDEFdyP .underline .line {
  width: 10rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-sdNfDEFdyP .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-sdNfDEFdyP .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-sdNfDEFdyP .text-content {
    padding: 2rem 1rem;
  }
  .cid-sdNfDEFdyP .underline .line {
    height: 2px;
  }
  .cid-sdNfDEFdyP .mbr-title,
  .cid-sdNfDEFdyP .underline,
  .cid-sdNfDEFdyP .mbr-text,
  .cid-sdNfDEFdyP .mbr-section-btn {
    text-align: left !important;
  }
}
.cid-sdNfDEFdyP .mbr-title,
.cid-sdNfDEFdyP .underline {
  color: #efefef;
  text-align: left;
}
.cid-sdNfDEFdyP .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sdNfDEFdyP .mbr-section-btn {
  color: #cccccc;
  text-align: left;
}
.cid-sdN5K9Aqqc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sdN5K9Aqqc li {
  list-style: none;
}
.cid-sdN5K9Aqqc .item-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.cid-sdN5K9Aqqc .mbr-iconfont {
  font-size: 16px!important;
  padding-right: 12px;
}
.cid-sdN5K9Aqqc h4 {
  margin: 0;
}
.cid-sdN5K9Aqqc .item {
  color: #57468b;
}
.cid-sdN5K9Aqqc ul {
  padding: 0;
  margin: 0;
}
.cid-sdN5K9Aqqc .col-title {
  color: #57468b;
}
.cid-sdN5K9Aqqc .col-title1 {
  color: #ffffff;
  text-align: left;
}
.cid-sdN5K9Aqqc .col-title2 {
  color: #ffffff;
  text-align: left;
}
.cid-sdN5K9Aqqc .col-title3 {
  color: #ffffff;
  text-align: left;
}
.cid-sdN5K9Aqqc .col-title4 {
  color: #ffffff;
  text-align: left;
}
.cid-sdN5K9Aqqc .item1 {
  color: #cccccc;
  text-align: left;
}
.cid-sdN5K9Aqqc .item2 {
  color: #cccccc;
}
.cid-sdN5K9Aqqc .item3 {
  color: #cccccc;
}
.cid-sdN5K9Aqqc .item4 {
  color: #cccccc;
}
@media (max-width: 768px) {
  .cid-sdN5K9Aqqc .md-pb {
    padding-bottom: 1rem;
  }
}
.cid-sdI4lxQopp {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sdI4lxQopp .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sdI4lxQopp .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sdI4lxQopp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
.cid-sdI4lxQopp .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.cid-sdI4lxQopp .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sdI4lxQopp .wrapper {
  padding: 2rem 1rem 1rem 1rem;
  background: #232323;
}
.cid-sdI4lxQopp .card-overlay {
  display: none;
}
.cid-sdI4lxQopp .mbr-section-title,
.cid-sdI4lxQopp .underline,
.cid-sdI4lxQopp .mbr-section-subtitle {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .cid-sdI4lxQopp .image-element:hover .card-overlay {
    opacity: .5;
    border-bottom-right-radius: 7rem;
  }
  .cid-sdI4lxQopp .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-sdI4lxQopp .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-sdI4lxQopp .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-sdI4lxQopp .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sdI4lxQopp .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sdI4lxQopp .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sdI4lxQopp .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-sdI4lxQopp .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-sdI4lxQopp .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-sdI4lxQopp .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-sdI4lxQopp .underline .line {
    height: 2px;
  }
  .cid-sdI4lxQopp .card-title,
  .cid-sdI4lxQopp .underline,
  .cid-sdI4lxQopp .mbr-text,
  .cid-sdI4lxQopp .mbr-section-btn,
  .cid-sdI4lxQopp .mbr-section-subtitle,
  .cid-sdI4lxQopp .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .cid-sdI4lxQopp .main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cid-sdI4lxQopp .mbr-section-title,
  .cid-sdI4lxQopp .underline,
  .cid-sdI4lxQopp .mbr-section-subtitle {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-sdI4lxQopp .mbr-section-title,
.cid-sdI4lxQopp .underline {
  color: #ffffff;
}
.cid-sdI4lxQopp H3 {
  text-align: center;
}
.cid-sdSlEFyTm8 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sdSlEFyTm8 .container-fluid {
  padding: 0 3rem;
}
.cid-sdSlEFyTm8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
.cid-sdSlEFyTm8 .card {
  display: block;
}
.cid-sdSlEFyTm8 .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-sdSlEFyTm8 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sdSlEFyTm8 .card .card-wrapper .card-img img {
  transition: all 0.5s;
}
.cid-sdSlEFyTm8 .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all 0.5s;
}
.cid-sdSlEFyTm8 .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdSlEFyTm8 .prices {
  color: #ffffff;
}
.cid-sdSlEFyTm8 .oldPrice {
  text-decoration: line-through;
}
.cid-sdSlEFyTm8 .oldPrice,
.cid-sdSlEFyTm8 .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sdSlEFyTm8 .container-fluid {
    padding: 0 1rem;
  }
  .cid-sdSlEFyTm8 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sdSlEFyTm8 .mbr-section-subtitle {
  text-align: center;
  color: #cccccc;
}
.cid-sdSlEFyTm8 .mbr-section-title,
.cid-sdSlEFyTm8 .underline {
  text-align: center;
}
.cid-sdSlEFyTm8 .mbr-text,
.cid-sdSlEFyTm8 .mbr-section-btn {
  color: #cccccc;
}
.cid-sdSlEFyTm8 .mbr-text,
.cid-sdSlEFyTm8 .mbr-section-btn {
  color: #cccccc;
}
.cid-sdS6QLd7ZA {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sdS6QLd7ZA .container-fluid {
  padding: 0 3rem;
}
.cid-sdS6QLd7ZA .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
.cid-sdS6QLd7ZA .card {
  display: block;
}
.cid-sdS6QLd7ZA .card .card-wrapper {
  height: 1%;
  overflow: visible;
}
.cid-sdS6QLd7ZA .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-sdS6QLd7ZA .card .card-wrapper .card-img img {
  transition: all 0.5s;
}
.cid-sdS6QLd7ZA .card .card-wrapper:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all 0.5s;
}
.cid-sdS6QLd7ZA .text-row {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sdS6QLd7ZA .prices {
  color: #ffffff;
}
.cid-sdS6QLd7ZA .oldPrice {
  text-decoration: line-through;
}
.cid-sdS6QLd7ZA .oldPrice,
.cid-sdS6QLd7ZA .newPrice {
  color: inherit;
}
@media (max-width: 767px) {
  .cid-sdS6QLd7ZA .container-fluid {
    padding: 0 1rem;
  }
  .cid-sdS6QLd7ZA .text-row {
    padding-bottom: 1rem;
  }
}
.cid-sdS6QLd7ZA .mbr-section-subtitle {
  text-align: center;
  color: #cccccc;
}
.cid-sdS6QLd7ZA .mbr-section-title,
.cid-sdS6QLd7ZA .underline {
  text-align: center;
}
.cid-sdS6QLd7ZA .prices,
.cid-sdS6QLd7ZA .mbr-section-btn {
  color: #cccccc;
}
.cid-sddWhPUfXt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/news-1920x1280.jpg");
}
.cid-sddWhPUfXt .input-form {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sddWhPUfXt .mbr-form .row {
  position: relative;
  display: inline-block;
  width: 100%;
}
.cid-sddWhPUfXt .form-control {
  padding: 1.7rem 2rem;
}
.cid-sddWhPUfXt .input-group-btn {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0.3rem;
}
.cid-sddWhPUfXt .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-sddWhPUfXt .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #1ba1e2, #fe525b);
  display: inline-block;
}
.cid-sddWhPUfXt .form1 {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sddWhPUfXt .form1 {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .cid-sddWhPUfXt {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .cid-sddWhPUfXt .social-media {
    padding: 0;
    display: block;
  }
  .cid-sddWhPUfXt .subtext-1,
  .cid-sddWhPUfXt .subtext-2 {
    text-align: center !important;
  }
  .cid-sddWhPUfXt .form-text {
    text-align: center !important;
  }
  .cid-sddWhPUfXt .mbr-form {
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100% !important;
  }
  .cid-sddWhPUfXt .input-group-btn {
    position: static;
  }
  .cid-sddWhPUfXt .input-group-btn .btn {
    display: block;
  }
}
.cid-sddWhPUfXt .mbr-title,
.cid-sddWhPUfXt .underline {
  color: #efefef;
}
.cid-sddWhPUfXt .mbr-section-subtitle {
  color: #cccccc;
}
.cid-seZg2sDMeZ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-seZg2sDMeZ .container-fluid {
  padding: 0 3rem;
}
.cid-seZg2sDMeZ .media-container-column {
  padding: 0 2rem;
}
.cid-seZg2sDMeZ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-seZg2sDMeZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-seZg2sDMeZ .mbr-section-subtitle {
  color: #cccccc;
}
.cid-seZg3UjBcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-seZg3UjBcE .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-seZg3UjBcE input,
.cid-seZg3UjBcE textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 1rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-seZg3UjBcE input:focus,
.cid-seZg3UjBcE textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-seZg3UjBcE .form-control,
.cid-seZg3UjBcE .field-input {
  padding: 0.5rem;
  background-color: #232323;
  border-color: #000000;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-seZg3UjBcE .form-control:hover,
.cid-seZg3UjBcE .field-input:hover,
.cid-seZg3UjBcE .form-control:focus,
.cid-seZg3UjBcE .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-seZg3UjBcE input::-webkit-input-placeholder,
.cid-seZg3UjBcE textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.cid-seZg3UjBcE input:-moz-placeholder,
.cid-seZg3UjBcE textarea:-moz-placeholder {
  color: #cccccc;
}
.cid-seZg3UjBcE .jq-selectbox li,
.cid-seZg3UjBcE .jq-selectbox li {
  background-color: #232323;
  color: #ffffff;
}
.cid-seZg3UjBcE .jq-selectbox li:hover,
.cid-seZg3UjBcE .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-seZg3UjBcE .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #232323;
}
.cid-seZg3UjBcE .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efefef;
}
.cid-seZg3UjBcE img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-seZg3UjBcE .mbr-form {
  max-width: 450px;
}
.cid-seZg3UjBcE textarea {
  min-height: 150px;
}
.cid-seZg3UjBcE .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-seZg3UjBcE .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-seZg3UjBcE .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-seZg3UjBcE H2 {
  text-align: left;
}
.cid-seZg3UjBcE LABEL {
  color: #ffffff;
}
.cid-reUoA64wjX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-reUoA64wjX .container-fluid {
  padding: 0 3rem;
}
.cid-reUoA64wjX .media-container-column {
  padding: 0 2rem;
}
.cid-reUoA64wjX .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-reUoA64wjX .container-fluid {
    padding: 0 1rem;
  }
}
.cid-reUoA64wjX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-reUoA64wjX .mbr-section-title SPAN {
  color: #ffffff;
}
.cid-sfOSl60F3u .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-sfOSl60F3u .nav-item:focus,
.cid-sfOSl60F3u .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sfOSl60F3u .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sfOSl60F3u .nav-item .nav-link {
    position: relative;
  }
  .cid-sfOSl60F3u .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #1ba1e2, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sfOSl60F3u .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sfOSl60F3u .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfOSl60F3u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sfOSl60F3u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sfOSl60F3u .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-sfOSl60F3u .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sfOSl60F3u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sfOSl60F3u .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-sfOSl60F3u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sfOSl60F3u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sfOSl60F3u .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
}
.cid-sfOSl60F3u .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-sfOSl60F3u .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sfOSl60F3u .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sfOSl60F3u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sfOSl60F3u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sfOSl60F3u .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sfOSl60F3u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sfOSl60F3u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sfOSl60F3u .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-sfOSl60F3u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sfOSl60F3u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sfOSl60F3u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sfOSl60F3u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sfOSl60F3u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sfOSl60F3u .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sfOSl60F3u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sfOSl60F3u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sfOSl60F3u .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-sfOSl60F3u .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sfOSl60F3u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sfOSl60F3u .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sfOSl60F3u .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sfOSl60F3u .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sfOSl60F3u .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sfOSl60F3u .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-sfOSl60F3u .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sfOSl60F3u .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sfOSl60F3u .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-sfOSl60F3u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sfOSl60F3u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sfOSl60F3u .dropdown-item.active,
.cid-sfOSl60F3u .dropdown-item:active {
  background-color: transparent;
}
.cid-sfOSl60F3u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sfOSl60F3u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sfOSl60F3u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sfOSl60F3u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-sfOSl60F3u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sfOSl60F3u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sfOSl60F3u ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sfOSl60F3u .navbar-buttons {
  text-align: center;
}
.cid-sfOSl60F3u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sfOSl60F3u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sfOSl60F3u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sfOSl60F3u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sfOSl60F3u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sfOSl60F3u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sfOSl60F3u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfOSl60F3u nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sfOSl60F3u nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sfOSl60F3u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sfOSl60F3u .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sfOSl60F3u a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sfOSl60F3u .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sfOSl60F3u .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sfOSl60F3u .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sfOSl60F3u .navbar {
    height: 77px;
  }
  .cid-sfOSl60F3u .navbar.opened {
    height: auto;
  }
  .cid-sfOSl60F3u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sfOSluoiqJ {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sfOSluoiqJ .container-fluid {
  padding: 0 3rem;
}
.cid-sfOSluoiqJ .media-container-column {
  padding: 0 2rem;
}
.cid-sfOSluoiqJ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-sfOSluoiqJ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sfOSluoiqJ .mbr-section-subtitle {
  color: #cccccc;
}
.cid-sfOSluZIRx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-sfOSluZIRx .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sfOSluZIRx input,
.cid-sfOSluZIRx textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 0;
  min-height: 1rem;
  padding: 0rem!important;
  font-size: 1rem;
}
.cid-sfOSluZIRx input:focus,
.cid-sfOSluZIRx textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-sfOSluZIRx .form-control,
.cid-sfOSluZIRx .field-input {
  padding: 0.5rem;
  background-color: #000000;
  border-color: #000000;
  color: #767676;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sfOSluZIRx .form-control:hover,
.cid-sfOSluZIRx .field-input:hover,
.cid-sfOSluZIRx .form-control:focus,
.cid-sfOSluZIRx .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sfOSluZIRx input::-webkit-input-placeholder,
.cid-sfOSluZIRx textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.cid-sfOSluZIRx input:-moz-placeholder,
.cid-sfOSluZIRx textarea:-moz-placeholder {
  color: #cccccc;
}
.cid-sfOSluZIRx .jq-selectbox li,
.cid-sfOSluZIRx .jq-selectbox li {
  background-color: #000000;
  color: #ffffff;
}
.cid-sfOSluZIRx .jq-selectbox li:hover,
.cid-sfOSluZIRx .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sfOSluZIRx .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000000;
}
.cid-sfOSluZIRx .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #efefef;
}
.cid-sfOSluZIRx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sfOSluZIRx .mbr-form {
  max-width: 450px;
}
.cid-sfOSluZIRx textarea {
  min-height: 150px;
}
.cid-sfOSluZIRx .mbr-text {
  color: #cccccc;
  text-align: left;
}
.cid-sfOSluZIRx .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-sfOSluZIRx .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-sfOSluZIRx H2 {
  text-align: left;
}
.cid-sfOSluZIRx LABEL {
  color: #ffffff;
}
.cid-sfOSlvPPby {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sfOSlvPPby .container-fluid {
  padding: 0 3rem;
}
.cid-sfOSlvPPby .media-container-column {
  padding: 0 2rem;
}
.cid-sfOSlvPPby .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #cccccc;
}
@media (max-width: 767px) {
  .cid-sfOSlvPPby .container-fluid {
    padding: 0 1rem;
  }
}
.cid-sfOSlvPPby .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sfOSlvPPby .mbr-section-title SPAN {
  color: #ffffff;
}
