body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.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: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((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 {
  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: #71b7da !important;
}
.bg-success {
  background-color: #4b9b86 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #4b9b86 !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: #3598ca;
  border-color: #3598ca;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #71b7da !important;
  border-color: #71b7da !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #3598ca !important;
  border-color: #3598ca !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: #3598ca !important;
  border-color: #3598ca !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: #326759;
  border-color: #326759;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #4b9b86 !important;
  border-color: #4b9b86 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #326759 !important;
  border-color: #326759 !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: #326759 !important;
  border-color: #326759 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #326759;
  border-color: #326759;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #4b9b86 !important;
  border-color: #4b9b86 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #326759 !important;
  border-color: #326759 !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: #326759 !important;
  border-color: #326759 !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: #326759;
  border-color: #326759;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #4b9b86 !important;
  border-color: #4b9b86 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #326759 !important;
  border-color: #326759 !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: #326759 !important;
  border-color: #326759 !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: #71b7da;
  border-color: #71b7da;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #2f89b6;
  color: #2f89b6 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #71b7da;
  border-color: #71b7da;
}
.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: #71b7da !important;
  border-color: #71b7da !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: #4b9b86;
  border-color: #4b9b86;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #2a564b;
  color: #2a564b !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #4b9b86;
  border-color: #4b9b86;
}
.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: #4b9b86 !important;
  border-color: #4b9b86 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #4b9b86;
  border-color: #4b9b86;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2a564b;
  color: #2a564b !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #4b9b86;
  border-color: #4b9b86;
}
.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: #4b9b86 !important;
  border-color: #4b9b86 !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: #4b9b86;
  border-color: #4b9b86;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #2a564b;
  color: #2a564b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #4b9b86;
  border-color: #4b9b86;
}
.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: #4b9b86 !important;
  border-color: #4b9b86 !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: #71b7da !important;
}
.text-secondary {
  color: #4b9b86 !important;
}
.text-success {
  color: #4b9b86 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #4b9b86 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #2f89b6 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2a564b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2a564b !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: #2a564b !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: #4b9b86;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #4b9b86;
}
.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: #71b7da;
  border-color: #71b7da;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #71b7da;
}
.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: #98cdbf;
}
.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: #98cdbf;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
blockquote {
  border-color: #71b7da;
}
/* 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: #71b7da;
  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: #71b7da;
  border-bottom-color: #71b7da;
}
.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: #71b7da !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: #4b9b86 !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='%2371b7da' %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-rgyNkVgXtY .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgyNkVgXtY .nav-item:focus,
.cid-rgyNkVgXtY .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rgyNkVgXtY .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-rgyNkVgXtY .nav-item .nav-link {
    position: relative;
  }
  .cid-rgyNkVgXtY .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #71b7da, #4b9b86);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-rgyNkVgXtY .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-rgyNkVgXtY .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgyNkVgXtY .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-rgyNkVgXtY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rgyNkVgXtY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-right: 2.5385em;
  padding-left: 3.5385em;
}
.cid-rgyNkVgXtY .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rgyNkVgXtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rgyNkVgXtY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rgyNkVgXtY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rgyNkVgXtY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rgyNkVgXtY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #232323;
  background: none;
}
.cid-rgyNkVgXtY .navbar.opened {
  transition: all .3s;
  background: #232323 !important;
}
.cid-rgyNkVgXtY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-rgyNkVgXtY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rgyNkVgXtY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rgyNkVgXtY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-rgyNkVgXtY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rgyNkVgXtY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rgyNkVgXtY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rgyNkVgXtY .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-rgyNkVgXtY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rgyNkVgXtY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-rgyNkVgXtY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rgyNkVgXtY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rgyNkVgXtY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rgyNkVgXtY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rgyNkVgXtY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rgyNkVgXtY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rgyNkVgXtY .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-rgyNkVgXtY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rgyNkVgXtY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rgyNkVgXtY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-rgyNkVgXtY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rgyNkVgXtY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rgyNkVgXtY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rgyNkVgXtY .navbar.navbar-short {
  background: #232323 !important;
  min-height: 60px;
}
.cid-rgyNkVgXtY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rgyNkVgXtY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rgyNkVgXtY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rgyNkVgXtY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rgyNkVgXtY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rgyNkVgXtY .dropdown-item.active,
.cid-rgyNkVgXtY .dropdown-item:active {
  background-color: transparent;
}
.cid-rgyNkVgXtY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-rgyNkVgXtY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rgyNkVgXtY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rgyNkVgXtY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-rgyNkVgXtY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rgyNkVgXtY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rgyNkVgXtY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rgyNkVgXtY .navbar-buttons {
  text-align: center;
}
.cid-rgyNkVgXtY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rgyNkVgXtY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rgyNkVgXtY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rgyNkVgXtY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rgyNkVgXtY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rgyNkVgXtY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rgyNkVgXtY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgyNkVgXtY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rgyNkVgXtY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rgyNkVgXtY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rgyNkVgXtY .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rgyNkVgXtY a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rgyNkVgXtY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-rgyNkVgXtY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-rgyNkVgXtY .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rgyNkVgXtY .navbar {
    height: 77px;
  }
  .cid-rgyNkVgXtY .navbar.opened {
    height: auto;
  }
  .cid-rgyNkVgXtY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rgG2kL2O72 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1123.jpg");
}
.cid-rgG2kL2O72 p {
  color: #767676;
}
.cid-rgG2kL2O72 .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-rgG2kL2O72 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-rgG2kL2O72 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-rgG2kL2O72 .text-content {
    padding: 5rem;
  }
  .cid-rgG2kL2O72 .media-content {
    padding-right: 5rem;
    padding-right: 0;
    padding-left: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-rgG2kL2O72 .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-rgG2kL2O72 .media-content {
    padding-right: 3rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-rgG2kL2O72 .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-rgG2kL2O72 .text-content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-rgG2kL2O72 .content-row {
    -webkit-flex-direction: column-reverse;
  }
}
.cid-rgG2kL2O72 .mbr-text,
.cid-rgG2kL2O72 .mbr-section-btn {
  color: #ffffff;
}
.cid-rgG2kL2O72 .underline,
.cid-rgG2kL2O72 .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tDB5EjMKlc {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tDB5EjMKlc .column-wrapper {
  padding-left: 1.5rem;
}
.cid-tDB5EjMKlc .row {
  flex-direction: row-reverse;
}
.cid-tDB5EjMKlc .column-wrapper {
  padding-left: 16px;
  padding-right: 1.5rem;
}
.cid-tDB5EjMKlc .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-tDB5EjMKlc .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-tDB5EjMKlc .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-tDB5EjMKlc .mbr-text,
.cid-tDB5EjMKlc .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tDB5EjMKlc .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tg1io0eFwC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
  display: flex;
  align-items: center;
}
.cid-tg1io0eFwC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1io0eFwC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1io0eFwC .row {
  justify-content: flex-start;
}
.cid-tg1io0eFwC .mbr-text {
  color: #FEF9EE;
  margin-bottom: 30px;
}
.cid-tg1ipKpLKU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #71b7da;
  position: relative;
  overflow: hidden;
}
.cid-tg1ipKpLKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1ipKpLKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1ipKpLKU .content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .cid-tg1ipKpLKU .content-container {
    gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .cid-tg1ipKpLKU .content-container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .cid-tg1ipKpLKU .content-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tg1ipKpLKU .card-wrapper {
  width: 100%;
}
.cid-tg1ipKpLKU .card-box {
  width: 100%;
}
.cid-tg1ipKpLKU .card-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tg1ipKpLKU .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 1.25rem;
}
.cid-tg1ipKpLKU .mbr-section-btn {
  margin-top: 1.4rem;
}
.cid-tg1ipKpLKU .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 17%;
}
@media (max-width: 767px) {
  .cid-tg1ipKpLKU .col-img {
    grid-row-start: 0;
    grid-row-end: 1;
    padding: 10% 17%;
  }
}
.cid-tg1ipKpLKU .image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.cid-tg1ipKpLKU .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tg1ipKpLKU .bg-img {
  position: absolute;
  width: 100%;
  background-color: #44af69;
  aspect-ratio: 1;
  border-radius: 9999px;
  right: 0;
  bottom: 0;
  transform: translateY(50%) translateX(50%);
}
@media (max-width: 767px) {
  .cid-tg1ipKpLKU .bg-img {
    width: 150%;
  }
}
.cid-tg1ipKpLKU .mbr-text,
.cid-tg1ipKpLKU .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tg1iWyz3qd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tg1iWyz3qd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1iWyz3qd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1iWyz3qd .col-title {
  margin-bottom: 2.5rem;
}
.cid-tg1iWyz3qd .mbr-section-title {
  color: #F6B7D2;
}
.cid-tg1iWyz3qd .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-tg1iWyz3qd .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 639px) {
  .cid-tg1iWyz3qd .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tg1iWyz3qd .card-box {
  width: 100%;
}
.cid-tg1iWyz3qd .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
}
.cid-tg1iWyz3qd .iconfont-wrapper {
  padding: 8px;
}
.cid-tg1iWyz3qd .mbr-iconfont {
  font-size: 92px;
  color: #71b7da;
}
.cid-tg1iWyz3qd .card-container {
  width: 100%;
  padding: 32px;
}
.cid-tg1iWyz3qd .card-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tg1iWyz3qd .card-text {
  color: #FEF9EE;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.cid-tg1iWyz3qd .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-tg1iQg8wXz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
  position: relative;
  overflow: hidden;
}
.cid-tg1iQg8wXz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1iQg8wXz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1iQg8wXz .content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 11;
}
@media (max-width: 991px) {
  .cid-tg1iQg8wXz .content-container {
    gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .cid-tg1iQg8wXz .content-container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .cid-tg1iQg8wXz .content-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tg1iQg8wXz .card-wrapper {
  width: 100%;
}
.cid-tg1iQg8wXz .card-box {
  width: 100%;
}
.cid-tg1iQg8wXz .card-title {
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-tg1iQg8wXz .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 1.25rem;
}
.cid-tg1iQg8wXz .mbr-section-btn {
  margin-top: 1.4rem;
}
.cid-tg1iQg8wXz .col-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 10%;
}
@media (max-width: 767px) {
  .cid-tg1iQg8wXz .col-img {
    grid-row-start: 0;
    grid-row-end: 1;
    padding: 10%;
  }
}
.cid-tg1iQg8wXz .image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.cid-tg1iQg8wXz .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tg1iQg8wXz .bg-img {
  position: absolute;
  width: 100%;
  background-color: #71b7da;
  aspect-ratio: 1;
  border-radius: 9999px;
}
@media (max-width: 767px) {
  .cid-tg1iQg8wXz .bg-img {
    width: 150%;
  }
}
.cid-tg1iQg8wXz .bg-img-1 {
  left: 0;
  bottom: 0;
  transform: translateY(50%) translateX(-50%);
}
.cid-tg1iQg8wXz .bg-img-2 {
  top: 0;
  right: 0;
  transform: translateY(-50%) translateX(50%);
}
.cid-tg1iQg8wXz .mbr-text,
.cid-tg1iQg8wXz .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-tg1k6T0jnr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tg1k6T0jnr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1k6T0jnr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1k6T0jnr .col-title {
  margin-bottom: 2.5rem;
}
.cid-tg1k6T0jnr .mbr-section-title {
  color: #F6B7D2;
}
.cid-tg1k6T0jnr .mbr-section-subtitle {
  color: #FEF9EE;
  margin-top: 1rem;
}
.cid-tg1k6T0jnr .cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 639px) {
  .cid-tg1k6T0jnr .cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cid-tg1k6T0jnr .card-box {
  width: 100%;
}
.cid-tg1k6T0jnr .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-top: 32px;
}
.cid-tg1k6T0jnr .iconfont-wrapper {
  padding: 8px;
}
.cid-tg1k6T0jnr .mbr-iconfont {
  font-size: 92px;
  color: #71b7da;
}
.cid-tg1k6T0jnr .card-container {
  width: 100%;
  padding: 32px;
}
.cid-tg1k6T0jnr .card-title {
  color: #ffffff;
  margin-bottom: 0;
}
.cid-tg1k6T0jnr .card-text {
  color: #FEF9EE;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.cid-tg1k6T0jnr .mbr-section-btn {
  margin-top: 0.5rem;
}
.cid-tg1jiS027o {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tg1jiS027o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1jiS027o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1jiS027o .row {
  justify-content: flex-start;
}
.cid-tg1jiS027o .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: center;
}
.cid-tg1jiS027o .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-tg1iRYATwO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #71b7da;
}
@media (max-width: 991px) {
  .cid-tg1iRYATwO .image-wrapper {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.cid-tg1iRYATwO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tg1iRYATwO .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-tg1iRYATwO .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-tg1iRYATwO .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tg1iRYATwO .mbr-description {
  color: #6c7577;
}
.cid-tg1iRYATwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1iRYATwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1jjzFWr8 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-tg1jjzFWr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1jjzFWr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1jjzFWr8 .row {
  justify-content: flex-start;
}
.cid-tg1jjzFWr8 .mbr-section-title {
  color: #1F1D1A;
  margin-bottom: 0;
  text-align: left;
}
.cid-tg1jjzFWr8 .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
  text-align: center;
}
.cid-tg1knDFIAI {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-tg1knDFIAI .container-fluid {
  padding: 0 3rem;
}
.cid-tg1knDFIAI .media-container-column {
  padding: 0 2rem;
}
.cid-tg1knDFIAI .mbr-section-title {
  display: inline-block;
  position: relative;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tg1knDFIAI .container-fluid {
    padding: 0 1rem;
  }
}
.cid-tg1kUdem0v {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #71b7da;
}
.cid-tg1kUdem0v p {
  color: #767676;
}
.cid-tg1kUdem0v .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tg1kUdem0v .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tg1kUdem0v .text-content {
    padding: 5rem;
  }
  .cid-tg1kUdem0v .media-content {
    padding-right: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tg1kUdem0v .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tg1kUdem0v .media-content {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tg1kUdem0v .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tg1kUdem0v .text-content {
    padding: 2rem 1rem;
  }
}
.cid-tg1kUdem0v .mbr-text,
.cid-tg1kUdem0v .mbr-section-btn {
  color: #000000;
}
.cid-tg1kUdem0v .underline,
.cid-tg1kUdem0v .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tg1nSGqqyE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-tg1nSGqqyE p {
  color: #767676;
}
.cid-tg1nSGqqyE .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tg1nSGqqyE .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tg1nSGqqyE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tg1nSGqqyE .text-content {
    padding: 5rem;
  }
  .cid-tg1nSGqqyE .media-content {
    padding-right: 5rem;
    padding-right: 0;
    padding-left: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tg1nSGqqyE .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tg1nSGqqyE .media-content {
    padding-right: 3rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tg1nSGqqyE .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tg1nSGqqyE .text-content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tg1nSGqqyE .content-row {
    -webkit-flex-direction: column-reverse;
  }
}
.cid-tg1nSGqqyE .mbr-text,
.cid-tg1nSGqqyE .mbr-section-btn {
  color: #000000;
}
.cid-tg1nSGqqyE .underline,
.cid-tg1nSGqqyE .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tB2Ng1lcby {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #71b7da;
}
.cid-tB2Ng1lcby p {
  color: #767676;
}
.cid-tB2Ng1lcby .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tB2Ng1lcby .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tB2Ng1lcby .text-content {
    padding: 5rem;
  }
  .cid-tB2Ng1lcby .media-content {
    padding-right: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tB2Ng1lcby .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tB2Ng1lcby .media-content {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tB2Ng1lcby .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tB2Ng1lcby .text-content {
    padding: 2rem 1rem;
  }
}
.cid-tB2Ng1lcby .mbr-text,
.cid-tB2Ng1lcby .mbr-section-btn {
  color: #000000;
}
.cid-tB2Ng1lcby .underline,
.cid-tB2Ng1lcby .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tB2Nx34vRr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-tB2Nx34vRr p {
  color: #767676;
}
.cid-tB2Nx34vRr .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tB2Nx34vRr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tB2Nx34vRr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tB2Nx34vRr .text-content {
    padding: 5rem;
  }
  .cid-tB2Nx34vRr .media-content {
    padding-right: 5rem;
    padding-right: 0;
    padding-left: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tB2Nx34vRr .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tB2Nx34vRr .media-content {
    padding-right: 3rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tB2Nx34vRr .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tB2Nx34vRr .text-content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tB2Nx34vRr .content-row {
    -webkit-flex-direction: column-reverse;
  }
}
.cid-tB2Nx34vRr .mbr-text,
.cid-tB2Nx34vRr .mbr-section-btn {
  color: #000000;
}
.cid-tB2Nx34vRr .underline,
.cid-tB2Nx34vRr .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tBewM6ch7T {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #71b7da;
}
.cid-tBewM6ch7T p {
  color: #767676;
}
.cid-tBewM6ch7T .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tBewM6ch7T .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tBewM6ch7T .text-content {
    padding: 5rem;
  }
  .cid-tBewM6ch7T .media-content {
    padding-right: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tBewM6ch7T .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tBewM6ch7T .media-content {
    padding-right: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tBewM6ch7T .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tBewM6ch7T .text-content {
    padding: 2rem 1rem;
  }
}
.cid-tBewM6ch7T .mbr-text,
.cid-tBewM6ch7T .mbr-section-btn {
  color: #000000;
}
.cid-tBewM6ch7T .underline,
.cid-tBewM6ch7T .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tB2OBXeTtr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #232323;
}
.cid-tB2OBXeTtr p {
  color: #767676;
}
.cid-tB2OBXeTtr .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tB2OBXeTtr .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tB2OBXeTtr .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #71b7da, #4b9b86);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tB2OBXeTtr .text-content {
    padding: 5rem;
  }
  .cid-tB2OBXeTtr .media-content {
    padding-right: 5rem;
    padding-right: 0;
    padding-left: 5rem;
  }
}
@media (max-width: 1499px) and (min-width: 768px) {
  .cid-tB2OBXeTtr .text-content {
    padding: 3rem;
  }
}
@media (max-width: 1499px) and (min-width: 991px) {
  .cid-tB2OBXeTtr .media-content {
    padding-right: 3rem;
    padding-right: 0;
    padding-left: 3rem;
  }
}
@media (min-width: 992px) {
  .cid-tB2OBXeTtr .media-content {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tB2OBXeTtr .text-content {
    padding: 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tB2OBXeTtr .content-row {
    -webkit-flex-direction: column-reverse;
  }
}
.cid-tB2OBXeTtr .mbr-text,
.cid-tB2OBXeTtr .mbr-section-btn {
  color: #000000;
}
.cid-tB2OBXeTtr .underline,
.cid-tB2OBXeTtr .mbr-title {
  text-align: center;
  color: #ffffff;
}
.cid-tg1jgbfFzH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #232323;
  display: flex;
  align-items: center;
}
.cid-tg1jgbfFzH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tg1jgbfFzH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tg1jgbfFzH .row {
  justify-content: flex-start;
}
.cid-tg1jgbfFzH .mbr-text {
  color: #FEF9EE;
  margin-bottom: 30px;
}
#instagram-feed-block-b .inst__title {
  color: #ffffff;
}
.cid-tg1pBm5bhB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-tg1pBm5bhB .container {
    max-width: 1400px;
  }
}
.cid-tg1pBm5bhB img {
  width: 80%;
  height: auto;
  margin: auto;
}
.cid-tg1pBm5bhB .link-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cid-tg1pBm5bhB .link {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}
.cid-tg1pBm5bhB .link:before {
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  content: "\e908";
  font-family: 'Moririse2' !important;
  color: currentColor;
  font-size: 0.8rem;
}
.cid-tg1pBm5bhB .link,
.cid-tg1pBm5bhB .link-wrap {
  color: #999999;
}
.cid-tg1pBm5bhB .content {
  margin: auto;
}
.cid-tg1pBm5bhB .mbr-text,
.cid-tg1pBm5bhB .mbr-section-btn {
  color: #999999;
}
@media (max-width: 1200px) {
  .cid-tg1pBm5bhB img {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .cid-tg1pBm5bhB .img-col {
    padding-bottom: 2rem;
  }
}
.cid-tg1pBm5bhB .quote {
  color: #200960;
}
.cid-tg1pBm5bhB H3 {
  color: #ffffff;
}
.cid-tg1pBm5bhB H4 {
  color: #d58f76;
}
.cid-tg1pBm5bhB .mbr-text {
  color: #ffffff;
}
.cid-rgFPDo38Q6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rgFPDo38Q6 .social-media {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 4rem;
}
.cid-rgFPDo38Q6 .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-rgFPDo38Q6 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-rgFPDo38Q6 .logo-section {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: 4rem;
}
.cid-rgFPDo38Q6 .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-rgFPDo38Q6 .icon-transition span:hover {
  background-color: #4b9b86;
}
.cid-rgFPDo38Q6 .mbr-text {
  color: #cccccc;
}
@media (max-width: 991px) {
  .cid-rgFPDo38Q6 .social-media {
    -webkit-justify-content: center;
    justify-content: center;
    padding-right: 0rem;
  }
  .cid-rgFPDo38Q6 .logo-section {
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 0rem;
    margin-bottom: 1.5rem;
  }
  .cid-rgFPDo38Q6 .mbr-text {
    margin-bottom: 1.5rem;
  }
}
