.btn {
  border-width: 2px;
}
body {
  background-color: #fcfbfb;
}
body {
  font-family: 'Brygada 1918', sans-serif;
}
.display-1 {
  font-family: 'Brygada 1918', sans-serif;
  font-size: 4.8rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6rem;
}
.display-2 {
  font-family: 'Brygada 1918', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 5rem;
}
.display-4 {
  font-family: 'Brygada 1918', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Brygada 1918', sans-serif;
  font-size: 2.2rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Brygada 1918', 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: #b0c4b1 !important;
}
.bg-success {
  background-color: #60e1a5 !important;
}
.bg-info {
  background-color: #4cd9f5 !important;
}
.bg-warning {
  background-color: #ffd042 !important;
}
.bg-danger {
  background-color: #e35e6b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b0c4b1 !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: #b0c4b1 !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: #b0c4b1 !important;
  border-color: #b0c4b1 !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: #b0c4b1;
  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: #edafb8 !important;
  border-color: #000000 !important;
  color: #000000 !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: #edafb8 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #000000 !important;
  background-color: #edafb8 !important;
  border-color: #edafb8 !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: #000000;
  transition: all 0.3s;
  color: #edafb8;
  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: #4cd9f5 !important;
  border-color: #000000 !important;
  color: #000000 !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: #4cd9f5 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #000000 !important;
  background-color: #4cd9f5 !important;
  border-color: #4cd9f5 !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: #000000;
  transition: all 0.3s;
  color: #4cd9f5;
  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: #60e1a5 !important;
  border-color: #000000 !important;
  color: #000000 !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: #60e1a5 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #60e1a5 !important;
  border-color: #60e1a5 !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: #000000;
  transition: all 0.3s;
  color: #60e1a5;
  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: #ffd042 !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: #ffd042 !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: #ffd042 !important;
  border-color: #ffd042 !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: #ffd042;
  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: #e35e6b !important;
  border-color: #ffffff !important;
  color: #ffffff !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: #e35e6b !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #e35e6b !important;
  border-color: #e35e6b !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: #ffffff;
  transition: all 0.3s;
  color: #e35e6b;
  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: #b0c4b1;
  color: #b0c4b1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #b0c4b1 !important;
  background-color: transparent!important;
  border-color: #b0c4b1 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #000000 !important;
  background-color: #b0c4b1 !important;
  border-color: #b0c4b1 !important;
}
.btn-primary-outline:hover {
  background-color: #b0c4b1 !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: #b0c4b1;
  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: #edafb8;
  color: #edafb8;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #edafb8 !important;
  background-color: transparent!important;
  border-color: #edafb8 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #000000 !important;
  background-color: #edafb8 !important;
  border-color: #edafb8 !important;
}
.btn-secondary-outline:hover {
  background-color: #b0c4b1 !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: #000000 !important;
}
.btn-secondary-outline span {
  background: #edafb8;
  transition: all 0.3s;
  color: #000000;
  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: #4cd9f5;
  color: #4cd9f5;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4cd9f5 !important;
  background-color: transparent!important;
  border-color: #4cd9f5 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #000000 !important;
  background-color: #4cd9f5 !important;
  border-color: #4cd9f5 !important;
}
.btn-info-outline:hover {
  background-color: #b0c4b1 !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: #000000 !important;
}
.btn-info-outline span {
  background: #4cd9f5;
  transition: all 0.3s;
  color: #000000;
  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: #60e1a5;
  color: #60e1a5;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #60e1a5 !important;
  background-color: transparent!important;
  border-color: #60e1a5 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #60e1a5 !important;
  border-color: #60e1a5 !important;
}
.btn-success-outline:hover {
  background-color: #b0c4b1 !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: #000000 !important;
}
.btn-success-outline span {
  background: #60e1a5;
  transition: all 0.3s;
  color: #000000;
  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: #ffd042;
  color: #ffd042;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd042 !important;
  background-color: transparent!important;
  border-color: #ffd042 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #ffd042 !important;
  border-color: #ffd042 !important;
}
.btn-warning-outline:hover {
  background-color: #b0c4b1 !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: #ffd042;
  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: #e35e6b;
  color: #e35e6b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #e35e6b !important;
  background-color: transparent!important;
  border-color: #e35e6b !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #e35e6b !important;
  border-color: #e35e6b !important;
}
.btn-danger-outline:hover {
  background-color: #b0c4b1 !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: #ffffff !important;
}
.btn-danger-outline span {
  background: #e35e6b;
  transition: all 0.3s;
  color: #ffffff;
  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: #b0c4b1 !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: #b0c4b1 !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: #b0c4b1 !important;
}
.btn-white:hover span {
  color: #b0c4b1 !important;
}
.text-primary {
  color: #b0c4b1 !important;
}
.text-secondary {
  color: #edafb8 !important;
}
.text-success {
  color: #60e1a5 !important;
}
.text-info {
  color: #4cd9f5 !important;
}
.text-warning {
  color: #ffd042 !important;
}
.text-danger {
  color: #e35e6b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #769877 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #da5c6e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #23b873 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0cafcf !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #dba500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #bb2030 !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: #b0c4b1;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4cd9f5;
}
.alert-warning {
  background-color: #ffd042;
}
.alert-danger {
  background-color: #e35e6b;
}
.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: #b0c4b1;
  border-color: #b0c4b1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b0c4b1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #f9fbf9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: 'Brygada 1918', 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: #b0c4b1 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Brygada 1918', 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: #b0c4b1;
}
/* 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: #b0c4b1;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b0c4b1;
}
.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: #b0c4b1;
  border-bottom-color: #b0c4b1;
}
.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: #b0c4b1 !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: #edafb8 !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='%23b0c4b1' %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-uWjLfDcUQ1 .navbar-dropdown {
  position: relative !important;
}
.cid-uWjLfDcUQ1 .navbar-dropdown {
  position: absolute !important;
}
@media (min-width: 992px) {
  .cid-uWjLfDcUQ1 .mbr-section-btn {
    margin-right: -0.6rem;
  }
}
@media (max-width: 992px) {
  .cid-uWjLfDcUQ1 .align-right {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cid-uWjLfDcUQ1 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uWjLfDcUQ1 .navbar-caption {
  font-weight: 500;
  color: #000000;
}
.cid-uWjLfDcUQ1 .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-uWjLfDcUQ1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uWjLfDcUQ1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uWjLfDcUQ1 .dropdown-item:hover,
.cid-uWjLfDcUQ1 .dropdown-item:focus {
  background: #b0c4b1 !important;
  color: white !important;
}
.cid-uWjLfDcUQ1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uWjLfDcUQ1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uWjLfDcUQ1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uWjLfDcUQ1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uWjLfDcUQ1 .nav-link {
  position: relative;
}
.cid-uWjLfDcUQ1 .container {
  display: flex;
  margin: auto;
}
.cid-uWjLfDcUQ1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding: 0 0.25rem;
}
.cid-uWjLfDcUQ1 .dropdown-menu,
.cid-uWjLfDcUQ1 .navbar.opened {
  background: #fcfbfb !important;
}
.cid-uWjLfDcUQ1 .nav-item:focus,
.cid-uWjLfDcUQ1 .nav-link:focus {
  outline: none;
}
.cid-uWjLfDcUQ1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uWjLfDcUQ1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWjLfDcUQ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uWjLfDcUQ1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uWjLfDcUQ1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWjLfDcUQ1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWjLfDcUQ1 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #fcfbfb;
}
.cid-uWjLfDcUQ1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uWjLfDcUQ1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uWjLfDcUQ1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uWjLfDcUQ1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWjLfDcUQ1 .navbar.collapsed {
  justify-content: center;
}
.cid-uWjLfDcUQ1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWjLfDcUQ1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uWjLfDcUQ1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWjLfDcUQ1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWjLfDcUQ1 .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-uWjLfDcUQ1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWjLfDcUQ1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uWjLfDcUQ1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uWjLfDcUQ1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWjLfDcUQ1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWjLfDcUQ1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWjLfDcUQ1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWjLfDcUQ1 .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-uWjLfDcUQ1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uWjLfDcUQ1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWjLfDcUQ1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWjLfDcUQ1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uWjLfDcUQ1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uWjLfDcUQ1 .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uWjLfDcUQ1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uWjLfDcUQ1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uWjLfDcUQ1 .navbar.navbar-short .navbar-brand {
  min-height: 80px;
  padding: 0;
}
.cid-uWjLfDcUQ1 .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-uWjLfDcUQ1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWjLfDcUQ1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWjLfDcUQ1 .dropdown-item.active,
.cid-uWjLfDcUQ1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWjLfDcUQ1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWjLfDcUQ1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWjLfDcUQ1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWjLfDcUQ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fcfbfb;
}
.cid-uWjLfDcUQ1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWjLfDcUQ1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uWjLfDcUQ1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uWjLfDcUQ1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uWjLfDcUQ1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uWjLfDcUQ1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uWjLfDcUQ1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWjLfDcUQ1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uWjLfDcUQ1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uWjLfDcUQ1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWjLfDcUQ1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uWjLfDcUQ1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uWjLfDcUQ1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uWjLfDcUQ1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWjLfDcUQ1 .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-uWjLfDcUQ1 .navbar {
    height: 70px;
  }
  .cid-uWjLfDcUQ1 .navbar.opened {
    height: auto;
  }
  .cid-uWjLfDcUQ1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uWjLfDcUQ1 .nav-link,
.cid-uWjLfDcUQ1 .dropdown-item {
  color: #000000;
}
.cid-uWjLfDekXT {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDekXT .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-uWjLfDekXT .row-bg {
  align-items: center;
  background: #b0c4b1;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDekXT .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .cid-uWjLfDekXT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDekXT img {
  border-radius: 1rem;
  transition: all 0.3s;
}
.cid-uWjLfDekXT img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDekXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDekXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDekXT .mbr-text,
.cid-uWjLfDekXT .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDeMvg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDeMvg img,
.cid-uWjLfDeMvg .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-uWjLfDeMvg .item:focus,
.cid-uWjLfDeMvg span:focus {
  outline: none;
}
.cid-uWjLfDeMvg .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDeMvg .card1 {
  background: #b0c4b1;
}
.cid-uWjLfDeMvg .card2 {
  background: #edafb8;
}
.cid-uWjLfDeMvg .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-uWjLfDeMvg .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDeMvg .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDeMvg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDeMvg .mbr-section-title {
  color: #232323;
}
.cid-uWjLfDeMvg .item-title1 {
  color: #000000;
}
.cid-uWjLfDeMvg .item-title2 {
  color: #000000;
}
.cid-uWjLfDeGWw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDeGWw .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uWjLfDeGWw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWjLfDeGWw .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cid-uWjLfDeGWw .card-box {
  margin: auto;
}
.cid-uWjLfDeGWw img,
.cid-uWjLfDeGWw .item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDeGWw img,
  .cid-uWjLfDeGWw .item-img {
    margin-right: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-uWjLfDeGWw .mbr-section-title {
  border-top: 1px solid #000000;
  padding-top: 1rem;
  color: #000000;
}
.cid-uWjLfDeGWw .card-text {
  color: #000000;
}
.cid-uWjLfDeGWw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDeGWw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDeGWw .card-title {
  color: #000000;
}
.cid-uWjLfDf0r7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDf0r7 .container {
  max-width: 1000px;
}
.cid-uWjLfDf0r7 .mbr-text {
  border-left: 1px solid currentColor;
  padding-left: 1rem;
  color: #000000;
}
.cid-uWjLfDf0r7 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDfxDT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #b0c4b1;
}
.cid-uWjLfDfxDT .item:focus,
.cid-uWjLfDfxDT span:focus {
  outline: none;
}
.cid-uWjLfDfxDT .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uWjLfDfxDT .item {
  color: #000000;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uWjLfDfxDT .item {
    min-height: 45px;
  }
}
.cid-uWjLfDf1QZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDf1QZ .img-wrapper {
  text-align: center;
}
.cid-uWjLfDf1QZ img {
  margin: auto;
  width: 140px;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.cid-uWjLfDf1QZ .row {
  align-items: flex-start;
}
.cid-uWjLfDf1QZ .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  background: #f1ead2;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cid-uWjLfDf1QZ .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWjLfDf1QZ .item-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDf1QZ .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDf1QZ .mbr-text,
.cid-uWjLfDf1QZ .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDf1QZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDf1QZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDf1QZ .card-title {
  color: #000000;
}
.cid-uWjLfDgO7F {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDgO7F .mbr-figure iframe {
  border-radius: 2rem;
}
.cid-uWjLfDgO7F .mbr-figure .app-video-wrapper img {
  border-radius: 2rem;
}
.cid-uWjLfDgO7F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDgO7F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDgO7F .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDgtJj {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDgtJj .mbr-section-title {
  border-bottom: 2px solid currentColor;
  padding-bottom: 2rem;
  color: #000000;
}
.cid-uWjLfDgtJj .row-bg {
  align-items: center;
  background: #f1ead2;
  transition: all 0.3s;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDgtJj .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDgtJj .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-uWjLfDgtJj .image-wrapper {
    padding: 0 1rem;
  }
}
.cid-uWjLfDgtJj img {
  border-radius: 1rem;
}
.cid-uWjLfDgtJj .mbr-text,
.cid-uWjLfDgtJj .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDgtJj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDgtJj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDh4ij {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDh4ij .row-bg {
  background: #ffffff;
  margin: 0;
  padding: 0 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDh4ij .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDh4ij .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDh4ij .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDh4ij .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDh4ij .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDh4ij img,
.cid-uWjLfDh4ij .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-uWjLfDh4ij .item:focus,
.cid-uWjLfDh4ij span:focus {
  outline: none;
}
.cid-uWjLfDh4ij .item {
  cursor: pointer;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDh4ij .item:first-child {
    margin-top: 0;
  }
}
.cid-uWjLfDh4ij .card1 {
  background: #b0c4b1;
}
.cid-uWjLfDh4ij .card2 {
  background: #dedbd2;
}
.cid-uWjLfDh4ij .card3 {
  background: #edafb8;
}
.cid-uWjLfDh4ij .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-uWjLfDh4ij .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDh4ij .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDh4ij .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDh4ij .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDh4ij .item-title1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .item-title2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .item-title3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .price1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .price2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDh4ij .price3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDhu8r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDhu8r .item:focus,
.cid-uWjLfDhu8r span:focus {
  outline: none;
}
.cid-uWjLfDhu8r .item {
  cursor: pointer;
}
.cid-uWjLfDhu8r .grid-container {
  grid-row-gap: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDhu8r .grid-container {
    grid-row-gap: 1rem;
  }
}
.cid-uWjLfDhu8r .grid-container-1,
.cid-uWjLfDhu8r .grid-container-2,
.cid-uWjLfDhu8r .grid-container-3 {
  gap: 0 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDhu8r .grid-container-1,
  .cid-uWjLfDhu8r .grid-container-2,
  .cid-uWjLfDhu8r .grid-container-3 {
    gap: 0 1rem;
  }
}
.cid-uWjLfDhu8r .mbr-section-title {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDhu8r .content-head {
  max-width: 800px;
}
.cid-uWjLfDhu8r .container,
.cid-uWjLfDhu8r .container-fluid {
  overflow: hidden;
}
.cid-uWjLfDhu8r .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uWjLfDhu8r .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uWjLfDhu8r .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 1200px) {
  .cid-uWjLfDhu8r .grid-item img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uWjLfDhu8r .grid-item img {
    min-width: 35vw;
    height: 150px;
  }
}
.cid-uWjLfDhu8r .grid-container-1,
.cid-uWjLfDhu8r .grid-container-2,
.cid-uWjLfDhu8r .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uWjLfDhu8r .grid-container-1 {
  align-items: flex-end;
}
.cid-uWjLfDhu8r .grid-container-2 {
  align-items: flex-start;
}
.cid-uWjLfDizU8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDizU8 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDizU8 .mbr-text,
.cid-uWjLfDizU8 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDizU8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDizU8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDiy53 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDiy53 .row-bg {
  background: #ffffff;
  margin: 0;
  padding: 0 1rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDiy53 .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDiy53 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 10rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.cid-uWjLfDiy53 .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDiy53 .mbr-flex {
  justify-content: center;
}
.cid-uWjLfDiy53 .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .item:focus,
.cid-uWjLfDiy53 span:focus {
  outline: none;
}
.cid-uWjLfDiy53 .item {
  cursor: pointer;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDiy53 .item:first-child {
    margin-top: 0;
  }
}
.cid-uWjLfDiy53 .card1 {
  background: #edafb8;
}
.cid-uWjLfDiy53 .card1 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDiy53 .card2 {
  background: #dedbd2;
}
.cid-uWjLfDiy53 .card2 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDiy53 .card3 {
  background: #b0c4b1;
}
.cid-uWjLfDiy53 .card3 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDiy53 .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-uWjLfDiy53 .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDiy53 .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDiy53 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDiy53 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDiy53 .item-title1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .item-title2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .item-title3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDiy53 .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDiy53 .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDiy53 .price1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .price2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .price3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDiy53 .item-title1,
.cid-uWjLfDiy53 .mbr-iconfont {
  text-align: center;
}
.cid-uWjLfDiy53 .item-title1,
.cid-uWjLfDiy53 .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDiy53 .item-title2,
.cid-uWjLfDiy53 .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDiy53 .item-title3,
.cid-uWjLfDiy53 .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDj4B3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDj4B3 .inner-row {
  height: 100%;
}
.cid-uWjLfDj4B3 .line {
  border-bottom: 2px solid #000000;
  padding-top: 2rem;
}
.cid-uWjLfDj4B3 .image-wrapper {
  padding: 1rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDj4B3 .image-wrapper {
    padding: 0rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDj4B3 .card2 {
  background: #edafb8;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uWjLfDj4B3 .card2 {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDj4B3 .card3 {
  background: #ffffff;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
}
@media (max-width: 767px) {
  .cid-uWjLfDj4B3 .card3 {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDj4B3 .card-bg {
  align-items: center;
  background: #f1ead2;
  overflow: hidden;
  padding: 1rem 1rem;
  border-radius: 2rem;
  margin: 0;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDj4B3 .card-bg {
    padding: 0rem 1rem;
    padding-bottom: 1rem;
  }
}
.cid-uWjLfDj4B3 img {
  width: 100%;
  border-radius: 2rem;
}
@media (max-width: 991px) {
  .cid-uWjLfDj4B3 .align-left,
  .cid-uWjLfDj4B3 .align-right {
    text-align: center;
  }
}
.cid-uWjLfDj4B3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDj4B3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDj4B3 .mbr-card-title1 {
  color: #000000;
}
.cid-uWjLfDj4B3 .mbr-card-title2,
.cid-uWjLfDj4B3 .card-btn {
  color: #000000;
}
.cid-uWjLfDj4B3 .mbr-card-title3 {
  color: #000000;
}
.cid-uWjLfDjzW1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDjzW1 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uWjLfDjzW1 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uWjLfDjzW1 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #f1ead2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uWjLfDjzW1 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDjzW1 .mbr-text {
  color: #000000;
}
.cid-uWjLfDksTc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDksTc .mbr-text,
.cid-uWjLfDksTc .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDksTc .container {
  max-width: 1000px;
}
.cid-uWjLfDksTc .mbr-section-title {
  border-bottom: 1px solid currentColor;
  color: #000000;
  padding-bottom: 1rem;
}
.cid-uWjLfDksTc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDksTc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDkr4i {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-uWjLfDkr4i .media-container-row {
  justify-content: space-between;
}
.cid-uWjLfDkr4i .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-uWjLfDkr4i .text-content {
    max-width: none;
  }
}
.cid-uWjLfDkr4i .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #000000;
  border: 2px solid #000000;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-uWjLfDkr4i .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-uWjLfDkr4i .mbr-iconfont-social:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uWjLfDkr4i .icons {
    justify-content: center !important;
  }
  .cid-uWjLfDkr4i .text-content * {
    text-align: center;
  }
}
.cid-uWjLfDkr4i P {
  color: #696969;
}
.cid-uWjLfDkr4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDkr4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDkr4i .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDkr4i .mbr-text {
  color: #000000;
}
.cid-uWjLfDkDau {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDkDau .mbr-section-title,
.cid-uWjLfDkDau .mbr-section-subtitle {
  text-align: center;
}
.cid-uWjLfDkDau .cost {
  word-break: normal;
  margin-bottom: 0.5rem;
}
.cid-uWjLfDkDau .item-wrapper {
  margin-bottom: 2rem;
  border-radius: 2rem;
  background: #f1ead2;
  transition: all 0.3s;
}
.cid-uWjLfDkDau .item-wrapper .top-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uWjLfDkDau .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg) scale(1.03);
}
@media (min-width: 768px) {
  .cid-uWjLfDkDau .item-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uWjLfDkDau .item-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uWjLfDkDau .mbr-text {
  color: #000000;
}
.cid-uWjLfDkDau .card-price {
  color: #000000;
}
.cid-uWjLfDkDau .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDkDau .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDkDau .mbr-section-btn .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.cid-uWjLfDkDau .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDkDau .card-title {
  color: #000000;
}
.cid-uWjLfDlbRy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDlbRy .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-uWjLfDlbRy .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDlbRy .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDlbRy .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDlbRy .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDlbRy .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
}
.cid-uWjLfDlbRy img,
.cid-uWjLfDlbRy .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.cid-uWjLfDlbRy .item:focus,
.cid-uWjLfDlbRy span:focus {
  outline: none;
}
.cid-uWjLfDlbRy .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDlbRy .card1 {
  background: #edafb8;
}
.cid-uWjLfDlbRy .card2 {
  background: #dedbd2;
}
.cid-uWjLfDlbRy .card3 {
  background: #b0c4b1;
}
.cid-uWjLfDlbRy .item-wrap {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uWjLfDlbRy .item-wrap {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDlbRy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDlbRy .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDlbRy .item-title1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .item-title2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .item-title3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .price1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .price2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDlbRy .price3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDmxaH .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-uWjLfDmxaH .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDmxaH .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDmxaH .mbr-flex {
  justify-content: center;
}
.cid-uWjLfDmxaH .mbr-flex {
  justify-content: center;
}
.cid-uWjLfDmxaH .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmxaH .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmxaH .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmxaH img,
.cid-uWjLfDmxaH .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
.cid-uWjLfDmxaH .item:focus,
.cid-uWjLfDmxaH span:focus {
  outline: none;
}
.cid-uWjLfDmxaH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDmxaH .card1 {
  background: #b0c4b1;
}
.cid-uWjLfDmxaH .card2 {
  background: #dedbd2;
}
.cid-uWjLfDmxaH .card3 {
  background: #edafb8;
}
.cid-uWjLfDmxaH .item-wrap {
  position: relative;
  border-radius: 2rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uWjLfDmxaH .item-wrap {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDmxaH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDmxaH .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDmxaH .item-title1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .item-title2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .item-title3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDmxaH .price1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmxaH .price2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmxaH .price3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDmF6C {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDmF6C .title-border {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1rem;
}
.cid-uWjLfDmF6C .card {
  height: 100%;
  justify-content: space-between;
  background: #ffffff;
}
.cid-uWjLfDmF6C .mbr-section-btn {
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  margin-top: auto !important;
}
@media (max-width: 767px) {
  .cid-uWjLfDmF6C .mbr-section-btn {
    flex-direction: column;
  }
}
.cid-uWjLfDmF6C .row-bg {
  background: #b0c4b1;
  padding: 2rem 1rem;
  margin: 0;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDmF6C .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDmF6C img,
.cid-uWjLfDmF6C .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-uWjLfDmF6C .item:focus,
.cid-uWjLfDmF6C span:focus {
  outline: none;
}
.cid-uWjLfDmF6C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDmF6C .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-uWjLfDmF6C .item-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDmF6C .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDmF6C .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDmF6C .item-title1 {
  color: #000000;
}
.cid-uWjLfDmF6C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uWjLfDmF6C .item-title {
  color: #000000;
}
.cid-uWjLfDmF6C .mbr-text,
.cid-uWjLfDmF6C .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDneaR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDneaR .row-bg {
  background: #b0c4b1;
  padding: 0 1rem 2rem;
  margin: 0;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDneaR .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDneaR .item-content {
  padding: 1.5rem;
}
.cid-uWjLfDneaR .item-title {
  border-bottom: 1px solid currentColor;
  color: #000000;
  padding-bottom: 1rem;
}
.cid-uWjLfDneaR .mbr-text {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
}
.cid-uWjLfDneaR img,
.cid-uWjLfDneaR .item-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.cid-uWjLfDneaR .item:focus,
.cid-uWjLfDneaR span:focus {
  outline: none;
}
.cid-uWjLfDneaR .item {
  cursor: pointer;
  margin-top: 2rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDneaR .item:first-child {
    margin-top: 0;
  }
}
.cid-uWjLfDneaR .item-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  padding: 0rem;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uWjLfDneaR .item-wrapper {
    padding: 0rem;
  }
}
.cid-uWjLfDneaR .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDneaR .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDneaR .item-subtitle {
  color: #000000;
}
.cid-uWjLfDneaR .price {
  color: #000000;
}
.cid-uWjLfDnnG1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDnnG1 .item {
  border-radius: 0;
}
@media (min-width: 992px) {
  .cid-uWjLfDnnG1 .item:nth-child(2n) {
    border-left: 1px solid currentColor;
  }
}
@media (max-width: 991px) {
  .cid-uWjLfDnnG1 .item {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }
}
.cid-uWjLfDnnG1 .item-wrapper {
  position: relative;
  padding: 30px 0;
}
.cid-uWjLfDnnG1 .mbr-text,
.cid-uWjLfDnnG1 .mbr-section-btn {
  color: #696969;
}
.cid-uWjLfDnnG1 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDnnG1 .mbr-text,
.cid-uWjLfDnnG1 .mbr-section-btn,
.cid-uWjLfDnnG1 .card {
  color: #000000;
}
.cid-uWjLfDnnG1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDnnG1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDochH {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDochH .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDochH .mbr-text2 {
  text-decoration: underline;
  text-align: center;
  color: #000000;
}
.cid-uWjLfDochH .row-bg {
  align-items: center;
  background: #edafb8;
  padding: 8rem 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDochH .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uWjLfDochH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDochH .mbr-text,
.cid-uWjLfDochH .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDochH .mbr-text3 {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDochH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDochH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDoWUm {
  background-image: url("../../../assets/images/photo-1524292332709-b33366a7f165.jpeg");
}
.cid-uWjLfDoWUm .row {
  min-height: 500px;
}
.cid-uWjLfDoWUm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDoWUm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDpH5b {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDpH5b .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 10rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.cid-uWjLfDpH5b .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDpH5b .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .item:focus,
.cid-uWjLfDpH5b span:focus {
  outline: none;
}
.cid-uWjLfDpH5b .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDpH5b .card1 {
  background: #edafb8;
}
.cid-uWjLfDpH5b .card1 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDpH5b .card2 {
  background: #dedbd2;
}
.cid-uWjLfDpH5b .card2 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDpH5b .card3 {
  background: #b0c4b1;
}
.cid-uWjLfDpH5b .card3 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDpH5b .item-wrapper {
  position: relative;
  border-radius: 2rem;
  padding: 3rem 2rem;
  height: 100%;
  display: flex;
  transition: all 0.3s;
  flex-flow: column nowrap;
}
@media (max-width: 767px) {
  .cid-uWjLfDpH5b .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDpH5b .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDpH5b .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDpH5b .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDpH5b .item-title1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .item-title2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .item-title3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDpH5b .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .price1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .price2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .price3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDpH5b .item-title1,
.cid-uWjLfDpH5b .mbr-iconfont {
  text-align: center;
}
.cid-uWjLfDpH5b .item-title1,
.cid-uWjLfDpH5b .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDpH5b .item-title2,
.cid-uWjLfDpH5b .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDpH5b .item-title3,
.cid-uWjLfDpH5b .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDp1fG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
@media (max-width: 991px) {
  .cid-uWjLfDp1fG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDp1fG img {
  border-radius: 2rem;
  transition: all 0.3s;
}
.cid-uWjLfDp1fG img:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDp1fG .mbr-text,
.cid-uWjLfDp1fG .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDp1fG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDp1fG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDp1fG .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDqvV5 {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDqvV5 .item-wrapper {
  position: relative;
  margin-bottom: 2rem;
}
.cid-uWjLfDqvV5 img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-uWjLfDqvV5 .mbr-text {
  margin-bottom: 0;
}
.cid-uWjLfDqvV5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDqvV5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDqpJC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDqpJC .carousel-item {
  justify-content: center;
}
.cid-uWjLfDqpJC .carousel-item.active,
.cid-uWjLfDqpJC .carousel-item-next,
.cid-uWjLfDqpJC .carousel-item-prev {
  display: flex;
}
.cid-uWjLfDqpJC .carousel-controls a {
  transition: opacity 0.5s;
  font-size: 40px;
  position: absolute;
  top: 180px;
  bottom: auto;
  height: 60px;
  width: 60px;
  padding: 10px;
  color: #000000;
}
.cid-uWjLfDqpJC .carousel-controls a .mbr-iconfont {
  font-weight: 800;
}
.cid-uWjLfDqpJC .carousel-control-next span {
  padding-left: 5px;
}
.cid-uWjLfDqpJC .carousel-control-prev span {
  padding-right: 5px;
}
.cid-uWjLfDqpJC .carousel-inner {
  padding-top: 1rem;
}
.cid-uWjLfDqpJC .user_image {
  width: 225px;
  height: 225px;
  overflow: visible;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  transition: all 0.3s;
}
.cid-uWjLfDqpJC .user_image img {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  min-width: 100%;
  object-fit: cover;
  min-height: 100%;
}
.cid-uWjLfDqpJC .user_image:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
@media (max-width: 230px) {
  .cid-uWjLfDqpJC .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uWjLfDqpJC .user_text {
  color: #000000;
}
.cid-uWjLfDqpJC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDqpJC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDqpJC .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDqpJC .user_name {
  color: #000000;
}
.cid-uWjLfDqpJC .user_desk {
  color: #000000;
}
.cid-uWjLfDrHxs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDrHxs .list-group-item {
  background-color: transparent;
  padding: 0.5rem 3.25rem;
  color: #000000;
}
.cid-uWjLfDrHxs .plan-body {
  padding-bottom: 2rem;
}
.cid-uWjLfDrHxs .plan-header {
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uWjLfDrHxs .price {
  color: #000000;
}
.cid-uWjLfDrHxs .item-wrapper {
  word-break: break-word;
  background-color: #f1ead2;
  border-radius: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uWjLfDrHxs .item-wrapper .list-group-item {
  position: relative;
  justify-content: center;
  border: 0;
}
.cid-uWjLfDrHxs .item-wrapper .list-group-item::after {
  position: absolute;
  bottom: 1px;
  left: 25%;
  width: 50%;
  height: 1px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.cid-uWjLfDrHxs .item-wrapper .list-group-item:last-child::after {
  display: none;
}
.cid-uWjLfDrHxs .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDrHxs UL {
  color: #696969;
}
.cid-uWjLfDrHxs .plan-title {
  color: #000000;
}
.cid-uWjLfDrHxs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDrHxs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDrHxs .price-term {
  color: #000000;
}
.cid-uWjLfDrHxs .list-group,
.cid-uWjLfDrHxs .list-group-item {
  color: #000000;
}
.cid-uWjLfDrRi0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDrRi0 .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-left: 1rem;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}
.cid-uWjLfDrRi0 .panel-group {
  border: none;
}
.cid-uWjLfDrRi0 .card-header {
  border: none;
}
.cid-uWjLfDrRi0 .card {
  background: #b0c4b1;
  border: 1px solid #fcfbfb;
  padding: 2rem 4rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDrRi0 .card {
    padding: 0 1rem;
  }
}
.cid-uWjLfDrRi0 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDrRi0 .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-uWjLfDrRi0 .panel-body,
.cid-uWjLfDrRi0 .card-header {
  padding: 1rem 0;
}
.cid-uWjLfDrRi0 .panel-title-edit {
  color: #000000;
}
.cid-uWjLfDrRi0 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uWjLfDrRi0 .panel-title-edit,
.cid-uWjLfDrRi0 .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDrRi0 .panel-text {
  color: #000000;
}
.cid-uWjLfDrRi0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDrRi0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDrRi0 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDs1ZD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #b0c4b1;
}
.cid-uWjLfDs1ZD h1 {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2rem;
}
.cid-uWjLfDs1ZD .row {
  align-items: center;
  background: #fcfbfb;
  overflow: hidden;
  padding: 0rem;
  border: 2px solid #fcfbfb;
  border-radius: 2rem;
  margin: 0;
  padding-bottom: 2rem;
}
.cid-uWjLfDs1ZD .col-lg-6 {
  padding: 0 2rem;
}
.cid-uWjLfDs1ZD .image-wrapper {
  padding: 2rem;
}
@media (max-width: 991px) {
  .cid-uWjLfDs1ZD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uWjLfDs1ZD img {
  width: 100%;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #000000;
}
@media (max-width: 991px) {
  .cid-uWjLfDs1ZD .align-left,
  .cid-uWjLfDs1ZD .align-right {
    text-align: center;
  }
}
.cid-uWjLfDs1ZD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDs1ZD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDsOm9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDsOm9 .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  background: #f1ead2;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWjLfDsOm9 .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-uWjLfDsOm9 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uWjLfDsOm9 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uWjLfDsOm9 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uWjLfDsOm9 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uWjLfDsOm9 img,
.cid-uWjLfDsOm9 .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uWjLfDsOm9 .item:focus,
.cid-uWjLfDsOm9 span:focus {
  outline: none;
}
.cid-uWjLfDsOm9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDsOm9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDsOm9 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDsOm9 .mbr-text,
.cid-uWjLfDsOm9 .mbr-section-btn {
  text-align: center;
}
.cid-uWjLfDsOm9 .item-title {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDsOm9 .item-subtitle {
  text-align: center;
  color: #000000;
}
.cid-uWjLfDthiq {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDthiq .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uWjLfDthiq .container {
    max-width: 1400px;
  }
}
.cid-uWjLfDthiq .card {
  margin: auto;
}
.cid-uWjLfDthiq .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #000000;
  margin-bottom: 2rem;
}
.cid-uWjLfDthiq .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uWjLfDthiq .row {
  justify-content: center;
}
.cid-uWjLfDthiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDthiq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDthiq .card-title,
.cid-uWjLfDthiq .card-box {
  color: #000000;
}
.cid-uWjLfDvrfX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDvrfX .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 10rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.cid-uWjLfDvrfX .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDvrfX .mbr-flex {
  justify-content: center;
}
.cid-uWjLfDvrfX .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .item:focus,
.cid-uWjLfDvrfX span:focus {
  outline: none;
}
.cid-uWjLfDvrfX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDvrfX .card1 {
  background: #b0c4b1;
}
.cid-uWjLfDvrfX .card1 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDvrfX .card2 {
  background: #dedbd2;
}
.cid-uWjLfDvrfX .card2 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDvrfX .card3 {
  background: #edafb8;
}
.cid-uWjLfDvrfX .card3 .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-uWjLfDvrfX .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-uWjLfDvrfX .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDvrfX .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDvrfX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDvrfX .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDvrfX .item-title1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .item-title2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .item-title3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDvrfX .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDvrfX .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDvrfX .price1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .price2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .price3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDvrfX .item-title1,
.cid-uWjLfDvrfX .mbr-iconfont {
  text-align: center;
}
.cid-uWjLfDvrfX .item-title1,
.cid-uWjLfDvrfX .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDvrfX .mbr-text1,
.cid-uWjLfDvrfX .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDvrfX .item-title2,
.cid-uWjLfDvrfX .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDvrfX .mbr-text2,
.cid-uWjLfDvrfX .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDvrfX .item-title3,
.cid-uWjLfDvrfX .iconfont-wrapper {
  color: #000000;
}
.cid-uWjLfDvrfX .mbr-text3,
.cid-uWjLfDvrfX .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDwmg5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDwmg5 .row-bg {
  align-items: center;
  background: #f1ead2;
  transition: all 0.3s;
  padding: 3rem;
  border-radius: 2rem;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uWjLfDwmg5 .row-bg {
    padding: 1rem 0;
    padding-top: 2rem;
  }
}
.cid-uWjLfDwmg5 .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-uWjLfDwmg5 .image-wrapper {
    padding: 0 1rem;
  }
}
.cid-uWjLfDwmg5 img {
  border-radius: 1rem;
}
.cid-uWjLfDwmg5 .mbr-text,
.cid-uWjLfDwmg5 .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDwmg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDwmg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDwmg5 .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDwmg5 .mbr-role {
  color: #000000;
}
.cid-uWjLfDw5jy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDw5jy .mbr-text,
.cid-uWjLfDw5jy .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDw5jy .container {
  max-width: 1000px;
}
.cid-uWjLfDw5jy .mbr-section-title {
  border-bottom: 1px solid currentColor;
  color: #000000;
  padding-bottom: 1rem;
}
.cid-uWjLfDw5jy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDw5jy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDxaAS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDxaAS img {
  width: 120px;
  margin: auto;
  object-fit: cover;
  height: 65px;
}
.cid-uWjLfDxaAS .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-uWjLfDxaAS .card {
    max-width: 12.5%;
  }
}
.cid-uWjLfDxKYD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDxKYD .mbr-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWjLfDxKYD .mbr-flex {
  justify-content: center;
}
.cid-uWjLfDxKYD .mbr-text1 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD .mbr-text2 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD .mbr-text3 {
  border-top: 1px solid currentColor;
  padding-top: 1rem;
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD img,
.cid-uWjLfDxKYD .item-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1rem;
}
.cid-uWjLfDxKYD .item:focus,
.cid-uWjLfDxKYD span:focus {
  outline: none;
}
.cid-uWjLfDxKYD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uWjLfDxKYD .card1 {
  background: #edafb8;
}
.cid-uWjLfDxKYD .card2 {
  background: #dedbd2;
}
.cid-uWjLfDxKYD .card3 {
  background: #b0c4b1;
}
.cid-uWjLfDxKYD .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-uWjLfDxKYD .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-uWjLfDxKYD .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg) scale(1.03);
}
.cid-uWjLfDxKYD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDxKYD .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDxKYD .item-title1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .item-title2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .item-title3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .item-subtitle1 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .item-subtitle2 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .item-subtitle3 {
  color: #000000;
  text-align: center;
}
.cid-uWjLfDxKYD .price1 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD .price2 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD .price3 {
  color: #121212;
  text-align: center;
}
.cid-uWjLfDxKYD .mbr-text1,
.cid-uWjLfDxKYD .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDxKYD .mbr-text2,
.cid-uWjLfDxKYD .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDxKYD .mbr-text3,
.cid-uWjLfDxKYD .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDyezm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
@media (max-width: 767px) {
  .cid-uWjLfDyezm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uWjLfDyezm .card-box {
    padding: 1rem 2rem 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uWjLfDyezm .card-box {
    padding: 1rem 4rem 1rem 2rem;
  }
}
.cid-uWjLfDyezm .item-wrapper {
  border-radius: 2rem;
  background-color: #f1ead2;
  transition: all 0.3s;
}
.cid-uWjLfDyezm .item-wrapper:hover {
  box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.3);
  transform: rotate(-1deg) scale(1.03);
}
.cid-uWjLfDyezm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uWjLfDyezm .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uWjLfDyezm .mbr-text {
  color: #000000;
}
.cid-uWjLfDyezm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDyezm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDyezm .card-title {
  color: #000000;
}
.cid-uWjLfDyezm .price {
  color: #000000;
}
.cid-uWjLfDyA7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDyA7k .row-bg {
  background: #b0c4b1;
  margin: 0;
  padding: 2rem 1rem;
  padding-bottom: 0;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDyA7k .row-bg {
    padding: 1rem 0;
  }
}
.cid-uWjLfDyA7k .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uWjLfDyA7k .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-uWjLfDyA7k .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uWjLfDyA7k .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uWjLfDyA7k .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uWjLfDyA7k .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uWjLfDyA7k img,
.cid-uWjLfDyA7k .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uWjLfDyA7k .item:focus,
.cid-uWjLfDyA7k span:focus {
  outline: none;
}
.cid-uWjLfDyA7k .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDyA7k .item:last-child {
    margin-bottom: 0;
  }
}
.cid-uWjLfDyA7k .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uWjLfDyA7k .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDyA7k .item-subtitle {
  color: #000000;
}
.cid-uWjLfDyA7k .mbr-section-subtitle {
  color: #000000;
}
.cid-uWjLfDyA7k .item-title {
  color: #000000;
}
.cid-uWjLfDyA7k .mbr-text,
.cid-uWjLfDyA7k .mbr-section-btn {
  color: #000000;
}
.cid-uWjLfDz3ej {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDz3ej .container {
  max-width: 1000px;
}
.cid-uWjLfDz3ej .mbr-text {
  color: #000000;
}
.cid-uWjLfDz3ej .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDzLUI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDzLUI .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uWjLfDzLUI form .mbr-section-btn .btn {
  display: inline-flex;
  border-radius: 2rem;
}
.cid-uWjLfDzLUI input,
.cid-uWjLfDzLUI textarea {
  border-radius: 0.5rem;
}
.cid-uWjLfDzLUI textarea {
  min-height: 10rem;
}
.cid-uWjLfDzLUI .mbr-form {
  background: #edafb8;
  border-radius: 2rem;
  padding: 3rem;
}
@media (max-width: 767px) {
  .cid-uWjLfDzLUI .mbr-form {
    padding: 2rem 1rem;
  }
}
.cid-uWjLfDzLUI .form-control:hover,
.cid-uWjLfDzLUI .form-control:focus {
  border-color: transparent !important;
}
.cid-uWjLfDzLUI .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDzBoZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f9f9f9;
}
.cid-uWjLfDzBoZ .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uWjLfDzBoZ .item-wrapper {
  border-radius: 2rem;
  transition: all 0.3s;
  margin-bottom: 2rem;
  display: flex;
  background: #f1ead2;
}
.cid-uWjLfDzBoZ .item-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-uWjLfDzBoZ .item-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uWjLfDzBoZ .item-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uWjLfDzBoZ .mbr-iconfont {
  font-size: 4rem;
  padding-right: 2rem;
  color: #000000;
}
@media (max-width: 767px) {
  .cid-uWjLfDzBoZ .mbr-iconfont {
    font-size: 2.8rem;
  }
}
.cid-uWjLfDzBoZ .mbr-section-subtitle {
  color: #000000;
}
.cid-uWjLfDzBoZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWjLfDzBoZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWjLfDzBoZ .mbr-section-title {
  color: #000000;
}
.cid-uWjLfDzBoZ .card-title {
  color: #000000;
}
.cid-uWjLfDzBoZ .mbr-text {
  color: #000000;
}
.cid-uWjLfDAu5R {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #b0c4b1;
  overflow: hidden;
}
.cid-uWjLfDAu5R .media-container-row .mbr-text {
  color: #000000;
}
