* {
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

html,
body {
  font-family: "Jost", sans-serif;
  color: black;
  background-color: white;
}

.text-primary {
  color: #431888 !important;
}

.text-light {
  color: #c8badc !important;
}

.bg-primary {
  background-color: #431888 !important;
}

.text-dark {
  color: #404040 !important;
}

.text-pink {
  color: #ec6ab4 !important;
}

.fui-btn-pink {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: white !important;
  background-color: #ec6ab4;
  font-size: 14px;
  padding: 12px 25px;
}

.fui-btn-pink:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.grid-center {
  display: -ms-grid !important;
  display: grid !important;
  place-items: center !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.title-1 {
  font-size: 26px;
}

@media (max-width: 768px) {
  .title-1 {
    font-size: 22px;
  }
}

.title-2 {
  font-size: 36px;
}

@media (max-width: 768px) {
  .title-2 {
    font-size: 30px;
  }
}

@media (max-width: 448px) {
  .title-2 {
    font-size: 26px;
  }
}

.title-3 {
  font-size: 40px;
}

@media (max-width: 768px) {
  .title-3 {
    font-size: 36px;
  }
}

@media (max-width: 448px) {
  .title-3 {
    font-size: 30px;
  }
}

.title-4 {
  font-size: 46px;
}

@media (max-width: 768px) {
  .title-4 {
    font-size: 40px;
  }
}

@media (max-width: 448px) {
  .title-4 {
    font-size: 34px;
  }
}

header {
  border-bottom: 2px solid #4b21a1;
  overflow: hidden;
}

header .fui-navbar {
  padding: 25px 50px;
  background-color: #431888;
}

header .fui-navbar .fui-brand::before {
  z-index: 1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #461989;
}

@media (max-width: 992px) {
  header .fui-navbar .fui-brand::before {
    width: 200px;
  }
}

header .fui-navbar .fui-brand a {
  position: relative;
  z-index: 3;
}

header .fui-navbar .fui-brand a img {
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

@media (max-width: 992px) {
  header .fui-navbar .fui-brand a img {
    max-width: 150px;
  }
}

header .fui-navbar .fui-menu.bg-gradient {
  position: relative;
}

header .fui-navbar .fui-menu.bg-gradient::before {
  z-index: 2;
  content: "";
  position: absolute;
  width: 140%;
  height: 500%;
  background: #3f1687;
  background: linear-gradient(260deg, #3f1687 0%, #381384 100%);
}

@media (max-width: 1200px) {
  header .fui-navbar .fui-menu.bg-gradient::before {
    width: 120%;
  }
}

@media (max-width: 1050px) {
  header .fui-navbar .fui-menu.bg-gradient::before {
    width: 105%;
  }
}

header .fui-navbar .fui-toggler {
  background-color: transparent !important;
  color: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 3;
}

header .fui-navbar .fui-toggler:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  background-color: transparent !important;
}

header .fui-navbar .fui-menu {
  text-transform: uppercase;
}

header .fui-navbar .fui-menu .nav-item {
  z-index: 3;
}

header .fui-navbar .fui-menu .nav-link {
  padding: 5px 15px !important;
  color: white !important;
  background-color: transparent !important;
  font-weight: 300;
  font-size: 14px;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header .fui-navbar .fui-menu .nav-link {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

header .fui-navbar .fui-menu .nav-link:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

header .fui-navbar .fui-menu .active .nav-link {
  font-weight: 700;
}

header .fui-navbar .fui-menu a {
  font-size: 14px;
}

header .fui-navbar .actions .mobile-no a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

header .fui-navbar .actions .mobile-no a i {
  font-size: 16px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #795cab;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-right: 10px;
}

@media (max-width: 992px) {
  header .fui-navbar .actions .mobile-no a span {
    line-height: 25px;
  }
}

header .fui-navbar .actions .cart a {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  position: relative;
}

header .fui-navbar .actions .cart a i {
  font-size: 18px;
}

header .fui-navbar .actions .cart a .badge {
  position: absolute;
  top: -6px;
  right: 4px;
  padding: 1px 5px;
  background-color: #804ceb;
  font-size: 12px;
  border-radius: 100px;
}

@media (max-width: 992px) {
  header .fui-navbar .actions .cart a .badge {
    top: -2px;
  }
}

@media (max-width: 992px) {
  header .fui-navbar .actions li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 992px) {
  header .fui-navbar {
    padding: 15px 15px !important;
  }
  header .fui-navbar .fui-menu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .fui-navbar .fui-menu li .nav-link {
    padding: 10px 10px !important;
  }
}

header .fui-navbar .sideNavbar {
  background: #431888 !important;
}

header .fui-navbar .sideNavbar .menu-close {
  z-index: 100;
  position: relative;
}

@media (max-width: 992px) {
  header .fui-navbar .sideNavbar .nav-item {
    margin-bottom: 15px !important;
  }
}

header .fui-navbar .sideNavbar .nav-item:hover a.nav-link, header .fui-navbar .sideNavbar .nav-item.active a.nav-link {
  font-weight: 600 !important;
  color: white !important;
}

header .fui-navbar .sideNavbar .nav-item a.nav-link {
  color: white !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .fui-navbar .sideNavbar .cart-link i {
  color: white !important;
}

section.banner {
  background: #511e8d;
  background: radial-gradient(circle, #511e8d 0%, #381384 100%);
}

section.banner .top {
  top: 15px;
}

section.banner .bottom {
  bottom: 0;
}

section.banner .left {
  left: 0;
}

section.banner .right {
  right: 15px;
}

section.banner .center-x {
  left: 50%;
}

@media (max-width: 768px) {
  section.banner .md-center-y {
    top: 40%;
  }
}

@media (max-width: 425px) {
  section.banner .md-center-y {
    top: 50%;
  }
}

section.banner .bg-item-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.banner .bg-item-img.sm {
  max-width: 100px;
}

section.banner .bg-item-img.md {
  max-width: 200px;
}

section.banner .bg-item-img.lg {
  max-width: 250px;
}

@media (max-width: 768px) {
  section.banner .bg-item-img.sm {
    max-width: 80px;
  }
  section.banner .bg-item-img.md {
    max-width: 140px;
  }
  section.banner .bg-item-img.lg {
    max-width: 200px;
  }
}

section.banner .fui-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 15px;
}

section.banner .fui-container .row {
  min-height: 600px;
  height: 100%;
}

section.banner .fui-container .row .text-col {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  section.banner .fui-container .row .text-col {
    padding-bottom: 50px;
  }
}

section.banner .fui-container .row .text-col .content {
  max-width: 50ch;
}

section.banner .fui-container .row .text-col .content p {
  text-align: justify;
  line-height: 25px;
  letter-spacing: 0.5px;
}

section.banner .fui-container .row .img-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.banner .fui-container .row .img-col img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 600px;
}

@media (max-width: 768px) {
  section.banner .fui-container .row .img-col img {
    width: 80% !important;
  }
}

section.products-1 .fui-container {
  max-width: 1300px !important;
  position: relative;
  z-index: 2;
}

section.products-1 .row {
  row-gap: 20px;
}

section.products-1 .item-col {
  padding: 0 8px;
}

section.products-1 .item-col .item {
  max-width: 370px !important;
  margin: 0 auto;
  height: 100%;
  background-color: #ededed;
  padding: 15px 10px;
}

section.products-1 .item-col .item p {
  font-size: 14px;
}

section.products-1 .item-col .item a {
  text-decoration: underline;
  font-size: 14px;
}

section.products-1 .item-col .item .img-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

section.products-1 .item-col .item .img-col::before {
  content: "";
  position: absolute;
  height: 110px;
  width: 110px;
  border-radius: 50%;
  background-color: white;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

section.products-1 .item-col .item .img-col img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 95px;
}

section.products-2 {
  background: #511e8d;
  background: radial-gradient(circle, #511e8d 0%, #381384 100%);
}

section.products-2::after {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #581b92;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  -webkit-box-shadow: 0 0 300px #581b92;
          box-shadow: 0 0 300px #581b92;
  border-radius: 50%;
  z-index: 1;
  bottom: -150px;
  left: -100px;
}

section.products-2 .bg-item-img {
  max-height: 200px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.products-2 .bg-item-img.center-y {
  top: 30%;
}

section.products-2 .bg-item-img.bottom {
  bottom: 20px;
}

section.products-2 .bg-item-img.left {
  left: 0;
}

section.products-2 .bg-item-img.right {
  right: 0;
}

section.products-2 .fui-container {
  position: relative;
  z-index: 2;
}

section.products-2 .fui-container .row {
  row-gap: 40px;
  position: relative;
  z-index: 2;
}

section.products-2 .fui-container .row .item-col {
  padding: 0 15px;
}

section.products-2 .fui-container .row .item-col .card {
  border: none;
  max-width: 255px;
  margin: 0 auto;
}

section.products-2 .fui-container .row .item-col .card:hover .card-header .add-to-cart a {
  bottom: 0;
}

section.products-2 .fui-container .row .item-col .card .card-header {
  background-color: white;
  border-radius: 15px;
  position: relative;
  border: 1px solid #5323a2;
  overflow: hidden;
}

section.products-2 .fui-container .row .item-col .card .card-header .add-to-cart a {
  position: absolute;
  bottom: -100%;
  background-color: #431888;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 25px;
  width: 100%;
  color: white !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

section.products-2 .fui-container .row .item-col .card .card-header .add-to-cart a:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

section.products-2 .fui-container .row .item-col .card .card-body {
  margin-top: 20px;
}

section.products-2 .fui-container .row .item-col .card .card-body .title {
  font-size: 22px;
  color: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
}

section.products-2 .fui-container .row .item-col .card .card-body .title:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

section.products-2 .fui-container .row .item-col .card .card-body .price {
  color: #c8badc;
  font-size: 18px;
  margin-top: 10px;
}

section.cta {
  background-color: #2d0d6e;
  overflow: hidden;
}

@media (max-width: 768px) {
  section.cta {
    padding: 4rem 0 0 0;
  }
}

section.cta::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #581b92;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  -webkit-box-shadow: 0 0 300px #581b92;
          box-shadow: 0 0 300px #581b92;
  border-radius: 50%;
  z-index: 1;
  top: -150px;
  left: -100px;
}

section.cta::after {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #581b92;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  -webkit-box-shadow: 0 0 300px #581b92;
          box-shadow: 0 0 300px #581b92;
  border-radius: 50%;
  z-index: 1;
  bottom: -150px;
  right: -200px;
  z-index: 3;
}

section.cta .row {
  min-height: 500px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 30px;
}

section.cta .row .text-col {
  height: 100%;
  position: relative;
  z-index: 2;
}

section.cta .row .text-col .content img {
  max-width: 220px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.cta .row .text-col .content p {
  text-align: center;
  text-align-last: center;
}

section.cta .row .img-col {
  padding: 0;
}

section.cta .row .img-col img {
  max-width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  margin-left: auto;
  height: 100%;
}

@media (max-width: 992px) {
  section.cta .row .img-col img {
    max-width: 400px;
    -o-object-fit: contain !important;
       object-fit: contain !important;
    height: auto;
  }
}

@media (max-width: 768px) {
  section.cta .row .img-col img {
    position: relative !important;
    max-width: 600px;
  }
}

section.services {
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
  background: #511e8d;
  background: radial-gradient(circle, #511e8d 0%, #381384 70%);
}

@media (max-width: 768px) {
  section.services {
    padding: 3rem 0;
  }
}

section.services::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #581b92;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  -webkit-box-shadow: 0 0 300px #581b92;
          box-shadow: 0 0 300px #581b92;
  border-radius: 50%;
  z-index: 1;
  top: -150px;
  right: -200px;
  z-index: 1;
}

section.services .row {
  row-gap: 30px;
  position: relative;
  z-index: 2;
}

section.services .row .item-col .content {
  border-radius: 10px;
  background-color: #431884;
  padding: 30px 40px;
  border: 1px solid #5323a2;
  height: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

section.services .row .item-col .content::before {
  content: "";
  position: absolute;
  height: 300px;
  width: 300px;
  background-color: #581b92;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  -webkit-box-shadow: 0 0 300px #581b92;
          box-shadow: 0 0 300px #581b92;
  border-radius: 50%;
  z-index: 1;
  left: -300px;
  top: -300px;
  z-index: 1;
}

section.services .row .item-col .content:hover {
  background-color: #491c93;
}

section.services .row .item-col .content:hover::before {
  left: -150px;
  top: -150px;
}

section.services .row .item-col .content h3 {
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
}

section.services .row .item-col .content img {
  max-width: 95px;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 65px;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  display: inline-block;
}

section.services .row .item-col .content img.w-80 {
  max-width: 80px !important;
}

section.services .row .item-col .content p {
  font-size: 14px;
  position: relative;
  z-index: 2;
}

section.contact {
  padding: 5rem 0 0 0;
  background-color: #341071;
}

section.contact .bg-item-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

section.contact .bg-item-img.bottom {
  bottom: 0;
  max-width: 300px;
}

@media (max-width: 768px) {
  section.contact .bg-item-img.bottom {
    max-width: 200px;
  }
}

section.contact .bg-item-img.left {
  left: 0;
}

section.contact .bg-item-img.top {
  top: -40px;
  max-width: 80px;
}

section.contact .bg-item-img.right {
  right: 80px;
}

section.contact .fui-container {
  position: relative;
  z-index: 2;
}

section.contact .fui-container .row {
  row-gap: 30px;
}

section.contact .fui-container .row .item-col {
  height: 100%;
}

section.contact .fui-container .row .content {
  height: 100%;
  padding: 30px 35px;
  background-color: rgba(44, 13, 95, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.contact .fui-container .row .content img {
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  margin-bottom: 15px;
}

section.contact .fui-container .row .content p {
  line-height: 28px;
  max-width: 45ch;
}

section.contact .fui-container .row .content ul li:hover a {
  color: rgba(255, 255, 255, 0.9);
}

section.contact .fui-container .row .content ul li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

section.contact .fui-container .row form {
  height: 100%;
  padding: 30px 20px;
  background-color: rgba(44, 13, 95, 0.5);
}

section.contact .fui-container .row form input {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0;
  border: none;
  color: white;
}

section.contact .fui-container .row form input::-webkit-input-placeholder {
  color: white;
  font-weight: 500;
}

section.contact .fui-container .row form input:-ms-input-placeholder {
  color: white;
  font-weight: 500;
}

section.contact .fui-container .row form input::-ms-input-placeholder {
  color: white;
  font-weight: 500;
}

section.contact .fui-container .row form input::placeholder {
  color: white;
  font-weight: 500;
}

section.contact .fui-container .row form button,
section.contact .fui-container .row form a,
section.contact .fui-container .row form input {
  border: none;
}

section.contact .copyright {
  background: #3f1687;
  background: -webkit-gradient(linear, left bottom, left top, from(#1f0845), to(#381384));
  background: linear-gradient(0deg, #1f0845 0%, #381384 100%);
}

section.contact .copyright p {
  position: relative;
  z-index: 2;
}
/*# sourceMappingURL=style.css.map */