@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);
@import url(https://fonts.googleapis.com/css?family=Comfortaa:300,400,700);





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: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((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: #2d10a3 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1a095d;
  border-color: #1a095d;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #2d10a3;
  border-color: #2d10a3;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #1a095d;
  border-color: #1a095d;
}
.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: #1a095d !important;
  border-color: #1a095d !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: #1a095d;
  border-color: #1a095d;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2d10a3;
  border-color: #2d10a3;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #1a095d;
  border-color: #1a095d;
}
.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: #1a095d !important;
  border-color: #1a095d !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: #13709e;
  border-color: #13709e;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e;
  border-color: #13709e;
}
.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: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6;
  border-color: #82acb6;
}
.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: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e;
  border-color: #82786e;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b;
  border-color: #59524b;
}
.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: #59524b !important;
  border-color: #59524b !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: #617479;
  border-color: #617479;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f;
  border-color: #879a9f;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479;
  border-color: #617479;
}
.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: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  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;
  border-color: #333333;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.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: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff !important;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !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: #2d10a3;
  border-color: #2d10a3;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !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: #2d10a3;
  border-color: #2d10a3;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #130746;
  color: #130746 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2d10a3;
  border-color: #2d10a3;
}
.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: #2d10a3 !important;
  border-color: #2d10a3 !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: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.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: #82786e !important;
  border-color: #82786e !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: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  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: #2d10a3 !important;
}
.text-secondary {
  color: #2d10a3 !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #130746 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #130746 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2d10a3;
  border-color: #2d10a3;
  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: #2d10a3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6746ed;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
.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: 'Comfortaa', sans-serif;
  font-size: 1.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: #2d10a3;
  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: #2d10a3;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #2d10a3;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #2d10a3;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #2d10a3;
}
/* 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;
}
.scroll-background {
  background-repeat: repeat-x !important;
}
.cid-qBgTNe1NED .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-qBgTNe1NED .nav-item:focus,
.cid-qBgTNe1NED .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qBgTNe1NED .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qBgTNe1NED .nav-item .nav-link {
    position: relative;
  }
  .cid-qBgTNe1NED .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #2d10a3, #2d10a3);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qBgTNe1NED .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qBgTNe1NED .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qBgTNe1NED .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-qBgTNe1NED .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qBgTNe1NED .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qBgTNe1NED .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qBgTNe1NED .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qBgTNe1NED .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qBgTNe1NED .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qBgTNe1NED .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qBgTNe1NED .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qBgTNe1NED .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qBgTNe1NED .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qBgTNe1NED .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qBgTNe1NED .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qBgTNe1NED .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qBgTNe1NED .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-qBgTNe1NED .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qBgTNe1NED .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qBgTNe1NED .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qBgTNe1NED .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qBgTNe1NED .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qBgTNe1NED .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qBgTNe1NED .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qBgTNe1NED .dropdown-item.active,
.cid-qBgTNe1NED .dropdown-item:active {
  background-color: transparent;
}
.cid-qBgTNe1NED .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qBgTNe1NED .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qBgTNe1NED .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qBgTNe1NED .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qBgTNe1NED .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qBgTNe1NED .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qBgTNe1NED ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qBgTNe1NED .navbar-buttons {
  text-align: center;
}
.cid-qBgTNe1NED button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qBgTNe1NED .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qBgTNe1NED a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qBgTNe1NED .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qBgTNe1NED .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qBgTNe1NED .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-qBgUCYGYvv {
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qBgUCYGYvv .mbr-section-title {
  margin: 0;
}
.cid-qBgUCYGYvv .container-fluid {
  padding: 0 2rem;
}
.cid-qBgUCYGYvv .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #2d10a3, #2d10a3);
  display: inline-block;
}
.cid-qBgUCYGYvv .row {
  justify-content: space-between;
  align-items: center;
}
.cid-qBgUCYGYvv .form-1 {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  margin-right: 15px;
}
.cid-qBgUCYGYvv .form-1 label {
  color: #000000;
}
.cid-qBgUCYGYvv .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qBgUCYGYvv .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #efefef;
  width: 96%;
  padding: .5rem 1rem;
}
.cid-qBgUCYGYvv .form-group {
  padding: 0;
}
.cid-qBgUCYGYvv .form-group textarea {
  background-color: #efefef;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qBgUCYGYvv .btn-row {
  padding-left: 0;
}
.cid-qBgUCYGYvv .btn-row .btn {
  padding: 1rem 4rem;
}
.cid-qBgUCYGYvv .mbr-section-btn .btn {
  margin-left: 4px !important;
}
@media (min-width: 992px) {
  .cid-qBgUCYGYvv .container-fluid {
    padding: 0 5rem;
  }
}
@media (max-width: 767px) {
  .cid-qBgUCYGYvv .underline .line {
    height: 2px;
  }
  .cid-qBgUCYGYvv .text-element {
    padding-bottom: 1rem;
  }
  .cid-qBgUCYGYvv .form-1 {
    pading: 1rem;
    margin: 1rem;
  }
}
.cid-qBgWhvnuIL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qBgWhvnuIL p {
  color: #767676;
}
.cid-qBgWhvnuIL .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qBgWhvnuIL .row-element,
.cid-qBgWhvnuIL .image-element {
  padding: 0;
}
.cid-qBgWhvnuIL .image-element {
  display: flex;
  justify-content: center;
}
.cid-qBgWhvnuIL .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qBgWhvnuIL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qBgWhvnuIL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #2d10a3, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qBgWhvnuIL .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qBgWhvnuIL .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qBgWhvnuIL .text-content {
    padding: 2rem 1rem;
  }
  .cid-qBgWhvnuIL .underline .line {
    height: 2px;
  }
  .cid-qBgWhvnuIL .mbr-title,
  .cid-qBgWhvnuIL .underline,
  .cid-qBgWhvnuIL .mbr-text,
  .cid-qBgWhvnuIL .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qBgWi8qcf5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-qBgWi8qcf5 p {
  color: #767676;
}
.cid-qBgWi8qcf5 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qBgWi8qcf5 .main {
  flex-direction: row-reverse;
}
.cid-qBgWi8qcf5 .row-element,
.cid-qBgWi8qcf5 .image-element {
  padding: 0;
}
.cid-qBgWi8qcf5 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qBgWi8qcf5 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qBgWi8qcf5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qBgWi8qcf5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #2d10a3, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qBgWi8qcf5 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qBgWi8qcf5 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qBgWi8qcf5 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qBgWi8qcf5 .underline .line {
    height: 2px;
  }
  .cid-qBgWi8qcf5 .mbr-title,
  .cid-qBgWi8qcf5 .underline,
  .cid-qBgWi8qcf5 .mbr-text,
  .cid-qBgWi8qcf5 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qBgWirMgQ3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-qBgWirMgQ3 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-qBgWirMgQ3 .row-element,
.cid-qBgWirMgQ3 .image-element {
  padding: 0;
}
.cid-qBgWirMgQ3 .image-element {
  display: flex;
  justify-content: center;
}
.cid-qBgWirMgQ3 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-qBgWirMgQ3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qBgWirMgQ3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #2d10a3, #2d10a3);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-qBgWirMgQ3 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-qBgWirMgQ3 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-qBgWirMgQ3 .text-content {
    padding: 2rem 1rem;
  }
  .cid-qBgWirMgQ3 .underline .line {
    height: 2px;
  }
  .cid-qBgWirMgQ3 .mbr-title,
  .cid-qBgWirMgQ3 .underline,
  .cid-qBgWirMgQ3 .mbr-text,
  .cid-qBgWirMgQ3 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-qBgXEUdgYs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qBgXEUdgYs .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qBgXEUdgYs .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qBgXEUdgYs .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qBgXEUdgYs .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qBgXEUdgYs .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-qBgXEUdgYs .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-qBgXEUdgYs .mbr-text {
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-qBgXEUdgYs .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qBgXEUdgYs .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qBgXEUdgYs .mbr-text {
    margin-bottom: 1.5rem;
  }
}
.cid-qBgTNe1NED .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-qBgTNe1NED .nav-item:focus,
.cid-qBgTNe1NED .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-qBgTNe1NED .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-qBgTNe1NED .nav-item .nav-link {
    position: relative;
  }
  .cid-qBgTNe1NED .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #2d10a3, #2d10a3);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-qBgTNe1NED .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-qBgTNe1NED .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-qBgTNe1NED .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-qBgTNe1NED .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-qBgTNe1NED .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-qBgTNe1NED .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-qBgTNe1NED .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
}
.cid-qBgTNe1NED .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-qBgTNe1NED .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-qBgTNe1NED .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-qBgTNe1NED .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-qBgTNe1NED .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-qBgTNe1NED .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-qBgTNe1NED .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-qBgTNe1NED .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-qBgTNe1NED .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-qBgTNe1NED .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-qBgTNe1NED .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-qBgTNe1NED .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: 70%;
    word-break: break-word;
  }
  .cid-qBgTNe1NED .navbar .navbar-toggler {
    flex-basis: 30%;
  }
  .cid-qBgTNe1NED .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-qBgTNe1NED .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-qBgTNe1NED .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-qBgTNe1NED .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-qBgTNe1NED .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-qBgTNe1NED .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-qBgTNe1NED .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-qBgTNe1NED .dropdown-item.active,
.cid-qBgTNe1NED .dropdown-item:active {
  background-color: transparent;
}
.cid-qBgTNe1NED .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-qBgTNe1NED .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-qBgTNe1NED .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-qBgTNe1NED .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-qBgTNe1NED .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-qBgTNe1NED .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qBgTNe1NED ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-qBgTNe1NED .navbar-buttons {
  text-align: center;
}
.cid-qBgTNe1NED button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qBgTNe1NED button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qBgTNe1NED nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qBgTNe1NED .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-qBgTNe1NED a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-qBgTNe1NED .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-qBgTNe1NED .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-qBgTNe1NED .icons-menu span {
  font-size: 20px;
  color: #232323;
}
.cid-qBh8ahpiH4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-2000x1474.jpg");
}
.cid-qBh8ahpiH4 .container-fluid {
  padding: 0 3rem;
}
.cid-qBh8ahpiH4 .mbr-section-title {
  margin-bottom: 1.5em;
  color: #ffffff;
}
.cid-qBh8ahpiH4 .input-main {
  width: 99.6%;
  margin-left: .1em;
  justify-content: center;
}
.cid-qBh8ahpiH4 .input-main label {
  color: #ffffff;
}
.cid-qBh8ahpiH4 .form-1 {
  margin: 0 1em;
  padding: 0;
}
.cid-qBh8ahpiH4 .input-wrap {
  padding: 0;
  margin-bottom: 1.3em;
}
.cid-qBh8ahpiH4 .input-wrap input {
  border: 1px solid #ddd;
  border-radius: 22px;
  background-color: #ffffff;
  padding: 18px 25px;
  width: 96%;
}
.cid-qBh8ahpiH4 .form-group {
  padding: 0;
}
.cid-qBh8ahpiH4 .form-group textarea {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 1rem;
  width: 98%;
}
.cid-qBh8ahpiH4 .btn-row {
  padding-left: 0;
}
.cid-qBh8ahpiH4 .btn {
  padding: 1rem 4rem;
}
@media (max-width: 767px) {
  .cid-qBh8ahpiH4 .container-fluid {
    padding: 0 1rem;
  }
  .cid-qBh8ahpiH4 .btn {
    padding: 1rem 2rem;
    font-size: 16px !important;
  }
}
.cid-qBgXEUdgYs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qBgXEUdgYs .social-media {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-qBgXEUdgYs .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-qBgXEUdgYs .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-qBgXEUdgYs .logo-section {
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-qBgXEUdgYs .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-qBgXEUdgYs .icon-transition span:hover {
  background-color: #2d10a3;
}
.cid-qBgXEUdgYs .mbr-text {
  color: #2d10a3;
}
@media (max-width: 767px) {
  .cid-qBgXEUdgYs .social-media {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-qBgXEUdgYs .logo-section {
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-qBgXEUdgYs .mbr-text {
    margin-bottom: 1.5rem;
  }
}
