body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
}
.display-4 {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.display-7 {
  font-family: 'Poppins', 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: 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-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #dd7118 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #de7117 !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #984e11;
  border-color: #984e11;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #dd7118 !important;
  border-color: #dd7118 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #984e11 !important;
  border-color: #984e11 !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #984e11 !important;
  border-color: #984e11 !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #994e10;
  border-color: #994e10;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #de7117 !important;
  border-color: #de7117 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #994e10 !important;
  border-color: #994e10 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #994e10 !important;
  border-color: #994e10 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #dd7118;
  border-color: #dd7118;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #81420e;
  color: #81420e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #dd7118;
  border-color: #dd7118;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #dd7118 !important;
  border-color: #dd7118 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.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 {
  -webkit-transform: scale(10);
  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);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #de7117;
  border-color: #de7117;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #82420d;
  color: #82420d !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #de7117;
  border-color: #de7117;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #de7117 !important;
  border-color: #de7117 !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #dd7118 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #de7117 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #81420e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #82420d !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #dd7118;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #de7117;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #f9dec8;
}
.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: #f9dec8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a38dfd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-tpgVOtvvrq .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tpgVOtvvrq .nav-item:focus,
.cid-tpgVOtvvrq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tpgVOtvvrq .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-tpgVOtvvrq .nav-item .nav-link {
    position: relative;
  }
  .cid-tpgVOtvvrq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-tpgVOtvvrq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-tpgVOtvvrq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tpgVOtvvrq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-tpgVOtvvrq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tpgVOtvvrq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tpgVOtvvrq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tpgVOtvvrq .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-tpgVOtvvrq .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
}
.cid-tpgVOtvvrq .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-tpgVOtvvrq .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-tpgVOtvvrq .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tpgVOtvvrq .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-tpgVOtvvrq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tpgVOtvvrq .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-tpgVOtvvrq .navbar.collapsed .navbar-collapse.show,
.cid-tpgVOtvvrq .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpgVOtvvrq .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-tpgVOtvvrq .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-tpgVOtvvrq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tpgVOtvvrq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tpgVOtvvrq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tpgVOtvvrq .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-tpgVOtvvrq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tpgVOtvvrq .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tpgVOtvvrq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-tpgVOtvvrq .navbar.collapsed .right-menu,
.cid-tpgVOtvvrq .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-tpgVOtvvrq .navbar .navbar-collapse.show,
  .cid-tpgVOtvvrq .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpgVOtvvrq .navbar .navbar-collapse.show .brand-container,
  .cid-tpgVOtvvrq .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-tpgVOtvvrq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tpgVOtvvrq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tpgVOtvvrq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tpgVOtvvrq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tpgVOtvvrq .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-tpgVOtvvrq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tpgVOtvvrq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tpgVOtvvrq .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-tpgVOtvvrq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-tpgVOtvvrq .navbar .right-menu,
  .cid-tpgVOtvvrq .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-tpgVOtvvrq .navbar.navbar-short {
  min-height: 60px;
}
.cid-tpgVOtvvrq .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
}
.cid-tpgVOtvvrq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tpgVOtvvrq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tpgVOtvvrq .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tpgVOtvvrq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tpgVOtvvrq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tpgVOtvvrq .dropdown-item.active,
.cid-tpgVOtvvrq .dropdown-item:active {
  background-color: transparent;
}
.cid-tpgVOtvvrq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tpgVOtvvrq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tpgVOtvvrq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tpgVOtvvrq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tpgVOtvvrq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tpgVOtvvrq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tpgVOtvvrq ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-tpgVOtvvrq ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-tpgVOtvvrq .navbar-buttons {
  margin-left: auto;
}
.cid-tpgVOtvvrq button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tpgVOtvvrq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tpgVOtvvrq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tpgVOtvvrq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tpgVOtvvrq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tpgVOtvvrq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tpgVOtvvrq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpgVOtvvrq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-tpgVOtvvrq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-tpgVOtvvrq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tpgVOtvvrq .navbar-dropdown {
  position: fixed;
}
.cid-tpgVOtvvrq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tpgVOtvvrq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-tpgVOtvvrq .right-menu,
.cid-tpgVOtvvrq .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-tpgVOtvvrq .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpgVOtvvrq .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tpgVOtvvrq .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tpgVOtvvrq .menu-top {
  text-align: center;
  width: 100%;
  background-color: #142369;
  padding: .5rem 0;
}
.cid-tpgVOtvvrq .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-tpgVOtvvrq .card-wrapper {
  z-index: 3;
}
.cid-tpgVOtvvrq .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-tpgVOtvvrq .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tpgVOtvvrq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tqQGYpPM08 {
  padding-top: 9rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqQGYpPM08 .row {
  align-items: center;
}
.cid-tqQGYpPM08 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tqQGYpPM08 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tqQGYpPM08 .header-text {
    margin-bottom: 20px;
  }
}
.cid-tqQGYpPM08 .mbr-section-title {
  width: 100%;
  color: #de7117;
  margin-bottom: 8px;
}
.cid-tqQGYpPM08 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tqQGYpPM08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqQGYpPM08 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqQGYpPM08 .mbr-text,
.cid-tqQGYpPM08 .mbr-section-btn {
  color: #de7117;
}
.cid-tqQLgRXHbY .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #a38dfd;
}
.cid-tqQLgRXHbY .card-wrapper {
  min-height: 300px;
  transition: all 0.3s;
  padding: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .cid-tqQLgRXHbY .card-wrapper {
    padding: 3rem 2rem;
  }
}
.cid-tqQLgRXHbY .icon1 {
  color: #ffffff;
}
.cid-tqQLgRXHbY .icon2 {
  color: #ffffff;
}
.cid-tqQLgRXHbY .icon3 {
  color: #272727;
}
.cid-tqQLgRXHbY .icon4 {
  color: #272727;
}
.cid-tqQLgRXHbY .big {
  min-height: 100%;
}
.cid-tqQLgRXHbY .mbr-section-btn {
  max-width: 200px;
}
.cid-tqQLgRXHbY .mbr-section-btn .btn {
  margin: 2px;
}
@media (max-width: 992px) {
  .cid-tqQLgRXHbY .mbr-section-btn {
    text-align: center;
    max-width: 100%;
    margin: auto;
  }
}
.cid-tqQLgRXHbY .card1 {
  background-image: url("../../../assets/images/hablar-1800x1200.jpg");
  background-size: cover;
  background-position: center;
  padding: 6rem;
}
.cid-tqQLgRXHbY .card1 .mbr-iconfont {
  font-size: 16.5rem;
}
@media (max-width: 767px) {
  .cid-tqQLgRXHbY .card1 {
    padding: 3rem 1rem;
  }
}
.cid-tqQLgRXHbY .card-box {
  z-index: 2;
}
.cid-tqQLgRXHbY .card2 {
  background-image: url("../../../assets/images/teacher-talking-with-her-students-online-2000x1335.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-tqQLgRXHbY .card2 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-tqQLgRXHbY .card2:before {
  content: '';
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #de7117;
  z-index: 1;
  opacity: 1;
}
.cid-tqQLgRXHbY .card2:hover {
  background-size: auto 115%;
}
.cid-tqQLgRXHbY .card2:hover:before {
  opacity: 0.3;
}
.cid-tqQLgRXHbY .card3 {
  background-image: url("../../../assets/images/english-book-resting-on-the-table-of-working-space-2000x1335.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-tqQLgRXHbY .card3 .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 0rem;
}
.cid-tqQLgRXHbY .card3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f7df67;
  transition: all 0.3s;
  z-index: 1;
  opacity: 1;
}
.cid-tqQLgRXHbY .card3:hover {
  background-size: auto 115%;
}
.cid-tqQLgRXHbY .card3:hover:before {
  opacity: 0.3;
}
.cid-tqQLgRXHbY .card4 {
  background-image: url("../../../assets/images/033-1392x833.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
}
.cid-tqQLgRXHbY .card4:hover {
  background-size: auto 115%;
}
.cid-tqQLgRXHbY .card4:hover:before {
  opacity: 0;
}
.cid-tqQLgRXHbY .card4 .mbr-iconfont {
  background: #de7117;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 1rem;
}
.cid-tqQLgRXHbY .card-title,
.cid-tqQLgRXHbY .card-box {
  color: #ffffff;
}
.cid-tqQLgRXHbY .card2-title {
  color: #ffffff;
}
.cid-tqQLgRXHbY .card3-title {
  color: #272727;
}
.cid-tqQLgRXHbY .card4-title {
  color: #ffffff;
}
.cid-tqQLgRXHbY .card1-title {
  color: #ffffff;
}
.cid-tqQLgRXHbY .card2-text {
  color: #ffffff;
}
.cid-tqQLgRXHbY .card4-text {
  color: #ffffff;
}
.cid-tqHT4CBLJY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #efefef;
}
.cid-tqHT4CBLJY .item:focus,
.cid-tqHT4CBLJY span:focus {
  outline: none;
}
.cid-tqHT4CBLJY .item-wrapper {
  position: relative;
}
.cid-tqHT4CBLJY .slide-content {
  position: relative;
  border-radius: 4px;
  background: transparent;
  height: 100%;
  display: flex;
  overflow: visible;
  flex-flow: column nowrap;
}
.cid-tqHT4CBLJY .mbr-section-btn {
  margin-top: auto !important;
  margin-left: 0;
  margin-right: 0;
  width: auto;
  display: inline-block;
}
.cid-tqHT4CBLJY .mbr-section-title {
  color: #14142b;
  text-align: center;
  margin-bottom: 24px;
}
.cid-tqHT4CBLJY .mbr-text,
.cid-tqHT4CBLJY .mbr-section-btn {
  text-align: left;
}
.cid-tqHT4CBLJY .item-title {
  text-align: left;
}
.cid-tqHT4CBLJY .item-subtitle {
  text-align: left;
}
.cid-tqHT4CBLJY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 33%;
  max-width: 596px;
}
@media (max-width: 768px) {
  .cid-tqHT4CBLJY .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
@media (max-width: 900px) {
  .cid-tqHT4CBLJY .embla__slide {
    min-width: 60%;
  }
}
@media (max-width: 630px) {
  .cid-tqHT4CBLJY .embla__slide {
    min-width: 375px;
  }
}
.cid-tqHT4CBLJY .embla__button--next,
.cid-tqHT4CBLJY .embla__button--prev {
  display: flex;
}
.cid-tqHT4CBLJY .embla__button {
  transition: background-color 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  border: none;
  width: 64px;
  height: 64px;
  font-size: 22px;
  border-radius: 50%;
  top: 50%;
  margin-top: -1.5rem;
  background-color: #14142b;
  color: #fff;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.cid-tqHT4CBLJY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tqHT4CBLJY .embla__button:hover {
  background: #dd7118;
  color: #fff;
  transform: scale(1.05);
}
.cid-tqHT4CBLJY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tqHT4CBLJY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tqHT4CBLJY .embla__button {
    top: auto;
  }
}
.cid-tqHT4CBLJY .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-tqHT4CBLJY .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-tqHT4CBLJY .embla {
  position: relative;
  width: 100%;
}
.cid-tqHT4CBLJY .embla__viewport {
  overflow: visible;
  width: 100%;
}
.cid-tqHT4CBLJY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tqHT4CBLJY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tqHT4CBLJY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tqHT4CBLJY .mbr-section-subtitle {
  text-align: center;
  color: #8c8c95;
}
.cid-tqHT4CBLJY .title-block {
  justify-content: space-between;
  margin-bottom: 32px;
  align-items: center;
  padding-bottom: 56px;
  max-width: 715px;
  margin: auto;
}
.cid-tqHT4CBLJY .shadow {
  border-radius: 34px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
  padding: 48px 32px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
}
.cid-tqHT4CBLJY .wrap-img {
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  padding: 0px 20px 20px;
  display: flex;
  justify-content: center;
}
.cid-tqHT4CBLJY img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.cid-tqHT4CBLJY .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-tqHT4CBLJY .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-tqHT4CBLJY .shadow:hover .number,
.cid-tqHT4CBLJY .shadow:hover .card-title {
  color: #dd7118 !important;
}
.cid-tqHT4CBLJY .shadow:hover .iconfont-wrapper > .mbr-iconfont > span {
  color: #000000 !important;
}
.cid-tqHT4CBLJY .card-title {
  margin-bottom: 16px;
  color: #4c4c4c;
  transition: 0.35s;
  text-align: left;
}
.cid-tqHT4CBLJY .card-text {
  color: #000000;
  text-align: center;
}
.cid-tqHT4CBLJY H3 {
  color: #1d1d1f;
  text-align: center;
}
.cid-tqHT4CBLJY .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 34px 25px 54px 31px;
}
.cid-tqHT4CBLJY .date {
  margin-bottom: 24px;
  color: #8c8c95;
}
.cid-tqHT4CBLJY .link-title {
  display: inline-block;
}
.cid-tqHT4CBLJY .margin {
  margin-right: 14px;
}
.cid-tqHT4CBLJY .article {
  display: contents;
}
.cid-tqHT4CBLJY .button-color {
  padding: 1rem 1.5625rem !important;
  border-radius: 1000px !important;
  display: inline-block;
  line-height: 20px;
  background-color: #eff0f6;
}
.cid-tqHT4CBLJY .link-row {
  align-items: center;
}
@media (max-width: 530px) {
  .cid-tqHT4CBLJY .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
@media (max-width: 480px) {
  .cid-tqHT4CBLJY .card-wrapper {
    border-radius: 0 0 30px 30px;
  }
}
.cid-tqHT4CBLJY .iconfont-wrapper {
  text-align: left;
  margin-bottom: 32px;
}
.cid-tqHT4CBLJY .iconfont-wrapper .mbr-iconfont::before {
  font-size: 50px;
  padding: 25px;
  border-radius: 50%;
}
.cid-tqHT4CBLJY .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-tqHT4CBLJY .btn {
  margin-top: 20px;
}
.cid-tqHT4CBLJY .card-title,
.cid-tqHT4CBLJY .iconfont-wrapper {
  text-align: center;
  color: #de7117;
}
.cid-tqHT4CBLJY a.btn > span {
  margin-left: 0.5rem;
}
.cid-tqHT4CBLJY .mbr-section-title,
.cid-tqHT4CBLJY .button-align {
  color: #de7117;
}
.cid-tqQNIeNYjE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqQNIeNYjE .row {
  align-items: center;
}
.cid-tqQNIeNYjE .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tqQNIeNYjE .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tqQNIeNYjE .header-text {
    margin-bottom: 20px;
  }
}
.cid-tqQNIeNYjE .mbr-section-title {
  width: 100%;
  color: #de7117;
  margin-bottom: 8px;
}
.cid-tqQNIeNYjE .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tqQNIeNYjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tqQNIeNYjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tqQNIeNYjE .mbr-text,
.cid-tqQNIeNYjE .mbr-section-btn {
  color: #de7117;
}
.cid-tph8YpnG4Y {
  padding-top: 195px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/mbr-1920x716.jpg");
}
.cid-tph8YpnG4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tph8YpnG4Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tph8YpnG4Y H1 {
  text-align: right;
}
.cid-tqQQN9AhIR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqQQN9AhIR p {
  color: #767676;
}
.cid-tqQQN9AhIR .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tqQQN9AhIR .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tqQQN9AhIR .row-element,
.cid-tqQQN9AhIR .image-element {
  padding: 0;
}
.cid-tqQQN9AhIR .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqQQN9AhIR .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tqQQN9AhIR .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tqQQN9AhIR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tqQQN9AhIR .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tqQQN9AhIR .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqQQN9AhIR .text-content {
    padding: 2rem 1rem;
  }
  .cid-tqQQN9AhIR .underline .line {
    height: 2px;
  }
  .cid-tqQQN9AhIR .mbr-title,
  .cid-tqQQN9AhIR .underline,
  .cid-tqQQN9AhIR .mbr-text,
  .cid-tqQQN9AhIR .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tqQQNV5JEP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #de7117;
}
.cid-tqQQNV5JEP .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tqQQNV5JEP .row-element,
.cid-tqQQNV5JEP .image-element {
  padding: 0;
}
.cid-tqQQNV5JEP .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqQQNV5JEP .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tqQQNV5JEP .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tqQQNV5JEP .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tqQQNV5JEP .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tqQQNV5JEP .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqQQNV5JEP .text-content {
    padding: 2rem 1rem;
  }
  .cid-tqQQNV5JEP .underline .line {
    height: 2px;
  }
  .cid-tqQQNV5JEP .mbr-title,
  .cid-tqQQNV5JEP .underline,
  .cid-tqQQNV5JEP .mbr-text,
  .cid-tqQQNV5JEP .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tqQQNV5JEP .mbr-title,
.cid-tqQQNV5JEP .underline DIV {
  text-align: center;
}
.cid-tqQQNV5JEP .mbr-text,
.cid-tqQQNV5JEP .mbr-section-btn {
  text-align: center;
}
.cid-tqQQOv8kb0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tqQQOv8kb0 p {
  color: #767676;
}
.cid-tqQQOv8kb0 .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-tqQQOv8kb0 .main {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tqQQOv8kb0 .row-element,
.cid-tqQQOv8kb0 .image-element {
  padding: 0;
}
.cid-tqQQOv8kb0 .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tqQQOv8kb0 .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-tqQQOv8kb0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tqQQOv8kb0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tqQQOv8kb0 .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tqQQOv8kb0 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tqQQOv8kb0 .text-content {
    padding: 2rem 1rem;
  }
  .cid-tqQQOv8kb0 .underline .line {
    height: 2px;
  }
  .cid-tqQQOv8kb0 .mbr-title,
  .cid-tqQQOv8kb0 .underline,
  .cid-tqQQOv8kb0 .mbr-text,
  .cid-tqQQOv8kb0 .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tqQXo9jME1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqQXo9jME1 img {
  border-radius: 0px;
}
.cid-tqQXo9jME1 .row {
  justify-content: center;
}
.cid-tqQXo9jME1 .mbr-section-title {
  margin-top: 24px;
  text-align: center;
  color: #8c8c95;
}
.cid-tph3ZKb38Y {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tph3ZKb38Y .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tph3ZKb38Y .form-control,
.cid-tph3ZKb38Y .field-input {
  padding: 0px 20px;
  min-height: auto;
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
  border-radius: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.cid-tph3ZKb38Y .form-control::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input::-webkit-input-placeholder,
.cid-tph3ZKb38Y .form-control::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input::-webkit-input-placeholder {
  color: #606060;
}
.cid-tph3ZKb38Y .form-control:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:-moz-placeholder,
.cid-tph3ZKb38Y .form-control:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:-moz-placeholder {
  color: #606060;
}
.cid-tph3ZKb38Y .form-control:hover,
.cid-tph3ZKb38Y .field-input:hover,
.cid-tph3ZKb38Y .form-control:focus,
.cid-tph3ZKb38Y .field-input:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tph3ZKb38Y .form-control:hover::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input:hover::-webkit-input-placeholder,
.cid-tph3ZKb38Y .form-control:focus::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input:focus::-webkit-input-placeholder,
.cid-tph3ZKb38Y .form-control:hover::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input:hover::-webkit-input-placeholder,
.cid-tph3ZKb38Y .form-control:focus::-webkit-input-placeholder,
.cid-tph3ZKb38Y .field-input:focus::-webkit-input-placeholder {
  color: #606060;
}
.cid-tph3ZKb38Y .form-control:hover:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:hover:-moz-placeholder,
.cid-tph3ZKb38Y .form-control:focus:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:focus:-moz-placeholder,
.cid-tph3ZKb38Y .form-control:hover:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:hover:-moz-placeholder,
.cid-tph3ZKb38Y .form-control:focus:-moz-placeholder,
.cid-tph3ZKb38Y .field-input:focus:-moz-placeholder {
  color: #606060;
}
.cid-tph3ZKb38Y textarea {
  padding-top: 1rem !important;
  height: 160px !important;
}
.cid-tph3ZKb38Y .jq-number__spin:hover,
.cid-tph3ZKb38Y .jq-number__spin:focus {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tph3ZKb38Y .jq-number__spin {
  background-color: #e7e8ea;
  border-color: #e7e8ea;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tph3ZKb38Y .jq-selectbox li,
.cid-tph3ZKb38Y .jq-selectbox li {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-tph3ZKb38Y .jq-selectbox li:hover,
.cid-tph3ZKb38Y .jq-selectbox li.selected {
  background-color: #e7e8ea;
  color: #000000;
}
.cid-tph3ZKb38Y .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tph3ZKb38Y .jq-number__spin.minus:hover:after,
.cid-tph3ZKb38Y .jq-number__spin.plus:hover:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-tph3ZKb38Y .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tph3ZKb38Y .jq-number__spin.minus:after,
.cid-tph3ZKb38Y .jq-number__spin.plus:after {
  border-top-color: #e7e8ea;
  border-bottom-color: #e7e8ea;
}
.cid-tph3ZKb38Y .wrap {
  position: relative;
}
.cid-tph3ZKb38Y .mbr-form {
  z-index: 1;
}
.cid-tph3ZKb38Y input::-webkit-clear-button {
  display: none;
}
.cid-tph3ZKb38Y input::-webkit-inner-spin-button {
  display: none;
}
.cid-tph3ZKb38Y input::-webkit-outer-spin-button {
  display: none;
}
.cid-tph3ZKb38Y input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tph3ZKb38Y .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #a38dfd;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-tph3ZKb38Y .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-tph3ZKb38Y .mbr-section-title {
  color: #404040;
}
.cid-tph3ZKb38Y .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-tph3ZKb38Y .mbr-section-subtitle {
  color: #de7117;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-tph3ZKb38Y .mbr-text {
  color: #606060;
}
.cid-tph3ZKb38Y .btn {
  padding: 18px 26px;
  border-radius: 30px;
}
.cid-tph3ZKb38Y .btn.display-4 {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.5px;
}
.cid-tph3ZKb38Y .required {
  width: 100%;
  color: #808080;
}
.cid-tph3ZKb38Y img {
  width: 100%;
  -webkit-mask-box-image: url("../../../assets/images/blob1.svg");
  mask-image: url("../../../assets/images/blob1.svg");
  -webkit-mask-box-image-repeat: space;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  height: auto;
  max-width: 100%;
  -webkit-mask-size: auto auto;
  position: relative;
}
.cid-tph3ZKb38Y .counter {
  top: 45%;
  left: 10%;
}
.cid-tph3ZKb38Y .counter .full-circle {
  background-color: #de7117;
  display: inline-block;
  border-radius: 50%;
  min-width: 100px;
  min-height: 100px;
  padding: 24px;
  text-align: center;
  white-space: nowrap;
}
.cid-tph3ZKb38Y .counter .full-circle::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  padding-top: 100%;
  height: 0;
}
.cid-tph3ZKb38Y .counter .full-circle .full-circle-inner {
  display: inline-block;
  vertical-align: middle;
}
.cid-tph3ZKb38Y .counter .full-circle .full-circle-inner .circle-text {
  color: #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tph3ZKb38Y img {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tph3ZKb38Y .required {
    text-align: center;
  }
}
.cid-tph3ZKb38Y .jq-selectbox__select {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 50px;
}
.cid-tph3ZKb38Y .form-control-label,
.cid-tph3ZKb38Y .form-check {
  margin-left: 20px;
}
.cid-tpi37chqiZ {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/banner-02-1500x635.jpg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .cid-tpi37chqiZ {
    background-size: 200% 100%;
    background-position: left center;
  }
}
.cid-tpi37chqiZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tpi37chqiZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  .cid-tpi37chqiZ {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tpi37chqiZ {
    min-height: 0;
  }
}
.cid-tpi37chqiZ .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .cid-tpi37chqiZ .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tpi37chqiZ .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tpi37chqiZ .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tpi37chqiZ .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tpi37chqiZ .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tpi37chqiZ .content-container {
    padding-right: 200px;
  }
}
.cid-tpi37chqiZ .mbr-section-title {
  color: #112B6D;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tpi37chqiZ .mbr-section-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tpi37chqiZ .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tpi37chqiZ .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 20px;
  width: 100%;
}
.cid-tpi37chqiZ .mbr-text {
  color: #112B6D;
  margin-bottom: 0.9rem;
  width: 100%;
}
.cid-tpi37chqiZ .mbr-section-btn {
  margin-top: 10px;
}
.cid-tpwSCMvfIo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  background: linear-gradient(to right top, #ffffff, #ffffff);
}
.cid-tpwSCMvfIo .img-wrap {
  width: 100%;
  margin-bottom: 3rem;
}
.cid-tpwSCMvfIo .img-wrap img {
  width: 64%;
  margin: auto;
}
.cid-tpwSCMvfIo .mbr-text,
.cid-tpwSCMvfIo .mbr-section-btn {
  color: #ffffff;
}
.cid-tpwSCMvfIo .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-tpwSCMvfIo .buttons-wrap .link {
  display: flex;
}
.cid-tpwSCMvfIo .mbr-arrow {
  bottom: 0;
}
.cid-uq0Cdm4e8X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq0Cdm4e8X .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uq0Cdm4e8X .mbr-section-title {
  color: #24262b;
}
.cid-uq0Cdm4e8X .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uq0Cdm4e8X .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-uq0Cdm4e8X .card {
    padding: 1rem !important;
  }
}
.cid-uq0Cdm4e8X .card:hover {
  transform: translateY(-1rem);
}
.cid-uq0Cdm4e8X .card img {
  max-width: 120px;
  height: auto;
}
.cid-uq0Fvz1aCY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq0Fvz1aCY .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uq0Fvz1aCY .mbr-section-title {
  color: #24262b;
}
.cid-uq0Fvz1aCY .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uq0Fvz1aCY .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-uq0Fvz1aCY .card {
    padding: 1rem !important;
  }
}
.cid-uq0Fvz1aCY .card:hover {
  transform: translateY(-1rem);
}
.cid-uq0Fvz1aCY .card img {
  max-width: 120px;
  height: auto;
}
.cid-uq0GLTEajM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uq0GLTEajM .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uq0GLTEajM .mbr-section-title {
  color: #24262b;
}
.cid-uq0GLTEajM .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uq0GLTEajM .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-uq0GLTEajM .card {
    padding: 1rem !important;
  }
}
.cid-uq0GLTEajM .card:hover {
  transform: translateY(-1rem);
}
.cid-uq0GLTEajM .card img {
  max-width: 120px;
  height: auto;
}
.cid-tqHFI49VLc {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqHFI49VLc .img-wrapper {
  text-align: center;
}
.cid-tqHFI49VLc .card-title {
  padding-top: 1.5rem;
  color: #666666;
}
.cid-tqHFI49VLc img {
  margin: auto;
  width: 100%;
  max-width: 140px;
}
.cid-tqHFI49VLc .row {
  align-items: flex-start;
}
.cid-tqHFI49VLc .card-wrapper {
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cid-tqHFI49VLc .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1400px) {
  .cid-tqHFI49VLc .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 1400px) {
  .cid-tqHFI49VLc .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tqHFI49VLc .card-wrapper:hover .img-wrapper {
  animation: 0.5s ease-in bounce;
}
@keyframes bounce {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}
.cid-uq0SSkaWRD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uq0SSkaWRD .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uq0SSkaWRD .mbr-section-title {
  color: #24262b;
}
.cid-uq0SSkaWRD .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-uq0SSkaWRD .card {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 2rem 3rem !important;
}
@media (max-width: 767px) {
  .cid-uq0SSkaWRD .card {
    padding: 1rem !important;
  }
}
.cid-uq0SSkaWRD .card:hover {
  transform: translateY(-1rem);
}
.cid-uq0SSkaWRD .card img {
  max-width: 120px;
  height: auto;
}
.cid-tpgSBL5SKY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #de7117;
}
.cid-tpgSBL5SKY .media-container-row .mbr-text {
  color: #ffffff;
}
