@import url(https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i);





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Lato', sans-serif;
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((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 {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #16a16c !important;
}
.bg-info {
  background-color: #4285f4 !important;
}
.bg-warning {
  background-color: #ec620f !important;
}
.bg-danger {
  background-color: #13435c !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a4440a;
  border-color: #a4440a;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ec620f !important;
  border-color: #ec620f !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #a4440a !important;
  border-color: #a4440a !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a4440a !important;
  border-color: #a4440a !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d5bdd;
  border-color: #0d5bdd;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #4285f4 !important;
  border-color: #4285f4 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #0d5bdd !important;
  border-color: #0d5bdd !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0d5bdd !important;
  border-color: #0d5bdd !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d5e3f;
  border-color: #0d5e3f;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #16a16c !important;
  border-color: #16a16c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0d5e3f !important;
  border-color: #0d5e3f !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0d5e3f !important;
  border-color: #0d5e3f !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a4440a;
  border-color: #a4440a;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #ec620f !important;
  border-color: #ec620f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a4440a !important;
  border-color: #a4440a !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a4440a !important;
  border-color: #a4440a !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #06151d;
  border-color: #06151d;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #13435c !important;
  border-color: #13435c !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #06151d !important;
  border-color: #06151d !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #06151d !important;
  border-color: #06151d !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);
  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 {
  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);
  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 {
  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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ec620f;
  border-color: #ec620f;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #8c3a09;
  color: #8c3a09 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ec620f;
  border-color: #ec620f;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ec620f !important;
  border-color: #ec620f !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #4285f4;
  border-color: #4285f4;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #0b51c5;
  color: #0b51c5 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #4285f4;
  border-color: #4285f4;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4285f4 !important;
  border-color: #4285f4 !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #16a16c;
  border-color: #16a16c;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0a4730;
  color: #0a4730 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #16a16c;
  border-color: #16a16c;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #16a16c !important;
  border-color: #16a16c !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ec620f;
  border-color: #ec620f;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8c3a09;
  color: #8c3a09 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #ec620f;
  border-color: #ec620f;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ec620f !important;
  border-color: #ec620f !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);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13435c;
  border-color: #13435c;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #020507;
  color: #020507 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #13435c;
  border-color: #13435c;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #13435c !important;
  border-color: #13435c !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);
  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 {
  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);
  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 {
  transform: scale(10);
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #ec620f !important;
}
.text-success {
  color: #16a16c !important;
}
.text-info {
  color: #4285f4 !important;
}
.text-warning {
  color: #ec620f !important;
}
.text-danger {
  color: #13435c !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8c3a09 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0a4730 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0b51c5 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8c3a09 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #020507 !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: #16a16c;
}
.alert-info {
  background-color: #4285f4;
}
.alert-warning {
  background-color: #ec620f;
}
.alert-danger {
  background-color: #13435c;
}
.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: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4fe7ad;
}
.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: #fcddcb;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #2990c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #ffffff;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffffff;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffffff;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
/* Headers*/
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSy9wv55M0 {
  background-image: url("../../../assets/images/5570-2000x1600.jpg");
}
.cid-qSy9wv55M0 .mbr-section-title,
.cid-qSy9wv55M0 .mbr-section-subtitle {
  color: #000000;
}
.cid-qSy9wv55M0 .mbr-section-text {
  color: #232323;
}
.cid-qSy9wv55M0 .mbr-text,
.cid-qSy9wv55M0 .typed-text,
.cid-qSy9wv55M0 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qSy9wv55M0 .btn {
  margin-left: 4px !important;
}
.cid-qSy9wv55M0 .animated-element {
  color: #ec620f;
}
.cid-qSy9wv55M0 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ec620f;
}
@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-qSy9wv55M0 .mbr-section-title {
  color: #ffffff;
}
.cid-qSy9wv55M0 .mbr-section-subtitle,
.cid-qSy9wv55M0 .typed-text {
  color: #ffffff;
}
.cid-qSy9wv55M0 .mbr-section-text,
.cid-qSy9wv55M0 .mbr-section-btn {
  color: #ffffff;
}
.cid-qSy9wv55M0 .mbr-section-subtitle,
.cid-qSy9wv55M0 .typed-text B {
  color: #ec620f;
}
.cid-qVRoHCR0W2 {
  display: flex;
  background-color: #ffffff;
}
.cid-qVRoHCR0W2 .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qVRoHCR0W2 .mbr-section-title {
  margin: 0;
}
.cid-qVRoHCR0W2 .mbr-text {
  color: #000000;
}
.cid-qVRoHCR0W2 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-qVRoHCR0W2 .card-img {
  text-align: left;
}
.cid-qVRoHCR0W2 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qVRoHCR0W2 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qVRoHCR0W2 .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qVRoHCR0W2 .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qVRoHCR0W2 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qVRoHCR0W2 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qVRoHCR0W2 .card-title,
.cid-qVRoHCR0W2 .card-img {
  text-align: left;
  color: #13435c;
}
.cid-qVRoHCR0W2 .mbr-section-subtitle,
.cid-qVRoHCR0W2 .mbr-section-btn {
  color: #000000;
}
.cid-qVRoHCR0W2 .title-cont,
.cid-qVRoHCR0W2 .mbr-section-title {
  color: #13435c;
}
.cid-qSh8cfslAa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-17-1620x1080.jpg");
}
.cid-qSh8cfslAa .container-fluid {
  padding: 0 3rem;
}
.cid-qSh8cfslAa .media-container-column {
  padding: 0 2rem;
}
.cid-qSh8cfslAa .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qSh8cfslAa .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qSh8cfslAa .mbr-section-subtitle {
  color: #ea5f11;
}
.cid-qSh8cfslAa .mbr-section-subtitle B {
  color: #ec620f;
}
.cid-qYaTF0pLTV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qYaTF0pLTV .container-fluid {
  padding: 0 3rem;
}
.cid-qYaTF0pLTV .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qYaTF0pLTV .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qYaTF0pLTV .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qYaTF0pLTV .card .card-wrapper {
  height: 1%;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-img .img-text {
  position: absolute;
  padding: .6rem;
  top: 0;
  left: 0;
  z-index: 1;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #147ccb;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-img .img-name {
  position: absolute;
  padding: .6rem;
  bottom: 0;
  right: 0;
  width: 100%;
}
.cid-qYaTF0pLTV .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qYaTF0pLTV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qYaTF0pLTV .mbr-section-title,
.cid-qYaTF0pLTV .underline {
  text-align: center;
}
.cid-qYaTF0pLTV .mbr-section-title,
.cid-qYaTF0pLTV .underline B {
  color: #13435c;
}
.cid-qYaTF0pLTV .mbr-card-text,
.cid-qYaTF0pLTV .mbr-section-btn {
  text-align: left;
}
.cid-qYaTF0pLTV .card-img > .img-name {
  color: #147ccb;
}
.cid-qYaTF0pLTV .mbr-card-text,
.cid-qYaTF0pLTV .mbr-section-btn B {
  color: #000000;
}
.cid-qY8cQL4scu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #13435c;
  background: linear-gradient(90deg, #13435c, #082432);
}
.cid-qY8cQL4scu .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-qY89Wi4sTj {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qY89Wi4sTj .mbr-figure {
  padding: 0;
}
.cid-qY89Wi4sTj .content-row {
  background-color: #0c57bf;
}
.cid-qY89Wi4sTj .content-row .media-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url("../../../assets/images/background2-1.jpg");
}
.cid-qY89Wi4sTj .content-row .media-content .mbr-overlay {
  background: linear-gradient(90deg, #0c57bf, #147ccb);
}
.cid-qY89Wi4sTj .content-row .media-content .content-block {
  z-index: 1;
}
.cid-qXzzBIotI8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXzzBIotI8 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXzzBIotI8 .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXzzBIotI8 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXzzBIotI8 .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXzzBIotI8 .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXzzBIotI8 .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2m6ZKqrw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2m6ZKqrw .content {
    text-align: center;
  }
  .cid-qY2m6ZKqrw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2m6ZKqrw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2m6ZKqrw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2m6ZKqrw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2m6ZKqrw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2m6ZKqrw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2m6ZKqrw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2m6ZKqrw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2m6ZKqrw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2m6ZKqrw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2m6ZKqrw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2m6ZKqrw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2m6ZKqrw P {
  color: #13435c;
}
.cid-qY2m6ZKqrw H5 {
  color: #f39322;
}
.cid-qY2m6ZKqrw B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qTQREQlixi .media-content .btn-bgr {
  z-index: 0;
}
.cid-qTQREQlixi .mbr-overlay {
  background: linear-gradient(90deg, #0c2c3d, #0c2c3d);
}
@media (min-width: 992px) {
  .cid-qTQREQlixi .media-content {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
@media (max-width: 991px) {
  .cid-qTQREQlixi {
    text-align: center !important;
  }
  .cid-qTQREQlixi .mbr-text {
    text-align: center;
  }
}
.cid-qTQREQlixi .media-container-row {
  justify-content: flex-start;
}
.cid-qTQREQlixi B {
  color: #ec620f;
}
.cid-qUa5hGETpF {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ec620f;
}
.cid-qUa5hGETpF .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-qShgk5WGR8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qShgk5WGR8 .container-fluid {
  padding: 0 3rem;
}
.cid-qShgk5WGR8 .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qShgk5WGR8 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qShgk5WGR8 .signature > span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qShgk5WGR8 .blockquote-quote {
    text-align: left;
  }
  .cid-qShgk5WGR8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qShgk5WGR8 .mbr-section-title {
  color: #f39322;
}
.cid-qShgk5WGR8 .mbr-text,
.cid-qShgk5WGR8 .blockquote-quote {
  color: #ffffff;
}
.cid-qShgk5WGR8 .mbr-text,
.cid-qShgk5WGR8 .blockquote-quote P {
  color: #232323;
}
.cid-qShitfGbRW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qShitfGbRW .container-fluid {
  padding: 0 3rem;
}
.cid-qShitfGbRW .blockquote-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qShitfGbRW svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qShitfGbRW .signature > span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qShitfGbRW .blockquote-quote {
    text-align: left;
  }
  .cid-qShitfGbRW .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qShitfGbRW .mbr-section-title {
  color: #13435c;
}
.cid-qUa3WI9SWd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qUa3WI9SWd p {
  color: #767676;
}
.cid-qUa3WI9SWd .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qUa3WI9SWd .row-element,
.cid-qUa3WI9SWd .image-element {
  padding: 0;
}
.cid-qUa3WI9SWd .image-element {
  display: flex;
  justify-content: center;
}
.cid-qUa3WI9SWd .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qUa3WI9SWd .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qUa3WI9SWd .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qUa3WI9SWd .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qUa3WI9SWd .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qUa3WI9SWd .text-content {
    padding: 2rem 1rem;
  }
  .cid-qUa3WI9SWd .underline .line {
    height: 2px;
  }
  .cid-qUa3WI9SWd .mbr-title,
  .cid-qUa3WI9SWd .underline,
  .cid-qUa3WI9SWd .mbr-text,
  .cid-qUa3WI9SWd .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qUa3WI9SWd .mbr-text,
.cid-qUa3WI9SWd .mbr-section-btn {
  color: #000000;
}
.cid-qUa3WI9SWd .mbr-title,
.cid-qUa3WI9SWd .underline {
  color: #0c2c3d;
}
.cid-qTQWtuPum4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qTQWtuPum4 .container-fluid {
  padding: 0 3rem;
}
.cid-qTQWtuPum4 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff 50%, #ec620f 120%);
  display: inline-block;
}
.cid-qTQWtuPum4 .card {
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-qTQWtuPum4 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title:hover .sign {
  background-color: #13435c !important;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #0c2c3d;
  padding: 2rem;
  padding-top: 26px;
  color: white;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.cid-qTQWtuPum4 .card .card-header a.panel-title h4 .toggle-title {
  user-select: initial;
  pointer-events: auto;
}
.cid-qTQWtuPum4 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qTQWtuPum4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qTQWtuPum4 .header-text {
    padding: 1rem !important;
  }
  .cid-qTQWtuPum4 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qTQWtuPum4 .panel-body {
    width: calc(100% - 48px);
  }
}
.cid-qXBWn1k899 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #082432;
}
.cid-qXBWn1k899 .carousel-item {
  justify-content: center;
}
.cid-qXBWn1k899 .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
}
.cid-qXBWn1k899 .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
}
.cid-qXBWn1k899 .carousel-item.active,
.cid-qXBWn1k899 .carousel-item-next,
.cid-qXBWn1k899 .carousel-item-prev {
  display: flex;
}
.cid-qXBWn1k899 .carousel-controls a {
  transition: opacity .5s;
}
.cid-qXBWn1k899 .carousel-controls a:hover span,
.cid-qXBWn1k899 .carousel-controls a:focus span {
  opacity: 1;
}
.cid-qXBWn1k899 .carousel-controls a:hover svg,
.cid-qXBWn1k899 .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-qXBWn1k899 .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-qXBWn1k899 .user_image {
  overflow: hidden;
  display: flex;
}
.cid-qXBWn1k899 .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-qXBWn1k899 .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qXBWn1k899 .user_text {
  color: #767676;
}
.cid-qXBWn1k899 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXBWn1k899 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXBWn1k899 .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qXBWn1k899 svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qXBWn1k899 .user_name {
  color: #ec620f;
}
.cid-qXBWn1k899 .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-qXBWn1k899 .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-qXBWn1k899 .testimonials-quote,
  .cid-qXBWn1k899 .user_text,
  .cid-qXBWn1k899 .user_name,
  .cid-qXBWn1k899 .user_desk {
    text-align: center !important;
  }
  .cid-qXBWn1k899 .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-qXBWn1k899 .mbr-section-title,
  .cid-qXBWn1k899 .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-qXBWn1k899 .carousel-control-prev span {
    right: -1rem;
  }
  .cid-qXBWn1k899 .carousel-control-next span {
    left: -1rem;
  }
  .cid-qXBWn1k899 .user-text {
    padding-right: 2rem;
  }
  .cid-qXBWn1k899 .carousel-control-prev,
  .cid-qXBWn1k899 .carousel-control-next {
    align-items: center;
  }
}
.cid-qXBWn1k899 .user_text,
.cid-qXBWn1k899 .testimonials-quote I {
  color: #cccccc;
}
.cid-qXBWn1k899 .mbr-section-title,
.cid-qXBWn1k899 .underline {
  color: #ffffff;
}
.cid-qXBWn1k899 .user_desk {
  color: #efefef;
}
.cid-qXBWojOAuT {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXBWojOAuT .mbr-section-title {
  letter-spacing: 0.1em;
  color: #082432;
}
.cid-qXBWojOAuT .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qXBWojOAuT .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qXBWojOAuT .wrap-img {
  padding-bottom: 1rem;
}
.cid-qXBWojOAuT .wrap-img img {
  max-width: 100%;
}
.cid-qXBWojOAuT .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qXOPztllKL {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qXOPztllKL .mbr-section-title {
  letter-spacing: 0.1em;
  color: #082432;
}
.cid-qXOPztllKL .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qXOPztllKL .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qXOPztllKL .wrap-img {
  padding-bottom: 1rem;
}
.cid-qXOPztllKL .wrap-img img {
  max-width: 100%;
}
.cid-qXOPztllKL .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qXzzEEdJQi {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXzzEEdJQi .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXzzEEdJQi .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXzzEEdJQi .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXzzEEdJQi .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXzzEEdJQi .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXzzEEdJQi .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2m44mwWw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2m44mwWw .content {
    text-align: center;
  }
  .cid-qY2m44mwWw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2m44mwWw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2m44mwWw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2m44mwWw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2m44mwWw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2m44mwWw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2m44mwWw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2m44mwWw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2m44mwWw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2m44mwWw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2m44mwWw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2m44mwWw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2m44mwWw P {
  color: #13435c;
}
.cid-qY2m44mwWw H5 {
  color: #f39322;
}
.cid-qY2m44mwWw B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qT6cvpmTo8 {
  background-image: url("../../../assets/images/junction-960801-1920-1920x1281.jpg");
  overflow: hidden !important;
}
.cid-qT6cvpmTo8 .container-fluid {
  padding: 0 3rem;
}
.cid-qT6cvpmTo8 .animated-element {
  color: #efefef;
}
@media (max-width: 767px) {
  .cid-qT6cvpmTo8 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qT6cvpmTo8 .mbr-section-title {
  color: #ec620f;
}
.cid-qT6cvpmTo8 .mbr-section-subtitle,
.cid-qT6cvpmTo8 .mbr-section-btn {
  color: #ffffff;
}
.cid-qXzmUs9mUp {
  display: flex;
  background-color: #ffffff;
}
.cid-qXzmUs9mUp .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qXzmUs9mUp .mbr-section-title {
  margin: 0;
}
.cid-qXzmUs9mUp .mbr-text {
  color: #000000;
}
.cid-qXzmUs9mUp .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-qXzmUs9mUp .card-img {
  text-align: left;
}
.cid-qXzmUs9mUp .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qXzmUs9mUp .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qXzmUs9mUp .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qXzmUs9mUp .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qXzmUs9mUp .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qXzmUs9mUp .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qXzmUs9mUp .card-title,
.cid-qXzmUs9mUp .card-img {
  text-align: left;
  color: #13435c;
}
.cid-qXzmUs9mUp .mbr-section-subtitle,
.cid-qXzmUs9mUp .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-qXzmUs9mUp .title-cont,
.cid-qXzmUs9mUp .mbr-section-title {
  color: #13435c;
  text-align: center;
}
.cid-qXzmUs9mUp .mbr-section-subtitle,
.cid-qXzmUs9mUp .mbr-section-btn B {
  color: #082432;
}
.cid-qXzpjNFOOP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #082432;
}
.cid-qXzpjNFOOP .carousel-item {
  justify-content: center;
}
.cid-qXzpjNFOOP .carousel-control-prev {
  justify-content: flex-end;
  align-items: flex-end;
}
.cid-qXzpjNFOOP .carousel-control-next {
  justify-content: flex-start;
  align-items: flex-end;
}
.cid-qXzpjNFOOP .carousel-item.active,
.cid-qXzpjNFOOP .carousel-item-next,
.cid-qXzpjNFOOP .carousel-item-prev {
  display: flex;
}
.cid-qXzpjNFOOP .carousel-controls a {
  transition: opacity .5s;
}
.cid-qXzpjNFOOP .carousel-controls a:hover span,
.cid-qXzpjNFOOP .carousel-controls a:focus span {
  opacity: 1;
}
.cid-qXzpjNFOOP .carousel-controls a:hover svg,
.cid-qXzpjNFOOP .carousel-controls a:focus svg {
  transition: all .25s;
  stroke-width: 3;
}
.cid-qXzpjNFOOP .carousel-controls a:active svg {
  transition: all .1s;
  stroke-width: 5;
}
.cid-qXzpjNFOOP .user_image {
  overflow: hidden;
  display: flex;
}
.cid-qXzpjNFOOP .user_image .user_image_inner {
  max-width: 200px;
  max-height: 200px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin: 0 auto 3rem auto;
}
.cid-qXzpjNFOOP .user_image .user_image_inner img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qXzpjNFOOP .user_text {
  color: #767676;
}
.cid-qXzpjNFOOP .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXzpjNFOOP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXzpjNFOOP .testimonials-quote svg {
  height: 30px;
  width: 30px;
}
.cid-qXzpjNFOOP svg.svg-gradient {
  position: absolute;
  opacity: 0;
  z-index: -100;
}
.cid-qXzpjNFOOP .user_name {
  color: #ec620f;
}
.cid-qXzpjNFOOP .carousel-controls svg {
  height: 60px;
}
@media (max-width: 230px) {
  .cid-qXzpjNFOOP .user_image_inner {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 991px) {
  .cid-qXzpjNFOOP .testimonials-quote,
  .cid-qXzpjNFOOP .user_text,
  .cid-qXzpjNFOOP .user_name,
  .cid-qXzpjNFOOP .user_desk {
    text-align: center !important;
  }
  .cid-qXzpjNFOOP .carousel-controls a span {
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 768px) {
  .cid-qXzpjNFOOP .mbr-section-title,
  .cid-qXzpjNFOOP .underline {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1200px) {
  .cid-qXzpjNFOOP .carousel-control-prev span {
    right: -1rem;
  }
  .cid-qXzpjNFOOP .carousel-control-next span {
    left: -1rem;
  }
  .cid-qXzpjNFOOP .user-text {
    padding-right: 2rem;
  }
  .cid-qXzpjNFOOP .carousel-control-prev,
  .cid-qXzpjNFOOP .carousel-control-next {
    align-items: center;
  }
}
.cid-qXzpjNFOOP .user_text,
.cid-qXzpjNFOOP .testimonials-quote I {
  color: #cccccc;
}
.cid-qXzpjNFOOP .mbr-section-title,
.cid-qXzpjNFOOP .underline {
  color: #ffffff;
}
.cid-qXzpjNFOOP .user_desk {
  color: #efefef;
}
.cid-qXzrX0iw31 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXzrX0iw31 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #082432;
}
.cid-qXzrX0iw31 .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qXzrX0iw31 .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qXzrX0iw31 .wrap-img {
  padding-bottom: 1rem;
}
.cid-qXzrX0iw31 .wrap-img img {
  max-width: 100%;
}
.cid-qXzrX0iw31 .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qXzvHj20GX {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qXzvHj20GX .mbr-section-title {
  letter-spacing: 0.1em;
  color: #082432;
}
.cid-qXzvHj20GX .mbr-section-subtitle {
  color: #444444;
  letter-spacing: 0.03em;
}
.cid-qXzvHj20GX .client-name {
  color: #444;
  letter-spacing: 0.05em;
}
.cid-qXzvHj20GX .wrap-img {
  padding-bottom: 1rem;
}
.cid-qXzvHj20GX .wrap-img img {
  max-width: 100%;
}
.cid-qXzvHj20GX .card-box p {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-qShbQQxal2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ea5f11;
  background: linear-gradient(90deg, #ea5f11, #f39322);
}
.cid-qShbQQxal2 .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-qXChln5O8K {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXChln5O8K .container-fluid {
  padding: 0 3rem;
}
.cid-qXChln5O8K .media-container-column {
  padding: 0 2rem;
}
.cid-qXChln5O8K .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qXChln5O8K .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXChln5O8K .mbr-section-subtitle B {
  color: #ec620f;
}
.cid-qXChln5O8K .mbr-section-title P {
  color: #232323;
}
.cid-qXCgNobQAG {
  overflow-x: hidden !important;
}
.cid-qXCgNobQAG .container-fluid {
  padding: 0 3rem;
}
.cid-qXCgNobQAG .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  background-image: url("../../../assets/images/productos-jonticd-2000x653.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  transform: translateZ(0);
}
.cid-qXCgNobQAG .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-qXCgNobQAG .mbr-overlay {
  z-index: 1;
}
.cid-qXCgNobQAG .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-qXCgNobQAG .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXzyOdsUzi {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXzyOdsUzi .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXzyOdsUzi .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXzyOdsUzi .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXzyOdsUzi .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXzyOdsUzi .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXzyOdsUzi .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2meRjNdf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2meRjNdf .content {
    text-align: center;
  }
  .cid-qY2meRjNdf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2meRjNdf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2meRjNdf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2meRjNdf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2meRjNdf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2meRjNdf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2meRjNdf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2meRjNdf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2meRjNdf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2meRjNdf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2meRjNdf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2meRjNdf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2meRjNdf P {
  color: #13435c;
}
.cid-qY2meRjNdf H5 {
  color: #f39322;
}
.cid-qY2meRjNdf B {
  color: #131522;
}
.cid-qVROHrY5r9 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-2-1617x1080.jpg");
}
.cid-qVROHrY5r9 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qVROHrY5r9 .mbr-text {
  width: 100%;
  height: auto;
  color: #232323;
}
@media (max-width: 991px) {
  .cid-qVROHrY5r9 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qVROHrY5r9 .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qVROHrY5r9 .mbr-section-title {
  color: #f39322;
  text-align: center;
}
.cid-qVROHrY5r9 .mbr-section-title B {
  color: #ffffff;
}
.cid-qSgxjm1Auz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSgxjm1Auz .nav-item:focus,
.cid-qSgxjm1Auz .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSgxjm1Auz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSgxjm1Auz .nav-item .nav-link {
    position: relative;
  }
  .cid-qSgxjm1Auz .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSgxjm1Auz .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSgxjm1Auz .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSgxjm1Auz .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-qSgxjm1Auz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSgxjm1Auz .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSgxjm1Auz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSgxjm1Auz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSgxjm1Auz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSgxjm1Auz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSgxjm1Auz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSgxjm1Auz .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSgxjm1Auz .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSgxjm1Auz .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSgxjm1Auz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSgxjm1Auz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSgxjm1Auz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSgxjm1Auz .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSgxjm1Auz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSgxjm1Auz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSgxjm1Auz .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-qSgxjm1Auz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSgxjm1Auz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSgxjm1Auz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSgxjm1Auz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSgxjm1Auz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSgxjm1Auz .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSgxjm1Auz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSgxjm1Auz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSgxjm1Auz .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-qSgxjm1Auz .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSgxjm1Auz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSgxjm1Auz .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSgxjm1Auz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSgxjm1Auz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSgxjm1Auz .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSgxjm1Auz .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSgxjm1Auz .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSgxjm1Auz .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSgxjm1Auz .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSgxjm1Auz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSgxjm1Auz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSgxjm1Auz .dropdown-item.active,
.cid-qSgxjm1Auz .dropdown-item:active {
  background-color: transparent;
}
.cid-qSgxjm1Auz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSgxjm1Auz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSgxjm1Auz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSgxjm1Auz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSgxjm1Auz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSgxjm1Auz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSgxjm1Auz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSgxjm1Auz .navbar-buttons {
  text-align: center;
}
.cid-qSgxjm1Auz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSgxjm1Auz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSgxjm1Auz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSgxjm1Auz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSgxjm1Auz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSgxjm1Auz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSgxjm1Auz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSgxjm1Auz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSgxjm1Auz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSgxjm1Auz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSgxjm1Auz .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSgxjm1Auz a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSgxjm1Auz .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSgxjm1Auz .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSgxjm1Auz .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSgxjm1Auz .navbar {
    height: 77px;
  }
  .cid-qSgxjm1Auz .navbar.opened {
    height: auto;
  }
  .cid-qSgxjm1Auz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qY2n4HQXmN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qY2n4HQXmN .container-fluid {
  padding: 0 3rem;
}
.cid-qY2n4HQXmN .mbr-section-title {
  margin-bottom: 1.5em;
}
.cid-qY2n4HQXmN .input-main {
  width: 99.6%;
  margin-left: .1em;
  justify-content: center;
}
.cid-qY2n4HQXmN .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qY2n4HQXmN .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qY2n4HQXmN .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #efefef;
  padding: 18px 25px;
  width: 96%;
}
.cid-qY2n4HQXmN .form-group {
  padding: 0;
}
.cid-qY2n4HQXmN .form-group textarea {
  background-color: #efefef;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qY2n4HQXmN .btn-row {
  padding-left: 0;
}
.cid-qY2n4HQXmN .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-qY2n4HQXmN .container-fluid {
    padding: 0 1rem;
  }
  .cid-qY2n4HQXmN .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-qY2n4HQXmN .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2qczILKj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qY2qczILKj .container-fluid {
  padding: 0 3rem;
}
.cid-qY2qczILKj .mbr-section-title {
  color: #13435c;
  text-align: right;
}
.cid-qY2qczILKj .btn {
  margin-top: 0;
}
.cid-qY2qczILKj .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-qY2qczILKj .container-fluid {
    padding: 0 1rem;
  }
  .cid-qY2qczILKj .btn {
    margin-top: 0.4rem;
  }
  .cid-qY2qczILKj .mbr-section-btn {
    margin: 0;
  }
}
.cid-qY2qczILKj .mbr-section-subtitle {
  text-align: right;
  color: #000000;
}
.cid-qVRM1wEN2t .google-map {
  height: 25rem;
  position: relative;
}
.cid-qVRM1wEN2t .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-qVRM1wEN2t .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-qVRM1wEN2t .google-map[data-state] {
  background: #e9e5dc;
}
.cid-qVRM1wEN2t .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-qXzAg5ZwGf {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXzAg5ZwGf .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXzAg5ZwGf .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXzAg5ZwGf .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXzAg5ZwGf .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXzAg5ZwGf .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXzAg5ZwGf .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2mhuLVOf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2mhuLVOf .content {
    text-align: center;
  }
  .cid-qY2mhuLVOf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2mhuLVOf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2mhuLVOf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2mhuLVOf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2mhuLVOf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2mhuLVOf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2mhuLVOf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2mhuLVOf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2mhuLVOf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2mhuLVOf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2mhuLVOf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2mhuLVOf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2mhuLVOf P {
  color: #13435c;
}
.cid-qY2mhuLVOf H5 {
  color: #f39322;
}
.cid-qY2mhuLVOf B {
  color: #131522;
}
.cid-qSkXukUsyu .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSkXukUsyu .nav-item:focus,
.cid-qSkXukUsyu .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSkXukUsyu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSkXukUsyu .nav-item .nav-link {
    position: relative;
  }
  .cid-qSkXukUsyu .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSkXukUsyu .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSkXukUsyu .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSkXukUsyu .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-qSkXukUsyu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSkXukUsyu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSkXukUsyu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSkXukUsyu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSkXukUsyu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSkXukUsyu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSkXukUsyu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSkXukUsyu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSkXukUsyu .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSkXukUsyu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSkXukUsyu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSkXukUsyu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSkXukUsyu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSkXukUsyu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSkXukUsyu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSkXukUsyu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSkXukUsyu .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-qSkXukUsyu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSkXukUsyu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSkXukUsyu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSkXukUsyu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSkXukUsyu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSkXukUsyu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSkXukUsyu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSkXukUsyu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSkXukUsyu .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-qSkXukUsyu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSkXukUsyu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSkXukUsyu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSkXukUsyu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSkXukUsyu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSkXukUsyu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSkXukUsyu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSkXukUsyu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSkXukUsyu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSkXukUsyu .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSkXukUsyu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSkXukUsyu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSkXukUsyu .dropdown-item.active,
.cid-qSkXukUsyu .dropdown-item:active {
  background-color: transparent;
}
.cid-qSkXukUsyu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSkXukUsyu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSkXukUsyu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSkXukUsyu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSkXukUsyu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSkXukUsyu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSkXukUsyu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSkXukUsyu .navbar-buttons {
  text-align: center;
}
.cid-qSkXukUsyu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSkXukUsyu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSkXukUsyu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSkXukUsyu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSkXukUsyu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSkXukUsyu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSkXukUsyu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSkXukUsyu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSkXukUsyu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSkXukUsyu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSkXukUsyu .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSkXukUsyu a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSkXukUsyu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSkXukUsyu .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSkXukUsyu .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSkXukUsyu .navbar {
    height: 77px;
  }
  .cid-qSkXukUsyu .navbar.opened {
    height: auto;
  }
  .cid-qSkXukUsyu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSkXwMR5rw {
  padding-top: 150px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/testbg-1420x1002.jpg");
}
.cid-qSkXwMR5rw .row {
  margin-left: -5rem;
}
.cid-qSkXwMR5rw .slider-text-two {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-qSkXwMR5rw .mbr-section-title,
.cid-qSkXwMR5rw .mbr-section-subtitle {
  color: #232323;
}
.cid-qSkXwMR5rw .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-qSkXwMR5rw .mbr-text {
  color: #232323;
  font-weight: 100;
}
.cid-qSkXwMR5rw .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-qSkXwMR5rw .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSkXwMR5rw .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.cid-qSkXwMR5rw .mbr-section-title {
  color: #0c2c3d;
}
.cid-qVRWA2IOS8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qVRWA2IOS8 .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-qVRWA2IOS8 .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-qVRWA2IOS8 .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-qVRWA2IOS8 .card-title,
.cid-qVRWA2IOS8 .card-img {
  color: #0c2c3d;
}
.cid-qVRWA2IOS8 .mbr-text,
.cid-qVRWA2IOS8 .mbr-section-btn {
  color: #000000;
}
.cid-qXP1ZDrB9C {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP1ZDrB9C .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP1ZDrB9C .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP1ZDrB9C .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP1ZDrB9C .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP1ZDrB9C .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP1ZDrB9C .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2mjgUTxe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2mjgUTxe .content {
    text-align: center;
  }
  .cid-qY2mjgUTxe .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2mjgUTxe .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2mjgUTxe .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2mjgUTxe .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2mjgUTxe .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2mjgUTxe .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2mjgUTxe .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2mjgUTxe .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2mjgUTxe .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2mjgUTxe .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2mjgUTxe .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2mjgUTxe .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2mjgUTxe P {
  color: #13435c;
}
.cid-qY2mjgUTxe H5 {
  color: #f39322;
}
.cid-qY2mjgUTxe B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qVXUliNS5x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qVXUliNS5x .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-qVXUliNS5x .modal-body .close {
  background: #1b1b1b;
}
.cid-qVXUliNS5x .modal-body .close span {
  font-style: normal;
}
.cid-qVXUliNS5x .carousel-inner > .active,
.cid-qVXUliNS5x .carousel-inner > .next,
.cid-qVXUliNS5x .carousel-inner > .prev {
  display: flex;
}
.cid-qVXUliNS5x .carousel-control .icon-next,
.cid-qVXUliNS5x .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qVXUliNS5x .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qVXUliNS5x .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-qVXUliNS5x .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-qVXUliNS5x .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qVXUliNS5x .boxed-slider > div {
  position: relative;
}
.cid-qVXUliNS5x .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-qVXUliNS5x .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qVXUliNS5x .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qVXUliNS5x .mbr-table-cell {
  padding: 0;
}
.cid-qVXUliNS5x .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qVXUliNS5x .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qVXUliNS5x .mbr-overlay {
  z-index: 1;
}
.cid-qVXUliNS5x .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-qVXUliNS5x .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qVXUliNS5x .carousel-item .container {
    width: 100%;
  }
}
.cid-qVXUliNS5x .carousel-item-next.carousel-item-left,
.cid-qVXUliNS5x .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qVXUliNS5x .active.carousel-item-right,
.cid-qVXUliNS5x .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qVXUliNS5x .active.carousel-item-left,
.cid-qVXUliNS5x .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qVXUliNS5x .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qVXUliNS5x .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qVXUliNS5x .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qVXUliNS5x .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-qVXUliNS5x .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qVXUliNS5x .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qVXUliNS5x .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qVXUliNS5x .mbr-slider .carousel-indicators li.active,
.cid-qVXUliNS5x .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qVXUliNS5x .mbr-slider .carousel-indicators li::after,
.cid-qVXUliNS5x .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qVXUliNS5x .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qVXUliNS5x .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qVXUliNS5x .mbr-slider > .container img {
  width: 100%;
}
.cid-qVXUliNS5x .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qVXUliNS5x .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qVXUliNS5x .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qVXUliNS5x .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qVXUliNS5x .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qVXUliNS5x .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-qVXUliNS5x .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qVXUliNS5x .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qVXUliNS5x .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qVXUliNS5x .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qVXUliNS5x .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qVXUliNS5x .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qVXUliNS5x .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qVXUliNS5x .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-qVXUliNS5x .carousel-inner {
  height: 100%;
}
.cid-qVXUliNS5x .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-qVXUliNS5x .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-qVXUliNS5x .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-qVXUliNS5x .content-slider-wrap {
  width: 100%;
}
.cid-qVXUliNS5x B {
  color: #ffffff;
}
.cid-qVXUliNS5x P {
  color: #ffffff;
}
.cid-qVipfLUZHO {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qVipfLUZHO .mbr-section-title,
.cid-qVipfLUZHO .mbr-section-subtitle {
  color: #000000;
}
.cid-qVipfLUZHO .mbr-section-text {
  color: #232323;
}
.cid-qVipfLUZHO .mbr-text,
.cid-qVipfLUZHO .typed-text,
.cid-qVipfLUZHO .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qVipfLUZHO .btn {
  margin-left: 4px !important;
}
.cid-qVipfLUZHO .animated-element {
  color: #ec620f;
}
.cid-qVipfLUZHO .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ec620f;
}
@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-qVipfLUZHO .mbr-section-text,
.cid-qVipfLUZHO .mbr-section-btn {
  color: #000000;
}
.cid-qXPlRDsrLr {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qXPlRDsrLr .container-fluid {
  padding: 0 3rem;
}
.cid-qXPlRDsrLr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXPlRDsrLr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXPlRDsrLr .card {
  margin-bottom: 2rem;
}
.cid-qXPlRDsrLr .card-img {
  width: auto !important;
}
.cid-qXPlRDsrLr .card-img .mbr-iconfont {
  color: #0c2c3d;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #0c2c3d, #0c2c3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-qXPlRDsrLr .content-row {
  word-wrap: break-word;
}
.cid-qXPlRDsrLr .media {
  width: initial;
  height: initial;
  margin: initial;
  align-items: center;
}
.cid-qXPlRDsrLr .media .media-body {
  flex: none;
}
.cid-qXPlRDsrLr .mbr-text {
  color: #767676;
  margin: 0;
}
.cid-qXPlRDsrLr .card-title {
  color: #0c2c3d;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-qXPlRDsrLr .card-title,
  .cid-qXPlRDsrLr .card-box {
    text-align: left;
  }
  .cid-qXPlRDsrLr .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qWCdF6yuay {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/pexels-photo-955447-2000x1254.jpg");
}
.cid-qWCdF6yuay .mbr-text,
.cid-qWCdF6yuay .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qWCdF6yuay .mbr-section-title {
  margin-left: -0.2rem;
}
.cid-qWCdF6yuay .mbr-section-title span {
  color: #ffbc00;
}
.cid-qWCdF6yuay .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qWCdF6yuay .mbr-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qXPq2gDPze {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qXPq2gDPze .container-fluid {
  padding: 0 3rem;
}
.cid-qXPq2gDPze .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXPq2gDPze .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXPq2gDPze .card {
  margin-bottom: 2rem;
}
.cid-qXPq2gDPze .card-img {
  width: auto !important;
}
.cid-qXPq2gDPze .card-img .mbr-iconfont {
  color: #0c2c3d;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #0c2c3d, #0c2c3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-qXPq2gDPze .content-row {
  word-wrap: break-word;
}
.cid-qXPq2gDPze .media {
  width: initial;
  height: initial;
  margin: initial;
  align-items: center;
}
.cid-qXPq2gDPze .media .media-body {
  flex: none;
}
.cid-qXPq2gDPze .mbr-text {
  color: #000000;
  margin: 0;
}
.cid-qXPq2gDPze .card-title {
  color: #0c2c3d;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qXPq2gDPze .card-title,
  .cid-qXPq2gDPze .card-box {
    text-align: left;
  }
  .cid-qXPq2gDPze .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXPq2gDPze .mbr-section-title,
.cid-qXPq2gDPze .underline B {
  color: #0c2c3d;
}
.cid-qXPq2gDPze .card-title B {
  color: #000000;
}
.cid-qVSms8HEvv {
  padding-top: 30px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-1618x1080.jpg");
}
.cid-qVSms8HEvv .signature {
  transform: rotate(-3deg);
  color: #cccccc;
}
.cid-qVSms8HEvv .mbr-section-title {
  letter-spacing: 0.1em;
}
.cid-qVSms8HEvv .card-img {
  margin-bottom: 1rem;
}
.cid-qVSms8HEvv .card-img span {
  font-size: 60px;
}
.cid-qVSms8HEvv .mbr-text,
.cid-qVSms8HEvv .mbr-section-btn I {
  color: #ffffff;
}
.cid-qVSms8HEvv .signature B {
  color: #ec620f;
}
.cid-qY2sONwakh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2sONwakh .content {
    text-align: center;
  }
  .cid-qY2sONwakh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2sONwakh .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2sONwakh .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2sONwakh .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2sONwakh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2sONwakh .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2sONwakh .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2sONwakh .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2sONwakh .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2sONwakh .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2sONwakh .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2sONwakh .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2sONwakh P {
  color: #13435c;
}
.cid-qY2sONwakh H5 {
  color: #f39322;
}
.cid-qY2sONwakh B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qWU5uc7383 .modal-body .close {
  background: #1b1b1b;
}
.cid-qWU5uc7383 .modal-body .close span {
  font-style: normal;
}
.cid-qWU5uc7383 .carousel-inner > .active,
.cid-qWU5uc7383 .carousel-inner > .next,
.cid-qWU5uc7383 .carousel-inner > .prev {
  display: table;
}
.cid-qWU5uc7383 .carousel-control .icon-next,
.cid-qWU5uc7383 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qWU5uc7383 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qWU5uc7383 .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qWU5uc7383 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qWU5uc7383 .boxed-slider > div {
  position: relative;
}
.cid-qWU5uc7383 .container img {
  width: 100%;
}
.cid-qWU5uc7383 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qWU5uc7383 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qWU5uc7383 .mbr-table-cell {
  padding: 0;
}
.cid-qWU5uc7383 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qWU5uc7383 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qWU5uc7383 .mbr-overlay {
  z-index: 1;
}
.cid-qWU5uc7383 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qWU5uc7383 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qWU5uc7383 .carousel-item .container {
    width: 100%;
  }
}
.cid-qWU5uc7383 .carousel-item-next.carousel-item-left,
.cid-qWU5uc7383 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qWU5uc7383 .active.carousel-item-right,
.cid-qWU5uc7383 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qWU5uc7383 .active.carousel-item-left,
.cid-qWU5uc7383 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qWU5uc7383 .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: #232323;
  opacity: .8;
  border-radius: 0;
  transition: all .3s;
}
.cid-qWU5uc7383 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 0;
}
.cid-qWU5uc7383 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 0;
}
.cid-qWU5uc7383 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
.cid-qWU5uc7383 .mbr-slider .carousel-control:hover {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qWU5uc7383 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qWU5uc7383 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qWU5uc7383 .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.8);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qWU5uc7383 .mbr-slider .carousel-indicators li.active,
.cid-qWU5uc7383 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
  background-color: #ffffff;
}
.cid-qWU5uc7383 .mbr-slider .carousel-indicators li::after,
.cid-qWU5uc7383 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qWU5uc7383 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qWU5uc7383 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qWU5uc7383 .mbr-slider > .container img {
  width: 100%;
}
.cid-qWU5uc7383 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qWU5uc7383 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qWU5uc7383 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qWU5uc7383 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qWU5uc7383 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qWU5uc7383 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qWU5uc7383 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qWU5uc7383 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qWU5uc7383 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qWU5uc7383 .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qWU5uc7383 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qWU5uc7383 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qWU5uc7383 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qWUc5w84zG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qWUc5w84zG p {
  color: #767676;
}
.cid-qWUc5w84zG .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qWUc5w84zG .row-element,
.cid-qWUc5w84zG .image-element {
  padding: 0;
}
.cid-qWUc5w84zG .image-element {
  display: flex;
  justify-content: center;
}
.cid-qWUc5w84zG .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qWUc5w84zG .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUc5w84zG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qWUc5w84zG .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qWUc5w84zG .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qWUc5w84zG .text-content {
    padding: 2rem 1rem;
  }
  .cid-qWUc5w84zG .underline .line {
    height: 2px;
  }
  .cid-qWUc5w84zG .mbr-title,
  .cid-qWUc5w84zG .underline,
  .cid-qWUc5w84zG .mbr-text,
  .cid-qWUc5w84zG .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qWUc5Miy8a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qWUc5Miy8a p {
  color: #767676;
}
.cid-qWUc5Miy8a .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qWUc5Miy8a .main {
  flex-direction: row-reverse;
}
.cid-qWUc5Miy8a .row-element,
.cid-qWUc5Miy8a .image-element {
  padding: 0;
}
.cid-qWUc5Miy8a .image-element {
  display: flex;
  justify-content: center;
}
.cid-qWUc5Miy8a .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qWUc5Miy8a .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUc5Miy8a .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qWUc5Miy8a .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qWUc5Miy8a .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qWUc5Miy8a .text-content {
    padding: 2rem 1rem;
  }
  .cid-qWUc5Miy8a .underline .line {
    height: 2px;
  }
  .cid-qWUc5Miy8a .mbr-title,
  .cid-qWUc5Miy8a .underline,
  .cid-qWUc5Miy8a .mbr-text,
  .cid-qWUc5Miy8a .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qWUc5Miy8a .mbr-text,
.cid-qWUc5Miy8a .mbr-section-btn {
  text-align: left;
}
.cid-qWUe0kTmMJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qWUe0kTmMJ p {
  color: #767676;
}
.cid-qWUe0kTmMJ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qWUe0kTmMJ .row-element,
.cid-qWUe0kTmMJ .image-element {
  padding: 0;
}
.cid-qWUe0kTmMJ .image-element {
  display: flex;
  justify-content: center;
}
.cid-qWUe0kTmMJ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qWUe0kTmMJ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUe0kTmMJ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qWUe0kTmMJ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qWUe0kTmMJ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qWUe0kTmMJ .text-content {
    padding: 2rem 1rem;
  }
  .cid-qWUe0kTmMJ .underline .line {
    height: 2px;
  }
  .cid-qWUe0kTmMJ .mbr-title,
  .cid-qWUe0kTmMJ .underline,
  .cid-qWUe0kTmMJ .mbr-text,
  .cid-qWUe0kTmMJ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qWUeJ8sRKz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #131522;
}
.cid-qWUeJ8sRKz .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qXP28Gclzy {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP28Gclzy .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP28Gclzy .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP28Gclzy .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP28Gclzy .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP28Gclzy .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP28Gclzy .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2srS1tnB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2srS1tnB .content {
    text-align: center;
  }
  .cid-qY2srS1tnB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2srS1tnB .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2srS1tnB .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2srS1tnB .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2srS1tnB .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2srS1tnB .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2srS1tnB .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2srS1tnB .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2srS1tnB .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2srS1tnB .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2srS1tnB .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2srS1tnB .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2srS1tnB P {
  color: #13435c;
}
.cid-qY2srS1tnB H5 {
  color: #f39322;
}
.cid-qY2srS1tnB B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qWZFZidKcs {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/airport-business-cabinets-236093-1920x1467.jpg");
}
.cid-qWZFZidKcs .mbr-section-title,
.cid-qWZFZidKcs .mbr-section-subtitle {
  color: #000000;
}
.cid-qWZFZidKcs .mbr-section-text {
  color: #232323;
}
.cid-qWZFZidKcs .mbr-text,
.cid-qWZFZidKcs .typed-text,
.cid-qWZFZidKcs .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qWZFZidKcs .btn {
  margin-left: 4px !important;
}
.cid-qWZFZidKcs .animated-element {
  color: #ec620f;
}
.cid-qWZFZidKcs .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #ec620f;
}
@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-qWZFZidKcs .mbr-section-title {
  color: #ffffff;
}
.cid-qWZFZidKcs .mbr-section-subtitle,
.cid-qWZFZidKcs .typed-text {
  color: #bbbbbb;
}
.cid-qWUnBqA6eR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qWUnBqA6eR .card-wrapper {
  z-index: 3;
}
.cid-qWUnBqA6eR .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qWUnBqA6eR:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qWUnBqA6eR .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qWUnBqA6eR .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qWUnBqA6eR .text-block {
  text-align: left !important;
}
.cid-qWUnBqA6eR H2 {
  color: #ec620f;
  text-align: center;
}
.cid-qXxPoNQ7vQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/airport-business-cabinets-236098-1920x1467.jpg");
}
.cid-qXxPoNQ7vQ .container-fluid {
  padding: 0 3rem;
}
.cid-qXxPoNQ7vQ .media-container-column {
  padding: 0 2rem;
}
.cid-qXxPoNQ7vQ .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qXxPoNQ7vQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qWUnvFqbX6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qWUnvFqbX6 .container-fluid {
  padding: 0 2rem;
}
.cid-qWUnvFqbX6 .mbr-section-title {
  margin-bottom: 1rem;
  color: #13435c;
}
.cid-qWUnvFqbX6 .mbr-title {
  padding: 0 1rem;
}
.cid-qWUnvFqbX6 .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-qWUnvFqbX6 .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUnvFqbX6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qWUnvFqbX6 .image-wrap {
  width: 100%;
}
.cid-qWUnvFqbX6 .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-qWUnvFqbX6 .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-qWUnvFqbX6 .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-qWUnvFqbX6 .container-fluid {
    padding: 0rem;
  }
}
.cid-qWUofucIPg {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qWUofucIPg .container-fluid {
  padding: 0 2rem;
}
.cid-qWUofucIPg .mbr-section-title {
  margin-bottom: 1rem;
  color: #13435c;
}
.cid-qWUofucIPg .mbr-title {
  padding: 0 1rem;
}
.cid-qWUofucIPg .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-qWUofucIPg .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUofucIPg .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qWUofucIPg .image-wrap {
  width: 100%;
}
.cid-qWUofucIPg .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-qWUofucIPg .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-qWUofucIPg .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-qWUofucIPg .container-fluid {
    padding: 0rem;
  }
}
.cid-qWUnwiNLk0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-qWUnwiNLk0 .container-fluid {
  padding: 0 2rem;
}
.cid-qWUnwiNLk0 .mbr-section-title {
  margin-bottom: 1rem;
  color: #13435c;
}
.cid-qWUnwiNLk0 .mbr-title {
  padding: 0 1rem;
}
.cid-qWUnwiNLk0 .mbr-section-subtitle {
  margin-top: .8rem;
  margin-bottom: 1.3rem;
}
.cid-qWUnwiNLk0 .underline {
  padding: .5rem 1rem .5rem 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qWUnwiNLk0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qWUnwiNLk0 .image-wrap {
  width: 100%;
}
.cid-qWUnwiNLk0 .image-wrap img {
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}
.cid-qWUnwiNLk0 .btn {
  margin-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}
.cid-qWUnwiNLk0 .card-wrapper {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .cid-qWUnwiNLk0 .container-fluid {
    padding: 0rem;
  }
}
.cid-qXxhyNlACi {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ec620f;
}
.cid-qXxhyNlACi .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qWUpytzHst {
  background-image: url("../../../assets/images/76-6-2000x2000.jpg");
}
.cid-qWUpytzHst .column-content {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
  width: 100%;
  float: right;
  position: relative;
}
.cid-qWUpytzHst .text-content .btn-bgr {
  z-index: 0;
}
.cid-qWUpytzHst .mbr-overlay {
  background: linear-gradient(#ffef00 -10%, #ec620f 75%);
}
.cid-qWUpytzHst .container-full-width {
  position: relative;
}
.cid-qWUpytzHst .text-content {
  width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
.cid-qWUpytzHst .layer {
  display: none;
  height: 101%;
  position: absolute;
  right: 49.9%;
  top: 0;
  bottom: 0;
}
.cid-qWUpytzHst .layer path {
  fill: #ffffff;
}
@media (min-width: 576px) {
  .cid-qWUpytzHst .text-content {
    width: 540px;
  }
  .cid-qWUpytzHst .column-content {
    width: 100%;
  }
  .cid-qWUpytzHst .layer {
    display: none;
  }
}
@media (min-width: 768px) {
  .cid-qWUpytzHst .text-content {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .cid-qWUpytzHst .text-content {
    width: 480px;
    margin: 0;
  }
  .cid-qWUpytzHst .column-content {
    width: 50%;
  }
  .cid-qWUpytzHst .layer {
    display: block;
  }
}
@media (min-width: 1200px) {
  .cid-qWUpytzHst .text-content {
    width: 570px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qWUpytzHst .container-full-width .layer {
    right: 2.6rem;
    height: 33rem;
  }
  .cid-qWUpytzHst .column-content {
    height: 33rem;
  }
}
.cid-qWUpytzHst B {
  color: #082432;
}
.cid-qWUpytzHst .mbr-text,
.cid-qWUpytzHst .mbr-section-btn {
  color: #232323;
}
.cid-qY281H9PKc {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #0c2c3d;
}
.cid-qY281H9PKc .mbr-overlay {
  background: #ffa0a4;
  background: linear-gradient(45deg, #ffa0a4, #000000);
  background: radial-gradient(#ffa0a4, #000000);
}
.cid-qY281H9PKc .mbr-section-title {
  margin: 0;
}
.cid-qY281H9PKc .mbr-text,
.cid-qY281H9PKc .mbr-section-btn {
  color: #c1c1c1;
}
.cid-qY281H9PKc .mbr-section-subtitle,
.cid-qY281H9PKc mbr-section-btn B {
  color: #ec620f;
}
.cid-qXORkI0yCh {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXORkI0yCh .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXORkI0yCh .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXORkI0yCh .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXORkI0yCh .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXORkI0yCh .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXORkI0yCh .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2mlbL12U {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2mlbL12U .content {
    text-align: center;
  }
  .cid-qY2mlbL12U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2mlbL12U .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2mlbL12U .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2mlbL12U .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2mlbL12U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2mlbL12U .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2mlbL12U .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2mlbL12U .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2mlbL12U .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2mlbL12U .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2mlbL12U .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2mlbL12U .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2mlbL12U P {
  color: #13435c;
}
.cid-qY2mlbL12U H5 {
  color: #f39322;
}
.cid-qY2mlbL12U B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qVQTHtprAq .modal-body .close {
  background: #1b1b1b;
}
.cid-qVQTHtprAq .modal-body .close span {
  font-style: normal;
}
.cid-qVQTHtprAq .carousel-inner > .active,
.cid-qVQTHtprAq .carousel-inner > .next,
.cid-qVQTHtprAq .carousel-inner > .prev {
  display: table;
}
.cid-qVQTHtprAq .carousel-control .icon-next,
.cid-qVQTHtprAq .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qVQTHtprAq .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qVQTHtprAq .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qVQTHtprAq .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qVQTHtprAq .boxed-slider > div {
  position: relative;
}
.cid-qVQTHtprAq .container img {
  width: 100%;
}
.cid-qVQTHtprAq .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-qVQTHtprAq .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qVQTHtprAq .mbr-table-cell {
  padding: 0;
}
.cid-qVQTHtprAq .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qVQTHtprAq .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qVQTHtprAq .mbr-overlay {
  z-index: 1;
}
.cid-qVQTHtprAq .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qVQTHtprAq .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-qVQTHtprAq .carousel-item .container {
    width: 100%;
  }
}
.cid-qVQTHtprAq .carousel-item-next.carousel-item-left,
.cid-qVQTHtprAq .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qVQTHtprAq .active.carousel-item-right,
.cid-qVQTHtprAq .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qVQTHtprAq .active.carousel-item-left,
.cid-qVQTHtprAq .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qVQTHtprAq .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-qVQTHtprAq .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qVQTHtprAq .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qVQTHtprAq .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-qVQTHtprAq .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qVQTHtprAq .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qVQTHtprAq .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-qVQTHtprAq .mbr-slider .carousel-indicators li.active,
.cid-qVQTHtprAq .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qVQTHtprAq .mbr-slider .carousel-indicators li::after,
.cid-qVQTHtprAq .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qVQTHtprAq .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qVQTHtprAq .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qVQTHtprAq .mbr-slider > .container img {
  width: 100%;
}
.cid-qVQTHtprAq .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qVQTHtprAq .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qVQTHtprAq .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qVQTHtprAq .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qVQTHtprAq .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qVQTHtprAq .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qVQTHtprAq .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qVQTHtprAq .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qVQTHtprAq .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qVQTHtprAq .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qVQTHtprAq .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qVQTHtprAq .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qVQTHtprAq .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qVR6vme1nA {
  overflow-x: hidden !important;
}
.cid-qVR6vme1nA .container-fluid {
  padding: 0 3rem;
}
.cid-qVR6vme1nA .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #ffffff;
}
.cid-qVR6vme1nA .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-qVR6vme1nA .mbr-overlay {
  z-index: 1;
}
.cid-qVR6vme1nA .block-content {
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 150px;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-qVR6vme1nA .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qVR03TRZEC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qVR03TRZEC .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qVR03TRZEC .row-element,
.cid-qVR03TRZEC .image-element {
  padding: 0;
}
.cid-qVR03TRZEC .image-element {
  display: flex;
  justify-content: center;
}
.cid-qVR03TRZEC .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qVR03TRZEC .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVR03TRZEC .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qVR03TRZEC .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qVR03TRZEC .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qVR03TRZEC .text-content {
    padding: 2rem 1rem;
  }
  .cid-qVR03TRZEC .underline .line {
    height: 2px;
  }
  .cid-qVR03TRZEC .mbr-title,
  .cid-qVR03TRZEC .underline,
  .cid-qVR03TRZEC .mbr-text,
  .cid-qVR03TRZEC .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qVR03TRZEC .mbr-title,
.cid-qVR03TRZEC .underline B {
  color: #0c2c3d;
}
.cid-qVR03TRZEC .mbr-text,
.cid-qVR03TRZEC .mbr-section-btn {
  color: #000000;
}
.cid-qVR2Rq2IZ7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qVR2Rq2IZ7 p {
  color: #767676;
}
.cid-qVR2Rq2IZ7 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qVR2Rq2IZ7 .main {
  flex-direction: row-reverse;
}
.cid-qVR2Rq2IZ7 .row-element,
.cid-qVR2Rq2IZ7 .image-element {
  padding: 0;
}
.cid-qVR2Rq2IZ7 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qVR2Rq2IZ7 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qVR2Rq2IZ7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVR2Rq2IZ7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qVR2Rq2IZ7 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qVR2Rq2IZ7 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qVR2Rq2IZ7 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qVR2Rq2IZ7 .underline .line {
    height: 2px;
  }
  .cid-qVR2Rq2IZ7 .mbr-title,
  .cid-qVR2Rq2IZ7 .underline,
  .cid-qVR2Rq2IZ7 .mbr-text,
  .cid-qVR2Rq2IZ7 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qVR2Rq2IZ7 .mbr-text,
.cid-qVR2Rq2IZ7 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-qVR2Rq2IZ7 .mbr-title,
.cid-qVR2Rq2IZ7 .underline {
  text-align: left;
}
.cid-qVR8TFcM1I {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #0c2c3d;
}
.cid-qVR8TFcM1I .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-qXP25FiwMY {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP25FiwMY .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP25FiwMY .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP25FiwMY .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP25FiwMY .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP25FiwMY .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP25FiwMY .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2saef16b {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2saef16b .content {
    text-align: center;
  }
  .cid-qY2saef16b .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2saef16b .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2saef16b .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2saef16b .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2saef16b .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2saef16b .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2saef16b .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2saef16b .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2saef16b .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2saef16b .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2saef16b .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2saef16b .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2saef16b P {
  color: #13435c;
}
.cid-qY2saef16b H5 {
  color: #f39322;
}
.cid-qY2saef16b B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qXmcVClLvq {
  padding-top: 150px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/ot1c850-2-1266x844.jpg");
}
.cid-qXmcVClLvq .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXmcVClLvq .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qXmcVClLvq .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXmcVClLvq .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXmcVClLvq .mbr-text P {
  color: #ffffff;
}
.cid-qXmcVClLvq .mbr-section-title {
  text-align: center;
}
.cid-qXmcVClLvq .mbr-section-title B {
  color: #f39322;
}
.cid-qXmcVClLvq P {
  text-align: center;
}
.cid-qXPeyhUEsy {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-qXPeyhUEsy .container-fluid {
  padding: 0 3rem;
}
.cid-qXPeyhUEsy .table-wrap {
  margin: 0 1rem 3rem 1rem;
  border: 1px solid #efefef;
  border-radius: 3%;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
}
.cid-qXPeyhUEsy .table-wrap:hover {
  transition: all 0.3s ease-in-out;
  background-color: #0c2c3d;
}
.cid-qXPeyhUEsy .table-wrap:hover .table-pricing,
.cid-qXPeyhUEsy .table-wrap:hover .table-icon {
  color: #ffffff !important;
}
.cid-qXPeyhUEsy .table-wrap:hover .table-heading,
.cid-qXPeyhUEsy .table-wrap:hover .mbr-section-subtitle {
  color: #ffffff !important;
}
.cid-qXPeyhUEsy .section-heading {
  margin-bottom: 2rem;
}
.cid-qXPeyhUEsy .table-heading {
  margin-bottom: 2em;
}
.cid-qXPeyhUEsy .underline {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.cid-qXPeyhUEsy .underline .line {
  width: 6rem;
  height: 3px;
  background: linear-gradient(135deg, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXPeyhUEsy ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0;
  list-style: none;
}
.cid-qXPeyhUEsy ul li {
  display: flex;
  flex-direction: row;
  padding: 0.7em 0;
  align-items: flex-end;
}
.cid-qXPeyhUEsy ul li span {
  font-size: 32px;
  color: #000000;
}
.cid-qXPeyhUEsy hr {
  display: none;
  background: #efefef;
}
.cid-qXPeyhUEsy hr {
  display: block;
}
.cid-qXPeyhUEsy .table-heading,
.cid-qXPeyhUEsy .table-pricing,
.cid-qXPeyhUEsy .table-icon {
  color: #a38dfd;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.cid-qXPeyhUEsy .mbr-section-subtitle {
  color: #767676;
  transition: all 0.3s ease-in-out;
}
.cid-qXPeyhUEsy .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qXPeyhUEsy .mbr-iconfont {
  font-size: 50px;
}
@media (max-width: 1200px) {
  .cid-qXPeyhUEsy .table-wrap {
    margin: 1.5rem 0 0 0;
  }
}
@media (max-width: 767px) {
  .cid-qXPeyhUEsy .container-fluid {
    padding: 0 0rem;
  }
}
.cid-qXPeyhUEsy .table-pricing,
.cid-qXPeyhUEsy .table-icon {
  color: #13435c;
  text-align: center;
}
.cid-qXPeyhUEsy .mbr-section-subtitle,
.cid-qXPeyhUEsy .mbr-section-btn {
  text-align: center;
}
.cid-qXmNxRdy6e {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/application-3426397-1921-1920x1119.jpg");
}
.cid-qXmNxRdy6e .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXmNxRdy6e .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qXmNxRdy6e .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXmNxRdy6e .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXmNxRdy6e .mbr-text P {
  color: #ffffff;
}
.cid-qXmNxRdy6e .mbr-section-title {
  text-align: center;
}
.cid-qXmNxRdy6e .mbr-section-title B {
  color: #f39322;
}
.cid-qXzkb4RiaF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #082432;
}
.cid-qXP2eLtQ1Z {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP2eLtQ1Z .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP2eLtQ1Z .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP2eLtQ1Z .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP2eLtQ1Z .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP2eLtQ1Z .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP2eLtQ1Z .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2sEPcBec {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2sEPcBec .content {
    text-align: center;
  }
  .cid-qY2sEPcBec .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2sEPcBec .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2sEPcBec .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2sEPcBec .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2sEPcBec .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2sEPcBec .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2sEPcBec .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2sEPcBec .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2sEPcBec .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2sEPcBec .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2sEPcBec .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2sEPcBec .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2sEPcBec P {
  color: #13435c;
}
.cid-qY2sEPcBec H5 {
  color: #f39322;
}
.cid-qY2sEPcBec B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qWZQgq5DFh {
  background-image: url("../../../assets/images/application-3426397-1920-1920x1119.jpg");
}
.cid-qWZQgq5DFh .mbr-section-title {
  letter-spacing: .1em;
}
.cid-qWZQgq5DFh .mbr-text {
  letter-spacing: 0.03rem;
}
.cid-qWZQgq5DFh .card-img span {
  font-size: 100px;
}
.cid-qXPFnelUuH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qXPFnelUuH .container-fluid {
  padding: 0 3rem;
}
.cid-qXPFnelUuH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXPFnelUuH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff, #ec620f);
  display: inline-block;
}
.cid-qXPFnelUuH .card {
  margin-bottom: 2rem;
}
.cid-qXPFnelUuH .card-img {
  width: auto !important;
}
.cid-qXPFnelUuH .card-img .mbr-iconfont {
  color: #082432;
  font-size: 48px;
  padding-right: 1rem;
  background: linear-gradient(45deg, #082432, #0c2c3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-qXPFnelUuH .content-row {
  word-wrap: break-word;
}
.cid-qXPFnelUuH .media {
  width: initial;
  height: initial;
  margin: initial;
  align-items: center;
}
.cid-qXPFnelUuH .media .media-body {
  flex: none;
}
.cid-qXPFnelUuH .mbr-text {
  color: #000000;
  margin: 0;
}
.cid-qXPFnelUuH .card-title {
  color: #0c2c3d;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qXPFnelUuH .card-title,
  .cid-qXPFnelUuH .card-box {
    text-align: left;
  }
  .cid-qXPFnelUuH .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXPFnelUuH .mbr-section-title,
.cid-qXPFnelUuH .underline B {
  color: #0c2c3d;
}
.cid-qXPFnelUuH .card-title B {
  color: #000000;
}
.cid-qXPNYnYulW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXPNYnYulW p {
  color: #767676;
}
.cid-qXPNYnYulW .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qXPNYnYulW .row-element,
.cid-qXPNYnYulW .image-element {
  padding: 0;
}
.cid-qXPNYnYulW .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXPNYnYulW .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXPNYnYulW .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXPNYnYulW .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXPNYnYulW .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXPNYnYulW .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXPNYnYulW .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXPNYnYulW .underline .line {
    height: 2px;
  }
  .cid-qXPNYnYulW .mbr-title,
  .cid-qXPNYnYulW .underline,
  .cid-qXPNYnYulW .mbr-text,
  .cid-qXPNYnYulW .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXPNYnYulW .mbr-title,
.cid-qXPNYnYulW .underline B {
  color: #0c2c3d;
}
.cid-qXPNZZhglu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXPNZZhglu p {
  color: #767676;
}
.cid-qXPNZZhglu .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qXPNZZhglu .main {
  flex-direction: row-reverse;
}
.cid-qXPNZZhglu .row-element,
.cid-qXPNZZhglu .image-element {
  padding: 0;
}
.cid-qXPNZZhglu .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXPNZZhglu .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXPNZZhglu .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXPNZZhglu .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXPNZZhglu .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXPNZZhglu .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXPNZZhglu .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXPNZZhglu .underline .line {
    height: 2px;
  }
  .cid-qXPNZZhglu .mbr-title,
  .cid-qXPNZZhglu .underline,
  .cid-qXPNZZhglu .mbr-text,
  .cid-qXPNZZhglu .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXPNZZhglu .mbr-title,
.cid-qXPNZZhglu .underline B {
  color: #0c2c3d;
}
.cid-qWZT2L5pKe {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #082432;
}
.cid-qWZT2L5pKe .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qXP2cU69Kc {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP2cU69Kc .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP2cU69Kc .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP2cU69Kc .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP2cU69Kc .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP2cU69Kc .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP2cU69Kc .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2szlIU9Y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2szlIU9Y .content {
    text-align: center;
  }
  .cid-qY2szlIU9Y .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2szlIU9Y .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2szlIU9Y .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2szlIU9Y .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2szlIU9Y .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2szlIU9Y .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2szlIU9Y .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2szlIU9Y .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2szlIU9Y .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2szlIU9Y .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2szlIU9Y .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2szlIU9Y .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2szlIU9Y P {
  color: #13435c;
}
.cid-qY2szlIU9Y H5 {
  color: #f39322;
}
.cid-qY2szlIU9Y B {
  color: #131522;
}
.cid-qVXu5iVxgc .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qVXu5iVxgc .nav-item:focus,
.cid-qVXu5iVxgc .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qVXu5iVxgc .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qVXu5iVxgc .nav-item .nav-link {
    position: relative;
  }
  .cid-qVXu5iVxgc .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qVXu5iVxgc .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qVXu5iVxgc .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qVXu5iVxgc .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-qVXu5iVxgc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qVXu5iVxgc .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qVXu5iVxgc .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qVXu5iVxgc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qVXu5iVxgc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qVXu5iVxgc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qVXu5iVxgc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qVXu5iVxgc .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qVXu5iVxgc .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qVXu5iVxgc .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qVXu5iVxgc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qVXu5iVxgc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qVXu5iVxgc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qVXu5iVxgc .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qVXu5iVxgc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qVXu5iVxgc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qVXu5iVxgc .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-qVXu5iVxgc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qVXu5iVxgc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qVXu5iVxgc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qVXu5iVxgc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qVXu5iVxgc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qVXu5iVxgc .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qVXu5iVxgc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qVXu5iVxgc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qVXu5iVxgc .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-qVXu5iVxgc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qVXu5iVxgc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qVXu5iVxgc .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qVXu5iVxgc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qVXu5iVxgc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qVXu5iVxgc .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qVXu5iVxgc .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qVXu5iVxgc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qVXu5iVxgc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qVXu5iVxgc .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qVXu5iVxgc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qVXu5iVxgc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qVXu5iVxgc .dropdown-item.active,
.cid-qVXu5iVxgc .dropdown-item:active {
  background-color: transparent;
}
.cid-qVXu5iVxgc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qVXu5iVxgc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qVXu5iVxgc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qVXu5iVxgc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qVXu5iVxgc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qVXu5iVxgc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qVXu5iVxgc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qVXu5iVxgc .navbar-buttons {
  text-align: center;
}
.cid-qVXu5iVxgc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qVXu5iVxgc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qVXu5iVxgc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qVXu5iVxgc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qVXu5iVxgc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qVXu5iVxgc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qVXu5iVxgc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVXu5iVxgc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qVXu5iVxgc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qVXu5iVxgc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qVXu5iVxgc .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qVXu5iVxgc a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qVXu5iVxgc .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qVXu5iVxgc .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qVXu5iVxgc .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qVXu5iVxgc .navbar {
    height: 77px;
  }
  .cid-qVXu5iVxgc .navbar.opened {
    height: auto;
  }
  .cid-qVXu5iVxgc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qXnfsQ4HBF {
  background-image: url("../../../assets/images/network-2402637-1280-1280x720.jpg");
}
.cid-qXnfsQ4HBF .mbr-overlay {
  background: #f39322;
  background: linear-gradient(45deg, #f39322, #000000);
  background: radial-gradient(#f39322, #000000);
}
.cid-qXnfsQ4HBF .mbr-section-title {
  margin: 0;
}
.cid-qXnhzU499Q {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXnhzU499Q .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
}
.cid-qXnhzU499Q .mbr-section-title {
  margin: 0;
}
.cid-qXnhzU499Q .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qXnhzU499Q .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qXnhzU499Q .card-img {
  text-align: left;
}
.cid-qXnhzU499Q .row-item {
  padding-bottom: 2rem;
}
.cid-qXnhzU499Q .row-item:hover .card-img .mbr-iconfont {
  color: #f39322 !important;
}
@media (max-width: 767px) {
  .cid-qXnhzU499Q .card-img,
  .cid-qXnhzU499Q .mbr-text,
  .cid-qXnhzU499Q .mbr-card-title,
  .cid-qXnhzU499Q .mbr-section-subtitle,
  .cid-qXnhzU499Q .mbr-section-title,
  .cid-qXnhzU499Q .underline {
    text-align: center !important;
  }
}
.cid-qXnhzU499Q .mbr-section-title,
.cid-qXnhzU499Q .underline B {
  color: #13435c;
}
.cid-qXnhzU499Q .mbr-text B {
  color: #0c2c3d;
}
.cid-qXnhzU499Q .mbr-text {
  color: #0c2c3d;
}
.cid-qXwZrcSIgW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #082432;
}
.cid-qXwZrcSIgW .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qXP2h5SpPU {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP2h5SpPU .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP2h5SpPU .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP2h5SpPU .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP2h5SpPU .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP2h5SpPU .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP2h5SpPU .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2sGyvtiy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2sGyvtiy .content {
    text-align: center;
  }
  .cid-qY2sGyvtiy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2sGyvtiy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2sGyvtiy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2sGyvtiy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2sGyvtiy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2sGyvtiy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2sGyvtiy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2sGyvtiy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2sGyvtiy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2sGyvtiy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2sGyvtiy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2sGyvtiy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2sGyvtiy P {
  color: #13435c;
}
.cid-qY2sGyvtiy H5 {
  color: #f39322;
}
.cid-qY2sGyvtiy B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qWZULesNry {
  background-image: url("../../../assets/images/internet-3400789-1920-1920x960.jpg");
}
.cid-qWZULesNry .mbr-text,
.cid-qWZULesNry .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qWZULesNry .mbr-section-title {
  margin-left: -0.2rem;
}
.cid-qWZULesNry .mbr-section-title span {
  color: #ffbc00;
}
.cid-qWZULesNry .btn {
  margin: .4rem 4px !important;
}
@media (max-width: 767px) {
  .cid-qWZULesNry .mbr-section-title {
    margin-left: -0.8rem;
  }
}
.cid-qWZULesNry .mbr-section-title B {
  color: #f39322;
}
.cid-qXf39cv171 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXf39cv171 .main {
  flex-direction: row-reverse;
}
.cid-qXf39cv171 .row-element,
.cid-qXf39cv171 .image-element {
  padding: 0;
}
.cid-qXf39cv171 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXf39cv171 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXf39cv171 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXf39cv171 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXf39cv171 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXf39cv171 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXf39cv171 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXf39cv171 .underline .line {
    height: 2px;
  }
  .cid-qXf39cv171 .mbr-title,
  .cid-qXf39cv171 .underline,
  .cid-qXf39cv171 .mbr-text,
  .cid-qXf39cv171 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXf39cv171 .mbr-title,
.cid-qXf39cv171 .underline {
  color: #0c2c3d;
}
.cid-qXf39cv171 .mbr-text,
.cid-qXf39cv171 .mbr-section-btn {
  color: #232323;
}
.cid-qXOSieK2E5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #0c2c3d;
}
.cid-qXOSieK2E5 .container-fluid {
  padding: 0 3rem;
}
.cid-qXOSieK2E5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #ffffff 50%, #ec620f 120%);
  display: inline-block;
}
.cid-qXOSieK2E5 .card {
  border-radius: 25px;
  margin-bottom: 2rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-qXOSieK2E5 .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title:hover .sign {
  background-color: #ffbc00 !important;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #ec620f;
  padding: 2rem;
  padding-top: 26px;
  color: white;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.cid-qXOSieK2E5 .card .card-header a.panel-title h4 .toggle-title {
  user-select: initial;
  pointer-events: auto;
}
.cid-qXOSieK2E5 .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qXOSieK2E5 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qXOSieK2E5 .header-text {
    padding: 1rem !important;
  }
  .cid-qXOSieK2E5 .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qXOSieK2E5 .panel-body {
    width: calc(100% - 48px);
  }
}
.cid-qXOSieK2E5 .mbr-section-title,
.cid-qXOSieK2E5 .underline B {
  color: #ffffff;
}
.cid-qXOSieK2E5 .mbr-section-subtitle {
  color: #efefef;
}
.cid-qXOSieK2E5 .toggle-header SPAN {
  color: #0c2c3d;
}
.cid-qXgWr3qVdp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #131522;
}
.cid-qXgWr3qVdp .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qXOTc4zgbT {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXOTc4zgbT .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXOTc4zgbT .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXOTc4zgbT .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXOTc4zgbT .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXOTc4zgbT .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXOTc4zgbT .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2rZnBDQk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2rZnBDQk .content {
    text-align: center;
  }
  .cid-qY2rZnBDQk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2rZnBDQk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2rZnBDQk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2rZnBDQk .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2rZnBDQk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2rZnBDQk .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2rZnBDQk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2rZnBDQk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2rZnBDQk .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2rZnBDQk .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2rZnBDQk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2rZnBDQk .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2rZnBDQk P {
  color: #13435c;
}
.cid-qY2rZnBDQk H5 {
  color: #f39322;
}
.cid-qY2rZnBDQk B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qXx4XoQKgH {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/mbr-18-1620x1080.jpg");
}
.cid-qXx4XoQKgH .text-content .btn-bgr {
  z-index: 0;
}
.cid-qXx4XoQKgH .mbr-overlay {
  background: linear-gradient(90deg, #232323, #000000);
}
.cid-qXx4XoQKgH h3 {
  color: #ffffff;
  font-weight: 300;
}
.cid-qXx4XoQKgH p {
  color: #ffffff;
}
.cid-qXx4XoQKgH h2 {
  color: #ffffff;
}
.cid-qXx4XoQKgH .text-content {
  padding: 2rem 0rem;
  background-color: #4284df;
}
.cid-qXx4XoQKgH .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-qXx4XoQKgH .media-container-row {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-qXx4XoQKgH .mbr-text {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-qXx4XoQKgH .text-content {
    margin-bottom: 2rem;
  }
}
.cid-qXx76W8JKI {
  overflow-x: hidden !important;
}
.cid-qXx76W8JKI .container-fluid {
  padding: 0 3rem;
}
.cid-qXx76W8JKI .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-qXx76W8JKI .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-qXx76W8JKI .mbr-overlay {
  z-index: 1;
}
.cid-qXx76W8JKI .block-content {
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 75px;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-qXx76W8JKI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXx76W8JKI .mbr-section-title {
  text-align: center;
  color: #04367c;
}
.cid-qXx76W8JKI .mbr-section-title B {
  color: #0c2c3d;
}
.cid-qXx76W8JKI .mbr-section-subtitle,
.cid-qXx76W8JKI .mbr-section-btn {
  text-align: center;
}
.cid-qXx7tIvmCr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-1618x1080.jpg");
}
.cid-qXx7tIvmCr .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXx7tIvmCr .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-qXx7tIvmCr .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXx7tIvmCr .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXx7tIvmCr .mbr-section-title {
  text-align: center;
}
.cid-qXxNBEBJS9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qXxNBEBJS9 .container-fluid {
  padding: 0 3rem;
}
.cid-qXxNBEBJS9 .media-container-column {
  padding: 0 2rem;
}
.cid-qXxNBEBJS9 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qXxNBEBJS9 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXxFdbXSWE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXxFdbXSWE .container-fluid {
  padding: 0 3rem;
}
.cid-qXxFdbXSWE .media-container-column {
  padding: 0 2rem;
}
.cid-qXxFdbXSWE .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qXxFdbXSWE .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXx9RdmUlZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXx9RdmUlZ .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qXx9RdmUlZ .row-element,
.cid-qXx9RdmUlZ .image-element {
  padding: 0;
}
.cid-qXx9RdmUlZ .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXx9RdmUlZ .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXx9RdmUlZ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXx9RdmUlZ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXx9RdmUlZ .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXx9RdmUlZ .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXx9RdmUlZ .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXx9RdmUlZ .underline .line {
    height: 2px;
  }
  .cid-qXx9RdmUlZ .mbr-title,
  .cid-qXx9RdmUlZ .underline,
  .cid-qXx9RdmUlZ .mbr-text,
  .cid-qXx9RdmUlZ .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXx9RdmUlZ .mbr-title,
.cid-qXx9RdmUlZ .underline {
  color: #0c2c3d;
}
.cid-qXx9RdmUlZ .mbr-text,
.cid-qXx9RdmUlZ .mbr-section-btn {
  color: #232323;
}
.cid-qXx9RBDY89 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXx9RBDY89 p {
  color: #767676;
}
.cid-qXx9RBDY89 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qXx9RBDY89 .main {
  flex-direction: row-reverse;
}
.cid-qXx9RBDY89 .row-element,
.cid-qXx9RBDY89 .image-element {
  padding: 0;
}
.cid-qXx9RBDY89 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXx9RBDY89 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXx9RBDY89 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXx9RBDY89 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXx9RBDY89 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXx9RBDY89 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXx9RBDY89 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXx9RBDY89 .underline .line {
    height: 2px;
  }
  .cid-qXx9RBDY89 .mbr-title,
  .cid-qXx9RBDY89 .underline,
  .cid-qXx9RBDY89 .mbr-text,
  .cid-qXx9RBDY89 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXx9RBDY89 .mbr-title,
.cid-qXx9RBDY89 .underline {
  color: #0c2c3d;
}
.cid-qXx9RBDY89 .mbr-text,
.cid-qXx9RBDY89 .mbr-section-btn {
  color: #232323;
}
.cid-qXxbbnqBi2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXxbbnqBi2 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qXxbbnqBi2 .row-element,
.cid-qXxbbnqBi2 .image-element {
  padding: 0;
}
.cid-qXxbbnqBi2 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qXxbbnqBi2 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qXxbbnqBi2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qXxbbnqBi2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #ec620f);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qXxbbnqBi2 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qXxbbnqBi2 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qXxbbnqBi2 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qXxbbnqBi2 .underline .line {
    height: 2px;
  }
  .cid-qXxbbnqBi2 .mbr-title,
  .cid-qXxbbnqBi2 .underline,
  .cid-qXxbbnqBi2 .mbr-text,
  .cid-qXxbbnqBi2 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qXxbbnqBi2 .mbr-title,
.cid-qXxbbnqBi2 .underline {
  color: #0c2c3d;
}
.cid-qXxbbnqBi2 .mbr-text,
.cid-qXxbbnqBi2 .mbr-section-btn {
  color: #232323;
}
.cid-qXxO3VaVcQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qXxO3VaVcQ .container-fluid {
  padding: 0 3rem;
}
.cid-qXxO3VaVcQ .media-container-column {
  padding: 0 2rem;
}
.cid-qXxO3VaVcQ .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qXxO3VaVcQ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXxcdUcpvJ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ec620f;
}
.cid-qXxcdUcpvJ .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
}
.cid-qXOZNA3GtY {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXOZNA3GtY .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXOZNA3GtY .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXOZNA3GtY .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXOZNA3GtY .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXOZNA3GtY .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXOZNA3GtY .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2rTLIvyV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2rTLIvyV .content {
    text-align: center;
  }
  .cid-qY2rTLIvyV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2rTLIvyV .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2rTLIvyV .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2rTLIvyV .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2rTLIvyV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2rTLIvyV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2rTLIvyV .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2rTLIvyV .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2rTLIvyV .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2rTLIvyV .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2rTLIvyV .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2rTLIvyV .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2rTLIvyV P {
  color: #13435c;
}
.cid-qY2rTLIvyV H5 {
  color: #f39322;
}
.cid-qY2rTLIvyV B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qXyphhHT6k {
  overflow-x: hidden !important;
}
.cid-qXyphhHT6k .container-fluid {
  padding: 30 3rem;
}
.cid-qXyphhHT6k .scroll-wrapper {
  top: 0;
  width: 100%;
  height: 100%;
  background-position: 100% 0;
  background-size: cover;
  position: absolute;
  background-repeat: repeat;
  z-index: 0;
  background-image: url("../../../assets/images/microsoft-azure-1920x1080.jpg");
  -webkit-animation: scroll-wrapper linear infinite;
  -moz-animation: scroll-wrapper linear infinite;
  -o-animation: scroll-wrapper linear infinite;
  animation: scroll-wrapper linear infinite;
  transform: translateZ(0);
}
.cid-qXyphhHT6k .scroll-wrapper.second {
  left: calc(100% - 1px);
  background-position: 0 0;
}
.cid-qXyphhHT6k .mbr-overlay {
  z-index: 1;
}
.cid-qXyphhHT6k .block-content {
  z-index: 2;
}
@keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-moz-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@-o-keyframes scroll-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 767px) {
  .cid-qXyphhHT6k .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qXyphhHT6k .mbr-section-title {
  color: #ffffff;
}
.cid-qXyphhHT6k .mbr-section-subtitle,
.cid-qXyphhHT6k .mbr-section-btn {
  color: #efefef;
}
.cid-qXyEJUzvod {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qXyEJUzvod .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qXyEJUzvod .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qXyEJUzvod .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qXyEJUzvod .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qXyEJUzvod .process-icon,
.cid-qXyEJUzvod .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qXyEJUzvod .wrapper,
.cid-qXyEJUzvod .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qXyEJUzvod .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #04367c;
  opacity: .4;
}
.cid-qXyEJUzvod .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qXyEJUzvod .icon-container a {
  display: inherit;
}
.cid-qXyEJUzvod .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ec620f !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qXyEJUzvod .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qXyEJUzvod .icon-main:hover .icon-wrapper {
  background-color: #ec620f !important;
}
.cid-qXyEJUzvod .icon-main:hover .icon-number {
  background-color: #04367c !important;
  color: #ffffff !important;
}
.cid-qXyEJUzvod .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qXyEJUzvod .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qXyEJUzvod .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qXyEJUzvod .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qXyEJUzvod .mbr-section-title {
  margin: 0;
}
.cid-qXyEJUzvod .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qXyEJUzvod .mbr-section-title,
.cid-qXyEJUzvod .underline B {
  color: #04367c;
}
.cid-qXyEJUzvod .mbr-section-subtitle B {
  color: #04367c;
}
.cid-qXyGOOhCYN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qXyGOOhCYN .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qXyGOOhCYN .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qXyGOOhCYN .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qXyGOOhCYN .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qXyGOOhCYN .process-icon,
.cid-qXyGOOhCYN .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qXyGOOhCYN .wrapper,
.cid-qXyGOOhCYN .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qXyGOOhCYN .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #04367c;
  opacity: .4;
}
.cid-qXyGOOhCYN .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qXyGOOhCYN .icon-container a {
  display: inherit;
}
.cid-qXyGOOhCYN .icon-number {
  text-align: center;
  height: 2.5em;
  width: 2.5em;
  margin: 0;
  line-height: 2.5em;
  top: 0;
  right: 0;
  position: absolute;
  display: inline-block;
  background-color: #ec620f !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qXyGOOhCYN .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qXyGOOhCYN .icon-main:hover .icon-wrapper {
  background-color: #ec620f !important;
}
.cid-qXyGOOhCYN .icon-main:hover .icon-number {
  background-color: #04367c !important;
  color: #ffffff !important;
}
.cid-qXyGOOhCYN .icon-wrapper {
  position: relative;
  z-index: 1;
  padding: 0.9em;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  font-size: 50px;
  color: #ffffff;
}
.cid-qXyGOOhCYN .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qXyGOOhCYN .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qXyGOOhCYN .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qXyGOOhCYN .mbr-section-title {
  margin: 0;
}
.cid-qXyGOOhCYN .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qXyGOOhCYN .mbr-section-title,
.cid-qXyGOOhCYN .underline B {
  color: #04367c;
}
.cid-qXyGOOhCYN .mbr-section-subtitle B {
  color: #04367c;
}
.cid-qXyS3AGlBw {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-qXyS3AGlBw .mbr-figure {
  padding: 0;
}
.cid-qXyS3AGlBw .content-row {
  background-color: #082432;
}
.cid-qXyS3AGlBw .content-row .media-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-image: url("../../../assets/images/microsoft-azure-2-1366x566.jpg");
}
.cid-qXyS3AGlBw .content-row .media-content .mbr-overlay {
  background: linear-gradient(90deg, #082432, #04367c);
}
.cid-qXyS3AGlBw .content-row .media-content .content-block {
  z-index: 1;
}
.cid-qXyS3AGlBw B {
  color: #ffffff;
}
.cid-qXyS3AGlBw .testimonial-text {
  color: #cccccc;
}
.cid-qXyTROZekZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qXyTROZekZ .mbr-text {
  color: #767676;
  text-align: center;
  letter-spacing: 0.03em;
}
.cid-qXyTROZekZ h4 {
  text-align: center;
}
.cid-qXyTROZekZ p {
  text-align: center;
}
.cid-qXyTROZekZ .card {
  padding-bottom: 3rem;
}
.cid-qXyTROZekZ .card-img {
  padding-bottom: 1.5rem;
}
.cid-qXyTROZekZ .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-qXyTROZekZ .card-title,
.cid-qXyTROZekZ .card-img {
  color: #0c2c3d;
  text-align: center;
}
.cid-qXyTROZekZ .card-title {
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 2rem;
}
.cid-qXyTROZekZ .header-title {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0;
  margin-bottom: 2rem;
}
.cid-qXyTROZekZ .header-text {
  color: #232323;
  text-align: center;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
.cid-qXyTROZekZ .header-title DIV {
  color: #0c2c3d;
}
.cid-qXyTROZekZ .header-title FONT {
  color: #04367c;
}
.cid-qXyTROZekZ .header-text B {
  color: #131522;
}
.cid-qXyTROZekZ .header-title SPAN {
  color: #465052;
}
.cid-qXyXKIAEwN {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #082432;
}
.cid-qXyXKIAEwN .mbr-section-title {
  margin: 0;
  padding: 15px 0;
  color: #ffffff;
  text-align: left;
}
.cid-qXP1cDWdbQ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qXP1cDWdbQ .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qXP1cDWdbQ .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qXP1cDWdbQ .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qXP1cDWdbQ .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qXP1cDWdbQ .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qXP1cDWdbQ .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2msZWzZ7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2msZWzZ7 .content {
    text-align: center;
  }
  .cid-qY2msZWzZ7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2msZWzZ7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2msZWzZ7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2msZWzZ7 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2msZWzZ7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2msZWzZ7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2msZWzZ7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2msZWzZ7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2msZWzZ7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2msZWzZ7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2msZWzZ7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2msZWzZ7 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2msZWzZ7 P {
  color: #13435c;
}
.cid-qY2msZWzZ7 H5 {
  color: #f39322;
}
.cid-qY2msZWzZ7 B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qY1GgZ8CxJ {
  background-image: url("../../../assets/images/server-1235959-1280-1280x853.jpg");
}
.cid-qY1GgZ8CxJ .mbr-overlay {
  background: #0c2c3d;
  background: linear-gradient(45deg, #0c2c3d, #000000);
  background: radial-gradient(#0c2c3d, #000000);
}
.cid-qY1GgZ8CxJ .mbr-section-title {
  margin: 0;
}
.cid-qY21oPwYAZ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qY21oPwYAZ .container-fluid {
  padding: 0 3rem;
}
.cid-qY21oPwYAZ .media-container-column {
  padding: 0 2rem;
}
.cid-qY21oPwYAZ .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #0c2c3d;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qY21oPwYAZ .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qY21oPwYAZ .mbr-section-subtitle B {
  color: #0c2c3d;
}
.cid-qY21oPwYAZ .mbr-section-title SPAN {
  color: #000000;
}
.cid-qY1QgD0Jai {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qY1QgD0Jai .mbr-shop {
  display: table;
  width: 100%;
}
.cid-qY1QgD0Jai .mbr-shop .row {
  margin: 0;
}
.cid-qY1QgD0Jai .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-qY1QgD0Jai .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-qY1QgD0Jai .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-qY1QgD0Jai .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-qY1QgD0Jai .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-qY1QgD0Jai .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-qY1QgD0Jai .mbr-shop .hide-modal {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qY1QgD0Jai .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-qY1QgD0Jai .mbr-shop .filter-by-pu,
.cid-qY1QgD0Jai .mbr-shop .filter-by-pd,
.cid-qY1QgD0Jai .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-qY1QgD0Jai .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-qY1QgD0Jai .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-qY1QgD0Jai .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
}
.cid-qY1QgD0Jai .mbr-shop .galleryItem h4,
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .galleryItem h5,
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .galleryItem p,
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .item-button {
  text-align: center;
}
.cid-qY1QgD0Jai .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-qY1QgD0Jai .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-qY1QgD0Jai .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-qY1QgD0Jai .mbr-shop .sidebar-block {
  position: relative;
}
.cid-qY1QgD0Jai .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-qY1QgD0Jai .mbr-shop .onsale {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  line-height: 30px;
  padding: 7.5px 15px;
  background: #fe525b;
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item__hided h4,
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item__hided h5,
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-qY1QgD0Jai .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-qY1QgD0Jai .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-qY1QgD0Jai .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-qY1QgD0Jai .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .range-controls {
  position: relative;
}
.cid-qY1QgD0Jai .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-qY1QgD0Jai .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-qY1QgD0Jai .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-qY1QgD0Jai .mbr-shop .toggle:hover,
.cid-qY1QgD0Jai .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-qY1QgD0Jai .mbr-shop .min-toggle {
  left: 0;
}
.cid-qY1QgD0Jai .mbr-shop .max-toggle {
  right: 0;
}
.cid-qY1QgD0Jai .mbr-shop .hided-by-price {
  display: none;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-qY1QgD0Jai .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-qY1QgD0Jai .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-qY1QgD0Jai .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-qY1QgD0Jai .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qY1QgD0Jai .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qY1QgD0Jai .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qY1QgD0Jai .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qY1QgD0Jai .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-qY1QgD0Jai .mbr-shop .shopItemsModal .onsale {
  border: 1px solid #e7e7e7;
}
.cid-qY1QgD0Jai .mbr-shop .shop-items .onsale,
.cid-qY1QgD0Jai .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-qY1QgD0Jai .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-qY1QgD0Jai .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-qY1QgD0Jai .mbr-shop .price-range {
  display: inline-block;
}
.cid-qY1QgD0Jai .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-qY1QgD0Jai .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-qY1QgD0Jai .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-qY1QgD0Jai .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-qY1QgD0Jai .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-qY1QgD0Jai .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-qY1QgD0Jai .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-qY1QgD0Jai .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-qY1QgD0Jai .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-qY1QgD0Jai .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-qY1QgD0Jai .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-qY1QgD0Jai .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-qY1QgD0Jai .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-qY1QgD0Jai .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-qY1QgD0Jai .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-qY1QgD0Jai .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-qY1QgD0Jai .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-qY1QgD0Jai .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-qY1QgD0Jai .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-qY1QgD0Jai .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-qY1QgD0Jai .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-qY1QgD0Jai .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-qY1QgD0Jai .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-qY1QgD0Jai .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-qY1QgD0Jai .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-qY1QgD0Jai .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-qY1QgD0Jai .mbr-gallery-row {
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
}
.cid-qY1QgD0Jai .mbr-gallery-item {
  border-right: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper {
  padding: .5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #232323;
}
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: center !important;
}
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper .item-title {
  padding-bottom: .5rem;
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: center !important;
  opacity: 0;
  margin-top: -1rem;
}
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper .mbr-section-btn,
.cid-qY1QgD0Jai .mbr-gallery-item .sidebar_wraper .price-block {
  opacity: 0;
  margin-bottom: -1rem;
}
.cid-qY1QgD0Jai .mbr-gallery-item:hover .style_overlay {
  background: #ffffff;
  opacity: 0.7;
  transition: all .5s;
}
.cid-qY1QgD0Jai .mbr-gallery-item:hover .sidebar_wraper {
  transition: all .5s;
}
.cid-qY1QgD0Jai .mbr-gallery-item:hover .sidebar_wraper .item-title {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-qY1QgD0Jai .mbr-gallery-item:hover .sidebar_wraper .item-subtitle {
  transition: all .5s;
  opacity: 1 ;
  margin-top: 0;
}
.cid-qY1QgD0Jai .mbr-gallery-item:hover .sidebar_wraper .mbr-section-btn,
.cid-qY1QgD0Jai .mbr-gallery-item:hover .sidebar_wraper .price-block {
  transition: all .5s;
  opacity: 1 ;
  margin-bottom: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qY1QgD0Jai .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-qY1QgD0Jai .range-controls {
    display: block !important;
  }
}
.cid-qY25BWTDYb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ec620f;
}
.cid-qY25BWTDYb .container-fluid {
  padding: 0 3rem;
}
.cid-qY25BWTDYb .mbr-section-title {
  color: #ffffff;
  text-align: right;
}
.cid-qY25BWTDYb .btn {
  margin-top: 0;
}
.cid-qY25BWTDYb .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-qY25BWTDYb .container-fluid {
    padding: 0 1rem;
  }
  .cid-qY25BWTDYb .btn {
    margin-top: 0.4rem;
  }
  .cid-qY25BWTDYb .mbr-section-btn {
    margin: 0;
  }
}
.cid-qY25BWTDYb .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-qY1GaPu8wF {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qY1GaPu8wF .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qY1GaPu8wF .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qY1GaPu8wF .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qY1GaPu8wF .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qY1GaPu8wF .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qY1GaPu8wF .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2s4MWh9I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2s4MWh9I .content {
    text-align: center;
  }
  .cid-qY2s4MWh9I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2s4MWh9I .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2s4MWh9I .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2s4MWh9I .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2s4MWh9I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2s4MWh9I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2s4MWh9I .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2s4MWh9I .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2s4MWh9I .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2s4MWh9I .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2s4MWh9I .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2s4MWh9I .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2s4MWh9I P {
  color: #13435c;
}
.cid-qY2s4MWh9I H5 {
  color: #f39322;
}
.cid-qY2s4MWh9I B {
  color: #131522;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qY82hDxBUo {
  background-image: url("../../../assets/images/cyberspace-2784907-1920-1920x1280.jpg");
}
.cid-qY82hDxBUo .mbr-overlay {
  background: #082432;
  background: linear-gradient(45deg, #082432, #000000);
  background: radial-gradient(#082432, #000000);
}
.cid-qY82hDxBUo .mbr-section-title {
  margin: 0;
}
.cid-qY82elv4uc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qY82elv4uc .text-section-title {
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: left;
  color: #232323;
}
.cid-qY82elv4uc .text-section-text {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: left;
  color: #232323;
}
.cid-qY82elv4uc h4 {
  display: flex;
  letter-spacing: 0.03em;
  align-items: center;
  color: #000000;
}
.cid-qY82elv4uc .panel-text {
  letter-spacing: 0.03em;
  color: #333333;
  line-height: 1.7;
}
.cid-qY82elv4uc .mbr-section-title {
  letter-spacing: 0.1em;
  color: #000000;
}
.cid-qY82elv4uc .mbr-section-subtitle {
  letter-spacing: 0.03em;
  color: #333333;
}
.cid-qY82elv4uc .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qY82elv4uc .panel-group {
  width: 100%;
}
.cid-qY82elv4uc .content-block {
  flex-basis: auto !important;
}
.cid-qY82elv4uc .card {
  border-bottom: 1px solid #efefef;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-qY82elv4uc .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-qY82elv4uc .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-qY82elv4uc .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-qY82elv4uc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qY82elv4uc .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-qY82elv4uc .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qY82elv4uc .card .panel-body {
  background: #efefef;
}
.cid-qY82elv4uc .sign {
  color: #000000;
}
.cid-qY82elv4uc .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-qY82elv4uc .media-container-row .accordion-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qY82elv4uc .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-qY82elv4uc .media-container-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-qY82elv4uc .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.cid-qY89iT0t6o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ec620f;
}
.cid-qY89iT0t6o .mbr-overlay {
  background-color: #5a31fb;
  background: linear-gradient(90deg, #5a31fb, #000000);
}
.cid-qY2mauVJw0 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qY2mauVJw0 .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qY2mauVJw0 .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qY2mauVJw0 .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qY2mauVJw0 .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qY2mauVJw0 .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qY2mauVJw0 .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2m8X2eCA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2m8X2eCA .content {
    text-align: center;
  }
  .cid-qY2m8X2eCA .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2m8X2eCA .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2m8X2eCA .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2m8X2eCA .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2m8X2eCA .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2m8X2eCA .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2m8X2eCA .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2m8X2eCA .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2m8X2eCA .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2m8X2eCA .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2m8X2eCA .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2m8X2eCA .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2m8X2eCA P {
  color: #13435c;
}
.cid-qY2m8X2eCA H5 {
  color: #f39322;
}
.cid-qY2m8X2eCA B {
  color: #131522;
}
.cid-qY2bqEDOqb {
  background-image: url("../../../assets/images/optimized-adult-business-computers-2562191-1-1200x699.jpg");
}
.cid-qY2bqEDOqb .mbr-overlay {
  background: #13435c;
  background: linear-gradient(45deg, #13435c, #000000);
  background: radial-gradient(#13435c, #000000);
}
.cid-qY2bqEDOqb .mbr-section-title {
  margin: 0;
}
.cid-qY2cCb9IXK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qY2cCb9IXK .text-section-title {
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: left;
  color: #232323;
}
.cid-qY2cCb9IXK .text-section-text {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: left;
  color: #232323;
}
.cid-qY2cCb9IXK h4 {
  display: flex;
  letter-spacing: 0.03em;
  align-items: center;
  color: #000000;
}
.cid-qY2cCb9IXK .panel-text {
  letter-spacing: 0.03em;
  color: #333333;
  line-height: 1.7;
}
.cid-qY2cCb9IXK .mbr-section-title {
  letter-spacing: 0.1em;
  color: #13435c;
}
.cid-qY2cCb9IXK .mbr-section-subtitle {
  letter-spacing: 0.03em;
  color: #333333;
}
.cid-qY2cCb9IXK .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-qY2cCb9IXK .panel-group {
  width: 100%;
}
.cid-qY2cCb9IXK .content-block {
  flex-basis: auto !important;
}
.cid-qY2cCb9IXK .card {
  border-bottom: 1px solid #efefef;
  border-radius: 0px;
  margin-bottom: .5rem;
}
.cid-qY2cCb9IXK .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-qY2cCb9IXK .card .card-header a.panel-title {
  transition: all .3s;
  background-color: #ffffff;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-qY2cCb9IXK .card .card-header a.panel-title:hover {
  opacity: 0.5;
}
.cid-qY2cCb9IXK .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qY2cCb9IXK .card .card-header a.panel-title .sign {
  padding-left: 1rem;
}
.cid-qY2cCb9IXK .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qY2cCb9IXK .card .panel-body {
  background: #efefef;
}
.cid-qY2cCb9IXK .sign {
  color: #000000;
}
.cid-qY2cCb9IXK .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-qY2cCb9IXK .media-container-row .accordion-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qY2cCb9IXK .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-qY2cCb9IXK .media-container-row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cid-qY2cCb9IXK .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.cid-qY2cCb9IXK .header-text,
.cid-qY2cCb9IXK .sign {
  color: #13435c;
}
.cid-qY2cCb9IXK .text-section-title B {
  color: #13435c;
}
.cid-qY2jvGvjbI {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qY2jvGvjbI .container-fluid {
  padding: 0 3rem;
}
.cid-qY2jvGvjbI .media-container-column {
  padding: 0 2rem;
}
.cid-qY2jvGvjbI .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qY2jvGvjbI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qY2dqG2rBw {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-qY2dqG2rBw .container {
  padding: 0 3rem;
}
.cid-qY2dqG2rBw .star1 .star-1 {
  fill: #ffef00;
}
.cid-qY2dqG2rBw .star1 .star-2,
.cid-qY2dqG2rBw .star1 .star-3,
.cid-qY2dqG2rBw .star1 .star-4,
.cid-qY2dqG2rBw .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qY2dqG2rBw .star2 .star-1,
.cid-qY2dqG2rBw .star2 .star-2 {
  fill: #ffef00;
}
.cid-qY2dqG2rBw .star2 .star-3,
.cid-qY2dqG2rBw .star2 .star-4,
.cid-qY2dqG2rBw .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qY2dqG2rBw .star3 .star-1,
.cid-qY2dqG2rBw .star3 .star-2,
.cid-qY2dqG2rBw .star3 .star-3 {
  fill: #ffef00;
}
.cid-qY2dqG2rBw .star3 .star-4,
.cid-qY2dqG2rBw .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qY2dqG2rBw .star4 .star-1,
.cid-qY2dqG2rBw .star4 .star-2,
.cid-qY2dqG2rBw .star4 .star-3,
.cid-qY2dqG2rBw .star4 .star-4 {
  fill: #ffef00;
}
.cid-qY2dqG2rBw .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qY2dqG2rBw .star5 .star-1,
.cid-qY2dqG2rBw .star5 .star-2,
.cid-qY2dqG2rBw .star5 .star-3,
.cid-qY2dqG2rBw .star5 .star-4,
.cid-qY2dqG2rBw .star5 .star-5 {
  fill: #ffef00;
}
.cid-qY2dqG2rBw .mbr-section-btn {
  margin-top: 1rem;
}
.cid-qY2dqG2rBw .table-heading {
  width: 100%;
  display: block;
}
.cid-qY2dqG2rBw .table-wrapper {
  border: 1px solid #081d28;
  padding: 2rem 1rem;
  background-color: #0c2c3d;
  transition: 0.3s ease-out all;
}
.cid-qY2dqG2rBw .table-wrapper:hover {
  transition: margin .5s;
  margin-top: -5px;
  background-color: #ec620f;
  border: 1px solid #d4580d;
}
.cid-qY2dqG2rBw .table-wrapper:hover .pricing-value,
.cid-qY2dqG2rBw .table-wrapper:hover .stars,
.cid-qY2dqG2rBw .table-wrapper:hover .mbr-list,
.cid-qY2dqG2rBw .table-wrapper:hover .table-heading {
  color: #ffffff !important;
}
.cid-qY2dqG2rBw .stars {
  margin: 1rem;
}
.cid-qY2dqG2rBw ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.cid-qY2dqG2rBw li {
  margin: 1rem 0;
}
.cid-qY2dqG2rBw .left-bottom {
  border-radius: 15px 0 0 15px;
}
.cid-qY2dqG2rBw .right-bottom {
  border-radius: 0 15px 15px 0;
}
.cid-qY2dqG2rBw .all-border {
  border-radius: 15px 15px 15px 15px;
}
@media (max-width: 767px) {
  .cid-qY2dqG2rBw .container {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-qY2dqG2rBw .table-wrapper {
    border-radius: 15px !important;
    margin: 1em 1em;
  }
}
.cid-qY2e7jt9MM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #0c2c3d;
}
.cid-qY2e7jt9MM .media-container-row {
  flex-wrap: wrap;
}
.cid-qY2e7jt9MM .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-qSb71RhwiG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .nav-item:focus,
.cid-qSb71RhwiG .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qSb71RhwiG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qSb71RhwiG .nav-item .nav-link {
    position: relative;
  }
  .cid-qSb71RhwiG .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #ffffff, #ec620f);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qSb71RhwiG .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qSb71RhwiG .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-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qSb71RhwiG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qSb71RhwiG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qSb71RhwiG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qSb71RhwiG .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qSb71RhwiG .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qSb71RhwiG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-qSb71RhwiG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qSb71RhwiG .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-qSb71RhwiG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qSb71RhwiG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qSb71RhwiG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qSb71RhwiG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-qSb71RhwiG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qSb71RhwiG .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-qSb71RhwiG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qSb71RhwiG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qSb71RhwiG .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qSb71RhwiG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-qSb71RhwiG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-qSb71RhwiG .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qSb71RhwiG .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qSb71RhwiG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qSb71RhwiG .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qSb71RhwiG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qSb71RhwiG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qSb71RhwiG .dropdown-item.active,
.cid-qSb71RhwiG .dropdown-item:active {
  background-color: transparent;
}
.cid-qSb71RhwiG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qSb71RhwiG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qSb71RhwiG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qSb71RhwiG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSb71RhwiG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qSb71RhwiG .navbar-buttons {
  text-align: center;
}
.cid-qSb71RhwiG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #082432;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSb71RhwiG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSb71RhwiG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSb71RhwiG .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qSb71RhwiG a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qSb71RhwiG .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qSb71RhwiG .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qSb71RhwiG .icons-menu span {
  font-size: 20px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qSb71RhwiG .navbar {
    height: 77px;
  }
  .cid-qSb71RhwiG .navbar.opened {
    height: auto;
  }
  .cid-qSb71RhwiG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qY2b3S4xYT {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-qY2b3S4xYT .text {
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.cid-qY2b3S4xYT .mbr-text {
  width: 100%;
  height: auto;
  text-align: center;
  color: #767676;
}
@media (max-width: 991px) {
  .cid-qY2b3S4xYT .row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cid-qY2b3S4xYT .content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
.cid-qY2b3S4xYT .mbr-section-title {
  color: #082432;
  text-align: center;
}
.cid-qY2b3S4xYT .mbr-section-title B {
  color: #ec620f;
}
.cid-qY2mcoPA2s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qY2mcoPA2s .content {
    text-align: center;
  }
  .cid-qY2mcoPA2s .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qY2mcoPA2s .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qY2mcoPA2s .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qY2mcoPA2s .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qY2mcoPA2s .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qY2mcoPA2s .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qY2mcoPA2s .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qY2mcoPA2s .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qY2mcoPA2s .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qY2mcoPA2s .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qY2mcoPA2s .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qY2mcoPA2s .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qY2mcoPA2s P {
  color: #13435c;
}
.cid-qY2mcoPA2s H5 {
  color: #f39322;
}
.cid-qY2mcoPA2s B {
  color: #131522;
}
