.btn {
  border-width: 2px;
}
body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    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: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffcc01 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffcc01 !important;
  border-color: #000000 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffcc01 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #000000 !important;
  background-color: #ffcc01 !important;
  border-color: #ffcc01 !important;
}
.btn-primary:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-primary:hover span {
  color: white;
  background: #000000;
}
.btn-primary span {
  background: #000000;
  transition: all 0.3s;
  color: #ffcc01;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-primary span:before {
  transform: translateX(1px);
  display: block;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #ff6666 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-secondary:hover span {
  color: white;
  background: #000000;
}
.btn-secondary span {
  background: #ffffff;
  transition: all 0.3s;
  color: #ff6666;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-secondary span:before {
  transform: translateX(1px);
  display: block;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #47b5ed !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-info:hover span {
  color: white;
  background: #000000;
}
.btn-info span {
  background: #ffffff;
  transition: all 0.3s;
  color: #47b5ed;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-info span:before {
  transform: translateX(1px);
  display: block;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #40b0bf !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-success:hover span {
  color: white;
  background: #000000;
}
.btn-success span {
  background: #ffffff;
  transition: all 0.3s;
  color: #40b0bf;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-success span:before {
  transform: translateX(1px);
  display: block;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #000000 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffe161 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-warning:hover span {
  color: white;
  background: #000000;
}
.btn-warning span {
  background: #000000;
  transition: all 0.3s;
  color: #ffe161;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-warning span:before {
  transform: translateX(1px);
  display: block;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #000000 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #ff9966 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-danger:hover span {
  color: white;
  background: #000000;
}
.btn-danger span {
  background: #000000;
  transition: all 0.3s;
  color: #ff9966;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-danger span:before {
  transform: translateX(1px);
  display: block;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #000000 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #fafafa !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #000000 !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-white:hover span {
  color: white;
  background: #000000;
}
.btn-white span {
  background: #000000;
  transition: all 0.3s;
  color: #fafafa;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-white span:before {
  transform: translateX(1px);
  display: block;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #ffffff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #232323 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black:hover {
  background-color: white!important;
  box-shadow: 0 27px 30px -20px #000000 !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-black:hover span {
  color: white;
  background: #000000;
}
.btn-black span {
  background: #ffffff;
  transition: all 0.3s;
  color: #232323;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-black span:before {
  transform: translateX(1px);
  display: block;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffcc01;
  color: #ffcc01;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffcc01 !important;
  background-color: transparent!important;
  border-color: #ffcc01 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #ffcc01 !important;
  border-color: #ffcc01 !important;
}
.btn-primary-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-primary-outline:hover span {
  color: #000000 !important;
}
.btn-primary-outline span {
  background: #ffcc01;
  transition: all 0.3s;
  color: #000000;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff6666 !important;
  background-color: transparent!important;
  border-color: #ff6666 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-secondary-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-secondary-outline:hover span {
  color: #ffffff !important;
}
.btn-secondary-outline span {
  background: #ff6666;
  transition: all 0.3s;
  color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #47b5ed !important;
  background-color: transparent!important;
  border-color: #47b5ed !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-info-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-info-outline:hover span {
  color: #ffffff !important;
}
.btn-info-outline span {
  background: #47b5ed;
  transition: all 0.3s;
  color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #40b0bf !important;
  background-color: transparent!important;
  border-color: #40b0bf !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-success-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-success-outline:hover span {
  color: #ffffff !important;
}
.btn-success-outline span {
  background: #40b0bf;
  transition: all 0.3s;
  color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe161 !important;
  background-color: transparent!important;
  border-color: #ffe161 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-warning-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-warning-outline:hover span {
  color: #000000 !important;
}
.btn-warning-outline span {
  background: #ffe161;
  transition: all 0.3s;
  color: #000000;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff9966 !important;
  background-color: transparent!important;
  border-color: #ff9966 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #000000 !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-danger-outline:hover span {
  color: #000000 !important;
}
.btn-danger-outline span {
  background: #ff9966;
  transition: all 0.3s;
  color: #000000;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #232323 !important;
  background-color: transparent!important;
  border-color: #232323 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-black-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-black-outline:hover span {
  color: #ffffff !important;
}
.btn-black-outline span {
  background: #232323;
  transition: all 0.3s;
  color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #fafafa !important;
  background-color: transparent!important;
  border-color: #fafafa !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #000000 !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-white-outline:hover {
  background-color: #ffcc01 !important;
  box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1) rotateX(1deg) rotateY(0deg) rotateZ(4deg);
  color: #000000 !important;
}
.btn-white-outline:hover span {
  color: #000000 !important;
}
.btn-white-outline span {
  background: #fafafa;
  transition: all 0.3s;
  color: #000000;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.8rem!important;
  font-weight: 700;
  margin-left: 12px;
}
.btn-white:hover {
  background: #ffcc01 !important;
}
.btn-white:hover span {
  color: #ffcc01 !important;
}
.text-primary {
  color: #ffcc01 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #9a7b00 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffcc01;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffcc01;
  border-color: #ffcc01;
  color: #1a1500;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffcc01;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff5cd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffcc01 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #ffcc01;
}
/* Forms */
.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 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffcc01;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffcc01;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffcc01;
  border-bottom-color: #ffcc01;
}
.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: #ffcc01 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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%;
  width: 100%;
  height: auto;
}
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='%23ffcc01' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sHbPYXhQhD .navbar-dropdown {
  position: relative !important;
}
.cid-sHbPYXhQhD .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-sHbPYXhQhD .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-sHbPYXhQhD .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-sHbPYXhQhD .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-sHbPYXhQhD .navbar-caption {
  font-weight: 500;
}
.cid-sHbPYXhQhD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHbPYXhQhD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sHbPYXhQhD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sHbPYXhQhD .dropdown-item:hover,
.cid-sHbPYXhQhD .dropdown-item:focus {
  background: #ffcc01 !important;
  color: white !important;
}
.cid-sHbPYXhQhD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sHbPYXhQhD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sHbPYXhQhD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sHbPYXhQhD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sHbPYXhQhD .nav-link {
  position: relative;
}
.cid-sHbPYXhQhD .container {
  display: flex;
  margin: auto;
}
.cid-sHbPYXhQhD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-sHbPYXhQhD .dropdown-menu,
.cid-sHbPYXhQhD .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-sHbPYXhQhD .nav-item:focus,
.cid-sHbPYXhQhD .nav-link:focus {
  outline: none;
}
.cid-sHbPYXhQhD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sHbPYXhQhD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sHbPYXhQhD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sHbPYXhQhD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sHbPYXhQhD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sHbPYXhQhD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sHbPYXhQhD .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f9f9f9;
}
.cid-sHbPYXhQhD .navbar.opened {
  transition: all 0.3s;
}
.cid-sHbPYXhQhD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sHbPYXhQhD .navbar .navbar-logo img {
  width: auto;
}
.cid-sHbPYXhQhD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sHbPYXhQhD .navbar.collapsed {
  justify-content: center;
}
.cid-sHbPYXhQhD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sHbPYXhQhD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sHbPYXhQhD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sHbPYXhQhD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sHbPYXhQhD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sHbPYXhQhD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sHbPYXhQhD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sHbPYXhQhD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sHbPYXhQhD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sHbPYXhQhD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sHbPYXhQhD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sHbPYXhQhD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sHbPYXhQhD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sHbPYXhQhD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sHbPYXhQhD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sHbPYXhQhD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sHbPYXhQhD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sHbPYXhQhD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sHbPYXhQhD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sHbPYXhQhD .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sHbPYXhQhD .navbar.navbar-short {
  min-height: 80px;
}
.cid-sHbPYXhQhD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sHbPYXhQhD .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-sHbPYXhQhD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sHbPYXhQhD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sHbPYXhQhD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sHbPYXhQhD .dropdown-item.active,
.cid-sHbPYXhQhD .dropdown-item:active {
  background-color: transparent;
}
.cid-sHbPYXhQhD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sHbPYXhQhD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sHbPYXhQhD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sHbPYXhQhD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-sHbPYXhQhD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sHbPYXhQhD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sHbPYXhQhD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sHbPYXhQhD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sHbPYXhQhD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sHbPYXhQhD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sHbPYXhQhD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHbPYXhQhD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sHbPYXhQhD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sHbPYXhQhD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHbPYXhQhD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sHbPYXhQhD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sHbPYXhQhD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sHbPYXhQhD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sHbPYXhQhD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sHbPYXhQhD .navbar {
    height: 70px;
  }
  .cid-sHbPYXhQhD .navbar.opened {
    height: auto;
  }
  .cid-sHbPYXhQhD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tU4PL6dKXn {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffcc01;
}
.cid-tU4PL6dKXn .carousel,
.cid-tU4PL6dKXn .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tU4PL6dKXn .item-wrapper {
  width: 100%;
}
.cid-tU4PL6dKXn .carousel-caption {
  bottom: 40px;
}
.cid-tU4PL6dKXn .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tU4PL6dKXn .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tU4PL6dKXn .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tU4PL6dKXn .carousel-control {
    top: auto;
    bottom: 1rem;
    display: none;
  }
}
.cid-tU4PL6dKXn span {
  font-size: 50px;
}
.cid-tU4PL6dKXn .mobi-mbri-arrow-next {
  margin-left: 5px;
  color: #000000;
}
.cid-tU4PL6dKXn .mobi-mbri-arrow-next:hover {
  color: #ffcc01;
}
.cid-tU4PL6dKXn .mobi-mbri-arrow-prev:hover {
  color: #ffcc01;
}
.cid-tU4PL6dKXn .mobi-mbri-arrow-prev {
  margin-right: 5px;
  color: #000000;
}
.cid-tU4PL6dKXn .mbr-section-title {
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
}
.cid-tU4PL6dKXn .mbr-section-subtitle {
  padding: 0;
  margin: 0;
  padding-bottom: 20px;
}
.cid-tU4PL6dKXn .carousel-fade .active.carousel-item-left,
.cid-tU4PL6dKXn .carousel-fade .active.carousel-item-right {
  transition: opacity 0.3s 0s;
}
.cid-tU4PL6dKXn .carousel-fade .carousel-item-left.carousel-item-next,
.cid-tU4PL6dKXn .carousel-fade .carousel-item-left.carousel-item-prev {
  transition: opacity 0.3s 0.1s;
}
.cid-tU4WDPusud {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-tU4WDPusud .mbr-section-title {
  text-align: center;
  color: #ffcc01;
}
.cid-tU4WDPusud .mbr-text,
.cid-tU4WDPusud .mbr-section-btn {
  text-align: center;
  color: #696969;
}
.cid-tU4WDPusud .mbr-fallback-image.disabled {
  display: none;
}
.cid-tU4WDPusud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-sHbTWpU6kH {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-sHbTWpU6kH .mbr-overlay {
  background: #232323;
  opacity: 0.6;
}
.cid-sHbTWpU6kH .row-bg {
  background: #ffffff;
  margin: 0;
  padding: 2rem 1rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-sHbTWpU6kH .row-bg {
    padding: 1rem 0;
  }
}
.cid-sHbTWpU6kH .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sHbTWpU6kH .mbr-flex {
  justify-content: center;
}
.cid-sHbTWpU6kH .mbr-text {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
}
.cid-sHbTWpU6kH img,
.cid-sHbTWpU6kH .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-sHbTWpU6kH .item:focus,
.cid-sHbTWpU6kH span:focus {
  outline: none;
}
.cid-sHbTWpU6kH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sHbTWpU6kH .card1 {
  background: #ffcc01;
}
.cid-sHbTWpU6kH .card2 {
  background: #eeeeee;
}
.cid-sHbTWpU6kH .card3 {
  background: #a8d741;
}
.cid-sHbTWpU6kH .item-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-sHbTWpU6kH .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sHbTWpU6kH .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-sHbTWpU6kH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sHbTWpU6kH .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-sHbTWpU6kH .item-title1 {
  color: #ffffff;
}
.cid-sHbTWpU6kH .mbr-text,
.cid-sHbTWpU6kH .mbr-section-btn {
  text-align: center;
  color: #121212;
}
.cid-sHbTWpU6kH .item-subtitle {
  text-align: center;
  color: #121212;
}
.cid-sHbTWpU6kH .item-title2 {
  text-align: center;
  color: #121212;
}
.cid-sHbTWpU6kH .price {
  color: #121212;
}
.cid-tU54qILUg3 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-tU54qILUg3 .mbr-overlay {
  background: #232323;
  opacity: 0.6;
}
.cid-tU54qILUg3 .row-bg {
  background: #ffffff;
  margin: 0;
  padding: 2rem 1rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tU54qILUg3 .row-bg {
    padding: 1rem 0;
  }
}
.cid-tU54qILUg3 .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tU54qILUg3 .mbr-flex {
  justify-content: center;
}
.cid-tU54qILUg3 .mbr-text {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
}
.cid-tU54qILUg3 img,
.cid-tU54qILUg3 .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tU54qILUg3 .item:focus,
.cid-tU54qILUg3 span:focus {
  outline: none;
}
.cid-tU54qILUg3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tU54qILUg3 .card1 {
  background: #a8d741;
}
.cid-tU54qILUg3 .card2 {
  background: #ffcc01;
}
.cid-tU54qILUg3 .card3 {
  background: #eeeeee;
}
.cid-tU54qILUg3 .item-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-tU54qILUg3 .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tU54qILUg3 .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-tU54qILUg3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tU54qILUg3 .mbr-section-title {
  color: #fafafa;
  text-align: left;
}
.cid-tU54qILUg3 .item-title1 {
  color: #ffffff;
}
.cid-tU54qILUg3 .mbr-text,
.cid-tU54qILUg3 .mbr-section-btn {
  text-align: center;
  color: #121212;
}
.cid-tU54qILUg3 .item-subtitle {
  text-align: center;
  color: #121212;
}
.cid-tU54qILUg3 .item-title2 {
  text-align: center;
  color: #121212;
}
.cid-tU54qILUg3 .price {
  color: #121212;
}
.cid-tU4W6S3yyB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tU4W6S3yyB img {
  width: 120px;
  margin: auto;
}
.cid-tU4W6S3yyB .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tU4W6S3yyB .card {
    max-width: 12.5%;
  }
}
.cid-tU5aKqy5q4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tU5aKqy5q4 img {
  width: 120px;
  margin: auto;
}
.cid-tU5aKqy5q4 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tU5aKqy5q4 .card {
    max-width: 12.5%;
  }
}
.cid-tU5juAzrpO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #22a5e5;
}
.cid-tU5juAzrpO .title-border {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
}
.cid-tU5juAzrpO .card {
  height: 100%;
  justify-content: space-between;
  background: #ffffff;
}
.cid-tU5juAzrpO .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto !important;
}
@media (max-width: 767px) {
  .cid-tU5juAzrpO .mbr-section-btn {
    flex-direction: column;
  }
}
.cid-tU5juAzrpO .row-bg {
  background: #000000;
  padding: 2rem 1rem;
  margin: 0;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-tU5juAzrpO .row-bg {
    padding: 1rem 0;
  }
}
.cid-tU5juAzrpO img,
.cid-tU5juAzrpO .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-tU5juAzrpO .item:focus,
.cid-tU5juAzrpO span:focus {
  outline: none;
}
.cid-tU5juAzrpO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tU5juAzrpO .item-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-tU5juAzrpO .item-wrapper {
    padding: 1rem;
  }
}
.cid-tU5juAzrpO .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-tU5juAzrpO .mbr-section-title {
  color: #ffffff;
}
.cid-tU5juAzrpO .item-title1 {
  color: #000000;
}
.cid-tU5juAzrpO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHbU2P2sHX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-sHbU2P2sHX .inner-row {
  height: 100%;
}
.cid-sHbU2P2sHX .line {
  border-bottom: 2px solid #454545;
  padding-top: 2rem;
}
.cid-sHbU2P2sHX .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-sHbU2P2sHX .image-wrapper {
    padding: 0rem;
    padding-top: 2rem;
  }
}
.cid-sHbU2P2sHX .card2 {
  background: #c2f549;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-sHbU2P2sHX .card2 {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sHbU2P2sHX .card3 {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-sHbU2P2sHX .card3 {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-sHbU2P2sHX .card-bg {
  align-items: center;
  background: #eeeeee;
  overflow: hidden;
  padding: 1rem 1rem;
  border-radius: 2rem;
  margin: 0;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-sHbU2P2sHX .card-bg {
    padding: 0rem 1rem;
    padding-bottom: 1rem;
  }
}
.cid-sHbU2P2sHX img {
  width: 100%;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-sHbU2P2sHX .align-left,
  .cid-sHbU2P2sHX .align-right {
    text-align: center;
  }
}
.cid-sHbUDLGPF2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eeeeee;
}
.cid-sHbUDLGPF2 .row-bg {
  background: #ffcc01;
  margin: 0;
  padding: 2rem 1rem;
  padding-bottom: 0;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-sHbUDLGPF2 .row-bg {
    padding: 1rem 0;
  }
}
.cid-sHbUDLGPF2 .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  background: #eeeeee;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-sHbUDLGPF2 .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (min-width: 992px) {
  .cid-sHbUDLGPF2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sHbUDLGPF2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sHbUDLGPF2 img,
.cid-sHbUDLGPF2 .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sHbUDLGPF2 .item:focus,
.cid-sHbUDLGPF2 span:focus {
  outline: none;
}
.cid-sHbUDLGPF2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sHbUDLGPF2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sHbUDLGPF2 .mbr-section-title {
  color: #232323;
}
.cid-sHbUDLGPF2 .item-subtitle {
  color: #454545;
}
.cid-sHbUDLGPF2 .mbr-section-subtitle {
  color: #a6a6a6;
}
.cid-sHbV4Rux6E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-sHbV4Rux6E .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sHbV4Rux6E .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #fafafa;
}
.cid-sHbV4Rux6E .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-sHbV4Rux6E .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sHbV4Rux6E .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sHbV4Rux6E .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #ffcc01;
}
@media (max-width: 767px) {
  .cid-sHbV4Rux6E .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-sHbV4Rux6E .mbr-section-subtitle {
  color: #696969;
}
.cid-sHbUZzu43H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sHbUZzu43H .google-map {
  height: 35rem;
  position: relative;
}
.cid-sHbUZzu43H .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sHbUZzu43H .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sHbUZzu43H .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sHbUZzu43H .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sHbV2lXHiy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
.cid-u153WB1qPE .navbar-dropdown {
  position: relative !important;
}
.cid-u153WB1qPE .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-u153WB1qPE .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-u153WB1qPE .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-u153WB1qPE .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-u153WB1qPE .navbar-caption {
  font-weight: 500;
}
.cid-u153WB1qPE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u153WB1qPE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u153WB1qPE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u153WB1qPE .dropdown-item:hover,
.cid-u153WB1qPE .dropdown-item:focus {
  background: #ffcc01 !important;
  color: white !important;
}
.cid-u153WB1qPE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u153WB1qPE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u153WB1qPE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u153WB1qPE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u153WB1qPE .nav-link {
  position: relative;
}
.cid-u153WB1qPE .container {
  display: flex;
  margin: auto;
}
.cid-u153WB1qPE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-u153WB1qPE .dropdown-menu,
.cid-u153WB1qPE .navbar.opened {
  background: #f9f9f9 !important;
}
.cid-u153WB1qPE .nav-item:focus,
.cid-u153WB1qPE .nav-link:focus {
  outline: none;
}
.cid-u153WB1qPE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u153WB1qPE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u153WB1qPE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u153WB1qPE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u153WB1qPE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u153WB1qPE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u153WB1qPE .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #f9f9f9;
}
.cid-u153WB1qPE .navbar.opened {
  transition: all 0.3s;
}
.cid-u153WB1qPE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u153WB1qPE .navbar .navbar-logo img {
  width: auto;
}
.cid-u153WB1qPE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u153WB1qPE .navbar.collapsed {
  justify-content: center;
}
.cid-u153WB1qPE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u153WB1qPE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u153WB1qPE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-u153WB1qPE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u153WB1qPE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u153WB1qPE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u153WB1qPE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u153WB1qPE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u153WB1qPE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u153WB1qPE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u153WB1qPE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u153WB1qPE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u153WB1qPE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u153WB1qPE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u153WB1qPE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u153WB1qPE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u153WB1qPE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u153WB1qPE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u153WB1qPE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u153WB1qPE .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-u153WB1qPE .navbar.navbar-short {
  min-height: 80px;
}
.cid-u153WB1qPE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u153WB1qPE .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-u153WB1qPE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u153WB1qPE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u153WB1qPE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u153WB1qPE .dropdown-item.active,
.cid-u153WB1qPE .dropdown-item:active {
  background-color: transparent;
}
.cid-u153WB1qPE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u153WB1qPE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u153WB1qPE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u153WB1qPE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f9f9f9;
}
.cid-u153WB1qPE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u153WB1qPE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u153WB1qPE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u153WB1qPE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u153WB1qPE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-u153WB1qPE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u153WB1qPE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u153WB1qPE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u153WB1qPE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u153WB1qPE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u153WB1qPE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u153WB1qPE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u153WB1qPE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u153WB1qPE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u153WB1qPE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u153WB1qPE .navbar {
    height: 70px;
  }
  .cid-u153WB1qPE .navbar.opened {
    height: auto;
  }
  .cid-u153WB1qPE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uthwU3NC42 {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #f9f9f9;
}
@media (max-width: 991px) {
  .cid-uthwU3NC42 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uthwU3NC42 img {
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-uthwU3NC42 img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uthwU3NC42 .mbr-text,
.cid-uthwU3NC42 .mbr-section-btn {
  color: #696969;
}
.cid-uthwU3NC42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uthwU3NC42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u154rdyDIp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-u154rdyDIp .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
}
.cid-u154rdyDIp .row-bg {
  align-items: center;
  background: #eeeeee;
  transition: all 0.3s;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-u154rdyDIp .row-bg {
    padding: 1rem 0;
  }
}
.cid-u154rdyDIp .row-bg:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-u154rdyDIp .image-wrapper {
    padding: 0 1rem;
  }
}
.cid-u154rdyDIp img {
  border-radius: 1rem;
}
.cid-u154rdyDIp .mbr-text,
.cid-u154rdyDIp .mbr-section-btn {
  color: #353535;
}
.cid-u154rdyDIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-u154rdyDIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ue5PquhQxg.popup-builder {
  background-color: #ffffff;
}
.cid-ue5PquhQxg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ue5PquhQxg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ue5PquhQxg .modal-content,
.cid-ue5PquhQxg .modal-dialog {
  height: auto;
}
.cid-ue5PquhQxg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ue5PquhQxg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ue5PquhQxg .form-wrapper .mbr-form .form-group,
  .cid-ue5PquhQxg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ue5PquhQxg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ue5PquhQxg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ue5PquhQxg .mbr-text {
  text-align: left;
}
.cid-ue5PquhQxg .pt-0 {
  padding-top: 0 !important;
}
.cid-ue5PquhQxg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ue5PquhQxg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ue5PquhQxg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ue5PquhQxg .modal-open {
  overflow: hidden;
}
.cid-ue5PquhQxg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ue5PquhQxg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ue5PquhQxg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ue5PquhQxg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ue5PquhQxg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ue5PquhQxg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ue5PquhQxg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ue5PquhQxg .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ue5PquhQxg .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ue5PquhQxg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ue5PquhQxg .modal-backdrop.fade {
  opacity: 0;
}
.cid-ue5PquhQxg .modal-backdrop.show {
  opacity: .5;
}
.cid-ue5PquhQxg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ue5PquhQxg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5PquhQxg .modal-header {
    padding: 1rem;
  }
}
.cid-ue5PquhQxg .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ue5PquhQxg .modal-header .close svg {
  fill: #353535;
}
.cid-ue5PquhQxg .modal-header .close:hover {
  opacity: 1;
}
.cid-ue5PquhQxg .modal-header .close:focus {
  outline: none;
}
.cid-ue5PquhQxg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #232323;
}
.cid-ue5PquhQxg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ue5PquhQxg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5PquhQxg .modal-body {
    padding: 1rem;
  }
}
.cid-ue5PquhQxg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ue5PquhQxg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ue5PquhQxg .modal-footer {
    padding: 1rem;
  }
}
.cid-ue5PquhQxg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ue5PquhQxg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ue5PquhQxg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ue5PquhQxg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ue5PquhQxg .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-ue5PquhQxg .modal-lg,
  .cid-ue5PquhQxg .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ue5PquhQxg .modal-xl {
    max-width: 1140px;
  }
}
.cid-ue5PquhQxg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ue5PquhQxg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-ue5PquhQxg .form-group {
  margin-bottom: 1rem;
}
.cid-ue5PquhQxg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ue5PquhQxg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ue5PquhQxg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ue5PquhQxg .mbr-section-btn {
  margin: 0;
}
.cid-ue5PquhQxg .mbr-section-btn .btn {
  margin: 0;
}
.cid-u155CrMDiz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-u155CrMDiz .card-img {
  background-color: #fff;
}
.cid-u155CrMDiz .card-img a {
  display: block;
  padding-top: 2rem;
}
.cid-u155CrMDiz .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-u155CrMDiz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u155CrMDiz p {
  text-align: left;
}
.cid-u155CrMDiz .mbr-text {
  color: #767676;
}
.cid-u155CrMDiz .card-wrapper {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-u155CrMDiz .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-u155CrMDiz .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-u155CrMDiz .card-title {
  text-align: center;
}
.cid-u153WDzvUU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u153WDzvUU img {
  width: 120px;
  margin: auto;
}
.cid-u153WDzvUU .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-u153WDzvUU .card {
    max-width: 12.5%;
  }
}
.cid-u153WE2Qlc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u153WE2Qlc img {
  width: 120px;
  margin: auto;
}
.cid-u153WE2Qlc .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 1;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-u153WE2Qlc .card {
    max-width: 12.5%;
  }
}
.cid-u153WG5z67 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeeee;
}
.cid-u153WG5z67 .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-u153WG5z67 .card-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #ffffff;
}
.cid-u153WG5z67 .card-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 991px) {
  .cid-u153WG5z67 .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-u153WG5z67 .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-u153WG5z67 .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #ffcc01;
}
@media (max-width: 767px) {
  .cid-u153WG5z67 .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-u153WG5z67 .mbr-section-subtitle {
  color: #696969;
}
.cid-u153WGWOyE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-u153WGWOyE .google-map {
  height: 35rem;
  position: relative;
}
.cid-u153WGWOyE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-u153WGWOyE .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-u153WGWOyE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u153WGWOyE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u153WIgzCV {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
  overflow: hidden;
}
