h1, h2, h3, h4, p, li, a, span, button, label, strong {
  font-family: "Rubik", sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

.button-white {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 8px 40px 8px 8px;
  outline: 0;
  background: #ffffff;
  border-radius: 22px;
}
.button-white .text p {
  margin: 0;
  color: #101010;
  font-weight: 700;
  font-size: 16px;
}
.button-white .icon {
  background: #6E41FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  padding: 10px;
  margin-right: 15px;
}
.button-white:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #6E41FF;
}
.button-white:hover .text p {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #ffffff;
}
.button-white:hover .icon {
  background: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-white:hover .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.button-purple {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 6px 40px 6px 6px;
  outline: 0;
  background: #6E41FF;
  border-radius: 22px;
  border: 2px solid #ffffff;
}
.button-purple .text p {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
.button-purple .icon {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  padding: 10px;
  margin-right: 15px;
}
.button-purple .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.button-purple:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: #ffffff;
  border: 2px solid #6E41FF;
}
.button-purple:hover .text p {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: #6E41FF;
}
.button-purple:hover .icon {
  background: #6E41FF;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-purple:hover .icon img {
  -webkit-filter: invert(0);
          filter: invert(0);
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: clip;
}

body {
  background: #ffffff;
}

.container-fluid {
  --bs-gutter-x: 4.5rem;
}
@media (max-width: 768px) {
  .container-fluid {
    --bs-gutter-x: 1.5rem;
  }
}

.line-left, .line-right {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 2;
  background: #3f4a54;
  pointer-events: none;
  -webkit-animation: pulse 3s ease-in-out infinite;
          animation: pulse 3s ease-in-out infinite;
}
@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.line-left {
  left: 50px;
}

.line-right {
  right: 50px;
}

.line-top {
  position: fixed;
  right: 0;
  left: 0;
  top: 48px;
  width: 100%;
  height: 1px;
  z-index: 2;
  background: #3f4a54;
  pointer-events: none;
  -webkit-animation: pulse 3s ease-in-out infinite;
          animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .line-left {
    left: 6px;
  }
  .line-right {
    right: 6px;
  }
  .line-top {
    display: none;
  }
}
header {
  position: relative;
  z-index: 10;
}

nav#navbar-home.navbar-scrolled {
  background-color: rgba(65, 66, 68, 0.9);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav#navbar-home.navbar-scrolled .logo-menu {
  background-color: transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav#navbar-home.navbar-scrolled .menu {
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav#navbar-home.navbar-scrolled .menu .items-header {
  background-color: transparent;
  overflow: unset;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
nav#navbar-home.navbar-scrolled .menu .items-header ul li a .before {
  bottom: -28px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#navbar-home {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 10%;
  width: 80%;
  z-index: 10;
  min-height: auto;
  background: transparent;
  border-radius: 0 0 11px 11px;
}
#navbar-home .logo-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #050814;
  margin: 10px 0 0 0;
}
#navbar-home .logo-menu img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: plus-lighter;
}
#navbar-home .menu {
  width: 100%;
  padding: 0 10px 10px 10px;
}
#navbar-home .menu .logo-mobile {
  display: none;
}
#navbar-home .menu .close-button {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 15px;
  z-index: 1;
}
#navbar-home .menu .items-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(65, 66, 68, 0.9);
  border-radius: 8px;
  padding: 0 35px;
  margin: 20px 0 0 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#navbar-home .menu .items-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#navbar-home .menu .items-header ul .active a .before {
  display: block;
}
#navbar-home .menu .items-header ul li {
  padding: 0 5px;
  position: relative;
  cursor: pointer;
}
#navbar-home .menu .items-header ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  display: block;
  padding: 15px 15px;
}
#navbar-home .menu .items-header ul li a:hover p {
  font-weight: 700;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#navbar-home .menu .items-header ul li a:hover .before {
  display: block;
}
#navbar-home .menu .items-header ul li a .before {
  display: none;
  position: absolute;
  bottom: -5px;
  left: calc(50% - 9px);
}
#navbar-home .menu .items-header ul li a p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}
#navbar-home .buttons-lenes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#navbar-home .content-button {
  display: none;
}
#navbar-home .content-button .brand {
  max-width: 35%;
}
#navbar-home .content-button .menu-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1081px) and (max-width: 1450px) {
  #navbar-home .menu .items-header {
    padding: 0 20px;
  }
  #navbar-home .menu .items-header ul li a {
    padding: 10px 5px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  #navbar-home {
    left: 5%;
    width: 90%;
  }
  #navbar-home .buttons-lenes .button-red .text {
    padding: 12px 20px 14px 12px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 100% 100%, 0 100%);
  }
  #navbar-home .buttons-lenes .button-red .icon {
    margin-left: -10px;
    padding: 12px 12px;
  }
  #navbar-home .menu .items-header {
    padding: 0 5px;
  }
  #navbar-home .menu .items-header ul li a {
    text-align: center;
    padding: 10px 0;
  }
  #navbar-home .menu .items-header ul li a p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #navbar-home {
    padding: 12px 20px;
    left: 0;
    width: 100%;
    background-color: rgba(65, 66, 68, 0.8);
    border-radius: 0 0 11px 11px;
  }
  #navbar-home .logo-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 0;
  }
  #navbar-home .menu {
    padding: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 95%;
    background-color: #050814;
    height: 100%;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 15;
    -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
            box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
    border-radius: 32px 0 0 32px;
  }
  #navbar-home .menu:after {
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    width: 300px;
    height: 100%;
    border-radius: 50%;
    background: #6E41FF;
    opacity: 0.12;
    -webkit-filter: blur(80px);
            filter: blur(80px);
  }
  #navbar-home .menu .items-header {
    padding: 30px 0 20px 0;
    display: block;
    background: transparent;
  }
  #navbar-home .menu .items-header ul {
    display: block;
    background: transparent;
  }
  #navbar-home .menu .items-header ul .active a .before {
    display: none;
  }
  #navbar-home .menu .items-header ul li {
    margin-bottom: 20px;
    padding: 0 0 0 30px;
  }
  #navbar-home .menu .items-header ul li a {
    padding: 0;
  }
  #navbar-home .menu .items-header ul li a:hover:after {
    content: none;
  }
  #navbar-home .menu .items-header ul li a:before {
    content: none;
  }
  #navbar-home .menu .items-header ul li a p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
  }
  #navbar-home .menu .close-button {
    display: block;
    -webkit-filter: invert(1);
            filter: invert(1);
  }
  #navbar-home .buttons-lenes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #navbar-home .content-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #navbar-home .content-button button img {
    max-width: 100%;
  }
  #navbar-home .content-button .brand {
    max-width: 130px;
    mix-blend-mode: plus-lighter;
  }
}

.banner-home {
  background-color: #050814;
  position: relative;
  padding: 100px 0 0 0;
}
.banner-home:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#555555 2.5px, transparent 2.5px);
  background-size: 120px 120px;
  opacity: 0.5;
  -webkit-animation: moveDots 30s linear infinite;
          animation: moveDots 30s linear infinite;
}
@-webkit-keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
@keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
.banner-home:after {
  content: "";
  position: absolute;
  right: -200px;
  top: calc(50% - 200px);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #6E41FF;
  opacity: 0.12;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}
.banner-home .text-banner {
  padding: 150px 0 150px 50px;
}
.banner-home .text-banner h1 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 30px;
}
.banner-home .text-banner p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 40px;
}
.banner-home .text-banner .button-white .text p {
  color: #101010;
  margin: 0;
}
.banner-home .text-banner .button-white:hover .text p {
  color: #ffffff;
}
.banner-home .image-banner {
  text-align: center;
}
.banner-home .image-banner img {
  max-width: 100%;
  height: auto;
}
.banner-home .do-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.banner-home .do-scroll .scroll {
  width: 150px;
  height: 150px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner-home .do-scroll .scroll p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 769px) and (max-width: 992px) {
  .banner-home .text-banner {
    padding: 100px 0;
  }
  .banner-home .text-banner h1 {
    font-size: 40px;
  }
  .banner-home .image-banner {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .banner-home .text-banner {
    text-align: center;
    padding: 0 10px;
  }
  .banner-home .text-banner h1 {
    font-size: 35px;
  }
  .banner-home .image-banner {
    width: 80%;
    margin: 40px auto;
  }
}

.advice-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background-color: #050814;
}
.advice-container:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#555555 2.5px, transparent 2.5px);
  background-size: 120px 120px;
  opacity: 0.5;
  -webkit-animation: moveDots 30s linear infinite;
          animation: moveDots 30s linear infinite;
}
@keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
.advice-container:after {
  content: "";
  position: absolute;
  left: -150px;
  top: 50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #6E41FF;
  opacity: 0.12;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}
.advice-container .advise-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.advice-container .advise-text p {
  font-size: 300px;
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 769px) and (max-width: 992px) {
  .advice-container .advise-text p {
    font-size: 160px;
  }
}
@media (max-width: 768px) {
  .advice-container .advise-text p {
    font-size: 120px;
  }
}

.we-company {
  position: relative;
  background-color: #050814;
}
.we-company:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#555555 2.5px, transparent 2.5px);
  background-size: 120px 120px;
  opacity: 0.5;
  -webkit-animation: moveDots 30s linear infinite;
          animation: moveDots 30s linear infinite;
}
@keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
.we-company .company-left {
  position: relative;
  height: 100%;
}
.we-company .company-left img {
  position: absolute;
  left: -110%;
  top: 0;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
}
.we-company .company-right {
  position: relative;
  height: 100%;
}
.we-company .company-right img {
  position: absolute;
  right: -110%;
  bottom: 0;
  border-radius: 14px;
  height: 85%;
  -o-object-fit: cover;
     object-fit: cover;
}
.we-company .company-text {
  padding: 100px 0;
}
.we-company .company-text h2 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 50px;
}
.we-company .company-text p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 50px;
}
.we-company .company-text .button-white:hover .text p {
  color: #ffffff;
}
.we-company .company-text .button-white .text p {
  margin: 0;
  color: #101010;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .we-company .company-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .we-company .company-left img {
    position: relative;
    left: -50%;
    width: 148%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .we-company .company-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .we-company .company-left img {
    left: 0;
    height: auto;
    position: relative;
    max-width: 100%;
  }
  .we-company .company-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .we-company .company-right img {
    position: relative;
    right: 0;
    height: auto;
    width: 170%;
  }
  .we-company .company-text h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .we-company .company-left {
    display: none;
  }
  .we-company .company-right {
    width: 90%;
    margin: 0 auto;
  }
  .we-company .company-right img {
    position: relative;
    right: 0;
    height: auto;
    max-width: 100%;
  }
  .we-company .company-text {
    padding: 70px 0;
  }
  .we-company .company-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.our-product {
  position: relative;
  background-color: #050814;
  padding: 100px 0 40px 0;
}
.our-product h2 {
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}
.our-product .item-product {
  padding: 20px 20px;
  position: relative;
  margin-bottom: 80px;
}
.our-product .item-product:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 70%;
  background: #282f36;
  border-radius: 14px 100px 14px 14px;
}
.our-product .item-product:hover .content-image {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.our-product .item-product:hover .content-text .button-right a {
  background: #6E41FF;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.our-product .item-product:hover .content-text .button-right a img {
  -webkit-filter: invert(0);
          filter: invert(0);
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}
.our-product .item-product .content-image {
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.our-product .item-product .content-image:before {
  content: "";
  position: absolute;
  left: 10%;
  width: 80%;
  height: 100px;
  border-radius: 50%;
  -webkit-filter: blur(9px);
          filter: blur(9px);
  background: #19222b;
  bottom: 0;
}
.our-product .item-product .content-image img {
  height: 445px;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.our-product .item-product .content-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px 0 0 0;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.our-product .item-product .content-text .text-left {
  color: #ffffff;
}
.our-product .item-product .content-text .text-left p {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}
.our-product .item-product .content-text .text-left span {
  font-size: 18px;
  font-weight: 400;
}
.our-product .item-product .content-text .button-right a {
  background: #42CFFC;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}
.our-product .item-product .content-text .button-right a img {
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 20px;
  height: auto;
}
@media (min-width: 769px) and (max-width: 992px) {
  .our-product .item-product {
    margin-bottom: 50px;
  }
  .our-product .item-product .content-image img {
    height: 370px;
  }
  .our-product .item-product .content-text .text-left p {
    font-size: 18px;
  }
  .our-product .item-product .content-text .text-left span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .our-product h2 {
    font-size: 30px;
  }
  .our-product .item-product {
    margin: 0 10px 50px 10px;
  }
  .our-product .item-product:before {
    order-radius: 14px 60px 14px 14px;
  }
  .our-product .item-product .content-image {
    padding: 0;
  }
  .our-product .item-product .content-image img {
    height: 290px;
  }
  .our-product .item-product .content-text .text-left p {
    font-size: 16px;
  }
  .our-product .item-product .content-text .text-left span {
    font-size: 14px;
  }
}

.footer {
  background: #282f36;
  position: relative;
  padding: 30px 0;
  z-index: 3;
}
.footer .brand-image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: plus-lighter;
}
.footer .text-brand {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.footer .text-brand p {
  margin: 0;
  font-size: 16px;
  color: #ffffff;
}

.contact {
  position: relative;
  padding: 180px 0 200px 0;
  background-color: #050814;
}
.contact:after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #6E41FF;
  opacity: 0.12;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}
.contact .image-left {
  position: absolute;
  left: -40px;
  top: 25%;
}
.contact .image-left img {
  border-radius: 14px;
}
.contact .image-right {
  position: absolute;
  right: -10px;
  top: 0;
}
.contact .image-right img {
  border-radius: 14px;
}
.contact .image-bottom {
  position: absolute;
  left: -60%;
  bottom: -20%;
}
.contact .image-bottom img {
  border-radius: 14px;
  max-width: 90%;
}
.contact .tittle-contact {
  margin-bottom: 35px;
}
.contact .tittle-contact h2 {
  font-size: 24px;
  color: #101010;
}
.contact .tittle-contact p {
  font-size: 14px;
  color: #3f3f3f;
}
.contact .text-contact {
  width: 90%;
  padding: 60px 0 0 0;
  position: relative;
  z-index: 1;
}
.contact .text-contact h2 {
  font-size: 50px;
  color: #ffffff;
}
.contact .item-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact .content-form {
  position: relative;
}
@media (min-width: 769px) and (max-width: 992px) {
  .contact .image-left {
    text-align: left;
    left: -90px;
  }
  .contact .image-left img {
    max-width: 70%;
  }
  .contact .image-right {
    text-align: right;
  }
  .contact .image-right img {
    max-width: 70%;
  }
  .contact .image-bottom img {
    max-width: 70%;
  }
  .contact .text-contact {
    width: 100%;
  }
  .contact .text-contact h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 20px 0 250px 0;
  }
  .contact .image-right {
    display: none;
  }
  .contact .image-left {
    position: relative;
    left: 10px;
    width: calc(100% - 20px);
  }
  .contact .image-left img {
    max-width: 100%;
  }
  .contact .text-contact {
    padding: 0;
    width: 70%;
    margin: -40px auto 50px auto;
  }
  .contact .text-contact h2 {
    font-size: 30px;
  }
  .contact .tittle-contact h2 {
    font-size: 20px;
  }
  .contact .item-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .contact .image-bottom {
    left: -5%;
    bottom: -35%;
  }
  .contact .image-bottom img {
    max-width: 70%;
  }
  .contact .form-talk {
    border-radius: 24px;
    padding: 24px 20px;
    width: calc(100% - 20px);
    margin: 0 auto;
  }
}

.form-talk {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
          box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
  padding: 30px 40px;
  border-radius: 14px;
  z-index: 1;
}
.form-talk .form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-talk .form-group ::-webkit-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-moz-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group :-ms-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-ms-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group select {
  color: #7C7C7C;
  font-size: 14px;
}
.form-talk .form-group input, .form-talk .form-group textarea, .form-talk .form-group select {
  padding: 21px 25px;
  display: block;
  width: 100%;
  background-color: #E8E8E8;
  border-radius: 8px;
  border: none;
}
.form-talk .form-group input:focus, .form-talk .form-group textarea:focus, .form-talk .form-group select:focus {
  outline: none;
}
.form-talk .form-group input:focus ~ label, .form-talk .form-group input:valid ~ label, .form-talk .form-group textarea:focus ~ label, .form-talk .form-group textarea:valid ~ label, .form-talk .form-group select:focus ~ label, .form-talk .form-group select:valid ~ label {
  top: -15px;
  font-size: 14px;
}
.form-talk .form-group .highlight {
  position: absolute;
  height: 60%;
  width: 90%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.form-talk .form-group input:focus ~ .highlight, .form-talk .form-group textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.5s ease;
  animation: inputHighlighter 0.5s ease;
}
@-webkit-keyframes inputHighlighter {
  background: #6E41FF;
  width: 0;
  background: transparent;
}
@keyframes inputHighlighter {
  from {
    background: #6E41FF;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.form-talk input::-webkit-outer-spin-button, .form-talk input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-talk input[type=number] {
  -moz-appearance: textfield;
}
@media (max-width: 768px) {
  .form-talk .form-group input, .form-talk .form-group textarea, .form-talk .form-group select {
    padding: 10px 15px;
  }
}

.has-image[data-image-fit=contain] .fancybox__image {
  background: #ffffff;
  border-radius: 20px;
}

.fancybox__thumb {
  background-color: #ffffff;
}

.thanks {
  background-color: #050814;
  position: relative;
  padding: 150px 0 50px;
}
.thanks:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#555555 2.5px, transparent 2.5px);
  background-size: 120px 120px;
  opacity: 0.5;
  -webkit-animation: moveDots 30s linear infinite;
          animation: moveDots 30s linear infinite;
}
@keyframes moveDots {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
.thanks .content-thanks {
  text-align: center;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.thanks .content-thanks h2 {
  font-size: 60px;
  text-align: center;
  color: #ffffff;
}

.wpp-chat {
  position: fixed;
  right: 30px;
  top: 60%;
  z-index: 9;
}
.wpp-chat svg {
  fill: #6E41FF;
}

.card-hidden {
  display: none;
}

.btn-ver-mas {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 8px 8px;
  outline: 0;
  background: #42CFFC;
  border: 2px solid #42CFFC;
  border-radius: 22px;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #101010;
  margin: 0 auto;
  font-weight: 700;
}
.btn-ver-mas:hover {
  background: #6E41FF;
  border: 2px solid #6E41FF;
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 30px;
}
.check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check .check__box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid #101010;
  background: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.check .check__box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.check .check__label {
  color: #101010;
  font-size: 14px;
}

.check input[type=checkbox]:checked + .check__box {
  border-color: #6E41FF;
  background: #6E41FF;
}
.check input[type=checkbox]:checked + .check__box::after {
  opacity: 1;
}
.check:hover .check__box {
  border-color: #6E41FF;
}
.check input[type=checkbox]:focus + .check__box {
  outline: 2px solid #6E41FF;
  outline-offset: 2px;
}