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





body {
  font-family: Poppins;
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.display-5 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,2s;
  transition-timing-function: ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn .mbr-iconfont {
  font-size: 1.6rem;
}
.btn-sm {
  border: 1px solid;
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #e50039;
  border-color: #e50039;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #000000;
  border-color: #000000;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #000000;
  border-color: #000000;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ff3366;
  border-color: #ff3366;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #cc0033;
  color: #cc0033 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  transform: scale(10);
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s,.3s,.3s,.8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #fff;
  width: 2px;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  transform: rotate(135deg);
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .mbr-arrow {
    display: none;
  }
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1.1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #000000;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #000000;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #000000;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #000000;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #000000;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.dropup .dropdown-toggle::after {
  display: none;
}
.cid-qU62HWjia0 .container-fluid {
  padding: 0 3rem;
}
.cid-qU62HWjia0 .media-container-column {
  padding: 0 2rem;
}
.cid-qU62HWjia0 .mbr-section-title {
  display: inline-block;
  position: relative;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-qU62HWjia0 .container-fluid {
    padding: 0 1rem;
  }
}
.cid-qU62HWjia0 .mbr-section-subtitle {
  text-align: left;
  color: #ff3366;
}
.cid-qU62HWjia0 .mbr-section-subtitle B {
  color: #ffbc00;
}
.cid-qVrkVEA1k5 {
  padding-top: 90px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrkVEA1k5 .container-fluid {
  padding: 0 3rem;
}
.cid-qVrkVEA1k5 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrkVEA1k5 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrkVEA1k5 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrkVEA1k5 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrkVEA1k5 .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrkVEA1k5 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrkVEA1k5 .content-section {
  padding: 3rem;
}
.cid-qVrkVEA1k5 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrkVEA1k5 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrkVEA1k5 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrkVEA1k5 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrkVEA1k5 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrkVEA1k5 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrkVEA1k5 .mbr-text {
  text-align: center;
}
.cid-qVrku7MbRX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrku7MbRX .container-fluid {
  padding: 0 3rem;
}
.cid-qVrku7MbRX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrku7MbRX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrku7MbRX .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrku7MbRX .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrku7MbRX .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrku7MbRX .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrku7MbRX .content-section {
  padding: 3rem;
}
.cid-qVrku7MbRX .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrku7MbRX .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrku7MbRX .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrku7MbRX .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrku7MbRX .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrku7MbRX .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrku7MbRX .mbr-text {
  text-align: center;
}
.cid-qVrk0SrcLo {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrk0SrcLo .container-fluid {
  padding: 0 3rem;
}
.cid-qVrk0SrcLo .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrk0SrcLo .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrk0SrcLo .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrk0SrcLo .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrk0SrcLo .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrk0SrcLo .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrk0SrcLo .content-section {
  padding: 3rem;
}
.cid-qVrk0SrcLo .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrk0SrcLo .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrk0SrcLo .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrk0SrcLo .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrk0SrcLo .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrk0SrcLo .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrk0SrcLo .mbr-text {
  text-align: center;
}
.cid-qVrjm40u75 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrjm40u75 .container-fluid {
  padding: 0 3rem;
}
.cid-qVrjm40u75 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrjm40u75 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrjm40u75 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrjm40u75 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrjm40u75 .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrjm40u75 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrjm40u75 .content-section {
  padding: 3rem;
}
.cid-qVrjm40u75 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrjm40u75 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrjm40u75 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrjm40u75 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrjm40u75 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrjm40u75 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrjm40u75 .mbr-text {
  text-align: center;
}
.cid-qVrivNcT9d {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrivNcT9d .container-fluid {
  padding: 0 3rem;
}
.cid-qVrivNcT9d .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrivNcT9d .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrivNcT9d .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrivNcT9d .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrivNcT9d .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrivNcT9d .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrivNcT9d .content-section {
  padding: 3rem;
}
.cid-qVrivNcT9d .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrivNcT9d .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrivNcT9d .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrivNcT9d .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrivNcT9d .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrivNcT9d .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrivNcT9d .mbr-text {
  text-align: center;
}
.cid-qVrhZYjJj0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrhZYjJj0 .container-fluid {
  padding: 0 3rem;
}
.cid-qVrhZYjJj0 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrhZYjJj0 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrhZYjJj0 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrhZYjJj0 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrhZYjJj0 .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrhZYjJj0 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrhZYjJj0 .content-section {
  padding: 3rem;
}
.cid-qVrhZYjJj0 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrhZYjJj0 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrhZYjJj0 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrhZYjJj0 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrhZYjJj0 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrhZYjJj0 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrhZYjJj0 .mbr-text {
  text-align: center;
}
.cid-qVrgOTbJ0f {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrgOTbJ0f .container-fluid {
  padding: 0 3rem;
}
.cid-qVrgOTbJ0f .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrgOTbJ0f .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrgOTbJ0f .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrgOTbJ0f .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrgOTbJ0f .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrgOTbJ0f .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrgOTbJ0f .content-section {
  padding: 3rem;
}
.cid-qVrgOTbJ0f .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrgOTbJ0f .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrgOTbJ0f .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrgOTbJ0f .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrgOTbJ0f .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrgOTbJ0f .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrgOTbJ0f .mbr-text {
  text-align: center;
}
.cid-qVrgpM2gI9 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrgpM2gI9 .container-fluid {
  padding: 0 3rem;
}
.cid-qVrgpM2gI9 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrgpM2gI9 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrgpM2gI9 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrgpM2gI9 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrgpM2gI9 .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrgpM2gI9 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrgpM2gI9 .content-section {
  padding: 3rem;
}
.cid-qVrgpM2gI9 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrgpM2gI9 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrgpM2gI9 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrgpM2gI9 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrgpM2gI9 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrgpM2gI9 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrgpM2gI9 .mbr-text {
  text-align: center;
}
.cid-qVrg5Lpqxx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrg5Lpqxx .container-fluid {
  padding: 0 3rem;
}
.cid-qVrg5Lpqxx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrg5Lpqxx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrg5Lpqxx .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrg5Lpqxx .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrg5Lpqxx .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrg5Lpqxx .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrg5Lpqxx .content-section {
  padding: 3rem;
}
.cid-qVrg5Lpqxx .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrg5Lpqxx .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrg5Lpqxx .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrg5Lpqxx .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrg5Lpqxx .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrg5Lpqxx .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrg5Lpqxx .mbr-text {
  text-align: center;
}
.cid-qVrftnojK3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrftnojK3 .container-fluid {
  padding: 0 3rem;
}
.cid-qVrftnojK3 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrftnojK3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrftnojK3 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrftnojK3 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrftnojK3 .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrftnojK3 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrftnojK3 .content-section {
  padding: 3rem;
}
.cid-qVrftnojK3 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrftnojK3 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrftnojK3 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrftnojK3 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrftnojK3 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrftnojK3 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrftnojK3 .mbr-text {
  text-align: center;
}
.cid-qVrf5StynB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrf5StynB .container-fluid {
  padding: 0 3rem;
}
.cid-qVrf5StynB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrf5StynB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrf5StynB .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrf5StynB .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrf5StynB .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrf5StynB .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrf5StynB .content-section {
  padding: 3rem;
}
.cid-qVrf5StynB .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrf5StynB .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrf5StynB .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrf5StynB .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrf5StynB .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrf5StynB .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrf5StynB .mbr-text {
  text-align: center;
}
.cid-qVrbvgV5WX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qVrbvgV5WX .container-fluid {
  padding: 0 3rem;
}
.cid-qVrbvgV5WX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qVrbvgV5WX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qVrbvgV5WX .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qVrbvgV5WX .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qVrbvgV5WX .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qVrbvgV5WX .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qVrbvgV5WX .content-section {
  padding: 3rem;
}
.cid-qVrbvgV5WX .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qVrbvgV5WX .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qVrbvgV5WX .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qVrbvgV5WX .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qVrbvgV5WX .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qVrbvgV5WX .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qVrbvgV5WX .mbr-text {
  text-align: center;
}
.cid-qU62rp9IBB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU62rp9IBB .container-fluid {
  padding: 0 3rem;
}
.cid-qU62rp9IBB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU62rp9IBB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU62rp9IBB .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU62rp9IBB .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU62rp9IBB .image-wrap img {
  width: 100%;
  max-height: 700px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU62rp9IBB .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU62rp9IBB .content-section {
  padding: 3rem;
}
.cid-qU62rp9IBB .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU62rp9IBB .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU62rp9IBB .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU62rp9IBB .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU62rp9IBB .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU62rp9IBB .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU62rp9IBB .mbr-text {
  text-align: center;
}
.cid-qU64fpqpEE {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU64fpqpEE .container-fluid {
  padding: 0 3rem;
}
.cid-qU64fpqpEE .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU64fpqpEE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU64fpqpEE .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU64fpqpEE .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU64fpqpEE .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU64fpqpEE .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU64fpqpEE .content-section {
  padding: 3rem;
}
.cid-qU64fpqpEE .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU64fpqpEE .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU64fpqpEE .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU64fpqpEE .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU64fpqpEE .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU64fpqpEE .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU64fpqpEE .mbr-text {
  text-align: center;
}
.cid-qU654bvmhl {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU654bvmhl .container-fluid {
  padding: 0 3rem;
}
.cid-qU654bvmhl .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU654bvmhl .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU654bvmhl .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU654bvmhl .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU654bvmhl .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU654bvmhl .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU654bvmhl .content-section {
  padding: 3rem;
}
.cid-qU654bvmhl .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU654bvmhl .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU654bvmhl .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU654bvmhl .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU654bvmhl .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU654bvmhl .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU654bvmhl .mbr-text {
  text-align: center;
}
.cid-qU6dEonQPQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6dEonQPQ .container-fluid {
  padding: 0 3rem;
}
.cid-qU6dEonQPQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6dEonQPQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6dEonQPQ .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6dEonQPQ .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6dEonQPQ .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6dEonQPQ .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6dEonQPQ .content-section {
  padding: 3rem;
}
.cid-qU6dEonQPQ .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6dEonQPQ .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6dEonQPQ .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6dEonQPQ .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6dEonQPQ .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6dEonQPQ .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6dEonQPQ .mbr-text {
  text-align: center;
}
.cid-qU6e7DCPfQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6e7DCPfQ .container-fluid {
  padding: 0 3rem;
}
.cid-qU6e7DCPfQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6e7DCPfQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6e7DCPfQ .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6e7DCPfQ .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6e7DCPfQ .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6e7DCPfQ .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6e7DCPfQ .content-section {
  padding: 3rem;
}
.cid-qU6e7DCPfQ .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6e7DCPfQ .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6e7DCPfQ .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6e7DCPfQ .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6e7DCPfQ .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6e7DCPfQ .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6e7DCPfQ .mbr-text {
  text-align: center;
}
.cid-qU6ernzkHB {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6ernzkHB .container-fluid {
  padding: 0 3rem;
}
.cid-qU6ernzkHB .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6ernzkHB .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6ernzkHB .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6ernzkHB .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6ernzkHB .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6ernzkHB .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6ernzkHB .content-section {
  padding: 3rem;
}
.cid-qU6ernzkHB .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6ernzkHB .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6ernzkHB .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6ernzkHB .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6ernzkHB .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6ernzkHB .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6ernzkHB .mbr-text {
  text-align: center;
}
.cid-qU6eQkdCO7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6eQkdCO7 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6eQkdCO7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6eQkdCO7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6eQkdCO7 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6eQkdCO7 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6eQkdCO7 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6eQkdCO7 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6eQkdCO7 .content-section {
  padding: 3rem;
}
.cid-qU6eQkdCO7 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6eQkdCO7 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6eQkdCO7 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6eQkdCO7 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6eQkdCO7 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6eQkdCO7 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6eQkdCO7 .mbr-text {
  text-align: center;
}
.cid-qU6fiwLblS {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6fiwLblS .container-fluid {
  padding: 0 3rem;
}
.cid-qU6fiwLblS .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6fiwLblS .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6fiwLblS .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6fiwLblS .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6fiwLblS .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6fiwLblS .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6fiwLblS .content-section {
  padding: 3rem;
}
.cid-qU6fiwLblS .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6fiwLblS .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6fiwLblS .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6fiwLblS .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6fiwLblS .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6fiwLblS .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6fiwLblS .mbr-text {
  text-align: center;
}
.cid-qU6geSVviO {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6geSVviO .container-fluid {
  padding: 0 3rem;
}
.cid-qU6geSVviO .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6geSVviO .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6geSVviO .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6geSVviO .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6geSVviO .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6geSVviO .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6geSVviO .content-section {
  padding: 3rem;
}
.cid-qU6geSVviO .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6geSVviO .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6geSVviO .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6geSVviO .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6geSVviO .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6geSVviO .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6geSVviO .mbr-text {
  text-align: center;
}
.cid-qU6gL7VYTL {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6gL7VYTL .container-fluid {
  padding: 0 3rem;
}
.cid-qU6gL7VYTL .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6gL7VYTL .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6gL7VYTL .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6gL7VYTL .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6gL7VYTL .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6gL7VYTL .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6gL7VYTL .content-section {
  padding: 3rem;
}
.cid-qU6gL7VYTL .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6gL7VYTL .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6gL7VYTL .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6gL7VYTL .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6gL7VYTL .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6gL7VYTL .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6gL7VYTL .mbr-text {
  text-align: center;
}
.cid-qU6lGR0KyN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6lGR0KyN .container-fluid {
  padding: 0 3rem;
}
.cid-qU6lGR0KyN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6lGR0KyN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6lGR0KyN .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6lGR0KyN .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6lGR0KyN .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6lGR0KyN .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6lGR0KyN .content-section {
  padding: 3rem;
}
.cid-qU6lGR0KyN .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6lGR0KyN .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6lGR0KyN .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6lGR0KyN .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6lGR0KyN .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6lGR0KyN .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6lGR0KyN .mbr-text {
  text-align: center;
}
.cid-qU6mjPgZRX {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6mjPgZRX .container-fluid {
  padding: 0 3rem;
}
.cid-qU6mjPgZRX .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6mjPgZRX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6mjPgZRX .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6mjPgZRX .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6mjPgZRX .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6mjPgZRX .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6mjPgZRX .content-section {
  padding: 3rem;
}
.cid-qU6mjPgZRX .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6mjPgZRX .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6mjPgZRX .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6mjPgZRX .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6mjPgZRX .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6mjPgZRX .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6mjPgZRX .mbr-text {
  text-align: center;
}
.cid-qU6mLPob5t {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6mLPob5t .container-fluid {
  padding: 0 3rem;
}
.cid-qU6mLPob5t .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6mLPob5t .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6mLPob5t .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6mLPob5t .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6mLPob5t .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6mLPob5t .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6mLPob5t .content-section {
  padding: 3rem;
}
.cid-qU6mLPob5t .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6mLPob5t .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6mLPob5t .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6mLPob5t .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6mLPob5t .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6mLPob5t .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6mLPob5t .mbr-text {
  text-align: center;
}
.cid-qU6ncyETSs {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6ncyETSs .container-fluid {
  padding: 0 3rem;
}
.cid-qU6ncyETSs .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6ncyETSs .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6ncyETSs .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6ncyETSs .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6ncyETSs .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6ncyETSs .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6ncyETSs .content-section {
  padding: 3rem;
}
.cid-qU6ncyETSs .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6ncyETSs .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6ncyETSs .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6ncyETSs .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6ncyETSs .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6ncyETSs .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6ncyETSs .mbr-text {
  text-align: center;
}
.cid-qU6zrq3AZ7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6zrq3AZ7 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6zrq3AZ7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6zrq3AZ7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6zrq3AZ7 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6zrq3AZ7 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6zrq3AZ7 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6zrq3AZ7 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6zrq3AZ7 .content-section {
  padding: 3rem;
}
.cid-qU6zrq3AZ7 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6zrq3AZ7 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6zrq3AZ7 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6zrq3AZ7 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6zrq3AZ7 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6zrq3AZ7 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6zrq3AZ7 .mbr-text {
  text-align: center;
}
.cid-qU6A15c5dQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6A15c5dQ .container-fluid {
  padding: 0 3rem;
}
.cid-qU6A15c5dQ .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6A15c5dQ .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6A15c5dQ .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6A15c5dQ .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6A15c5dQ .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6A15c5dQ .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6A15c5dQ .content-section {
  padding: 3rem;
}
.cid-qU6A15c5dQ .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6A15c5dQ .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6A15c5dQ .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6A15c5dQ .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6A15c5dQ .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6A15c5dQ .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6A15c5dQ .mbr-text {
  text-align: center;
}
.cid-qU6BN2R5V7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6BN2R5V7 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6BN2R5V7 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6BN2R5V7 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6BN2R5V7 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6BN2R5V7 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6BN2R5V7 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6BN2R5V7 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6BN2R5V7 .content-section {
  padding: 3rem;
}
.cid-qU6BN2R5V7 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6BN2R5V7 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6BN2R5V7 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6BN2R5V7 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6BN2R5V7 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6BN2R5V7 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6BN2R5V7 .mbr-text {
  text-align: center;
}
.cid-qU6ClOHni6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6ClOHni6 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6ClOHni6 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6ClOHni6 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6ClOHni6 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6ClOHni6 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6ClOHni6 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6ClOHni6 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6ClOHni6 .content-section {
  padding: 3rem;
}
.cid-qU6ClOHni6 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6ClOHni6 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6ClOHni6 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6ClOHni6 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6ClOHni6 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6ClOHni6 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6ClOHni6 .mbr-text {
  text-align: center;
}
.cid-qU6CK3jE2m {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6CK3jE2m .container-fluid {
  padding: 0 3rem;
}
.cid-qU6CK3jE2m .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6CK3jE2m .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6CK3jE2m .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6CK3jE2m .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6CK3jE2m .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6CK3jE2m .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6CK3jE2m .content-section {
  padding: 3rem;
}
.cid-qU6CK3jE2m .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6CK3jE2m .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6CK3jE2m .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6CK3jE2m .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6CK3jE2m .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6CK3jE2m .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6CK3jE2m .mbr-text {
  text-align: center;
}
.cid-qU6DdB8BC8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6DdB8BC8 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6DdB8BC8 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6DdB8BC8 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6DdB8BC8 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6DdB8BC8 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6DdB8BC8 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6DdB8BC8 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6DdB8BC8 .content-section {
  padding: 3rem;
}
.cid-qU6DdB8BC8 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6DdB8BC8 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6DdB8BC8 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6DdB8BC8 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6DdB8BC8 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6DdB8BC8 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6DdB8BC8 .mbr-text {
  text-align: center;
}
.cid-qU6DEbku7Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6DEbku7Y .container-fluid {
  padding: 0 3rem;
}
.cid-qU6DEbku7Y .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6DEbku7Y .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6DEbku7Y .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6DEbku7Y .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6DEbku7Y .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6DEbku7Y .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6DEbku7Y .content-section {
  padding: 3rem;
}
.cid-qU6DEbku7Y .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6DEbku7Y .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6DEbku7Y .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6DEbku7Y .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6DEbku7Y .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6DEbku7Y .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6DEbku7Y .mbr-text {
  text-align: center;
}
.cid-qU6E2KBJ8x {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6E2KBJ8x .container-fluid {
  padding: 0 3rem;
}
.cid-qU6E2KBJ8x .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6E2KBJ8x .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6E2KBJ8x .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6E2KBJ8x .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6E2KBJ8x .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6E2KBJ8x .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6E2KBJ8x .content-section {
  padding: 3rem;
}
.cid-qU6E2KBJ8x .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6E2KBJ8x .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6E2KBJ8x .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6E2KBJ8x .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6E2KBJ8x .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6E2KBJ8x .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6E2KBJ8x .mbr-text {
  text-align: center;
}
.cid-qU6Erk5Avc {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6Erk5Avc .container-fluid {
  padding: 0 3rem;
}
.cid-qU6Erk5Avc .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6Erk5Avc .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6Erk5Avc .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6Erk5Avc .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6Erk5Avc .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6Erk5Avc .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6Erk5Avc .content-section {
  padding: 3rem;
}
.cid-qU6Erk5Avc .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6Erk5Avc .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6Erk5Avc .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6Erk5Avc .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6Erk5Avc .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6Erk5Avc .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6Erk5Avc .mbr-text {
  text-align: center;
}
.cid-qU6EO573k1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6EO573k1 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6EO573k1 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6EO573k1 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6EO573k1 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6EO573k1 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6EO573k1 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6EO573k1 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6EO573k1 .content-section {
  padding: 3rem;
}
.cid-qU6EO573k1 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6EO573k1 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6EO573k1 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6EO573k1 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6EO573k1 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6EO573k1 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6EO573k1 .mbr-text {
  text-align: center;
}
.cid-qU6F94smVN {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6F94smVN .container-fluid {
  padding: 0 3rem;
}
.cid-qU6F94smVN .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6F94smVN .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6F94smVN .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6F94smVN .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6F94smVN .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6F94smVN .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6F94smVN .content-section {
  padding: 3rem;
}
.cid-qU6F94smVN .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6F94smVN .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6F94smVN .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6F94smVN .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6F94smVN .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6F94smVN .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6F94smVN .mbr-text {
  text-align: center;
}
.cid-qU6FF92gG2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6FF92gG2 .container-fluid {
  padding: 0 3rem;
}
.cid-qU6FF92gG2 .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6FF92gG2 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6FF92gG2 .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6FF92gG2 .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6FF92gG2 .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6FF92gG2 .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6FF92gG2 .content-section {
  padding: 3rem;
}
.cid-qU6FF92gG2 .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6FF92gG2 .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6FF92gG2 .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6FF92gG2 .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6FF92gG2 .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6FF92gG2 .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6FF92gG2 .mbr-text {
  text-align: center;
}
.cid-qU6G7ZDSaj {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6G7ZDSaj .container-fluid {
  padding: 0 3rem;
}
.cid-qU6G7ZDSaj .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6G7ZDSaj .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6G7ZDSaj .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6G7ZDSaj .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6G7ZDSaj .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6G7ZDSaj .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6G7ZDSaj .content-section {
  padding: 3rem;
}
.cid-qU6G7ZDSaj .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6G7ZDSaj .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6G7ZDSaj .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6G7ZDSaj .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6G7ZDSaj .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6G7ZDSaj .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6G7ZDSaj .mbr-text {
  text-align: center;
}
.cid-qU6GwiEuqx {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-qU6GwiEuqx .container-fluid {
  padding: 0 3rem;
}
.cid-qU6GwiEuqx .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-qU6GwiEuqx .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #000000, #ff3366);
  display: inline-block;
}
.cid-qU6GwiEuqx .title-wrap {
  padding-left: 0;
  padding-right: 0;
  max-width: 1000px;
}
.cid-qU6GwiEuqx .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-qU6GwiEuqx .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-qU6GwiEuqx .image-wrap img:hover {
  transform: scale(1.05);
}
.cid-qU6GwiEuqx .content-section {
  padding: 3rem;
}
.cid-qU6GwiEuqx .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-qU6GwiEuqx .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #efefef;
  padding: 0rem;
  z-index: 10;
  border-radius: 0px;
  margin-bottom: 3rem;
  max-width: 1000px;
}
@media (max-width: 1200px) {
  .cid-qU6GwiEuqx .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-qU6GwiEuqx .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-qU6GwiEuqx .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-qU6GwiEuqx .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-qU6GwiEuqx .mbr-text {
  text-align: center;
}
