@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,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: 'Rubik', sans-serif;
  font-size: 1.4rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 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))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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: #50bd16 !important;
}
.bg-success {
  background-color: #50bd16 !important;
}
.bg-info {
  background-color: #f71622 !important;
}
.bg-warning {
  background-color: #28763e !important;
}
.bg-danger {
  background-color: #096693 !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: #33780e;
  border-color: #33780e;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #50bd16 !important;
  border-color: #50bd16 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #33780e !important;
  border-color: #33780e !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #33780e !important;
  border-color: #33780e !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: #33780e;
  border-color: #33780e;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #50bd16 !important;
  border-color: #50bd16 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #33780e !important;
  border-color: #33780e !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: #33780e !important;
  border-color: #33780e !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: #ba0610;
  border-color: #ba0610;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f71622 !important;
  border-color: #f71622 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #ba0610 !important;
  border-color: #ba0610 !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: #ba0610 !important;
  border-color: #ba0610 !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: #33780e;
  border-color: #33780e;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #50bd16 !important;
  border-color: #50bd16 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #33780e !important;
  border-color: #33780e !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: #33780e !important;
  border-color: #33780e !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: #153d20;
  border-color: #153d20;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #28763e !important;
  border-color: #28763e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #153d20 !important;
  border-color: #153d20 !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: #153d20 !important;
  border-color: #153d20 !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: #05344b;
  border-color: #05344b;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #096693 !important;
  border-color: #096693 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #05344b !important;
  border-color: #05344b !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: #05344b !important;
  border-color: #05344b !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: #50bd16;
  border-color: #50bd16;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #29620b;
  color: #29620b !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #50bd16;
  border-color: #50bd16;
}
.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: #ffffff !important;
  background-color: #50bd16 !important;
  border-color: #50bd16 !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: #50bd16;
  border-color: #50bd16;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #29620b;
  color: #29620b !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #50bd16;
  border-color: #50bd16;
}
.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: #50bd16 !important;
  border-color: #50bd16 !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: #f71622;
  border-color: #f71622;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #a1060e;
  color: #a1060e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #f71622;
  border-color: #f71622;
}
.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: #f71622 !important;
  border-color: #f71622 !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: #50bd16;
  border-color: #50bd16;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #29620b;
  color: #29620b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #50bd16;
  border-color: #50bd16;
}
.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: #50bd16 !important;
  border-color: #50bd16 !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: #28763e;
  border-color: #28763e;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #0e2a16;
  color: #0e2a16 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #28763e;
  border-color: #28763e;
}
.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: #28763e !important;
  border-color: #28763e !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: #096693;
  border-color: #096693;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #032333;
  color: #032333 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #096693;
  border-color: #096693;
}
.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: #096693 !important;
  border-color: #096693 !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: #50bd16 !important;
}
.text-secondary {
  color: #50bd16 !important;
}
.text-success {
  color: #50bd16 !important;
}
.text-info {
  color: #f71622 !important;
}
.text-warning {
  color: #28763e !important;
}
.text-danger {
  color: #096693 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #29620b !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #29620b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #29620b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #a1060e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0e2a16 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #032333 !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: #50bd16;
}
.alert-info {
  background-color: #f71622;
}
.alert-warning {
  background-color: #28763e;
}
.alert-danger {
  background-color: #096693;
}
.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: #50bd16;
  border-color: #50bd16;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #50bd16;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #95ed65;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #95ed65;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fedbdd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #57c677;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #2ab1f2;
}
/* Scroll to top button*/
#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: 'Rubik', sans-serif;
  font-size: 1rem;
  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: #50bd16;
  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: #50bd16;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #50bd16;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #50bd16;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #50bd16;
}
/* 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-qGSHxIWPO1 {
  background-image: url("../../../assets/images/8-a-14-2000x1328.jpg");
}
.cid-qGSHxIWPO1 .mbr-section-title,
.cid-qGSHxIWPO1 .mbr-section-subtitle {
  color: #879a9f;
}
.cid-qGSHxIWPO1 .mbr-section-text {
  color: #767676;
}
.cid-qGSHxIWPO1 .mbr-text,
.cid-qGSHxIWPO1 .typed-text,
.cid-qGSHxIWPO1 .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-qGSHxIWPO1 .btn {
  margin-left: 4px !important;
}
.cid-qGSHxIWPO1 .animated-element {
  color: #fe525b;
}
.cid-qGSHxIWPO1 .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #fe525b;
}
@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-qGSHxIWPO1 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-qGSHxIWPO1 .mbr-section-subtitle,
.cid-qGSHxIWPO1 .typed-text {
  color: #ffffff;
  text-align: center;
}
.cid-qMEFzKOxuK {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qMEFzKOxuK h2,
.cid-qMEFzKOxuK h3,
.cid-qMEFzKOxuK p,
.cid-qMEFzKOxuK h4 {
  color: #0a0a0a;
}
.cid-qMEFzKOxuK .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qMEFzKOxuK .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qMEFzKOxuK .input {
  margin-bottom: 15px;
}
.cid-qMEFzKOxuK .mbr-text {
  color: #767676;
}
.cid-qMEFzKOxuK a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qMEFzKOxuK .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qMEFzKOxuK .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qMEFzKOxuK .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qMEFzKOxuK .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qMEFzKOxuK .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qMEFzKOxuK .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qMEFzKOxuK .list-block {
  position: relative;
}
.cid-qMEFzKOxuK .list-block h4,
.cid-qMEFzKOxuK .list-block p {
  padding-left: 3.5rem;
}
.cid-qMEFzKOxuK .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qMEFzKOxuK h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qMEFzKOxuK .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qMEFzKOxuK .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qMEFzKOxuK .img-block-wrap {
    position: relative;
  }
  .cid-qMEFzKOxuK .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qMEFzKOxuK .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qMEFzKOxuK .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qMEFzKOxuK .google-map {
    padding-bottom: 2rem;
  }
  .cid-qMEFzKOxuK .img-block {
    overflow: hidden;
  }
}
.cid-qMEFzKOxuK .list-item-title {
  text-align: center;
}
.cid-qMEFzKOxuK .list-item-text {
  text-align: center;
}
.cid-qMEFzKOxuK .content-title {
  text-align: center;
}
.cid-qMEFzKOxuK .content-subtitle {
  text-align: center;
}
.cid-qLxTFtpI8K {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qLxTFtpI8K .social-media {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qLxTFtpI8K .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qLxTFtpI8K .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qLxTFtpI8K .logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qLxTFtpI8K .icon-transition span {
  color: #ffffff;
  display: block;
  padding: 0.1rem 0.9rem;
  height: 4em;
  line-height: 4em;
  border-radius: 50%;
  background-color: #232323;
  width: 4em;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 13px;
}
.cid-qLxTFtpI8K .icon-transition span:hover {
  background-color: #50bd16;
}
.cid-qLxTFtpI8K .mbr-text {
  color: #000000;
}
@media (max-width: 991px) {
  .cid-qLxTFtpI8K .social-media {
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qLxTFtpI8K .logo-section {
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qLxTFtpI8K .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qGSBVnLtd9 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGSBVnLtd9 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGSBVnLtd9 a {
  font-style: normal;
}
.cid-qGSBVnLtd9 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGSBVnLtd9 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGSBVnLtd9 .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-qGSBVnLtd9 .content-text {
  margin-bottom: 0;
}
.cid-qGSBVnLtd9 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGSBVnLtd9 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGSBVnLtd9 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGSBVnLtd9 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGSBVnLtd9 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGSBVnLtd9 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGSBVnLtd9 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGSBVnLtd9 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGSBVnLtd9 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGSBVnLtd9 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGSBVnLtd9 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGSBVnLtd9 .content-right-side {
  text-align: center;
}
.cid-qGSBVnLtd9 .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGSBVnLtd9 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGSBVnLtd9 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGSBVnLtd9 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGSBVnLtd9 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGSBVnLtd9 .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGSBVnLtd9 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGSBVnLtd9 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGSBVnLtd9 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGSBVnLtd9 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGSBVnLtd9 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGSBVnLtd9 .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGSBVnLtd9 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGSBVnLtd9 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGSBVnLtd9 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGSBVnLtd9 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGSBVnLtd9 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGSBVnLtd9 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGSBVnLtd9 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGSBVnLtd9 .navbar-toggler {
    display: none;
  }
}
.cid-qGSBVnLtd9 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGSBVnLtd9 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGSBVnLtd9 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGSBVnLtd9 .menu-logo {
  margin-right: auto;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGSBVnLtd9 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGSBVnLtd9 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGSBVnLtd9 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGSBVnLtd9 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGSBVnLtd9 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGSBVnLtd9 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGSBVnLtd9 .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-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGSBVnLtd9 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGSBVnLtd9 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGSBVnLtd9 .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGSBVnLtd9 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGSBVnLtd9 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGSBVnLtd9 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGSBVnLtd9 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGSBVnLtd9 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGSBVnLtd9 button.navbar-toggler:focus {
  outline: none;
}
.cid-qGSBVnLtd9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGSBVnLtd9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGSBVnLtd9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGSBVnLtd9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGSBVnLtd9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGSBVnLtd9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGSBVnLtd9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGSBVnLtd9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGSBVnLtd9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGSBVnLtd9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGSBVnLtd9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGSBVnLtd9 .collapsed .btn {
  display: flex;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.collapsing,
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGSBVnLtd9 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGSBVnLtd9 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGSBVnLtd9 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGSBVnLtd9 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGSBVnLtd9 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGSBVnLtd9 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGSBVnLtd9 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGSBVnLtd9 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGSBVnLtd9 .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGSBVnLtd9 .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGSBVnLtd9 img {
    height: 3.8rem !important;
  }
  .cid-qGSBVnLtd9 .btn {
    display: flex;
  }
  .cid-qGSBVnLtd9 button.navbar-toggler {
    display: block;
  }
  .cid-qGSBVnLtd9 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGSBVnLtd9 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGSBVnLtd9 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGSBVnLtd9 .navbar-collapse.collapsing,
  .cid-qGSBVnLtd9 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGSBVnLtd9 .navbar-collapse.collapsing .navbar-nav,
  .cid-qGSBVnLtd9 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGSBVnLtd9 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGSBVnLtd9 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGSBVnLtd9 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGSBVnLtd9 .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGSBVnLtd9 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGSBVnLtd9 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGSBVnLtd9 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGSBVnLtd9 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGSBVnLtd9 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGSBVnLtd9 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGSBVnLtd9 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGSBVnLtd9 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGSBVnLtd9 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGSBVnLtd9 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGSBVnLtd9 .nav-link:focus {
  outline: none;
}
.cid-qGSBVnLtd9 .navbar-toggler {
  position: relative;
}
.cid-qGSBVnLtd9 .dropdown-item.active,
.cid-qGSBVnLtd9 .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGSBVnLtd9 .nav-link:hover,
.cid-qGSBVnLtd9 .dropdown-item:hover {
  color: #000000;
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qHA8HFFdXT {
  background-image: url("../../../assets/images/2017-10-14-15-20-17-2000x1500.jpg");
}
.cid-qHA8HFFdXT .card-wrapper {
  z-index: 3;
}
.cid-qHA8HFFdXT .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qHA8HFFdXT:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qHA8HFFdXT .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qHA8HFFdXT .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qHA8HFFdXT .text-block {
  text-align: right !important;
}
.cid-qHA8kCixHA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qHA8kCixHA .container-fluid {
  padding: 0 3rem;
}
.cid-qHA8kCixHA .card .card-wrapper {
  height: 1%;
}
.cid-qHA8kCixHA .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qHA8kCixHA .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qHA8kCixHA .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qHA8kCixHA .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qHA8kCixHA .container-fluid {
    padding: 0 1rem;
  }
  .cid-qHA8kCixHA .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qILyKHPC7A {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #efefef;
}
.cid-qILyKHPC7A .container-fluid {
  padding: 0 3rem;
}
.cid-qILyKHPC7A .mbr-section-title {
  margin-bottom: 0;
}
.cid-qILyKHPC7A .mbr-iconfont {
  color: #cccccc;
  font-size: 1.6rem;
}
.cid-qILyKHPC7A .mbr-iconfont:hover {
  color: #f71622;
}
.cid-qILyKHPC7A .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-bottom: 1.5rem;
}
.cid-qILyKHPC7A .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qILyKHPC7A .image-wrap {
  position: relative;
}
.cid-qILyKHPC7A .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-qILyKHPC7A .image-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-qILyKHPC7A .image-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-qILyKHPC7A .mbr-section-subtitle {
  line-height: 1.5;
}
.cid-qILyKHPC7A .card-wrap {
  margin-bottom: 3rem;
}
.cid-qILyKHPC7A .social-media {
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-qILyKHPC7A .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-qILyKHPC7A .social-media ul li {
  margin-right: .8rem;
  display: inline-block;
}
.cid-qILyKHPC7A .img-overlay {
  background-color: #ffffff;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  border: 3px solid;
  border-color: #e6e6e6;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-qILyKHPC7A .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
@media (max-width: 767px) {
  .cid-qILyKHPC7A .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qILnmntEE6 path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qILnlmdsoM path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qILnGfGG3A {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qILnGfGG3A h2,
.cid-qILnGfGG3A h3,
.cid-qILnGfGG3A p,
.cid-qILnGfGG3A h4 {
  color: #0a0a0a;
}
.cid-qILnGfGG3A .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qILnGfGG3A .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qILnGfGG3A .input {
  margin-bottom: 15px;
}
.cid-qILnGfGG3A .mbr-text {
  color: #767676;
}
.cid-qILnGfGG3A a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qILnGfGG3A .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qILnGfGG3A .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qILnGfGG3A .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qILnGfGG3A .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qILnGfGG3A .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qILnGfGG3A .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qILnGfGG3A .list-block {
  position: relative;
}
.cid-qILnGfGG3A .list-block h4,
.cid-qILnGfGG3A .list-block p {
  padding-left: 3.5rem;
}
.cid-qILnGfGG3A .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qILnGfGG3A h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qILnGfGG3A .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qILnGfGG3A .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qILnGfGG3A .img-block-wrap {
    position: relative;
  }
  .cid-qILnGfGG3A .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qILnGfGG3A .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qILnGfGG3A .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qILnGfGG3A .google-map {
    padding-bottom: 2rem;
  }
  .cid-qILnGfGG3A .img-block {
    overflow: hidden;
  }
}
.cid-qILnGfGG3A .list-item-title {
  text-align: center;
}
.cid-qILnGfGG3A .list-item-text {
  text-align: center;
}
.cid-qILnGfGG3A .content-title {
  text-align: center;
}
.cid-qILnGfGG3A .content-subtitle {
  text-align: center;
}
.cid-qLAo8ns5cO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qLAo8ns5cO [class^="socicon-"]:before,
.cid-qLAo8ns5cO [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qLAo8ns5cO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qLAo8ns5cO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qLAo8ns5cO .socicon {
  color: #5b686b;
}
.cid-qLAo8ns5cO .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qLAo8ns5cO .btn-social:hover {
  background: #1ba1e2;
}
.cid-qLAo8ns5cO .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qLAo8ns5cO .btn {
    font-size: 20px !important;
  }
  .cid-qLAo8ns5cO .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMjgFxdq2p .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMjgFxdq2p .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMjgFxdq2p a {
  font-style: normal;
}
.cid-qMjgFxdq2p .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMjgFxdq2p .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMjgFxdq2p .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-qMjgFxdq2p .content-text {
  margin-bottom: 0;
}
.cid-qMjgFxdq2p .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMjgFxdq2p .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMjgFxdq2p .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMjgFxdq2p .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMjgFxdq2p .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMjgFxdq2p .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjgFxdq2p .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjgFxdq2p .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMjgFxdq2p .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMjgFxdq2p .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMjgFxdq2p .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMjgFxdq2p .content-right-side {
  text-align: center;
}
.cid-qMjgFxdq2p .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMjgFxdq2p .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMjgFxdq2p .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMjgFxdq2p .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMjgFxdq2p .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMjgFxdq2p .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMjgFxdq2p .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMjgFxdq2p .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMjgFxdq2p .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMjgFxdq2p .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMjgFxdq2p .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMjgFxdq2p .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMjgFxdq2p .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMjgFxdq2p .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMjgFxdq2p .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMjgFxdq2p .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMjgFxdq2p .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMjgFxdq2p .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMjgFxdq2p .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMjgFxdq2p .navbar-toggler {
    display: none;
  }
}
.cid-qMjgFxdq2p .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMjgFxdq2p .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMjgFxdq2p .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMjgFxdq2p .menu-logo {
  margin-right: auto;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMjgFxdq2p .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMjgFxdq2p .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMjgFxdq2p .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMjgFxdq2p .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMjgFxdq2p .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMjgFxdq2p .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMjgFxdq2p .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-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMjgFxdq2p .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMjgFxdq2p .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMjgFxdq2p .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMjgFxdq2p .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMjgFxdq2p .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMjgFxdq2p .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMjgFxdq2p .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMjgFxdq2p button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMjgFxdq2p button.navbar-toggler:focus {
  outline: none;
}
.cid-qMjgFxdq2p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMjgFxdq2p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMjgFxdq2p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjgFxdq2p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjgFxdq2p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMjgFxdq2p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjgFxdq2p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMjgFxdq2p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMjgFxdq2p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjgFxdq2p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMjgFxdq2p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMjgFxdq2p .collapsed .btn {
  display: flex;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse.collapsing,
.cid-qMjgFxdq2p .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMjgFxdq2p .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMjgFxdq2p .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMjgFxdq2p .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMjgFxdq2p .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMjgFxdq2p .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMjgFxdq2p .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMjgFxdq2p .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMjgFxdq2p .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMjgFxdq2p .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMjgFxdq2p .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMjgFxdq2p .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMjgFxdq2p .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMjgFxdq2p .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMjgFxdq2p .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMjgFxdq2p img {
    height: 3.8rem !important;
  }
  .cid-qMjgFxdq2p .btn {
    display: flex;
  }
  .cid-qMjgFxdq2p button.navbar-toggler {
    display: block;
  }
  .cid-qMjgFxdq2p .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMjgFxdq2p .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMjgFxdq2p .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMjgFxdq2p .navbar-collapse.collapsing,
  .cid-qMjgFxdq2p .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMjgFxdq2p .navbar-collapse.collapsing .navbar-nav,
  .cid-qMjgFxdq2p .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMjgFxdq2p .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMjgFxdq2p .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMjgFxdq2p .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMjgFxdq2p .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMjgFxdq2p .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMjgFxdq2p .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMjgFxdq2p .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMjgFxdq2p .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMjgFxdq2p .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMjgFxdq2p .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMjgFxdq2p .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMjgFxdq2p .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMjgFxdq2p .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMjgFxdq2p .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMjgFxdq2p .nav-link:focus {
  outline: none;
}
.cid-qMjgFxdq2p .navbar-toggler {
  position: relative;
}
.cid-qMjgFxdq2p .dropdown-item.active,
.cid-qMjgFxdq2p .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMjgFxdq2p .nav-link:hover,
.cid-qMjgFxdq2p .dropdown-item:hover {
  color: #000000;
}
.cid-qMjgFzFcGv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMjgFzFcGv .media-container-row {
  flex-wrap: wrap;
}
.cid-qMjgFzFcGv .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMjgFzFcGv .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMjgFBqcpg {
  background-image: url("../../../assets/images/couple-blueprint-3-1920x940.jpg");
}
.cid-qMjgFBqcpg .card-wrapper {
  z-index: 3;
}
.cid-qMjgFBqcpg .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qMjgFBqcpg:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qMjgFBqcpg .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qMjgFBqcpg .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qMjgFBqcpg .text-block {
  text-align: right !important;
}
.cid-qMjgFDrYv7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qMjgFDrYv7 .container-fluid {
  padding: 0 3rem;
}
.cid-qMjgFDrYv7 .card .card-wrapper {
  height: 1%;
}
.cid-qMjgFDrYv7 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qMjgFDrYv7 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qMjgFDrYv7 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qMjgFDrYv7 .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qMjgFDrYv7 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qMjgFDrYv7 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qMFm6c72ih {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qMFm6c72ih .container-fluid {
  padding: 0 3rem;
}
.cid-qMFm6c72ih .media-container-column {
  padding: 0 2rem;
}
.cid-qMFm6c72ih .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qMFm6c72ih .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qMjgFPhlBK path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qMjgFPtUm0 path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qMFtwG9gsZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMFtwG9gsZ .card-img {
  padding: 0 0 3rem;
}
.cid-qMFtwG9gsZ .mbr-section-btn {
  margin-left: 0;
}
.cid-qMFtwG9gsZ .card-days {
  background-color: #50bd16;
  border-radius: 5px;
}
.cid-qMFtwG9gsZ .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-qMFtwG9gsZ .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-qMFtwG9gsZ .card-days .schedule li:first-child {
  border-top: none;
}
.cid-qMFtwG9gsZ .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qMFtwG9gsZ .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
@media (min-width: 992px) {
  .cid-qMFtwG9gsZ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qMFtwG9gsZ .card-title {
  text-align: center;
}
.cid-qMFtwG9gsZ UL {
  text-align: center;
  color: #ffffff;
}
.cid-qMjgFPHkJG {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qMjgFPHkJG h2,
.cid-qMjgFPHkJG h3,
.cid-qMjgFPHkJG p,
.cid-qMjgFPHkJG h4 {
  color: #0a0a0a;
}
.cid-qMjgFPHkJG .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qMjgFPHkJG .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qMjgFPHkJG .input {
  margin-bottom: 15px;
}
.cid-qMjgFPHkJG .mbr-text {
  color: #767676;
}
.cid-qMjgFPHkJG a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qMjgFPHkJG .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qMjgFPHkJG .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qMjgFPHkJG .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qMjgFPHkJG .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qMjgFPHkJG .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qMjgFPHkJG .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qMjgFPHkJG .list-block {
  position: relative;
}
.cid-qMjgFPHkJG .list-block h4,
.cid-qMjgFPHkJG .list-block p {
  padding-left: 3.5rem;
}
.cid-qMjgFPHkJG .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qMjgFPHkJG h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qMjgFPHkJG .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qMjgFPHkJG .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qMjgFPHkJG .img-block-wrap {
    position: relative;
  }
  .cid-qMjgFPHkJG .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qMjgFPHkJG .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qMjgFPHkJG .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qMjgFPHkJG .google-map {
    padding-bottom: 2rem;
  }
  .cid-qMjgFPHkJG .img-block {
    overflow: hidden;
  }
}
.cid-qMjgFPHkJG .list-item-title {
  text-align: center;
}
.cid-qMjgFPHkJG .list-item-text {
  text-align: center;
}
.cid-qMjgFPHkJG .content-title {
  text-align: center;
}
.cid-qMjgFPHkJG .content-subtitle {
  text-align: center;
}
.cid-qMjgFRh8JE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMjgFRh8JE [class^="socicon-"]:before,
.cid-qMjgFRh8JE [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qMjgFRh8JE .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMjgFRh8JE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMjgFRh8JE .socicon {
  color: #5b686b;
}
.cid-qMjgFRh8JE .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qMjgFRh8JE .btn-social:hover {
  background: #1ba1e2;
}
.cid-qMjgFRh8JE .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qMjgFRh8JE .btn {
    font-size: 20px !important;
  }
  .cid-qMjgFRh8JE .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qMiYC0FW3B .modal-body .close {
  background: #1b1b1b;
}
.cid-qMiYC0FW3B .modal-body .close span {
  font-style: normal;
}
.cid-qMiYC0FW3B .carousel-inner > .active,
.cid-qMiYC0FW3B .carousel-inner > .next,
.cid-qMiYC0FW3B .carousel-inner > .prev {
  display: table;
}
.cid-qMiYC0FW3B .carousel-control .icon-next,
.cid-qMiYC0FW3B .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qMiYC0FW3B .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qMiYC0FW3B .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qMiYC0FW3B .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qMiYC0FW3B .boxed-slider > div {
  position: relative;
}
.cid-qMiYC0FW3B .container img {
  width: 100%;
}
.cid-qMiYC0FW3B .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-qMiYC0FW3B .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qMiYC0FW3B .mbr-table-cell {
  padding: 0;
}
.cid-qMiYC0FW3B .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qMiYC0FW3B .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qMiYC0FW3B .mbr-overlay {
  z-index: 1;
}
.cid-qMiYC0FW3B .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qMiYC0FW3B .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-qMiYC0FW3B .carousel-item .container {
    width: 100%;
  }
}
.cid-qMiYC0FW3B .carousel-item-next.carousel-item-left,
.cid-qMiYC0FW3B .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qMiYC0FW3B .active.carousel-item-right,
.cid-qMiYC0FW3B .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qMiYC0FW3B .active.carousel-item-left,
.cid-qMiYC0FW3B .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qMiYC0FW3B .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-qMiYC0FW3B .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qMiYC0FW3B .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qMiYC0FW3B .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-qMiYC0FW3B .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qMiYC0FW3B .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qMiYC0FW3B .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-qMiYC0FW3B .mbr-slider .carousel-indicators li.active,
.cid-qMiYC0FW3B .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qMiYC0FW3B .mbr-slider .carousel-indicators li::after,
.cid-qMiYC0FW3B .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qMiYC0FW3B .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qMiYC0FW3B .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qMiYC0FW3B .mbr-slider > .container img {
  width: 100%;
}
.cid-qMiYC0FW3B .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-qMiYC0FW3B .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qMiYC0FW3B .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qMiYC0FW3B .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qMiYC0FW3B .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qMiYC0FW3B .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-qMiYC0FW3B .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qMiYC0FW3B .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qMiYC0FW3B .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qMiYC0FW3B .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qMiYC0FW3B .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qMiYC0FW3B .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qMiYC0FW3B .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qMiXPMeVuw .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMiXPMeVuw .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMiXPMeVuw a {
  font-style: normal;
}
.cid-qMiXPMeVuw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMiXPMeVuw .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMiXPMeVuw .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-qMiXPMeVuw .content-text {
  margin-bottom: 0;
}
.cid-qMiXPMeVuw .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMiXPMeVuw .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMiXPMeVuw .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMiXPMeVuw .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMiXPMeVuw .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMiXPMeVuw .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMiXPMeVuw .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMiXPMeVuw .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMiXPMeVuw .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMiXPMeVuw .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMiXPMeVuw .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMiXPMeVuw .content-right-side {
  text-align: center;
}
.cid-qMiXPMeVuw .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMiXPMeVuw .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMiXPMeVuw .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMiXPMeVuw .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMiXPMeVuw .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMiXPMeVuw .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMiXPMeVuw .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMiXPMeVuw .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMiXPMeVuw .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMiXPMeVuw .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMiXPMeVuw .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMiXPMeVuw .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMiXPMeVuw .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMiXPMeVuw .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMiXPMeVuw .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMiXPMeVuw .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMiXPMeVuw .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMiXPMeVuw .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMiXPMeVuw .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMiXPMeVuw .navbar-toggler {
    display: none;
  }
}
.cid-qMiXPMeVuw .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMiXPMeVuw .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMiXPMeVuw .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMiXPMeVuw .menu-logo {
  margin-right: auto;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMiXPMeVuw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMiXPMeVuw .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMiXPMeVuw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMiXPMeVuw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMiXPMeVuw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMiXPMeVuw .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMiXPMeVuw .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-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMiXPMeVuw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMiXPMeVuw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMiXPMeVuw .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMiXPMeVuw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMiXPMeVuw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMiXPMeVuw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMiXPMeVuw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMiXPMeVuw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMiXPMeVuw button.navbar-toggler:focus {
  outline: none;
}
.cid-qMiXPMeVuw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMiXPMeVuw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMiXPMeVuw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMiXPMeVuw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMiXPMeVuw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMiXPMeVuw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMiXPMeVuw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMiXPMeVuw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMiXPMeVuw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMiXPMeVuw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMiXPMeVuw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMiXPMeVuw .collapsed .btn {
  display: flex;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse.collapsing,
.cid-qMiXPMeVuw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMiXPMeVuw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMiXPMeVuw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMiXPMeVuw .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMiXPMeVuw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMiXPMeVuw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMiXPMeVuw .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMiXPMeVuw .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMiXPMeVuw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMiXPMeVuw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMiXPMeVuw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMiXPMeVuw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMiXPMeVuw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMiXPMeVuw .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMiXPMeVuw .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMiXPMeVuw img {
    height: 3.8rem !important;
  }
  .cid-qMiXPMeVuw .btn {
    display: flex;
  }
  .cid-qMiXPMeVuw button.navbar-toggler {
    display: block;
  }
  .cid-qMiXPMeVuw .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMiXPMeVuw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMiXPMeVuw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMiXPMeVuw .navbar-collapse.collapsing,
  .cid-qMiXPMeVuw .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMiXPMeVuw .navbar-collapse.collapsing .navbar-nav,
  .cid-qMiXPMeVuw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMiXPMeVuw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMiXPMeVuw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMiXPMeVuw .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMiXPMeVuw .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMiXPMeVuw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMiXPMeVuw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMiXPMeVuw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMiXPMeVuw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMiXPMeVuw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMiXPMeVuw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMiXPMeVuw .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMiXPMeVuw .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMiXPMeVuw .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMiXPMeVuw .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMiXPMeVuw .nav-link:focus {
  outline: none;
}
.cid-qMiXPMeVuw .navbar-toggler {
  position: relative;
}
.cid-qMiXPMeVuw .dropdown-item.active,
.cid-qMiXPMeVuw .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMiXPMeVuw .nav-link:hover,
.cid-qMiXPMeVuw .dropdown-item:hover {
  color: #000000;
}
.cid-qMiXPQ6g0M {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMiXPQ6g0M .container-fluid {
  padding: 0 3rem;
}
.cid-qMiXPQ6g0M .media-container-column {
  padding: 0 2rem;
}
.cid-qMiXPQ6g0M .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-qMiXPQ6g0M .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qMiXPRTQNZ {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMiXPRTQNZ .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qMiXPRTQNZ .mbr-section-title {
  margin: 0;
}
.cid-qMiXPRTQNZ .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qMiXPRTQNZ .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-qMiXPRTQNZ .card-img {
  text-align: center;
}
.cid-qMiXPRTQNZ .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qMiXPRTQNZ .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qMiXPRTQNZ .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qMiXPRTQNZ .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qMiXPRTQNZ .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qMiXPRTQNZ .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qMiXPRTQNZ .mbr-section-subtitle,
.cid-qMiXPRTQNZ .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-qMiXPRTQNZ .title-cont,
.cid-qMiXPRTQNZ .mbr-section-title {
  color: #000000;
}
.cid-qMiXPRTQNZ .card-title,
.cid-qMiXPRTQNZ .card-img {
  color: #000000;
}
.cid-qMiXPUmiP9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qMiXPUmiP9 .container-fluid {
  padding: 0 3rem;
}
.cid-qMiXPUmiP9 .mbr-text {
  color: #232323;
}
.cid-qMiXPUmiP9 .card-title {
  text-align: center;
  color: #ffa0a4;
}
.cid-qMiXPUmiP9 p {
  text-align: center;
}
.cid-qMiXPUmiP9 .card-img {
  text-align: center;
}
.cid-qMiXPUmiP9 .card .card-img span {
  color: #096693;
  font-size: 60px;
  background: linear-gradient(45deg, #096693, #096693);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qMiXPUmiP9 .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-qMiXPUmiP9 .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qMiXPUmiP9 .card-title,
.cid-qMiXPUmiP9 .card-img {
  color: #000000;
}
.cid-qMiXPWKkAn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qMiXPWKkAn p {
  color: #767676;
}
.cid-qMiXPWKkAn .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qMiXPWKkAn .row-element,
.cid-qMiXPWKkAn .image-element {
  padding: 0;
}
.cid-qMiXPWKkAn .image-element {
  display: flex;
  justify-content: center;
}
.cid-qMiXPWKkAn .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qMiXPWKkAn .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMiXPWKkAn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qMiXPWKkAn .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qMiXPWKkAn .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qMiXPWKkAn .text-content {
    padding: 2rem 1rem;
  }
  .cid-qMiXPWKkAn .underline .line {
    height: 2px;
  }
  .cid-qMiXPWKkAn .mbr-title,
  .cid-qMiXPWKkAn .underline,
  .cid-qMiXPWKkAn .mbr-text,
  .cid-qMiXPWKkAn .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qMiXPWKkAn .mbr-text,
.cid-qMiXPWKkAn .mbr-section-btn {
  color: #000000;
}
.cid-qMiXPYqx6E {
  padding-top: 90px;
  padding-bottom: 90px;
  background: #096693;
}
.cid-qMiXPYqx6E .container {
  padding: 0 3rem;
}
.cid-qMiXPYqx6E .star1 .star-1 {
  fill: #fe525b;
}
.cid-qMiXPYqx6E .star1 .star-2,
.cid-qMiXPYqx6E .star1 .star-3,
.cid-qMiXPYqx6E .star1 .star-4,
.cid-qMiXPYqx6E .star1 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qMiXPYqx6E .star2 .star-1,
.cid-qMiXPYqx6E .star2 .star-2 {
  fill: #fe525b;
}
.cid-qMiXPYqx6E .star2 .star-3,
.cid-qMiXPYqx6E .star2 .star-4,
.cid-qMiXPYqx6E .star2 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qMiXPYqx6E .star3 .star-1,
.cid-qMiXPYqx6E .star3 .star-2,
.cid-qMiXPYqx6E .star3 .star-3 {
  fill: #fe525b;
}
.cid-qMiXPYqx6E .star3 .star-4,
.cid-qMiXPYqx6E .star3 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qMiXPYqx6E .star4 .star-1,
.cid-qMiXPYqx6E .star4 .star-2,
.cid-qMiXPYqx6E .star4 .star-3,
.cid-qMiXPYqx6E .star4 .star-4 {
  fill: #fe525b;
}
.cid-qMiXPYqx6E .star4 .star-5 {
  fill: rgba(0, 0, 0, 0.3);
}
.cid-qMiXPYqx6E .star5 .star-1,
.cid-qMiXPYqx6E .star5 .star-2,
.cid-qMiXPYqx6E .star5 .star-3,
.cid-qMiXPYqx6E .star5 .star-4,
.cid-qMiXPYqx6E .star5 .star-5 {
  fill: #fe525b;
}
.cid-qMiXPYqx6E .mbr-section-btn {
  margin-top: 1rem;
}
.cid-qMiXPYqx6E .table-heading {
  width: 100%;
  display: block;
  color: #232323;
}
.cid-qMiXPYqx6E .table-wrapper {
  border: 1px solid #f2f2f2;
  padding: 2rem 1rem;
  background-color: #ffffff;
  transition: 0.3s ease-out all;
}
.cid-qMiXPYqx6E .table-wrapper:hover {
  transition: margin .5s;
  margin-top: -5px;
  background-color: #ffef00;
  border: 1px solid #e6d700;
}
.cid-qMiXPYqx6E .table-wrapper:hover .pricing-value,
.cid-qMiXPYqx6E .table-wrapper:hover .stars,
.cid-qMiXPYqx6E .table-wrapper:hover .mbr-list,
.cid-qMiXPYqx6E .table-wrapper:hover .table-heading {
  color: #000000 !important;
}
.cid-qMiXPYqx6E .stars {
  margin: 1rem;
}
.cid-qMiXPYqx6E ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
}
.cid-qMiXPYqx6E li {
  margin: 1rem 0;
}
.cid-qMiXPYqx6E .left-bottom {
  border-radius: 15px 0 0 15px;
}
.cid-qMiXPYqx6E .right-bottom {
  border-radius: 0 15px 15px 0;
}
.cid-qMiXPYqx6E .all-border {
  border-radius: 15px 15px 15px 15px;
}
@media (max-width: 767px) {
  .cid-qMiXPYqx6E .container {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-qMiXPYqx6E .table-wrapper {
    border-radius: 15px !important;
    margin: 1em 1em;
  }
}
.cid-qMiXPYqx6E .mbr-list LI {
  color: #000000;
}
.cid-qMiXPYqx6E .pricing-value {
  color: #000000;
}
.cid-qMiXPYqx6E .mbr-list {
  color: #000000;
}
.cid-qMiXQ8jGlO {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMiXQ8jGlO .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qMiXQ8jGlO .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qMiXQ8jGlO .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qMiXQ8jGlO .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qMiXQ8jGlO .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qMiXQ8jGlO .icon-focus {
  display: none;
}
.cid-qMiXQ8jGlO .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-qMiXQ8jGlO ul {
  font-size: 0;
}
.cid-qMiXQ8jGlO .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qMiXQ8jGlO .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qMiXQ8jGlO .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
}
.cid-qMiXQ8jGlO .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qMiXQ8jGlO .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qMiXQ8jGlO .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-qMiXQ8jGlO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMiXQ8jGlO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMiXQ8jGlO .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qMiXQ8jGlO .btn:hover {
  background: transparent !important;
}
.cid-qMiXQ8jGlO .btn:hover:before {
  background: transparent !important;
}
.cid-qMiXQ8jGlO .btn:before {
  background-color: transparent !important;
}
.cid-qMiXQ8jGlO .btn:focus {
  box-shadow: none;
}
.cid-qMiXQh2n0M {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qMiXQh2n0M .container-fluid {
  padding: 0 3rem;
}
.cid-qMiXQh2n0M .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qMiXQh2n0M .mbr-section-title {
  color: #000000;
}
.cid-qMiXQh2n0M .mbr-section-subtitle {
  color: #000000;
}
.cid-qMiXQh2n0M .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-qMiXQh2n0M .header-text {
  padding: 2rem 1rem !important;
}
.cid-qMiXQh2n0M .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  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);
}
.cid-qMiXQh2n0M .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qMiXQh2n0M .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-left: 2rem;
}
.cid-qMiXQh2n0M .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qMiXQh2n0M .card .card-header a.panel-title:hover .sign {
  background-color: #50bd16 !important;
}
.cid-qMiXQh2n0M .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #096693;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-qMiXQh2n0M .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qMiXQh2n0M .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-qMiXQh2n0M .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qMiXQh2n0M .container-fluid {
    padding: 0 1rem;
  }
  .cid-qMiXQh2n0M .header-text {
    padding: 1rem !important;
  }
  .cid-qMiXQh2n0M .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qMiXQh2n0M .panel-body {
    width: calc(100% - 48px);
  }
  .cid-qMiXQh2n0M .panel-group {
    padding: 0;
  }
}
.cid-qMiXQk28Re {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qMiXQk28Re h2,
.cid-qMiXQk28Re h3,
.cid-qMiXQk28Re p,
.cid-qMiXQk28Re h4 {
  color: #0a0a0a;
}
.cid-qMiXQk28Re .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qMiXQk28Re .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qMiXQk28Re .input {
  margin-bottom: 15px;
}
.cid-qMiXQk28Re .mbr-text {
  color: #767676;
}
.cid-qMiXQk28Re a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qMiXQk28Re .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qMiXQk28Re .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qMiXQk28Re .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qMiXQk28Re .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qMiXQk28Re .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qMiXQk28Re .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qMiXQk28Re .list-block {
  position: relative;
}
.cid-qMiXQk28Re .list-block h4,
.cid-qMiXQk28Re .list-block p {
  padding-left: 3.5rem;
}
.cid-qMiXQk28Re .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qMiXQk28Re h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qMiXQk28Re .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qMiXQk28Re .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qMiXQk28Re .img-block-wrap {
    position: relative;
  }
  .cid-qMiXQk28Re .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qMiXQk28Re .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qMiXQk28Re .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qMiXQk28Re .google-map {
    padding-bottom: 2rem;
  }
  .cid-qMiXQk28Re .img-block {
    overflow: hidden;
  }
}
.cid-qMiXQk28Re .list-item-title {
  text-align: center;
}
.cid-qMiXQk28Re .list-item-text {
  text-align: center;
}
.cid-qMiXQk28Re .content-title {
  text-align: center;
}
.cid-qMiXQk28Re .content-subtitle {
  text-align: center;
}
.cid-qMiXQmvXuP {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qMiXQmvXuP .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qMiXQmvXuP .content-panel {
  padding: 3rem;
  background-color: #096693;
}
.cid-qMiXQmvXuP .text-block {
  padding-right: 0;
}
.cid-qMiXQmvXuP .google-map {
  width: 100%;
  height: 30rem;
}
.cid-qMiXQmvXuP .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-qMiXQmvXuP .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-qMiXQmvXuP .google-map .place-card {
  margin-left: 40px !important;
}
.cid-qMiXQmvXuP .adress-block {
  text-align: center;
}
.cid-qMiXQmvXuP .mbr-section-title {
  text-align: center;
}
.cid-qMiXQoRyTK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMiXQoRyTK .media-container-row {
  flex-wrap: wrap;
}
.cid-qMiXQoRyTK .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMiXQoRyTK .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMjgbEphPn .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMjgbEphPn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMjgbEphPn a {
  font-style: normal;
}
.cid-qMjgbEphPn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMjgbEphPn .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMjgbEphPn .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-qMjgbEphPn .content-text {
  margin-bottom: 0;
}
.cid-qMjgbEphPn .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMjgbEphPn .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMjgbEphPn .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMjgbEphPn .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMjgbEphPn .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMjgbEphPn .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjgbEphPn .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjgbEphPn .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMjgbEphPn .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMjgbEphPn .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMjgbEphPn .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMjgbEphPn .content-right-side {
  text-align: center;
}
.cid-qMjgbEphPn .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMjgbEphPn .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMjgbEphPn .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMjgbEphPn .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMjgbEphPn .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMjgbEphPn .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMjgbEphPn .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMjgbEphPn .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMjgbEphPn .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMjgbEphPn .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMjgbEphPn .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMjgbEphPn .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMjgbEphPn .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMjgbEphPn .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMjgbEphPn .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMjgbEphPn .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMjgbEphPn .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMjgbEphPn .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMjgbEphPn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMjgbEphPn .navbar-toggler {
    display: none;
  }
}
.cid-qMjgbEphPn .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMjgbEphPn .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMjgbEphPn .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMjgbEphPn .menu-logo {
  margin-right: auto;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMjgbEphPn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMjgbEphPn .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMjgbEphPn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMjgbEphPn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMjgbEphPn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMjgbEphPn .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMjgbEphPn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMjgbEphPn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMjgbEphPn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMjgbEphPn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMjgbEphPn .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-qMjgbEphPn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMjgbEphPn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMjgbEphPn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMjgbEphPn .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMjgbEphPn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMjgbEphPn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMjgbEphPn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMjgbEphPn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMjgbEphPn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMjgbEphPn button.navbar-toggler:focus {
  outline: none;
}
.cid-qMjgbEphPn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMjgbEphPn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMjgbEphPn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjgbEphPn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjgbEphPn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMjgbEphPn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjgbEphPn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMjgbEphPn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMjgbEphPn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjgbEphPn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMjgbEphPn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMjgbEphPn .collapsed .btn {
  display: flex;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse.collapsing,
.cid-qMjgbEphPn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMjgbEphPn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMjgbEphPn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMjgbEphPn .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMjgbEphPn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMjgbEphPn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMjgbEphPn .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMjgbEphPn .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMjgbEphPn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMjgbEphPn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMjgbEphPn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMjgbEphPn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMjgbEphPn .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMjgbEphPn .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMjgbEphPn .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMjgbEphPn img {
    height: 3.8rem !important;
  }
  .cid-qMjgbEphPn .btn {
    display: flex;
  }
  .cid-qMjgbEphPn button.navbar-toggler {
    display: block;
  }
  .cid-qMjgbEphPn .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMjgbEphPn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMjgbEphPn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMjgbEphPn .navbar-collapse.collapsing,
  .cid-qMjgbEphPn .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMjgbEphPn .navbar-collapse.collapsing .navbar-nav,
  .cid-qMjgbEphPn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMjgbEphPn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMjgbEphPn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMjgbEphPn .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMjgbEphPn .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMjgbEphPn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMjgbEphPn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMjgbEphPn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMjgbEphPn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMjgbEphPn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMjgbEphPn .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMjgbEphPn .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMjgbEphPn .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMjgbEphPn .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMjgbEphPn .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMjgbEphPn .nav-link:focus {
  outline: none;
}
.cid-qMjgbEphPn .navbar-toggler {
  position: relative;
}
.cid-qMjgbEphPn .dropdown-item.active,
.cid-qMjgbEphPn .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMjgbEphPn .nav-link:hover,
.cid-qMjgbEphPn .dropdown-item:hover {
  color: #000000;
}
.cid-qMjgbHOsLd {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/fundament-pod-garazh-v-breste-1-2000x1148.jpg");
}
.cid-qMjgbHOsLd .card-wrapper {
  z-index: 3;
}
.cid-qMjgbHOsLd .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qMjgbHOsLd:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qMjgbHOsLd .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qMjgbHOsLd .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qMjgbHOsLd .text-block {
  text-align: right !important;
}
.cid-qOcopaxhmL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qOcopaxhmL .container-fluid {
  padding: 0 3rem;
}
.cid-qOcopaxhmL .media-container-column {
  padding: 0 2rem;
}
.cid-qOcopaxhmL .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qOcopaxhmL .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qMjgbRsxPd path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qMjgbREOxC path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qOcoogRgqx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qOcoogRgqx .card-img {
  padding: 0 0 3rem;
}
.cid-qOcoogRgqx .mbr-section-btn {
  margin-left: 0;
}
.cid-qOcoogRgqx .card-days {
  background-color: #50bd16;
  border-radius: 5px;
}
.cid-qOcoogRgqx .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-qOcoogRgqx .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-qOcoogRgqx .card-days .schedule li:first-child {
  border-top: none;
}
.cid-qOcoogRgqx .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qOcoogRgqx .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
@media (min-width: 992px) {
  .cid-qOcoogRgqx .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qOcoogRgqx .card-title {
  text-align: center;
}
.cid-qOcoogRgqx UL {
  text-align: center;
  color: #ffffff;
}
.cid-qOcpDaHoDd {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qOcpDaHoDd h2,
.cid-qOcpDaHoDd h3,
.cid-qOcpDaHoDd p,
.cid-qOcpDaHoDd h4 {
  color: #0a0a0a;
}
.cid-qOcpDaHoDd .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qOcpDaHoDd .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qOcpDaHoDd .input {
  margin-bottom: 15px;
}
.cid-qOcpDaHoDd .mbr-text {
  color: #767676;
}
.cid-qOcpDaHoDd a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qOcpDaHoDd .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qOcpDaHoDd .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qOcpDaHoDd .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qOcpDaHoDd .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qOcpDaHoDd .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qOcpDaHoDd .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qOcpDaHoDd .list-block {
  position: relative;
}
.cid-qOcpDaHoDd .list-block h4,
.cid-qOcpDaHoDd .list-block p {
  padding-left: 3.5rem;
}
.cid-qOcpDaHoDd .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qOcpDaHoDd h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qOcpDaHoDd .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qOcpDaHoDd .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qOcpDaHoDd .img-block-wrap {
    position: relative;
  }
  .cid-qOcpDaHoDd .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qOcpDaHoDd .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qOcpDaHoDd .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qOcpDaHoDd .google-map {
    padding-bottom: 2rem;
  }
  .cid-qOcpDaHoDd .img-block {
    overflow: hidden;
  }
}
.cid-qOcpDaHoDd .list-item-title {
  text-align: center;
}
.cid-qOcpDaHoDd .list-item-text {
  text-align: center;
}
.cid-qOcpDaHoDd .content-title {
  text-align: center;
}
.cid-qOcpDaHoDd .content-subtitle {
  text-align: center;
}
.cid-qOcoPwA9ET {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qOcoPwA9ET .container-fluid {
  padding: 0 3rem;
}
.cid-qOcoPwA9ET .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qOcoPwA9ET .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-qOcoPwA9ET .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qOcoPwA9ET .time-line-date-content {
  margin-right: 2rem;
}
.cid-qOcoPwA9ET .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-qOcoPwA9ET .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qOcoPwA9ET .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #096693;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-qOcoPwA9ET .separline:before,
.cid-qOcoPwA9ET .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-qOcoPwA9ET .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-qOcoPwA9ET .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOcoPwA9ET .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-qOcoPwA9ET .separline:before,
  .cid-qOcoPwA9ET .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-qOcoPwA9ET .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-qOcoPwA9ET .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qOcoPwA9ET .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qOcoPwA9ET .time-line-date-content p {
    float: left !important;
  }
  .cid-qOcoPwA9ET .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-qOcorPUPTP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qOcorPUPTP .container-fluid {
  padding: 0 3rem;
}
.cid-qOcorPUPTP .card .card-wrapper {
  height: 1%;
}
.cid-qOcorPUPTP .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qOcorPUPTP .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qOcorPUPTP .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qOcorPUPTP .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qOcorPUPTP .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOcorPUPTP .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qMjgbUaFHR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMjgbUaFHR [class^="socicon-"]:before,
.cid-qMjgbUaFHR [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qMjgbUaFHR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMjgbUaFHR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMjgbUaFHR .socicon {
  color: #5b686b;
}
.cid-qMjgbUaFHR .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qMjgbUaFHR .btn-social:hover {
  background: #1ba1e2;
}
.cid-qMjgbUaFHR .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qMjgbUaFHR .btn {
    font-size: 20px !important;
  }
  .cid-qMjgbUaFHR .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qMjgbGxZZ0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMjgbGxZZ0 .media-container-row {
  flex-wrap: wrap;
}
.cid-qMjgbGxZZ0 .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMjgbGxZZ0 .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qLzXPt77Iu .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qLzXPt77Iu .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qLzXPt77Iu a {
  font-style: normal;
}
.cid-qLzXPt77Iu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qLzXPt77Iu .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qLzXPt77Iu .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-qLzXPt77Iu .content-text {
  margin-bottom: 0;
}
.cid-qLzXPt77Iu .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qLzXPt77Iu .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qLzXPt77Iu .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qLzXPt77Iu .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qLzXPt77Iu .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qLzXPt77Iu .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qLzXPt77Iu .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qLzXPt77Iu .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qLzXPt77Iu .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qLzXPt77Iu .nav-dropdown .link {
  font-weight: 400;
}
.cid-qLzXPt77Iu .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qLzXPt77Iu .content-right-side {
  text-align: center;
}
.cid-qLzXPt77Iu .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qLzXPt77Iu .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qLzXPt77Iu .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qLzXPt77Iu .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qLzXPt77Iu .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qLzXPt77Iu .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qLzXPt77Iu .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qLzXPt77Iu .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qLzXPt77Iu .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qLzXPt77Iu .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qLzXPt77Iu .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qLzXPt77Iu .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qLzXPt77Iu .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qLzXPt77Iu .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qLzXPt77Iu .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qLzXPt77Iu .navbar {
    display: block;
    padding: 0;
  }
  .cid-qLzXPt77Iu .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qLzXPt77Iu .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qLzXPt77Iu .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qLzXPt77Iu .navbar-toggler {
    display: none;
  }
}
.cid-qLzXPt77Iu .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qLzXPt77Iu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qLzXPt77Iu .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qLzXPt77Iu .menu-logo {
  margin-right: auto;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qLzXPt77Iu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qLzXPt77Iu .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qLzXPt77Iu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qLzXPt77Iu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qLzXPt77Iu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qLzXPt77Iu .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qLzXPt77Iu .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-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qLzXPt77Iu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qLzXPt77Iu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qLzXPt77Iu .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qLzXPt77Iu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qLzXPt77Iu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qLzXPt77Iu .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qLzXPt77Iu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qLzXPt77Iu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qLzXPt77Iu button.navbar-toggler:focus {
  outline: none;
}
.cid-qLzXPt77Iu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qLzXPt77Iu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qLzXPt77Iu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qLzXPt77Iu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qLzXPt77Iu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qLzXPt77Iu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qLzXPt77Iu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qLzXPt77Iu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qLzXPt77Iu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qLzXPt77Iu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qLzXPt77Iu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qLzXPt77Iu .collapsed .btn {
  display: flex;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse.collapsing,
.cid-qLzXPt77Iu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qLzXPt77Iu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qLzXPt77Iu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qLzXPt77Iu .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qLzXPt77Iu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qLzXPt77Iu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qLzXPt77Iu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qLzXPt77Iu .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qLzXPt77Iu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qLzXPt77Iu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qLzXPt77Iu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qLzXPt77Iu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qLzXPt77Iu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qLzXPt77Iu .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qLzXPt77Iu .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qLzXPt77Iu img {
    height: 3.8rem !important;
  }
  .cid-qLzXPt77Iu .btn {
    display: flex;
  }
  .cid-qLzXPt77Iu button.navbar-toggler {
    display: block;
  }
  .cid-qLzXPt77Iu .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qLzXPt77Iu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qLzXPt77Iu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qLzXPt77Iu .navbar-collapse.collapsing,
  .cid-qLzXPt77Iu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qLzXPt77Iu .navbar-collapse.collapsing .navbar-nav,
  .cid-qLzXPt77Iu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qLzXPt77Iu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qLzXPt77Iu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qLzXPt77Iu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qLzXPt77Iu .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qLzXPt77Iu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qLzXPt77Iu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qLzXPt77Iu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qLzXPt77Iu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qLzXPt77Iu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qLzXPt77Iu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qLzXPt77Iu .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qLzXPt77Iu .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qLzXPt77Iu .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qLzXPt77Iu .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qLzXPt77Iu .nav-link:focus {
  outline: none;
}
.cid-qLzXPt77Iu .navbar-toggler {
  position: relative;
}
.cid-qLzXPt77Iu .dropdown-item.active,
.cid-qLzXPt77Iu .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qLzXPt77Iu .nav-link:hover,
.cid-qLzXPt77Iu .dropdown-item:hover {
  color: #000000;
}
.cid-qLzXHMFl3W {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qLzXHMFl3W .media-container-row {
  flex-wrap: wrap;
}
.cid-qLzXHMFl3W .media-container-row .mbr-text {
  text-align: center;
}
.cid-qLzXHMFl3W .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMi6HoKNzQ {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qMi6HoKNzQ .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qMi6HoKNzQ .card-img {
  padding-bottom: 2rem;
}
.cid-qMi6HoKNzQ .mbr-text {
  color: #767676;
}
.cid-qMi6HoKNzQ span {
  font-size: 14px;
  color: #ffffff;
}
.cid-qMi6HoKNzQ .mbr-section-btn {
  margin-left: 0;
}
.cid-qMi6HoKNzQ .date span {
  display: inline-block;
  background-color: #50bd16;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-qMi6HoKNzQ .card-title {
    text-align: center;
  }
  .cid-qMi6HoKNzQ p.mbr-text,
  .cid-qMi6HoKNzQ p.date {
    text-align: center;
  }
}
.cid-qLAa3UrB6W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qLAa3UrB6W .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-qLAa3UrB6W .card-img {
  padding-bottom: 2rem;
}
.cid-qLAa3UrB6W .mbr-text {
  color: #767676;
}
.cid-qLAa3UrB6W span {
  font-size: 14px;
  color: #ffffff;
}
.cid-qLAa3UrB6W .mbr-section-btn {
  margin-left: 0;
}
.cid-qLAa3UrB6W .date span {
  display: inline-block;
  background-color: #50bd16;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-qLAa3UrB6W .card-title {
    text-align: center;
  }
  .cid-qLAa3UrB6W p.mbr-text,
  .cid-qLAa3UrB6W p.date {
    text-align: center;
  }
}
.cid-qLA4ukBZCm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qLA4ukBZCm [class^="socicon-"]:before,
.cid-qLA4ukBZCm [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qLA4ukBZCm .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qLA4ukBZCm .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qLA4ukBZCm .socicon {
  color: #767676;
}
.cid-qLA4ukBZCm .btn-social {
  border-color: #52bdf1;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qLA4ukBZCm .btn-social:hover {
  background: #52bdf1;
}
.cid-qLA4ukBZCm .btn-social:hover i.socicon {
  color: #000000 !important;
}
@media (max-width: 767px) {
  .cid-qLA4ukBZCm .btn {
    font-size: 20px !important;
  }
  .cid-qLA4ukBZCm .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qHyDUESRg4 {
  display: flex;
  background-color: #16a16c;
}
.cid-qHyDUESRg4 .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qHyDUESRg4 .mbr-section-title {
  margin: 0;
}
.cid-qHyDUESRg4 .mbr-text {
  color: #000000;
}
.cid-qHyDUESRg4 .card-title {
  text-align: left;
  color: #ffffff;
}
.cid-qHyDUESRg4 .card-img {
  text-align: left;
}
.cid-qHyDUESRg4 .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qHyDUESRg4 .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qHyDUESRg4 .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qHyDUESRg4 .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qHyDUESRg4 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qHyDUESRg4 .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qGHwxgQSmy .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qGHwxgQSmy .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qGHwxgQSmy a {
  font-style: normal;
}
.cid-qGHwxgQSmy .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qGHwxgQSmy .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .content-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qGHwxgQSmy .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qGHwxgQSmy .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qGHwxgQSmy .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qGHwxgQSmy .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qGHwxgQSmy .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qGHwxgQSmy .nav-dropdown .link {
  font-weight: 400;
}
.cid-qGHwxgQSmy .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qGHwxgQSmy .content-right-side {
  text-align: center;
}
.cid-qGHwxgQSmy .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qGHwxgQSmy .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qGHwxgQSmy .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qGHwxgQSmy .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qGHwxgQSmy .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qGHwxgQSmy .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qGHwxgQSmy .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qGHwxgQSmy .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qGHwxgQSmy .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qGHwxgQSmy .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qGHwxgQSmy .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qGHwxgQSmy .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qGHwxgQSmy .navbar {
    display: block;
    padding: 0;
  }
  .cid-qGHwxgQSmy .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qGHwxgQSmy .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qGHwxgQSmy .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qGHwxgQSmy .navbar-toggler {
    display: none;
  }
}
.cid-qGHwxgQSmy .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qGHwxgQSmy .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGHwxgQSmy .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qGHwxgQSmy .menu-logo {
  margin-right: auto;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGHwxgQSmy .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qGHwxgQSmy .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-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGHwxgQSmy .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qGHwxgQSmy .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGHwxgQSmy .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGHwxgQSmy button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qGHwxgQSmy button.navbar-toggler:focus {
  outline: none;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGHwxgQSmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGHwxgQSmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGHwxgQSmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .btn {
  display: flex;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qGHwxgQSmy .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGHwxgQSmy .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGHwxgQSmy .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGHwxgQSmy .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qGHwxgQSmy .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGHwxgQSmy .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGHwxgQSmy .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qGHwxgQSmy .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qGHwxgQSmy .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qGHwxgQSmy img {
    height: 3.8rem !important;
  }
  .cid-qGHwxgQSmy .btn {
    display: flex;
  }
  .cid-qGHwxgQSmy button.navbar-toggler {
    display: block;
  }
  .cid-qGHwxgQSmy .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qGHwxgQSmy .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGHwxgQSmy .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing,
  .cid-qGHwxgQSmy .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qGHwxgQSmy .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGHwxgQSmy .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGHwxgQSmy .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qGHwxgQSmy .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qGHwxgQSmy .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qGHwxgQSmy .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qGHwxgQSmy .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qGHwxgQSmy .nav-link:focus {
  outline: none;
}
.cid-qGHwxgQSmy .navbar-toggler {
  position: relative;
}
.cid-qGHwxgQSmy .dropdown-item.active,
.cid-qGHwxgQSmy .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qGHwxgQSmy .nav-link:hover,
.cid-qGHwxgQSmy .dropdown-item:hover {
  color: #000000;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMlTMmVBON .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMlTMmVBON .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMlTMmVBON a {
  font-style: normal;
}
.cid-qMlTMmVBON .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMlTMmVBON .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMlTMmVBON .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-qMlTMmVBON .content-text {
  margin-bottom: 0;
}
.cid-qMlTMmVBON .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMlTMmVBON .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMlTMmVBON .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMlTMmVBON .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMlTMmVBON .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMlTMmVBON .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMlTMmVBON .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMlTMmVBON .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMlTMmVBON .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMlTMmVBON .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMlTMmVBON .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMlTMmVBON .content-right-side {
  text-align: center;
}
.cid-qMlTMmVBON .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMlTMmVBON .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMlTMmVBON .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMlTMmVBON .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMlTMmVBON .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMlTMmVBON .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMlTMmVBON .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMlTMmVBON .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMlTMmVBON .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMlTMmVBON .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMlTMmVBON .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMlTMmVBON .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMlTMmVBON .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMlTMmVBON .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMlTMmVBON .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMlTMmVBON .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMlTMmVBON .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMlTMmVBON .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMlTMmVBON .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMlTMmVBON .navbar-toggler {
    display: none;
  }
}
.cid-qMlTMmVBON .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMlTMmVBON .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMlTMmVBON .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMlTMmVBON .menu-logo {
  margin-right: auto;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMlTMmVBON .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMlTMmVBON .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMlTMmVBON .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMlTMmVBON .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMlTMmVBON .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMlTMmVBON .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMlTMmVBON .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMlTMmVBON .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMlTMmVBON .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMlTMmVBON .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMlTMmVBON .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-qMlTMmVBON .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMlTMmVBON .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMlTMmVBON .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMlTMmVBON .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMlTMmVBON .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMlTMmVBON .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMlTMmVBON .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMlTMmVBON .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMlTMmVBON button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMlTMmVBON button.navbar-toggler:focus {
  outline: none;
}
.cid-qMlTMmVBON button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMlTMmVBON button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMlTMmVBON button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMlTMmVBON button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMlTMmVBON button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMlTMmVBON nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMlTMmVBON nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMlTMmVBON nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMlTMmVBON nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMlTMmVBON .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMlTMmVBON .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMlTMmVBON .collapsed .btn {
  display: flex;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse.collapsing,
.cid-qMlTMmVBON .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMlTMmVBON .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMlTMmVBON .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMlTMmVBON .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMlTMmVBON .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMlTMmVBON .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMlTMmVBON .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMlTMmVBON .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMlTMmVBON .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMlTMmVBON .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMlTMmVBON .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMlTMmVBON .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMlTMmVBON .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMlTMmVBON .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMlTMmVBON .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMlTMmVBON img {
    height: 3.8rem !important;
  }
  .cid-qMlTMmVBON .btn {
    display: flex;
  }
  .cid-qMlTMmVBON button.navbar-toggler {
    display: block;
  }
  .cid-qMlTMmVBON .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMlTMmVBON .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMlTMmVBON .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMlTMmVBON .navbar-collapse.collapsing,
  .cid-qMlTMmVBON .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMlTMmVBON .navbar-collapse.collapsing .navbar-nav,
  .cid-qMlTMmVBON .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMlTMmVBON .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMlTMmVBON .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMlTMmVBON .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMlTMmVBON .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMlTMmVBON .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMlTMmVBON .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMlTMmVBON .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMlTMmVBON .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMlTMmVBON .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMlTMmVBON .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMlTMmVBON .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMlTMmVBON .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMlTMmVBON .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMlTMmVBON .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMlTMmVBON .nav-link:focus {
  outline: none;
}
.cid-qMlTMmVBON .navbar-toggler {
  position: relative;
}
.cid-qMlTMmVBON .dropdown-item.active,
.cid-qMlTMmVBON .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMlTMmVBON .nav-link:hover,
.cid-qMlTMmVBON .dropdown-item:hover {
  color: #000000;
}
.cid-qMlTMpVzCD {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMlTMpVzCD .media-container-row {
  flex-wrap: wrap;
}
.cid-qMlTMpVzCD .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMlTMpVzCD .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMlY3UjHnb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qMlY3UjHnb .content-slider {
  display: flex;
  justify-content: center;
  padding: 0;
}
.cid-qMlY3UjHnb .modal-body .close {
  background: #1b1b1b;
}
.cid-qMlY3UjHnb .modal-body .close span {
  font-style: normal;
}
.cid-qMlY3UjHnb .carousel-inner > .active,
.cid-qMlY3UjHnb .carousel-inner > .next,
.cid-qMlY3UjHnb .carousel-inner > .prev {
  display: flex;
}
.cid-qMlY3UjHnb .carousel-control .icon-next,
.cid-qMlY3UjHnb .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-qMlY3UjHnb .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qMlY3UjHnb .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-qMlY3UjHnb .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-qMlY3UjHnb .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-qMlY3UjHnb .boxed-slider > div {
  position: relative;
}
.cid-qMlY3UjHnb .container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkitobject-position: center;
}
.cid-qMlY3UjHnb .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-qMlY3UjHnb .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qMlY3UjHnb .mbr-table-cell {
  padding: 0;
}
.cid-qMlY3UjHnb .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-qMlY3UjHnb .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-qMlY3UjHnb .mbr-overlay {
  z-index: 1;
}
.cid-qMlY3UjHnb .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  min-width: 100%;
}
.cid-qMlY3UjHnb .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-qMlY3UjHnb .carousel-item .container {
    width: 100%;
  }
}
.cid-qMlY3UjHnb .carousel-item-next.carousel-item-left,
.cid-qMlY3UjHnb .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-qMlY3UjHnb .active.carousel-item-right,
.cid-qMlY3UjHnb .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-qMlY3UjHnb .active.carousel-item-left,
.cid-qMlY3UjHnb .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-qMlY3UjHnb .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-qMlY3UjHnb .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qMlY3UjHnb .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qMlY3UjHnb .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-qMlY3UjHnb .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-qMlY3UjHnb .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-qMlY3UjHnb .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-qMlY3UjHnb .mbr-slider .carousel-indicators li.active,
.cid-qMlY3UjHnb .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-qMlY3UjHnb .mbr-slider .carousel-indicators li::after,
.cid-qMlY3UjHnb .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-qMlY3UjHnb .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-qMlY3UjHnb .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-qMlY3UjHnb .mbr-slider > .container img {
  width: 100%;
}
.cid-qMlY3UjHnb .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-qMlY3UjHnb .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-qMlY3UjHnb .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-qMlY3UjHnb .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-qMlY3UjHnb .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-qMlY3UjHnb .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-qMlY3UjHnb .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-qMlY3UjHnb .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-qMlY3UjHnb .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-qMlY3UjHnb .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-qMlY3UjHnb .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-qMlY3UjHnb .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-qMlY3UjHnb .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-qMlY3UjHnb .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-qMlY3UjHnb .carousel-inner {
  height: 100%;
}
.cid-qMlY3UjHnb .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-qMlY3UjHnb .image_wrapper {
  width: 100%;
  position: relative;
  display: inline-block;
  height: 600px;
  overflow: hidden;
}
.cid-qMlY3UjHnb .carousel-item .container-slide {
  text-align: center;
  margin-bottom: -0.5rem;
}
.cid-qMlY3UjHnb .content-slider-wrap {
  width: 100%;
}
.cid-qMlXCdHGcz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMlXCdHGcz [class^="socicon-"]:before,
.cid-qMlXCdHGcz [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qMlXCdHGcz .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMlXCdHGcz .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMlXCdHGcz .socicon {
  color: #5b686b;
}
.cid-qMlXCdHGcz .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qMlXCdHGcz .btn-social:hover {
  background: #1ba1e2;
}
.cid-qMlXCdHGcz .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qMlXCdHGcz .btn {
    font-size: 20px !important;
  }
  .cid-qMlXCdHGcz .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qMjg2tjhY0 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMjg2tjhY0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMjg2tjhY0 a {
  font-style: normal;
}
.cid-qMjg2tjhY0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMjg2tjhY0 .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMjg2tjhY0 .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-qMjg2tjhY0 .content-text {
  margin-bottom: 0;
}
.cid-qMjg2tjhY0 .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMjg2tjhY0 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMjg2tjhY0 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMjg2tjhY0 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMjg2tjhY0 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMjg2tjhY0 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjg2tjhY0 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjg2tjhY0 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMjg2tjhY0 .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMjg2tjhY0 .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMjg2tjhY0 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMjg2tjhY0 .content-right-side {
  text-align: center;
}
.cid-qMjg2tjhY0 .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMjg2tjhY0 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMjg2tjhY0 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMjg2tjhY0 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMjg2tjhY0 .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMjg2tjhY0 .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMjg2tjhY0 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMjg2tjhY0 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMjg2tjhY0 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMjg2tjhY0 .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMjg2tjhY0 .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMjg2tjhY0 .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMjg2tjhY0 .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMjg2tjhY0 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMjg2tjhY0 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMjg2tjhY0 .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMjg2tjhY0 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMjg2tjhY0 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMjg2tjhY0 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMjg2tjhY0 .navbar-toggler {
    display: none;
  }
}
.cid-qMjg2tjhY0 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMjg2tjhY0 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMjg2tjhY0 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMjg2tjhY0 .menu-logo {
  margin-right: auto;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMjg2tjhY0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMjg2tjhY0 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMjg2tjhY0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMjg2tjhY0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMjg2tjhY0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMjg2tjhY0 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMjg2tjhY0 .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-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMjg2tjhY0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMjg2tjhY0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMjg2tjhY0 .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMjg2tjhY0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMjg2tjhY0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMjg2tjhY0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMjg2tjhY0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMjg2tjhY0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMjg2tjhY0 button.navbar-toggler:focus {
  outline: none;
}
.cid-qMjg2tjhY0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMjg2tjhY0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMjg2tjhY0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjg2tjhY0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjg2tjhY0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMjg2tjhY0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjg2tjhY0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMjg2tjhY0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMjg2tjhY0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjg2tjhY0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMjg2tjhY0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMjg2tjhY0 .collapsed .btn {
  display: flex;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.collapsing,
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMjg2tjhY0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMjg2tjhY0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMjg2tjhY0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMjg2tjhY0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMjg2tjhY0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMjg2tjhY0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMjg2tjhY0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMjg2tjhY0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMjg2tjhY0 .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMjg2tjhY0 .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMjg2tjhY0 img {
    height: 3.8rem !important;
  }
  .cid-qMjg2tjhY0 .btn {
    display: flex;
  }
  .cid-qMjg2tjhY0 button.navbar-toggler {
    display: block;
  }
  .cid-qMjg2tjhY0 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMjg2tjhY0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMjg2tjhY0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMjg2tjhY0 .navbar-collapse.collapsing,
  .cid-qMjg2tjhY0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMjg2tjhY0 .navbar-collapse.collapsing .navbar-nav,
  .cid-qMjg2tjhY0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMjg2tjhY0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMjg2tjhY0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMjg2tjhY0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMjg2tjhY0 .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMjg2tjhY0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMjg2tjhY0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMjg2tjhY0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMjg2tjhY0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMjg2tjhY0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMjg2tjhY0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMjg2tjhY0 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMjg2tjhY0 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMjg2tjhY0 .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMjg2tjhY0 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMjg2tjhY0 .nav-link:focus {
  outline: none;
}
.cid-qMjg2tjhY0 .navbar-toggler {
  position: relative;
}
.cid-qMjg2tjhY0 .dropdown-item.active,
.cid-qMjg2tjhY0 .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMjg2tjhY0 .nav-link:hover,
.cid-qMjg2tjhY0 .dropdown-item:hover {
  color: #000000;
}
.cid-qObVkNjAKG {
  padding-top: 225px;
  padding-bottom: 180px;
  background-image: url("../../../assets/images/26155014-356134354860506-3204633506529411072-n-1080x10805.jpg");
}
.cid-qObVkNjAKG .card-wrapper {
  z-index: 3;
}
.cid-qObVkNjAKG .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qObVkNjAKG:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qObVkNjAKG .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qObVkNjAKG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qObVkNjAKG .text-block {
  text-align: right !important;
}
.cid-qMF69XvH30 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qMF69XvH30 .container-fluid {
  padding: 0 3rem;
}
.cid-qMF69XvH30 .media-container-column {
  padding: 0 2rem;
}
.cid-qMF69XvH30 .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qMF69XvH30 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qMjg2Ejcnr path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qMjg2Evluv path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qOcuV4cgxM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qOcuV4cgxM .card-img {
  padding: 0 0 3rem;
}
.cid-qOcuV4cgxM .mbr-section-btn {
  margin-left: 0;
}
.cid-qOcuV4cgxM .card-days {
  background-color: #50bd16;
  border-radius: 5px;
}
.cid-qOcuV4cgxM .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-qOcuV4cgxM .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-qOcuV4cgxM .card-days .schedule li:first-child {
  border-top: none;
}
.cid-qOcuV4cgxM .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qOcuV4cgxM .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
@media (min-width: 992px) {
  .cid-qOcuV4cgxM .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qOcuV4cgxM .card-title {
  text-align: center;
}
.cid-qOcuV4cgxM UL {
  text-align: center;
  color: #ffffff;
}
.cid-qMjg2EMNzD {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qMjg2EMNzD h2,
.cid-qMjg2EMNzD h3,
.cid-qMjg2EMNzD p,
.cid-qMjg2EMNzD h4 {
  color: #0a0a0a;
}
.cid-qMjg2EMNzD .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qMjg2EMNzD .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qMjg2EMNzD .input {
  margin-bottom: 15px;
}
.cid-qMjg2EMNzD .mbr-text {
  color: #767676;
}
.cid-qMjg2EMNzD a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qMjg2EMNzD .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qMjg2EMNzD .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qMjg2EMNzD .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qMjg2EMNzD .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qMjg2EMNzD .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qMjg2EMNzD .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qMjg2EMNzD .list-block {
  position: relative;
}
.cid-qMjg2EMNzD .list-block h4,
.cid-qMjg2EMNzD .list-block p {
  padding-left: 3.5rem;
}
.cid-qMjg2EMNzD .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qMjg2EMNzD h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qMjg2EMNzD .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qMjg2EMNzD .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qMjg2EMNzD .img-block-wrap {
    position: relative;
  }
  .cid-qMjg2EMNzD .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qMjg2EMNzD .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qMjg2EMNzD .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qMjg2EMNzD .google-map {
    padding-bottom: 2rem;
  }
  .cid-qMjg2EMNzD .img-block {
    overflow: hidden;
  }
}
.cid-qMjg2EMNzD .list-item-title {
  text-align: center;
}
.cid-qMjg2EMNzD .list-item-text {
  text-align: center;
}
.cid-qMjg2EMNzD .content-title {
  text-align: center;
}
.cid-qMjg2EMNzD .content-subtitle {
  text-align: center;
}
.cid-qOcg4nZXVL {
  background-image: url("../../../assets/images/-jpg-1600x1057.jpg");
}
.cid-qOcg4nZXVL .card-wrapper {
  z-index: 3;
}
.cid-qOcg4nZXVL .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qOcg4nZXVL:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qOcg4nZXVL .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qOcg4nZXVL .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qOcg4nZXVL .text-block {
  text-align: right !important;
}
.cid-qOc6zMFb9f {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qOc6zMFb9f .container-fluid {
  padding: 0 3rem;
}
.cid-qOc6zMFb9f .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qOc6zMFb9f .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-qOc6zMFb9f .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qOc6zMFb9f .time-line-date-content {
  margin-right: 2rem;
}
.cid-qOc6zMFb9f .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-qOc6zMFb9f .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qOc6zMFb9f .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #096693;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-qOc6zMFb9f .separline:before,
.cid-qOc6zMFb9f .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-qOc6zMFb9f .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-qOc6zMFb9f .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOc6zMFb9f .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-qOc6zMFb9f .separline:before,
  .cid-qOc6zMFb9f .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-qOc6zMFb9f .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-qOc6zMFb9f .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qOc6zMFb9f .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qOc6zMFb9f .time-line-date-content p {
    float: left !important;
  }
  .cid-qOc6zMFb9f .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-qOcuavVU08 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qOcuavVU08 .container-fluid {
  padding: 0 3rem;
}
.cid-qOcuavVU08 .card .card-wrapper {
  height: 1%;
}
.cid-qOcuavVU08 .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qOcuavVU08 .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qOcuavVU08 .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qOcuavVU08 .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qOcuavVU08 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOcuavVU08 .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qMjg2GNcLH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMjg2GNcLH [class^="socicon-"]:before,
.cid-qMjg2GNcLH [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qMjg2GNcLH .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMjg2GNcLH .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMjg2GNcLH .socicon {
  color: #5b686b;
}
.cid-qMjg2GNcLH .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qMjg2GNcLH .btn-social:hover {
  background: #1ba1e2;
}
.cid-qMjg2GNcLH .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qMjg2GNcLH .btn {
    font-size: 20px !important;
  }
  .cid-qMjg2GNcLH .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qMjg2vaiEZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMjg2vaiEZ .media-container-row {
  flex-wrap: wrap;
}
.cid-qMjg2vaiEZ .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMjg2vaiEZ .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qMjg85CjvZ .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qMjg85CjvZ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qMjg85CjvZ a {
  font-style: normal;
}
.cid-qMjg85CjvZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qMjg85CjvZ .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qMjg85CjvZ .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-qMjg85CjvZ .content-text {
  margin-bottom: 0;
}
.cid-qMjg85CjvZ .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qMjg85CjvZ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qMjg85CjvZ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qMjg85CjvZ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qMjg85CjvZ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qMjg85CjvZ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjg85CjvZ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qMjg85CjvZ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qMjg85CjvZ .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qMjg85CjvZ .nav-dropdown .link {
  font-weight: 400;
}
.cid-qMjg85CjvZ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qMjg85CjvZ .content-right-side {
  text-align: center;
}
.cid-qMjg85CjvZ .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qMjg85CjvZ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qMjg85CjvZ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qMjg85CjvZ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qMjg85CjvZ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qMjg85CjvZ .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qMjg85CjvZ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qMjg85CjvZ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qMjg85CjvZ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qMjg85CjvZ .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qMjg85CjvZ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qMjg85CjvZ .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qMjg85CjvZ .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qMjg85CjvZ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qMjg85CjvZ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qMjg85CjvZ .navbar {
    display: block;
    padding: 0;
  }
  .cid-qMjg85CjvZ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qMjg85CjvZ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qMjg85CjvZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qMjg85CjvZ .navbar-toggler {
    display: none;
  }
}
.cid-qMjg85CjvZ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qMjg85CjvZ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qMjg85CjvZ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qMjg85CjvZ .menu-logo {
  margin-right: auto;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qMjg85CjvZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qMjg85CjvZ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qMjg85CjvZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qMjg85CjvZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qMjg85CjvZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qMjg85CjvZ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qMjg85CjvZ .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-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qMjg85CjvZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qMjg85CjvZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qMjg85CjvZ .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qMjg85CjvZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qMjg85CjvZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qMjg85CjvZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qMjg85CjvZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qMjg85CjvZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qMjg85CjvZ button.navbar-toggler:focus {
  outline: none;
}
.cid-qMjg85CjvZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qMjg85CjvZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qMjg85CjvZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjg85CjvZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qMjg85CjvZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qMjg85CjvZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjg85CjvZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qMjg85CjvZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qMjg85CjvZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qMjg85CjvZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qMjg85CjvZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qMjg85CjvZ .collapsed .btn {
  display: flex;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse.collapsing,
.cid-qMjg85CjvZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qMjg85CjvZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qMjg85CjvZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qMjg85CjvZ .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qMjg85CjvZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qMjg85CjvZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qMjg85CjvZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-qMjg85CjvZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qMjg85CjvZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qMjg85CjvZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qMjg85CjvZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qMjg85CjvZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qMjg85CjvZ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qMjg85CjvZ .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qMjg85CjvZ .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qMjg85CjvZ img {
    height: 3.8rem !important;
  }
  .cid-qMjg85CjvZ .btn {
    display: flex;
  }
  .cid-qMjg85CjvZ button.navbar-toggler {
    display: block;
  }
  .cid-qMjg85CjvZ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qMjg85CjvZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qMjg85CjvZ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qMjg85CjvZ .navbar-collapse.collapsing,
  .cid-qMjg85CjvZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-qMjg85CjvZ .navbar-collapse.collapsing .navbar-nav,
  .cid-qMjg85CjvZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qMjg85CjvZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qMjg85CjvZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qMjg85CjvZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-qMjg85CjvZ .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qMjg85CjvZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qMjg85CjvZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qMjg85CjvZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qMjg85CjvZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qMjg85CjvZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qMjg85CjvZ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qMjg85CjvZ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qMjg85CjvZ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qMjg85CjvZ .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qMjg85CjvZ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qMjg85CjvZ .nav-link:focus {
  outline: none;
}
.cid-qMjg85CjvZ .navbar-toggler {
  position: relative;
}
.cid-qMjg85CjvZ .dropdown-item.active,
.cid-qMjg85CjvZ .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qMjg85CjvZ .nav-link:hover,
.cid-qMjg85CjvZ .dropdown-item:hover {
  color: #000000;
}
.cid-qMjg88mAUT {
  padding-top: 225px;
  padding-bottom: 225px;
  background-image: url("../../../assets/images/mgbnvayxa0i-1280x800.jpg");
}
.cid-qMjg88mAUT .card-wrapper {
  z-index: 3;
}
.cid-qMjg88mAUT .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qMjg88mAUT:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qMjg88mAUT .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qMjg88mAUT .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qMjg88mAUT .text-block {
  text-align: right !important;
}
.cid-qOcnOO3iGz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qOcnOO3iGz .container-fluid {
  padding: 0 3rem;
}
.cid-qOcnOO3iGz .media-container-column {
  padding: 0 2rem;
}
.cid-qOcnOO3iGz .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qOcnOO3iGz .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qOcnPkZ7rz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qOcnPkZ7rz .card-img {
  padding: 0 0 3rem;
}
.cid-qOcnPkZ7rz .mbr-section-btn {
  margin-left: 0;
}
.cid-qOcnPkZ7rz .card-days {
  background-color: #50bd16;
  border-radius: 5px;
}
.cid-qOcnPkZ7rz .card-days .schedule {
  display: block;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.cid-qOcnPkZ7rz .card-days .schedule li {
  border-top: 1px solid;
  padding-top: 10px;
}
.cid-qOcnPkZ7rz .card-days .schedule li:first-child {
  border-top: none;
}
.cid-qOcnPkZ7rz .card-days .schedule li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qOcnPkZ7rz .card-days .schedule li:after {
  display: block;
  content: '';
  clear: both;
}
@media (min-width: 992px) {
  .cid-qOcnPkZ7rz .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qOcnPkZ7rz .card-title {
  text-align: center;
}
.cid-qOcnPkZ7rz UL {
  text-align: center;
  color: #ffffff;
}
.cid-qOcn5mhdUt {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qOcn5mhdUt h2,
.cid-qOcn5mhdUt h3,
.cid-qOcn5mhdUt p,
.cid-qOcn5mhdUt h4 {
  color: #0a0a0a;
}
.cid-qOcn5mhdUt .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qOcn5mhdUt .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qOcn5mhdUt .input {
  margin-bottom: 15px;
}
.cid-qOcn5mhdUt .mbr-text {
  color: #767676;
}
.cid-qOcn5mhdUt a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qOcn5mhdUt .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qOcn5mhdUt .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qOcn5mhdUt .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qOcn5mhdUt .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qOcn5mhdUt .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qOcn5mhdUt .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qOcn5mhdUt .list-block {
  position: relative;
}
.cid-qOcn5mhdUt .list-block h4,
.cid-qOcn5mhdUt .list-block p {
  padding-left: 3.5rem;
}
.cid-qOcn5mhdUt .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qOcn5mhdUt h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qOcn5mhdUt .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qOcn5mhdUt .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qOcn5mhdUt .img-block-wrap {
    position: relative;
  }
  .cid-qOcn5mhdUt .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qOcn5mhdUt .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qOcn5mhdUt .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qOcn5mhdUt .google-map {
    padding-bottom: 2rem;
  }
  .cid-qOcn5mhdUt .img-block {
    overflow: hidden;
  }
}
.cid-qOcn5mhdUt .list-item-title {
  text-align: center;
}
.cid-qOcn5mhdUt .list-item-text {
  text-align: center;
}
.cid-qOcn5mhdUt .content-title {
  text-align: center;
}
.cid-qOcn5mhdUt .content-subtitle {
  text-align: center;
}
.cid-qOchoutYhG {
  padding-top: 225px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/12-1600x800.jpg");
}
.cid-qOchoutYhG .card-wrapper {
  z-index: 3;
}
.cid-qOchoutYhG .card-wrapper .mbr-section-title {
  letter-spacing: 1px;
  transition: all 2.5s cubic-bezier(0, 0.74, 0.52, 1.2);
}
.cid-qOchoutYhG:hover .mbr-section-title {
  letter-spacing: 10px;
}
.cid-qOchoutYhG .full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-qOchoutYhG .popup-btn.card-wrapper {
  z-index: 1 !important;
}
.cid-qOchoutYhG .text-block {
  text-align: right !important;
}
.cid-qOchpT3IPB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qOchpT3IPB .container-fluid {
  padding: 0 3rem;
}
.cid-qOchpT3IPB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qOchpT3IPB .timeline-text-content {
  padding: 2rem 2.5rem;
  margin-left: 2rem;
  text-align: left;
}
.cid-qOchpT3IPB .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qOchpT3IPB .time-line-date-content {
  margin-right: 2rem;
}
.cid-qOchpT3IPB .time-line-date-content p {
  padding: 2rem 1.4rem;
  float: right;
}
.cid-qOchpT3IPB .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qOchpT3IPB .iconBackground {
  position: absolute;
  left: 25%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #096693;
  font-size: 30px;
  display: inline-block;
  top: 29px;
  margin-left: -10px;
}
.cid-qOchpT3IPB .separline:before,
.cid-qOchpT3IPB .first-separline:before {
  top: 3rem;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: calc(100% + 2rem);
}
.cid-qOchpT3IPB .separline:after {
  top: calc(100% + 6.1rem);
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #096693;
  left: calc(25% - 1px);
  height: 100%;
}
@media (max-width: 768px) {
  .cid-qOchpT3IPB .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOchpT3IPB .iconBackground {
    left: 10px !important;
    top: 33px;
  }
  .cid-qOchpT3IPB .separline:before,
  .cid-qOchpT3IPB .first-separline:before {
    left: 9px !important;
    top: 3.3rem;
  }
  .cid-qOchpT3IPB .separline:after {
    left: 9px !important;
    top: calc(100% + 6.4rem);
  }
  .cid-qOchpT3IPB .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qOchpT3IPB .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qOchpT3IPB .time-line-date-content p {
    float: left !important;
  }
  .cid-qOchpT3IPB .mbr-timeline-date {
    padding-bottom: 0 !important;
  }
}
.cid-qMjg8gAMsI path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qMjg8gPphj path[stroke] {
  stroke: #50bd16 !important;
}
.cid-qOctjOhzSc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qOctjOhzSc .container-fluid {
  padding: 0 3rem;
}
.cid-qOctjOhzSc .card .card-wrapper {
  height: 1%;
}
.cid-qOctjOhzSc .card .card-wrapper .card-img {
  overflow: hidden;
  margin-bottom: 1rem;
  z-index: 1;
}
.cid-qOctjOhzSc .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qOctjOhzSc .card .card-wrapper .card-img:hover img {
  -ms-transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -o-transform: scale3d(1.05, 1.05, 1.05);
  -moz-transform: scale3d(1.05, 1.05, 1.05);
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qOctjOhzSc .text-row {
  align-self: center;
}
@media (max-width: 767px) {
  .cid-qOctjOhzSc .container-fluid {
    padding: 0 1rem;
  }
  .cid-qOctjOhzSc .text-row {
    padding-bottom: 1rem;
  }
}
.cid-qMjg8iDpuf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qMjg8iDpuf [class^="socicon-"]:before,
.cid-qMjg8iDpuf [class*=" socicon-"]:before {
  line-height: 44px;
}
.cid-qMjg8iDpuf .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qMjg8iDpuf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qMjg8iDpuf .socicon {
  color: #5b686b;
}
.cid-qMjg8iDpuf .btn-social {
  border-color: #1ba1e2;
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}
.cid-qMjg8iDpuf .btn-social:hover {
  background: #1ba1e2;
}
.cid-qMjg8iDpuf .btn-social:hover i.socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-qMjg8iDpuf .btn {
    font-size: 20px !important;
  }
  .cid-qMjg8iDpuf .btn-social {
    margin-right: .1rem !important;
    margin-left: .1rem !important;
  }
}
.cid-qMjg87jGgF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qMjg87jGgF .media-container-row {
  flex-wrap: wrap;
}
.cid-qMjg87jGgF .media-container-row .mbr-text {
  text-align: center;
}
.cid-qMjg87jGgF .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qN2YFI2fqJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/projekt-wykonawczy1-1620x1080.jpg");
}
.cid-qN2YFI2fqJ h2 {
  text-align: center;
  letter-spacing: 0.1em;
}
.cid-qN2YFI2fqJ .countdown-row {
  width: 100%;
  text-align: center;
}
.cid-qN2YFI2fqJ .lower-line {
  text-align: center;
}
.cid-qN2YFI2fqJ .mbr-form {
  margin-bottom: 3rem;
}
.cid-qN2YFI2fqJ .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 5px;
  font-size: 18px;
}
.cid-qN2YFI2fqJ .input-form {
  width: 480px;
  margin: 0 auto;
}
.cid-qN2YFI2fqJ a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  letter-spacing: 0.1em;
}
.cid-qN2YFI2fqJ .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-qN2YFI2fqJ .input-group-btn .btn {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0px;
  border-radius: 5px;
}
.cid-qN2YFI2fqJ .btn-black {
  background-color: black;
  border-color: black;
}
.cid-qN2YFI2fqJ .btn-black:hover {
  opacity: 0.6;
}
.cid-qN2YFI2fqJ a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-qN2YFI2fqJ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qN2YFI2fqJ .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-qN2YFI2fqJ .mbr-subscribe .input-group-btn button,
.cid-qN2YFI2fqJ .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-qN2YFI2fqJ .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qN2YFI2fqJ input[type="text"] {
    width: 100%;
    margin-bottom: 2px;
  }
  .cid-qN2YFI2fqJ .input-group-btn {
    width: 100%;
  }
  .cid-qN2YFI2fqJ .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 768px) {
  .cid-qN2YFI2fqJ .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-qN2YFI2fqJ .input-group-btn a.btn {
    width: 100%;
  }
  .cid-qN2YFI2fqJ .input-group-btn {
    width: calc(92%);
  }
  .cid-qN2YFI2fqJ .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-qN2YFI2fqJ .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-qN2YFI2fqJ .input-group input[type="text"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-qN2YFI2fqJ .input-group span {
    display: inline;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qN2YFI2fqJ .input-group-btn button,
  .cid-qN2YFI2fqJ .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-qN2YFI2fqJ .dot {
    display: none;
  }
}
@media (min-width: 769px) {
  .cid-qN2YFI2fqJ .mbr-subscribe > * {
    margin: 0 0rem;
  }
}
.cid-qN2YFI2fqJ .mbr-section-subtitle B {
  color: #232323;
}
.cid-qN2YFI2fqJ .social-list {
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  flex-wrap: nowrap;
}
.cid-qN2YFI2fqJ .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: white;
}
.cid-qN2YFI2fqJ .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qN2YFI2fqJ .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qN2YFI2fqJ .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-qN2YFI2fqJ .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qN2YFI2fqJ .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  padding: 0;
  text-align: center;
  margin: 0;
  border-radius: 2px;
  max-width: 100%;
}
.cid-qN2YFI2fqJ .number {
  font-family: 'open sans', monospace;
  font-style: normal;
  font-weight: 100;
  font-size: 73px;
  text-transform: none;
  letter-spacing: 2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #1ba1e2;
}
@media (max-width: 769px) {
  .cid-qN2YFI2fqJ .number {
    font-size: 55px;
  }
}
.cid-qN2YFI2fqJ .period {
  margin-top: 16px;
  display: block;
  padding-top: 18px;
  border-top: 1px solid white;
  margin-bottom: 25px;
  font-family: raleway;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.cid-qN2YFI2fqJ .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 5%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #1ba1e2;
}
.cid-qN2YFI2fqJ .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .cid-qN2YFI2fqJ .main > div {
    text-align: center;
  }
  .cid-qN2YFI2fqJ .countdown-cont {
    width: 100%;
  }
}
@media (max-width: 543px) {
  .cid-qN2YFI2fqJ .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-qN2YFI2fqJ .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qN2YFI2fqJ .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-qN2YFI2fqJ .number,
  .cid-qN2YFI2fqJ .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-qN2YFI2fqJ .period {
    font-size: 0.8rem;
  }
}
.cid-qN2YFI2fqJ .countdown {
  padding-top: 20px !important;
}
.cid-qN2YFI2fqJ .countdown > div {
  flex: 0 0 80% !important;
  max-width: 80% !important;
  margin: 0 auto;
  justify-content: space-between;
}
.cid-qN2YFI2fqJ .countdown > div > div {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0px;
}
@media (max-width: 320px) {
  .cid-qN2YFI2fqJ .countdown > div > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.cid-qN2YFI2fqJ .input-group-btn a.btn {
  border-radius: 5px !important;
}
.cid-qN2YFI2fqJ H2 {
  color: #000000;
}
.cid-qN2YFI2fqJ .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-qN2YFI2fqJ .links {
  color: #000000;
}
.cid-qN2YFI2fqJ .mbr-section-title DIV {
  color: #ffffff;
}
.cid-qN2YFKq8cH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #096693;
}
.cid-qN2YFKq8cH blockquote {
  color: #232323;
  font-size: inherit;
  font-style: normal;
}
.cid-qN2YFKq8cH .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #000000;
  opacity: .1;
}
.cid-qN2YFKq8cH .mbr-iconfont.right-top {
  right: -1rem;
  top: -1rem;
}
.cid-qN2YFKq8cH P {
  color: #ffffff;
  text-align: left;
}
.cid-qN33dNhn6D {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qN33dNhn6D .container-fluid {
  padding: 0 3rem;
}
.cid-qN33dNhn6D .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qN33dNhn6D .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qN33dNhn6D .card:hover img {
  transform: scale3d(1.05, 1.05, 1.05);
  transition: all .5s;
}
.cid-qN33dNhn6D .card .card-wrapper {
  height: 1%;
}
.cid-qN33dNhn6D .card .card-wrapper .card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 10px;
  z-index: 1;
}
.cid-qN33dNhn6D .card .card-wrapper .card-img img {
  transition: all .5s;
}
.cid-qN33dNhn6D .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: #096693;
}
.cid-qN33dNhn6D .card .card-wrapper .card-img .img-text span {
  display: block;
}
.cid-qN33dNhn6D .card .card-wrapper .card-box .mbr-section-btn a {
  margin-left: 4px;
}
@media (max-width: 767px) {
  .cid-qN33dNhn6D .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qN2YFRBjlj {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qN2YFRBjlj .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qN2YFRBjlj .mbr-section-title {
  margin: 0;
}
.cid-qN2YFRBjlj .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qN2YFRBjlj .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-qN2YFRBjlj .card-img {
  text-align: center;
}
.cid-qN2YFRBjlj .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qN2YFRBjlj .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qN2YFRBjlj .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qN2YFRBjlj .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qN2YFRBjlj .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qN2YFRBjlj .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qN2YFRBjlj .mbr-section-subtitle,
.cid-qN2YFRBjlj .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-qN2YFRBjlj .title-cont,
.cid-qN2YFRBjlj .mbr-section-title {
  color: #000000;
}
.cid-qN2YFRBjlj .card-title,
.cid-qN2YFRBjlj .card-img {
  color: #000000;
}
.cid-qN2YFUkugQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qN2YFUkugQ .container-fluid {
  padding: 0 3rem;
}
.cid-qN2YFUkugQ .mbr-text {
  color: #232323;
}
.cid-qN2YFUkugQ .card-title {
  text-align: center;
  color: #ffa0a4;
}
.cid-qN2YFUkugQ p {
  text-align: center;
}
.cid-qN2YFUkugQ .card-img {
  text-align: center;
}
.cid-qN2YFUkugQ .card .card-img span {
  color: #096693;
  font-size: 60px;
  background: linear-gradient(45deg, #096693, #096693);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qN2YFUkugQ .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-qN2YFUkugQ .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qN2YFUkugQ .card-title,
.cid-qN2YFUkugQ .card-img {
  color: #000000;
}
.cid-qN2YG4vIsX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qN2YG4vIsX .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qN2YG4vIsX .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qN2YG4vIsX .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qN2YG4vIsX .underline .line {
  width: 3rem;
  height: 2px;
  background: #096693;
  display: inline-block;
}
.cid-qN2YG4vIsX .process-icon,
.cid-qN2YG4vIsX .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qN2YG4vIsX .wrapper,
.cid-qN2YG4vIsX .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qN2YG4vIsX .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #096693;
  opacity: .4;
}
.cid-qN2YG4vIsX .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qN2YG4vIsX .icon-container a {
  display: inherit;
}
.cid-qN2YG4vIsX .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: #50bd16 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qN2YG4vIsX .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qN2YG4vIsX .icon-main:hover .icon-wrapper {
  background-color: #50bd16 !important;
}
.cid-qN2YG4vIsX .icon-main:hover .icon-number {
  background-color: #096693 !important;
  color: #ffffff !important;
}
.cid-qN2YG4vIsX .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-qN2YG4vIsX .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qN2YG4vIsX .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qN2YG4vIsX .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qN2YG4vIsX .mbr-section-title {
  margin: 0;
}
.cid-qN2YG4vIsX .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qN2YG6Za25 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qN2YG6Za25 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qN2YG6Za25 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qN2YG6Za25 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qN2YG6Za25 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qN2YG6Za25 .process-icon,
.cid-qN2YG6Za25 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qN2YG6Za25 .wrapper,
.cid-qN2YG6Za25 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qN2YG6Za25 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #096693;
  opacity: .4;
}
.cid-qN2YG6Za25 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qN2YG6Za25 .icon-container a {
  display: inherit;
}
.cid-qN2YG6Za25 .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: #50bd16 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qN2YG6Za25 .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qN2YG6Za25 .icon-main:hover .icon-wrapper {
  background-color: #50bd16 !important;
}
.cid-qN2YG6Za25 .icon-main:hover .icon-number {
  background-color: #096693 !important;
  color: #ffffff !important;
}
.cid-qN2YG6Za25 .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-qN2YG6Za25 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qN2YG6Za25 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qN2YG6Za25 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qN2YG6Za25 .mbr-section-title {
  margin: 0;
}
.cid-qN2YG6Za25 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qN2YFMJtrb .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qN2YFMJtrb .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qN2YFMJtrb a {
  font-style: normal;
}
.cid-qN2YFMJtrb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qN2YFMJtrb .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qN2YFMJtrb .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-qN2YFMJtrb .content-text {
  margin-bottom: 0;
}
.cid-qN2YFMJtrb .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qN2YFMJtrb .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qN2YFMJtrb .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qN2YFMJtrb .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qN2YFMJtrb .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qN2YFMJtrb .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qN2YFMJtrb .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qN2YFMJtrb .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qN2YFMJtrb .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qN2YFMJtrb .nav-dropdown .link {
  font-weight: 400;
}
.cid-qN2YFMJtrb .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qN2YFMJtrb .content-right-side {
  text-align: center;
}
.cid-qN2YFMJtrb .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qN2YFMJtrb .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qN2YFMJtrb .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qN2YFMJtrb .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qN2YFMJtrb .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qN2YFMJtrb .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qN2YFMJtrb .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qN2YFMJtrb .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qN2YFMJtrb .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qN2YFMJtrb .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qN2YFMJtrb .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qN2YFMJtrb .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qN2YFMJtrb .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qN2YFMJtrb .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qN2YFMJtrb .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qN2YFMJtrb .navbar {
    display: block;
    padding: 0;
  }
  .cid-qN2YFMJtrb .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qN2YFMJtrb .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qN2YFMJtrb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qN2YFMJtrb .navbar-toggler {
    display: none;
  }
}
.cid-qN2YFMJtrb .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qN2YFMJtrb .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qN2YFMJtrb .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qN2YFMJtrb .menu-logo {
  margin-right: auto;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qN2YFMJtrb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qN2YFMJtrb .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qN2YFMJtrb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qN2YFMJtrb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qN2YFMJtrb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qN2YFMJtrb .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qN2YFMJtrb .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-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qN2YFMJtrb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qN2YFMJtrb .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qN2YFMJtrb .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qN2YFMJtrb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qN2YFMJtrb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qN2YFMJtrb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qN2YFMJtrb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qN2YFMJtrb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qN2YFMJtrb button.navbar-toggler:focus {
  outline: none;
}
.cid-qN2YFMJtrb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qN2YFMJtrb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qN2YFMJtrb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qN2YFMJtrb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qN2YFMJtrb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qN2YFMJtrb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN2YFMJtrb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qN2YFMJtrb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qN2YFMJtrb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qN2YFMJtrb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qN2YFMJtrb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qN2YFMJtrb .collapsed .btn {
  display: flex;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse.collapsing,
.cid-qN2YFMJtrb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qN2YFMJtrb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qN2YFMJtrb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qN2YFMJtrb .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qN2YFMJtrb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qN2YFMJtrb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qN2YFMJtrb .collapsed button.navbar-toggler {
  display: block;
}
.cid-qN2YFMJtrb .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qN2YFMJtrb .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qN2YFMJtrb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qN2YFMJtrb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qN2YFMJtrb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qN2YFMJtrb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qN2YFMJtrb .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qN2YFMJtrb .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qN2YFMJtrb img {
    height: 3.8rem !important;
  }
  .cid-qN2YFMJtrb .btn {
    display: flex;
  }
  .cid-qN2YFMJtrb button.navbar-toggler {
    display: block;
  }
  .cid-qN2YFMJtrb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qN2YFMJtrb .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qN2YFMJtrb .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qN2YFMJtrb .navbar-collapse.collapsing,
  .cid-qN2YFMJtrb .navbar-collapse.show {
    display: block !important;
  }
  .cid-qN2YFMJtrb .navbar-collapse.collapsing .navbar-nav,
  .cid-qN2YFMJtrb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qN2YFMJtrb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qN2YFMJtrb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qN2YFMJtrb .navbar-collapse.collapsing .navbar-buttons,
  .cid-qN2YFMJtrb .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qN2YFMJtrb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qN2YFMJtrb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qN2YFMJtrb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qN2YFMJtrb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qN2YFMJtrb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qN2YFMJtrb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qN2YFMJtrb .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qN2YFMJtrb .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qN2YFMJtrb .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qN2YFMJtrb .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qN2YFMJtrb .nav-link:focus {
  outline: none;
}
.cid-qN2YFMJtrb .navbar-toggler {
  position: relative;
}
.cid-qN2YFMJtrb .dropdown-item.active,
.cid-qN2YFMJtrb .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qN2YFMJtrb .nav-link:hover,
.cid-qN2YFMJtrb .dropdown-item:hover {
  color: #000000;
}
.cid-qN2YG9bzWG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qN2YG9bzWG .container-fluid {
  padding: 0 3rem;
}
.cid-qN2YG9bzWG .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qN2YG9bzWG .mbr-section-title {
  color: #000000;
}
.cid-qN2YG9bzWG .mbr-section-subtitle {
  color: #000000;
}
.cid-qN2YG9bzWG .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-qN2YG9bzWG .header-text {
  padding: 2rem 1rem !important;
}
.cid-qN2YG9bzWG .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  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);
}
.cid-qN2YG9bzWG .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qN2YG9bzWG .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-left: 2rem;
}
.cid-qN2YG9bzWG .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qN2YG9bzWG .card .card-header a.panel-title:hover .sign {
  background-color: #50bd16 !important;
}
.cid-qN2YG9bzWG .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #096693;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-qN2YG9bzWG .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qN2YG9bzWG .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-qN2YG9bzWG .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qN2YG9bzWG .container-fluid {
    padding: 0 1rem;
  }
  .cid-qN2YG9bzWG .header-text {
    padding: 1rem !important;
  }
  .cid-qN2YG9bzWG .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qN2YG9bzWG .panel-body {
    width: calc(100% - 48px);
  }
  .cid-qN2YG9bzWG .panel-group {
    padding: 0;
  }
}
.cid-qN2YG9bzWG .header-text,
.cid-qN2YG9bzWG .sign DIV {
  text-align: left;
}
.cid-qN2YG9bzWG .panel-text {
  text-align: left;
}
.cid-qN2YG1wyHb {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-qN2YG1wyHb .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qN2YG1wyHb .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qN2YG1wyHb .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qN2YG1wyHb .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qN2YG1wyHb .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qN2YG1wyHb .icon-focus {
  display: none;
}
.cid-qN2YG1wyHb .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-qN2YG1wyHb ul {
  font-size: 0;
}
.cid-qN2YG1wyHb .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qN2YG1wyHb .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qN2YG1wyHb .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
}
.cid-qN2YG1wyHb .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qN2YG1wyHb .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qN2YG1wyHb .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-qN2YG1wyHb .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qN2YG1wyHb .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qN2YG1wyHb .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qN2YG1wyHb .btn:hover {
  background: transparent !important;
}
.cid-qN2YG1wyHb .btn:hover:before {
  background: transparent !important;
}
.cid-qN2YG1wyHb .btn:before {
  background-color: transparent !important;
}
.cid-qN2YG1wyHb .btn:focus {
  box-shadow: none;
}
.cid-qN2YGbvXTM {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qN2YGbvXTM h2,
.cid-qN2YGbvXTM h3,
.cid-qN2YGbvXTM p,
.cid-qN2YGbvXTM h4 {
  color: #0a0a0a;
}
.cid-qN2YGbvXTM .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qN2YGbvXTM .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qN2YGbvXTM .input {
  margin-bottom: 15px;
}
.cid-qN2YGbvXTM .mbr-text {
  color: #767676;
}
.cid-qN2YGbvXTM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qN2YGbvXTM .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qN2YGbvXTM .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qN2YGbvXTM .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qN2YGbvXTM .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qN2YGbvXTM .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qN2YGbvXTM .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qN2YGbvXTM .list-block {
  position: relative;
}
.cid-qN2YGbvXTM .list-block h4,
.cid-qN2YGbvXTM .list-block p {
  padding-left: 3.5rem;
}
.cid-qN2YGbvXTM .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qN2YGbvXTM h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qN2YGbvXTM .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qN2YGbvXTM .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qN2YGbvXTM .img-block-wrap {
    position: relative;
  }
  .cid-qN2YGbvXTM .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qN2YGbvXTM .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qN2YGbvXTM .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qN2YGbvXTM .google-map {
    padding-bottom: 2rem;
  }
  .cid-qN2YGbvXTM .img-block {
    overflow: hidden;
  }
}
.cid-qN2YGbvXTM .list-item-title {
  text-align: center;
}
.cid-qN2YGbvXTM .list-item-text {
  text-align: center;
}
.cid-qN2YGbvXTM .content-title {
  text-align: center;
}
.cid-qN2YGbvXTM .content-subtitle {
  text-align: center;
}
.cid-qN2YGdDCvm {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-qN2YGdDCvm .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qN2YGdDCvm .content-panel {
  padding: 3rem;
  background-color: #096693;
}
.cid-qN2YGdDCvm .text-block {
  padding-right: 0;
}
.cid-qN2YGdDCvm .google-map {
  width: 100%;
  height: 30rem;
}
.cid-qN2YGdDCvm .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-qN2YGdDCvm .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-qN2YGdDCvm .google-map .place-card {
  margin-left: 40px !important;
}
.cid-qN2YGdDCvm .adress-block {
  text-align: center;
}
.cid-qN2YGdDCvm .mbr-section-title {
  text-align: center;
}
.cid-qN2YGft7Mb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qN2YGft7Mb .media-container-row {
  flex-wrap: wrap;
}
.cid-qN2YGft7Mb .media-container-row .mbr-text {
  text-align: center;
}
.cid-qN2YGft7Mb .media-container-row .mbr-text B {
  color: #096693;
}
.cid-qGUUC843O0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/projekt-wykonawczy1-1620x1080.jpg");
}
.cid-qGUUC843O0 h2 {
  text-align: center;
  letter-spacing: 0.1em;
}
.cid-qGUUC843O0 .countdown-row {
  width: 100%;
  text-align: center;
}
.cid-qGUUC843O0 .lower-line {
  text-align: center;
}
.cid-qGUUC843O0 .mbr-form {
  margin-bottom: 3rem;
}
.cid-qGUUC843O0 .form-control {
  min-height: 2.7em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  background-color: white;
  border-radius: 5px;
  font-size: 18px;
}
.cid-qGUUC843O0 .input-form {
  width: 480px;
  margin: 0 auto;
}
.cid-qGUUC843O0 a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  letter-spacing: 0.1em;
}
.cid-qGUUC843O0 .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-qGUUC843O0 .input-group-btn .btn {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0px;
  border-radius: 5px;
}
.cid-qGUUC843O0 .btn-black {
  background-color: black;
  border-color: black;
}
.cid-qGUUC843O0 .btn-black:hover {
  opacity: 0.6;
}
.cid-qGUUC843O0 a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-qGUUC843O0 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qGUUC843O0 .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-qGUUC843O0 .mbr-subscribe .input-group-btn button,
.cid-qGUUC843O0 .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-qGUUC843O0 .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGUUC843O0 input[type="text"] {
    width: 100%;
    margin-bottom: 2px;
  }
  .cid-qGUUC843O0 .input-group-btn {
    width: 100%;
  }
  .cid-qGUUC843O0 .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 768px) {
  .cid-qGUUC843O0 .input-form {
    width: 80%;
    margin: 0 auto;
  }
  .cid-qGUUC843O0 .input-group-btn a.btn {
    width: 100%;
  }
  .cid-qGUUC843O0 .input-group-btn {
    width: calc(92%);
  }
  .cid-qGUUC843O0 .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-qGUUC843O0 .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-qGUUC843O0 .input-group input[type="text"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-qGUUC843O0 .input-group span {
    display: inline;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qGUUC843O0 .input-group-btn button,
  .cid-qGUUC843O0 .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .cid-qGUUC843O0 .dot {
    display: none;
  }
}
@media (min-width: 769px) {
  .cid-qGUUC843O0 .mbr-subscribe > * {
    margin: 0 0rem;
  }
}
.cid-qGUUC843O0 .mbr-section-subtitle B {
  color: #232323;
}
.cid-qGUUC843O0 .social-list {
  justify-content: center;
  display: flex;
  padding-left: 0;
  margin-bottom: 25px;
  list-style: none;
  flex-wrap: nowrap;
}
.cid-qGUUC843O0 .social-list .mbr-iconfont-social {
  font-size: 2rem;
  color: white;
}
.cid-qGUUC843O0 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qGUUC843O0 .social-list a {
  margin: 0;
  opacity: .7;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qGUUC843O0 .social-list a:hover {
  opacity: .4;
}
@media (max-width: 767px) {
  .cid-qGUUC843O0 .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qGUUC843O0 .number-wrap {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  padding: 0;
  text-align: center;
  margin: 0;
  border-radius: 2px;
  max-width: 100%;
}
.cid-qGUUC843O0 .number {
  font-family: 'open sans', monospace;
  font-style: normal;
  font-weight: 100;
  font-size: 73px;
  text-transform: none;
  letter-spacing: 2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #1ba1e2;
}
@media (max-width: 769px) {
  .cid-qGUUC843O0 .number {
    font-size: 55px;
  }
}
.cid-qGUUC843O0 .period {
  margin-top: 16px;
  display: block;
  padding-top: 18px;
  border-top: 1px solid white;
  margin-bottom: 25px;
  font-family: raleway;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.cid-qGUUC843O0 .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: none;
  height: 5%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #1ba1e2;
}
.cid-qGUUC843O0 .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .cid-qGUUC843O0 .main > div {
    text-align: center;
  }
  .cid-qGUUC843O0 .countdown-cont {
    width: 100%;
  }
}
@media (max-width: 543px) {
  .cid-qGUUC843O0 .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-qGUUC843O0 .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
  }
  .cid-qGUUC843O0 .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-qGUUC843O0 .number,
  .cid-qGUUC843O0 .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-qGUUC843O0 .period {
    font-size: 0.8rem;
  }
}
.cid-qGUUC843O0 .countdown {
  padding-top: 20px !important;
}
.cid-qGUUC843O0 .countdown > div {
  flex: 0 0 80% !important;
  max-width: 80% !important;
  margin: 0 auto;
  justify-content: space-between;
}
.cid-qGUUC843O0 .countdown > div > div {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0px;
}
@media (max-width: 320px) {
  .cid-qGUUC843O0 .countdown > div > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.cid-qGUUC843O0 .input-group-btn a.btn {
  border-radius: 5px !important;
}
.cid-qGUUC843O0 H2 {
  color: #000000;
}
.cid-qGUUC843O0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-qGUUC843O0 .links {
  color: #000000;
}
.cid-qGUUC843O0 .mbr-section-title DIV {
  color: #ffffff;
}
.cid-qMiqNujnAD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #096693;
}
.cid-qMiqNujnAD blockquote {
  color: #232323;
  font-size: inherit;
  font-style: normal;
}
.cid-qMiqNujnAD .mbr-iconfont {
  z-index: 1;
  position: absolute;
  font-size: 9rem;
  color: #000000;
  opacity: .1;
}
.cid-qMiqNujnAD .mbr-iconfont.right-top {
  right: -1rem;
  top: -1rem;
}
.cid-qMiqNujnAD P {
  color: #ffffff;
}
.cid-qJTTbSEbtH .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 50px;
}
.cid-qJTTbSEbtH .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-qJTTbSEbtH a {
  font-style: normal;
}
.cid-qJTTbSEbtH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-qJTTbSEbtH .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0 .65rem !important;
}
.cid-qJTTbSEbtH .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-qJTTbSEbtH .content-text {
  margin-bottom: 0;
}
.cid-qJTTbSEbtH .navbar-nav {
  position: relative;
  min-height: 49px;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-qJTTbSEbtH .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #50bd16;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-qJTTbSEbtH .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-qJTTbSEbtH .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-qJTTbSEbtH .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-qJTTbSEbtH .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qJTTbSEbtH .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-qJTTbSEbtH .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-qJTTbSEbtH .navbar-buttons.mbr-section-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-qJTTbSEbtH .nav-dropdown .link {
  font-weight: 400;
}
.cid-qJTTbSEbtH .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-qJTTbSEbtH .content-right-side {
  text-align: center;
}
.cid-qJTTbSEbtH .menu-content-top {
  display: none;
  padding: 0 2rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
}
.cid-qJTTbSEbtH .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-qJTTbSEbtH .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-qJTTbSEbtH .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-qJTTbSEbtH .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
  border-left: 1px solid #e0e0e0;
}
.cid-qJTTbSEbtH .menu-content-right {
  display: flex;
  align-items: center;
}
.cid-qJTTbSEbtH .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-qJTTbSEbtH .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-qJTTbSEbtH .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-qJTTbSEbtH .widget-content .widget-title {
  font-weight: 600;
  margin-bottom: 7px;
}
.cid-qJTTbSEbtH .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-qJTTbSEbtH .menu-bottom {
  display: flex;
  width: 100%;
  padding: 0 2rem;
  position: relative;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .cid-qJTTbSEbtH .navbar .menu-content-top {
    display: flex;
    min-height: 83px;
    height: 100%;
  }
  .cid-qJTTbSEbtH .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
  }
  .cid-qJTTbSEbtH .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-qJTTbSEbtH .navbar {
    display: block;
    padding: 0;
  }
  .cid-qJTTbSEbtH .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    align-items: center;
  }
  .cid-qJTTbSEbtH .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
  }
  .cid-qJTTbSEbtH .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qJTTbSEbtH .navbar-toggler {
    display: none;
  }
}
.cid-qJTTbSEbtH .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-qJTTbSEbtH .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qJTTbSEbtH .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-qJTTbSEbtH .menu-logo {
  margin-right: auto;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 1.5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qJTTbSEbtH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qJTTbSEbtH .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-qJTTbSEbtH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qJTTbSEbtH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qJTTbSEbtH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qJTTbSEbtH .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em !important;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qJTTbSEbtH .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-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qJTTbSEbtH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qJTTbSEbtH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-qJTTbSEbtH .navbar.navbar-short {
  min-height: 50px;
  transition: all .2s;
}
.cid-qJTTbSEbtH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qJTTbSEbtH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qJTTbSEbtH .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qJTTbSEbtH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qJTTbSEbtH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  margin: 1rem .8rem;
  align-self: center;
}
.cid-qJTTbSEbtH button.navbar-toggler:focus {
  outline: none;
}
.cid-qJTTbSEbtH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-qJTTbSEbtH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qJTTbSEbtH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qJTTbSEbtH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qJTTbSEbtH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qJTTbSEbtH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qJTTbSEbtH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qJTTbSEbtH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qJTTbSEbtH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qJTTbSEbtH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qJTTbSEbtH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qJTTbSEbtH .collapsed .btn {
  display: flex;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse.collapsing,
.cid-qJTTbSEbtH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qJTTbSEbtH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qJTTbSEbtH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qJTTbSEbtH .collapsed .navbar-collapse.show .navbar-buttons {
  display: flex;
  justify-content: center;
  text-align: center;
}
.cid-qJTTbSEbtH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qJTTbSEbtH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qJTTbSEbtH .collapsed button.navbar-toggler {
  display: block;
}
.cid-qJTTbSEbtH .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-qJTTbSEbtH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qJTTbSEbtH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qJTTbSEbtH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qJTTbSEbtH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qJTTbSEbtH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qJTTbSEbtH .collapsed .menu-bottom {
  flex-direction: column-reverse;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-qJTTbSEbtH .menu-bottom {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .cid-qJTTbSEbtH img {
    height: 3.8rem !important;
  }
  .cid-qJTTbSEbtH .btn {
    display: flex;
  }
  .cid-qJTTbSEbtH button.navbar-toggler {
    display: block;
  }
  .cid-qJTTbSEbtH .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-qJTTbSEbtH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qJTTbSEbtH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qJTTbSEbtH .navbar-collapse.collapsing,
  .cid-qJTTbSEbtH .navbar-collapse.show {
    display: block !important;
  }
  .cid-qJTTbSEbtH .navbar-collapse.collapsing .navbar-nav,
  .cid-qJTTbSEbtH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qJTTbSEbtH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qJTTbSEbtH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qJTTbSEbtH .navbar-collapse.collapsing .navbar-buttons,
  .cid-qJTTbSEbtH .navbar-collapse.show .navbar-buttons {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .cid-qJTTbSEbtH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qJTTbSEbtH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qJTTbSEbtH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qJTTbSEbtH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qJTTbSEbtH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qJTTbSEbtH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qJTTbSEbtH .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-qJTTbSEbtH .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-qJTTbSEbtH .navbar-dropdown {
  flex-wrap: nowrap;
}
.cid-qJTTbSEbtH .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.cid-qJTTbSEbtH .nav-link:focus {
  outline: none;
}
.cid-qJTTbSEbtH .navbar-toggler {
  position: relative;
}
.cid-qJTTbSEbtH .dropdown-item.active,
.cid-qJTTbSEbtH .dropdown-item:active {
  background: #ffffff;
  color: initial;
}
.cid-qJTTbSEbtH .nav-link:hover,
.cid-qJTTbSEbtH .dropdown-item:hover {
  color: #000000;
}
.cid-qIlezLfeCZ {
  padding-top: 80px;
  background-image: url("../../../assets/images/image2-993-1600x1067.jpg");
}
.cid-qIlezLfeCZ .container {
  margin-bottom: 15%;
}
.cid-qIlezLfeCZ .content-container .btn-bgr {
  z-index: 0;
}
.cid-qIlezLfeCZ .container-boxes {
  padding-bottom: 0px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}
.cid-qIlezLfeCZ .box-item {
  width: 29%;
  padding: 2rem;
}
.cid-qIlezLfeCZ .box-item:first-child {
  background-color: #096693;
  margin-top: -200px;
}
.cid-qIlezLfeCZ .box-item:nth-child(2) {
  background-color: #096693;
}
.cid-qIlezLfeCZ .box-item:last-child {
  background-color: #096693;
}
.cid-qIlezLfeCZ .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-qIlezLfeCZ .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-qIlezLfeCZ .box-list li:last-child {
  border-bottom: none;
}
.cid-qIlezLfeCZ .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-qIlezLfeCZ .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-qIlezLfeCZ .media-container-row {
    justify-content: flex-start;
    justify-content: flex-end;
  }
  .cid-qIlezLfeCZ .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-qIlezLfeCZ .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-qIlezLfeCZ .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-qIlezLfeCZ .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-qIlezLfeCZ .icon-block-top,
.cid-qIlezLfeCZ .box-item-title {
  color: #ffffff;
  text-align: center;
}
.cid-qIlezLfeCZ .form-control {
  allgn: center;
  width: 300px;
  line-height: 0;
  text-align: right;
  min-height: 1.8em;
  padding-top: 0rem;
  padding-bottom: 0rem;
  padding-left: 1.8rem;
  padding-right: 2rem;
  background-color: white;
  border: 5px solid #e8e8e8;
}
.cid-qIlezLfeCZ .mbr-form class {
  allgn: center;
  width: 300px;
  margin-bottom: 3rem;
  float: right;
  text-align: right;
  justify-content: center;
}
.cid-qIlezLfeCZ H1 {
  text-align: center;
}
.cid-qIlezLfeCZ .mbr-text,
.cid-qIlezLfeCZ .mbr-section-btn {
  text-align: center;
}
.cid-qIlezLfeCZ B {
  color: #000000;
}
.cid-qIlezLfeCZ .mbr-text,
.cid-qIlezLfeCZ .mbr-section-btn B {
  color: #ffffff;
}
.cid-qIlezLfeCZ .icon-block-top,
.cid-qIlezLfeCZ .box-item-title B {
  color: #ffffff;
}
.cid-qGHsE22kVP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGHsE22kVP .container-fluid {
  padding: 0 3rem;
}
.cid-qGHsE22kVP .media-container-column {
  padding: 0 2rem;
}
.cid-qGHsE22kVP .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-qGHsE22kVP .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qG3ayeiKpv {
  display: flex;
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qG3ayeiKpv .mbr-overlay {
  background: #7ccbf1;
  background: linear-gradient(90deg, #7ccbf1, #ffa0a4);
}
.cid-qG3ayeiKpv .mbr-section-title {
  margin: 0;
}
.cid-qG3ayeiKpv .mbr-text {
  color: #232323;
  text-align: center;
}
.cid-qG3ayeiKpv .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-qG3ayeiKpv .card-img {
  text-align: center;
}
.cid-qG3ayeiKpv .card .card-img span {
  font-size: 60px;
  color: #ffffff;
}
.cid-qG3ayeiKpv .header-content {
  margin-left: 3rem;
  margin-right: 3rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.cid-qG3ayeiKpv .header-content .text-row {
  margin: auto 0;
  align-items: center;
}
.cid-qG3ayeiKpv .features-row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-qG3ayeiKpv .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qG3ayeiKpv .header-content {
    margin-right: 0;
    margin-left: 0;
  }
}
.cid-qG3ayeiKpv .mbr-section-subtitle,
.cid-qG3ayeiKpv .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-qG3ayeiKpv .title-cont,
.cid-qG3ayeiKpv .mbr-section-title {
  color: #000000;
}
.cid-qG3ayeiKpv .card-title,
.cid-qG3ayeiKpv .card-img {
  color: #000000;
}
.cid-qGdjz6xKLD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-qGdjz6xKLD .container-fluid {
  padding: 0 3rem;
}
.cid-qGdjz6xKLD .mbr-text {
  color: #232323;
}
.cid-qGdjz6xKLD .card-title {
  text-align: center;
  color: #ffa0a4;
}
.cid-qGdjz6xKLD p {
  text-align: center;
}
.cid-qGdjz6xKLD .card-img {
  text-align: center;
}
.cid-qGdjz6xKLD .card .card-img span {
  color: #096693;
  font-size: 60px;
  background: linear-gradient(45deg, #096693, #096693);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .cid-qGdjz6xKLD .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 1200px) {
  .cid-qGdjz6xKLD .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qGdjz6xKLD .card-title,
.cid-qGdjz6xKLD .card-img {
  color: #000000;
}
.cid-qGaBjjWcrV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGaBjjWcrV .container-fluid {
  padding: 0 3rem;
}
.cid-qGaBjjWcrV .media-container-column {
  padding: 0 2rem;
}
.cid-qGaBjjWcrV .mbr-section-title {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .cid-qGaBjjWcrV .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qGjKuurHNK {
  padding-top: 30px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-qGjKuurHNK .mbr-shop {
  display: table;
  width: 100%;
}
.cid-qGjKuurHNK .mbr-shop .row {
  margin: 0;
}
.cid-qGjKuurHNK .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-qGjKuurHNK .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-qGjKuurHNK .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-qGjKuurHNK .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.cid-qGjKuurHNK .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-qGjKuurHNK .mbr-shop .hide-modal {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal {
  margin-top: 8%;
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-qGjKuurHNK .mbr-shop .filter-by-pu,
.cid-qGjKuurHNK .mbr-shop .filter-by-pd,
.cid-qGjKuurHNK .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-qGjKuurHNK .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-qGjKuurHNK .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-qGjKuurHNK .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  transform: none !important;
  padding: 10px;
}
.cid-qGjKuurHNK .mbr-shop .galleryItem h4,
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .galleryItem h3,
.cid-qGjKuurHNK .mbr-shop .carousel-item h3 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-qGjKuurHNK .mbr-shop .galleryItem p,
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .item-button {
  text-align: center;
}
.cid-qGjKuurHNK .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-qGjKuurHNK .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-qGjKuurHNK .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-qGjKuurHNK .mbr-shop .sidebar-block {
  position: relative;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-qGjKuurHNK .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 100;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #f71622;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item__hided h4,
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item__hided h5,
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-qGjKuurHNK .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-qGjKuurHNK .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-qGjKuurHNK .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-qGjKuurHNK .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .range-controls {
  position: relative;
}
.cid-qGjKuurHNK .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-qGjKuurHNK .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-qGjKuurHNK .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-qGjKuurHNK .mbr-shop .toggle:hover,
.cid-qGjKuurHNK .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-qGjKuurHNK .mbr-shop .min-toggle {
  left: 0;
}
.cid-qGjKuurHNK .mbr-shop .max-toggle {
  right: 0;
}
.cid-qGjKuurHNK .mbr-shop .hided-by-price {
  display: none;
}
.cid-qGjKuurHNK .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-qGjKuurHNK .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-qGjKuurHNK .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-qGjKuurHNK .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-qGjKuurHNK .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-qGjKuurHNK .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-qGjKuurHNK .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-qGjKuurHNK .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-qGjKuurHNK .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  margin-top: 80%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qGjKuurHNK .mbr-shop .close-modal-wrapper:after {
  content: "";
  margin-top: 80%;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qGjKuurHNK .mbr-shop .close-modal-wrapper:before {
  content: "";
  margin-top: 80%;
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.cid-qGjKuurHNK .mbr-shop .closeModal {
  position: absolute;
  top: 0;
  right: 0;
}
.cid-qGjKuurHNK .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-qGjKuurHNK .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-qGjKuurHNK .mbr-shop .shop-items .onsale,
.cid-qGjKuurHNK .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-qGjKuurHNK .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-qGjKuurHNK .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-qGjKuurHNK .mbr-shop .price-range {
  display: inline-block;
}
.cid-qGjKuurHNK .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-qGjKuurHNK .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-qGjKuurHNK .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-qGjKuurHNK .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-qGjKuurHNK .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-qGjKuurHNK .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-qGjKuurHNK .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-qGjKuurHNK .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-qGjKuurHNK .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-qGjKuurHNK .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-qGjKuurHNK .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-qGjKuurHNK .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-qGjKuurHNK .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-qGjKuurHNK .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-qGjKuurHNK .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-qGjKuurHNK .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-qGjKuurHNK .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-qGjKuurHNK .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-qGjKuurHNK .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-qGjKuurHNK .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-qGjKuurHNK .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-qGjKuurHNK .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-qGjKuurHNK .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-qGjKuurHNK .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-qGjKuurHNK .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-qGjKuurHNK .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-qGjKuurHNK .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-qGjKuurHNK .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
  .cid-qGjKuurHNK .range-controls {
    display: block !important;
  }
}
.cid-qGjKuurHNK .onsale {
  color: #ffffff;
}
.cid-qGjKuurHNK LI {
  color: #096693;
}
.cid-qGjKuurHNK .sidebar-title {
  color: #096693;
}
.cid-qGjKuurHNK .card-description UL {
  color: #000000;
  text-align: left;
}
.cid-qGjKuurHNK .card-description DIV {
  color: #f73140;
  text-align: center;
}
.cid-qGjKuurHNK .card-description P {
  color: #000000;
  text-align: center;
}
.cid-qGjKuurHNK .card-description B {
  color: #000000;
}
.cid-qGjKuurHNK .shop-item-price,
.cid-qGjKuurHNK .price-block SPAN {
  color: #000000;
}
.cid-qGjKuurHNK .shop-item-price,
.cid-qGjKuurHNK .price-block {
  text-align: center;
}
.cid-qGjKuurHNK .card-description {
  text-align: center;
}
.cid-qGY7qnKqri {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-qGY7qnKqri .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qGY7qnKqri .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qGY7qnKqri .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qGY7qnKqri .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qGY7qnKqri .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #efefef;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qGY7qnKqri .icon-focus {
  display: none;
}
.cid-qGY7qnKqri .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: right;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  color: #000000;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-qGY7qnKqri ul {
  font-size: 0;
}
.cid-qGY7qnKqri .mbr-gallery-filter ul li .btn {
  border: none;
  background-color: transparent;
  color: #232323 !important;
  padding: 0.5rem 1rem 0.6rem;
  border-radius: 0;
  margin: 0!important;
  transition: padding, border 0s, transform .2s;
}
.cid-qGY7qnKqri .mbr-gallery-filter ul li .btn.active {
  padding: 0.5rem 1rem 0.5rem;
  border-radius: 0 !important;
}
.cid-qGY7qnKqri .mbr-gallery-filter ul li .btn.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
}
.cid-qGY7qnKqri .mbr-gallery-filter ul li {
  padding: 0;
}
.cid-qGY7qnKqri .mbr-gallery-item > div:hover .mbr-gallery-title {
  padding-bottom: 1.5rem;
  display: block;
}
.cid-qGY7qnKqri .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-qGY7qnKqri .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qGY7qnKqri .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #50bd16, #50bd16);
  display: inline-block;
}
.cid-qGY7qnKqri .btn {
  background: none;
  border-radius: 0 !important;
}
.cid-qGY7qnKqri .btn:hover {
  background: transparent !important;
}
.cid-qGY7qnKqri .btn:hover:before {
  background: transparent !important;
}
.cid-qGY7qnKqri .btn:before {
  background-color: transparent !important;
}
.cid-qGY7qnKqri .btn:focus {
  box-shadow: none;
}
.cid-qGauslmJ1a {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGauslmJ1a .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qGauslmJ1a .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qGauslmJ1a .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qGauslmJ1a .underline .line {
  width: 3rem;
  height: 2px;
  background: #096693;
  display: inline-block;
}
.cid-qGauslmJ1a .process-icon,
.cid-qGauslmJ1a .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qGauslmJ1a .wrapper,
.cid-qGauslmJ1a .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qGauslmJ1a .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #096693;
  opacity: .4;
}
.cid-qGauslmJ1a .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qGauslmJ1a .icon-container a {
  display: inherit;
}
.cid-qGauslmJ1a .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: #50bd16 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qGauslmJ1a .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qGauslmJ1a .icon-main:hover .icon-wrapper {
  background-color: #50bd16 !important;
}
.cid-qGauslmJ1a .icon-main:hover .icon-number {
  background-color: #096693 !important;
  color: #ffffff !important;
}
.cid-qGauslmJ1a .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-qGauslmJ1a .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qGauslmJ1a .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qGauslmJ1a .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qGauslmJ1a .mbr-section-title {
  margin: 0;
}
.cid-qGauslmJ1a .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qGavZdKTo4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGavZdKTo4 .subicon-title {
  color: #000000;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qGavZdKTo4 .subicon-text {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-qGavZdKTo4 .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-qGavZdKTo4 .underline .line {
  width: 3rem;
  height: 2px;
  background: #444444;
  display: inline-block;
}
.cid-qGavZdKTo4 .process-icon,
.cid-qGavZdKTo4 .process-icon-without-before {
  width: 100%;
  padding-bottom: 2rem;
}
.cid-qGavZdKTo4 .wrapper,
.cid-qGavZdKTo4 .wrapper-without-before {
  position: relative;
  margin-bottom: 2rem;
}
.cid-qGavZdKTo4 .wrapper::before {
  content: '\e966';
  font-family: MobiriseIcons !important;
  position: absolute;
  font-size: 30px;
  left: -15px;
  top: 30%;
  color: #096693;
  opacity: .4;
}
.cid-qGavZdKTo4 .icon-container {
  display: inline-flex;
  position: relative;
}
.cid-qGavZdKTo4 .icon-container a {
  display: inherit;
}
.cid-qGavZdKTo4 .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: #50bd16 !important;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
  color: #ffffff;
  z-index: 1;
}
.cid-qGavZdKTo4 .icon-main {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0;
  transition: all 0.3s ease-in-out 0s;
}
.cid-qGavZdKTo4 .icon-main:hover .icon-wrapper {
  background-color: #50bd16 !important;
}
.cid-qGavZdKTo4 .icon-main:hover .icon-number {
  background-color: #096693 !important;
  color: #ffffff !important;
}
.cid-qGavZdKTo4 .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-qGavZdKTo4 .main-wrapper {
  padding: 3rem 0 0 0;
}
@media (max-width: 767px) {
  .cid-qGavZdKTo4 .wrapper::before {
    display: none;
  }
}
@media (max-width: 991px) {
  .cid-qGavZdKTo4 .third-elem .wrapper:before {
    display: none;
  }
}
.cid-qGavZdKTo4 .mbr-section-title {
  margin: 0;
}
.cid-qGavZdKTo4 .mbr-section-subtitle {
  color: #232323;
  text-align: center;
}
.cid-qMi1uBvt2g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-qMi1uBvt2g .container-fluid {
  padding: 0 3rem;
}
.cid-qMi1uBvt2g .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #50bd16 50%, #50bd16 120%);
  display: inline-block;
}
.cid-qMi1uBvt2g .mbr-section-title {
  color: #000000;
}
.cid-qMi1uBvt2g .mbr-section-subtitle {
  color: #000000;
}
.cid-qMi1uBvt2g .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-qMi1uBvt2g .header-text {
  padding: 2rem 1rem !important;
}
.cid-qMi1uBvt2g .card {
  border-radius: 25px;
  background: #ffffff;
  margin-bottom: 1rem;
  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);
}
.cid-qMi1uBvt2g .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-qMi1uBvt2g .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-left: 2rem;
}
.cid-qMi1uBvt2g .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-qMi1uBvt2g .card .card-header a.panel-title:hover .sign {
  background-color: #50bd16 !important;
}
.cid-qMi1uBvt2g .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #096693;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-qMi1uBvt2g .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-qMi1uBvt2g .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-qMi1uBvt2g .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-qMi1uBvt2g .container-fluid {
    padding: 0 1rem;
  }
  .cid-qMi1uBvt2g .header-text {
    padding: 1rem !important;
  }
  .cid-qMi1uBvt2g .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-qMi1uBvt2g .panel-body {
    width: calc(100% - 48px);
  }
  .cid-qMi1uBvt2g .panel-group {
    padding: 0;
  }
}
.cid-qMi1uBvt2g .header-text,
.cid-qMi1uBvt2g .sign {
  text-align: right;
}
.cid-qMi1uBvt2g .header-text,
.cid-qMi1uBvt2g .sign DIV {
  text-align: left;
}
.cid-qGa4cQf0wE {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qGa4cQf0wE h2,
.cid-qGa4cQf0wE h3,
.cid-qGa4cQf0wE p,
.cid-qGa4cQf0wE h4 {
  color: #0a0a0a;
}
.cid-qGa4cQf0wE .img-block img {
  height: 100%;
  max-height: 600px;
}
.cid-qGa4cQf0wE .mbr-iconfont {
  color: #50bd16;
  font-size: 2rem;
}
.cid-qGa4cQf0wE .input {
  margin-bottom: 15px;
}
.cid-qGa4cQf0wE .mbr-text {
  color: #767676;
}
.cid-qGa4cQf0wE a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qGa4cQf0wE .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qGa4cQf0wE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qGa4cQf0wE .form-block {
  padding: 2rem;
  box-shadow: 0 0 5px #a8a8a8;
  background-color: #ffffff;
}
.cid-qGa4cQf0wE .block .form-control {
  padding: 1.07em 1.07em;
}
.cid-qGa4cQf0wE .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-qGa4cQf0wE .media-container-row {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cid-qGa4cQf0wE .list-block {
  position: relative;
}
.cid-qGa4cQf0wE .list-block h4,
.cid-qGa4cQf0wE .list-block p {
  padding-left: 3.5rem;
}
.cid-qGa4cQf0wE .card-img {
  display: block;
}
@media (max-width: 767px) {
  .cid-qGa4cQf0wE h2 {
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-qGa4cQf0wE .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-qGa4cQf0wE .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
  .cid-qGa4cQf0wE .img-block-wrap {
    position: relative;
  }
  .cid-qGa4cQf0wE .img-block-wrap .img-block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
  }
  .cid-qGa4cQf0wE .img-block-wrap .img-block img {
    height: 100%;
  }
  .cid-qGa4cQf0wE .text-content {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-qGa4cQf0wE .google-map {
    padding-bottom: 2rem;
  }
  .cid-qGa4cQf0wE .img-block {
    overflow: hidden;
  }
}
.cid-qGa4cQf0wE .list-item-title {
  text-align: center;
}
.cid-qGa4cQf0wE .list-item-text {
  text-align: center;
}
.cid-qGa4cQf0wE .content-title {
  text-align: center;
}
.cid-qGa4cQf0wE .content-subtitle {
  text-align: center;
}
.cid-qGa7GEVrfu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-qGa7GEVrfu .row {
  justify-content: flex-end;
  align-items: stretch;
}
.cid-qGa7GEVrfu .content-panel {
  padding: 3rem;
  background-color: #096693;
}
.cid-qGa7GEVrfu .text-block {
  padding-right: 0;
}
.cid-qGa7GEVrfu .google-map {
  width: 100%;
  height: 30rem;
}
.cid-qGa7GEVrfu .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-qGa7GEVrfu .google-map iframe .place-card {
  margin-left: 40px !important;
}
.cid-qGa7GEVrfu .google-map .place-card {
  margin-left: 40px !important;
}
.cid-qGa7GEVrfu .adress-block {
  text-align: center;
}
.cid-qGa7GEVrfu .mbr-section-title {
  text-align: center;
}
.cid-qGuNPvmHPk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-qGuNPvmHPk .media-container-row {
  flex-wrap: wrap;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text {
  text-align: center;
}
.cid-qGuNPvmHPk .media-container-row .mbr-text B {
  color: #096693;
}
