@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&family=Righteous&display=swap");

::-moz-selection {
  /* Code for Firefox */
  color: #182022;
  background: #fff;
}

::selection {
  color: #182022;
  background: #fff;
}

body {
  overflow-y: scroll;
  scrollbar-color: black #ccc;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #ccc;
  /* or add it to the track */
}

::-webkit-scrollbar-thumb {
  background: #182022;
}

a:focus-visible {
  outline: 1px solid;
}

body {
  background: rgb(237,214,250);
  background: -moz-linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  background: linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edd6fa",endColorstr="#cae5e5",GradientType=1);
  color: #182022;
  font-size: 25px;
  font-family: "Raleway", sans-serif;
}

p {
  font-weight: 300;
}

ul {
  padding: 0;
  margin: 0;
}

.wrapper {
  overflow-y: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Righteous", cursive;
}

.section-title {
  font-size: 4em;
  margin-bottom: 25px;
  line-height: 90px;
  position: relative;
}

.section-subtitle {
  font-size: 1.2em;
  color: #f77b21;
  margin-bottom: 15px;
  position: relative;
  padding-right: 190px;
  display: inline-block;
}

.section-subtitle:after {
  content: "";
  background-color: #f77b21;
  height: 2px;
  width: 160px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.no-pad {
  padding: 0 !important;
}

.no-mar {
  margin: 0 !important;
}

.no-border {
  border: none !important;
}

.btn {
  max-width: 250px;
  width: 100%;
  padding: 0 2rem;
  border-radius: 50px;
  font-size: 1em;
  min-height: 75px;
  line-height: 100%;
  font-weight: 500;
  position: relative;
  transition: 0.5s all;
  box-shadow: 6px 6px 0 0 #f77b21;
  box-sizing: border-box;
  border: 1px solid #f77b21;
  font-weight: 700;
  background: #fff;
  transition: 0.2s all;
}

.btn.btn-lg {
  font-size: 1.6em;
  min-height: 102px;
  max-width: 350px;
}

.btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
  background-color: #fff;
  color: #f77b21;
  border: 1px solid #f77b21;
}

.btn:focus {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
  background-color: #fff;
  color: #f77b21;
  border: 1px solid #f77b21;

}

.btn-sm {
  min-height: 50px;
  max-width: 140px;
  padding: 0.25em 1em;
  font-size: 1em;
}

.btn-outline-primary,
.btn-outline-primary:hover {
  background-color: #fff;
  color: #f77b21;
  border: 1px solid #f77b21;
}

.btn-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 210px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.5s ease-in-out;
  z-index: 999;
  /*padding: 125px 0;*/
  padding:75px 0;
}

header.header-sm {
  min-height: 82px;
  /*padding: 27px 0;*/
  padding: 0px 0px;
  /* backdrop-filter: blur(15px) grayscale(1); */
}

header.nav-up {
  /*transform: translateY(-150px);*/
}


header.nav-down.header-sm {
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
  background-color: rgba(253, 242, 229, .4);
}

header .nav-menu {
  position: relative;
}
header.nav-down.header-sm,
header.nav-up.header-sm{
  background-color:#FFFFFF;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu-button {
  height: 20px;
  width: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-menu-button .line {
  display: block;
  height: 3px;
  width: 100%;
  background: #182022;
}

.nav-menu-button .line1 {
  transform-origin: 0 0;
  transition: transform 0.4s ease-in-out;
}

.nav-menu-button .line2 {
  transition: transform 0.2s ease-in-out;
}

.nav-menu-button .line3 {
  transform-origin: 0 100%;
  transition: transform 0.4s ease-in-out;
}

.mobile-menu-open .nav-menu-button {
  /*background-color: #fdf2e5;*/
}

.mobile-menu-open .nav-menu-button .line1 {
  transform: rotate(45deg);
  transform-origin: 2px 7px;
}

.mobile-menu-open .nav-menu-button .line2 {
  transform: scaleY(0);
}

.mobile-menu-open .nav-menu-button .line3 {
  transform: rotate(-45deg);
  transform-origin: 2px -4px;
}

.bg-white {
  background-color: #fff;
}

.nav-menu-wrapper {
  display: none;
  position: relative;
}

.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-open .logo {
  display: none;
}

.mobile-menu-open .nav {
  justify-content: flex-end;
}

.mobile-menu-open .nav-menu-wrapper {
  display: block;
  height: 100%;
  position: fixed;
  width: 100%;
  /*background-color: #fdf2e5;*/
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 14% 11%;
  overflow-y: scroll;
}

.nav-menu ul {
  list-style: none;
}

.desktop-hide {
  display: none;
}

.nav-link {
  font-family: "Righteous", cursive;
  font-size: 4em;
  line-height: 95px;
  position: relative;
  color: #a4b0e2;
  transition: 1s all;
  text-transform: uppercase;
  padding: 0;
  display: inline-block;
}

.nav-link:hover,
.nav-link.active {
  color: #182022;
  padding-left: 150px;
  font-size:1.5em;
}

.nav-link::before {
  content: "";
  /*background-color: #f77b21;*/
  background-color:#4016ED;
  height: 3px;
  width: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 1s all;
}

.nav-link:hover:before,
.nav-link.active:before {
  width: 125px;
}

.nav-link:hover:after,
.nav-link.active:after {
  font-size: inherit;
}

.nav-link:hover:after,
.nav-link.active:after {
  content: ".";
  position: absolute;
  right: -16px;
}

.nav-social a i {
  font-size: 4em;
  color: #b2aba3;
  padding-top: 150px;
  margin-right: 75px;
  transition: all 0.3s ease;
}

.nav-social a i:hover {
  color: #182022;
}

.nav-img {
  position: absolute;
  top: 50%;
  right: 30%;
}

.nav-shapes .particle-white {
  position: absolute;
  top: 45%;
  left: 42%;
  width: 8%;
  max-width:25px;
}

.nav-shapes .particle-orange {
  filter:invert(.9);
  position: absolute;
  top: 38%;
  left: 58%;
  max-width:25px;
}

.nav-shapes .particle-black {
  position: absolute;
  bottom: -8%;
  left: 35%;
  max-width:25px;
}





.nav-menu .dropdown-toggle::after {
  transition: 0.5s all;
  content: "" !important;
  position: static !important;
}

.nav-menu .dropdown-toggle.show::after {
  transform: rotate(180deg);
}

.nav-menu .dropdown-item {
  font-size: 3.5vw;
  text-align: left;
  font-family: 'Righteous';
  text-transform: uppercase;
  padding: 0;
}

.nav-menu .dropdown-item:focus,
.nav-menu .dropdown-item:hover {
  background-color: transparent;
  color: #f77b21;
}

.nav-menu .dropdown-item.active {
  color: #f77b21;
  background-color: transparent;
}

.nav-menu .dropdown-menu {
  border: none;
  padding: 20px 30px;
  display: block;
  max-width: 50%;
  min-width: 360px;
}

.nav-menu .dropdown-menu.show {
  position: relative !important;
  margin-top: 12px !important;
  transform: none !important;
  background-color: #ffe1cb;
}

.main-content {
  overflow: hidden;
  /*background: url("../images/banner-gradient.png") no-repeat top right;*/
}

.main-content-internal {
  overflow: hidden;  
}

/*banner*/
.banner {
  position: relative;
}

.banner-wrapper {
  /*min-height: 1300px;*/
  /* height: 100vh; */
  min-height:75vh;
  max-width:1380px;
  margin-left:auto;
  margin-right:auto;
}

.banner .section-title {
  line-height: 125px;
  font-size: 5.3em;
  letter-spacing: 1px;
}

.banner h5 {
  font-size: 1.2em;
  font-family: "Raleway", sans-serif;
  text-indent: 8px;
  margin-bottom: 12px;
}

.banner .banner-content {
  /* padding-top: 420px; */
  /*padding-left: calc((100vw - 1170px) / 2);*/
  margin-left:10vw;
  /*position: absolute;*/
  margin-top:30vh;
  /*z-index: 1;*/
  z-index:0;
  /* height: 100vh; */
  /* min-height: 1200px; */
  top: 32%;
  /* transform: translateY(-50%); */
}

.banner .banner-content span.lined {
  padding-left: 145px;
}

.banner .banner-content span.lined::before {
  content: "";
  background-color: #f77b21;
  height: 3px;
  width: 125px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 1s ease;
}

.banner-floating-images {
  position: absolute;
  width: 100%;
  /*height: 100%;*/
  z-index: 0;
  top: 11.5%;
  max-width: 1190px;
  height: 1190px;
  top: 8%;
  left: calc(((100vw - 1170px) / 2) + 370px);
}

.banner-img-wrapper {
  width: 100%;
  height: 100%;
  /*border: 1px solid #fbceaa;*/
  border-radius: 50%;
  /* margin-top: 95px; */
  position: relative;
}

.banner-img-wrapper:before {
  width: 71%;
  z-index: -1;
  height: 71%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* width: calc(100% - 346px); */
  /* height: calc(100% - 346px); */
  /*border: 1px solid #fbceaa;*/
  border-radius: 50%;
}

.banner-img-wrapper .banner-1 {
  /*position: absolute;
  top: 7%;
  left: calc((100vw - 858px) / 2);
  transform: translate(-50%, -50%);
  width: 46.5%;
  margin-left: auto;
  margin-right: auto;*/
  margin-left:24vw;
  top:10vh;
  margin-top:-25vh;
}

.banner-img-wrapper .banner-2 {
  position: absolute;
  /* top: 0; */
  bottom: -1%;
  right: 7%;
  /* width: 16.5vw; */
  width: 26.5%;
  animation-delay: 1s;
}

.banner-wrapper .banner-3 {
  position: absolute;
  top: 57%;
  left: calc(((100vw - 1170px) / 2) - 375px);
  width: 24.5%;
  animation-delay: 2s;
}

.banner-img-wrapper .banner-4 {
  position: absolute;
  /* top: 5%; */
  bottom: 16%;
  left: 15%;
  width: 10.75vw;
  width: 17.5%;
}

.banner-img-wrapper .banner-5 {
  position: absolute;
  top: 13%;
  left: -35%;
  width: 20%;
  animation-delay: 0.5s;
}

.banner-wrapper .wavy-partical {
  position: absolute;
  top: 29%;
  left: calc(((100vw - 1170px) / 2) - 170px);
}

.banner-img-wrapper .particle-black {
  position: absolute;
  /* top: 77%; */
  bottom: 9%;
  left: 27%;
}

.banner-img-wrapper .particle-orange {
  position: absolute;
  top: 30%;
  right: 22%;
}

.banner-img-wrapper .particle-white {
  position: absolute;
  top: -10%;
  right: 29%;
  width: 7%;
  z-index: 1;
}

/* .banner-img-wrapper:after {
    width: calc(100% - (280px * 2));
    height: calc(100% - (280px * 2));
} */

.banner-img-wrapper>span {
  border-radius: 50%;
  border: 1px solid #fbceaa;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - (315px * 2));
  height: calc(100% - (315px * 2));
  z-index: -1;
  width: 47%;
  height: 47%;
}

/*about*/
.about {
  padding-top: 200px;
  position: relative;
}

.about .graphic-imgs .particle-black {
  position: absolute;
  top: 87%;
  left: -1%;
}

.about .graphic-imgs .particle-orange {
  position: absolute;
  top: -5%;
  right: 23%;
}

.about .graphic-imgs .particle-white {
  position: absolute;
  top: 65%;
  left: 3%;
}

.about .graphic-imgs .spiral-arrow {
  position: absolute;
  top: 83%;
  left: 15%;
}

.about p {
  font-weight: 600;
  padding-right: 70px;
  margin-bottom: 45px;
}

.about .features {
  display: flex;
  padding-left: calc((100vw - 1170px) / 2);
  padding-top: 50px;
}

.about .features .feature {
  position: relative;
  padding: 187px 240px 100px 100px;
}

.about .features .feature::before {
  content: "";
  /* height: 310px; */
  position: absolute;
  background-color: #ffe1cb;
  border-radius: 160px;
  width: 100%;
  z-index: -1;
  display: block;
  left: 0;
  bottom: 0;
  top: 215px;
}

.about .features .feature-2::before {
  background-color: #f3deab;
}

.about .features .feature-3::before {
  background-color: #e2d8dd;
}

.about .features .feature h6 {
  font-size: 1.2em;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.about .features .feature h4 {
  font-size: 2.4em;
  margin-bottom: 14px;
}

.about .features .feature p {
  font-size: 0.6em;
  padding-right: 0;
  margin: 0;
  line-height: 20px;
  color: #747470;
  font-weight: 500;
}

.about .feature .feature-img {
  width: auto;
  position: absolute;
  right: 0;
  bottom: 5px;
}

.about .features .owl-item:nth-child(2n + 1) .feature-img img {
  animation-delay: 1s;
}

.collection-nft {
  padding-top: 230px;
}

.collection-nft h2 {
  padding-bottom: 100px;
}

.collection-list {
  display:inline-flex;
  margin-top: 30px;
  white-space: nowrap;
  animation: moveRighttoLeft 15s ease-in-out infinite;
  position: relative;
  display: inline-flex;
  gap: 30px;
}

.collection-list.reverse {
  animation: moveLeftoRight 15s ease-in-out infinite;
}

.collection-list>li {
  width: 25vw;
}

.collection.row-1 {
  /* margin-left: -125px; */
}

.collection-list .card {
  border-radius: 75px;
  overflow: hidden;
  border-radius: 15%;
}

.collection-nft .container-fluid {
  padding: 0;
}

/* roadmap */

.phase-list {
  list-style: none;
  padding-top: 25px;
}

.phase-list>li {
  padding-top: 150px;
}

.roadmap {
  padding-top: 230px;
  position: relative;
}

.roadmap .vector-shapes .particle-black {
  position: absolute;
  top: -2%;
  right: 23%;
}

.roadmap .vector-shapes .wavy-particle {
  position: absolute;
  bottom: -3%;
  right: -30%;
}

.roadmap .vector-shapes .spiral-arrow {
  position: absolute;
  top: 12%;
  left: 21%;
}

.section-title .spiral-arrow {
  position: absolute;
  left: 225px;
  top: calc(100% + 100px);
}

.phase-content {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}

.phase .phase-content h6 {
  font-size: 1.2em;
  font-weight: 500;
  color: #f77b21;
  font-family: "Raleway", sans-serif;
}

.phase .phase-content h3 {
  font-size: 2.4em;
  margin: 8px 0 20px;
}

.phase .phase-content p {
  font-size: 0.6em;
  font-weight: 500;
}

.phase-img-box {
  background-color: #ffe1cb;
  border-radius: 90px;
  min-height: 570px;
  position: relative;
}

.phase-art-img {
  position: absolute;
  right: 0;
  bottom: -60px;
}

.particle-wrap {
  position: absolute;
  width: 140px;
  height: 140px;
  top: -55px;
  left: -30px;
}

.particle-wrap img {
  position: absolute;
  animation-delay: 1s;
}

.particle-wrap img:first-child {
  animation-delay: 0.7s;
}

.particle-wrap .img-small {
  width: 32px;
  height: 32px;
}

.particle-wrap img:first-child {
  top: 0;
  left: 0;
}

.particle-wrap img:last-child {
  bottom: 0;
  right: 0;
}

.phase-reverse .row {
  flex-direction: row-reverse;
}

.phase-reverse .phase-content {
  padding-left: 150px;
}

.phase-list>li:nth-child(2) .phase-img-box {
  background-color: #f3deab;
}

.phase-list>li:nth-child(3) .phase-img-box {
  background-color: #dfccc0;
}

.phase-list>li:nth-child(4) .phase-img-box {
  background-color: #f9dcdc;
}

.phase-list>li:nth-child(2) .phase-img-box .phase-art-img {
  right: 125px;
}

.phase-list>li:nth-child(2) .phase-img-box .particle-wrap,
.phase-list>li:nth-child(3) .phase-img-box .particle-wrap {
  top: 0;
  right: -50px;
  left: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.phase-list>li:nth-child(3) .phase-img-box .phase-art-img {
  top: -60px;
  left: -60px;
  right: auto;
}

.phase-list>li:nth-child(4) .phase-img-box .phase-art-img {
  bottom: -20px;
  left: -36px;
  right: auto;
  top: auto;
}

/*team-section*/
.team {
  padding-top: 260px;
  position: relative;
}

.team-wrapper h2 {
  padding-bottom: 120px;
}

.team-wrapper ul {
  list-style: none;
  margin-bottom: 30px;
}

.team-wrapper .team-spiral-arrow {
  position: absolute;
  top: 11%;
  left: 50%;
}

.team .team-member {
  position: relative;
}

.team .team-member .team-member-img {
  min-height: 475px;
  border-radius: 75px;
  overflow: hidden;
}

.team .team-member .team-member-img img {
  display: block;
  width: 100%;
  border-radius: 75px;
}

.team .team-member .team-member-info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  padding: 50px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  height: 100%;
}

.team .team-member>img {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -20px;
  right: 35px;
  transition: 0.5s all;
}

.team .team-member:hover>img {
  visibility: visible;
  opacity: 1;
}

.team .team-member:hover .team-member-img img {
  filter: blur(20px);
}

.team .team-member:hover .team-member-info {
  opacity: 1;
  visibility: visible;
}

.team .team-member .team-member-info .member-designation {
  font-size: 0.6em;
  font-weight: 600;
  color: #182022;
}

.team .team-member .team-member-info h6 {
  font-size: 1.2em;
  font-weight: 500;
  color: #fff;
  font-family: "Raleway", sans-serif;
}

.team .team-member .team-member-info .member-info {
  font-size: 0.6em;
  padding: 25px 0px;
  color: #182022;
  font-weight: 500;
}

.team .team-member .team-member-info .member-social-icon a {
  color: #fff;
  margin-right: 10px;
}

.team .team-member .team-member-info .member-social-icon a:hover {
  color: #f77b21;
}

.team .team-member .team-member-info .member-social-icon a i {
  font-size: 20px;
}

/*join-community section*/
.join-us-wrapper {
  max-width: 1380px;
  width: 100%;
  height: 1380px;
  border: 1px solid #fbceaa;
  border-radius: 50%;
  margin: 190px auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-floating-images .join-us-wrapper {
  max-width: 1190px;
  margin-top: 95px;
}

.join-us-wrapper:before,
.join-us-wrapper:after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 280px);
  height: calc(100% - 280px);
  border: 1px solid #fbceaa;
  border-radius: 50%;
}

.join-us-wrapper:after {
  width: calc(100% - (280px * 2));
  height: calc(100% - (280px * 2));
}

.join-us-wrapper>span {
  border-radius: 50%;
  border: 1px solid #fce6d2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - (280px * 3));
  height: calc(100% - (280px * 3));
  z-index: -1;
}

.join-us-wrapper>img {
  position: absolute;
}

.join-us-wrapper .join-us-content {
  text-align: center;
}

.join-us-wrapper .join-us-content p {
  font-weight: 500;
  margin-bottom: 40px;
}

.join-us-wrapper .image-1 {
  left: 17%;
  top: 20%;
  border-radius: 50%;
}

.join-us-wrapper .image-2 {
  left: 37%;
  top: -1.5%;
  border-radius: 50%;
}

.join-us-wrapper .image-3 {
  right: 10%;
  top: 10%;
  border-radius: 50%;
}

.join-us-wrapper .image-4 {
  left: 17%;
  bottom: 20%;
  border-radius: 50%;
}

.join-us-wrapper .image-5 {
  right: 21%;
  bottom: 5%;
  border-radius: 50%;
}

.join-us-wrapper .particle-black {
  position: absolute;
  top: 65%;
  left: 9%;
}

.join-us-wrapper .particle-orange {
  position: absolute;
  right: 5%;
  top: 55%;
}

.join-us-wrapper .particle-white {
  position: absolute;
  top: 33%;
  right: 21%;
  z-index: 1;
}

.join-us-wrapper .wavy-partical {
  position: absolute;
  top: 77%;
  right: 12%;
}

.join-us-wrapper>*:nth-child(2n + 1) {
  animation-delay: 1s;
}

.join-us-wrapper>*:nth-child(3n + 1) {
  animation-delay: 0.6s;
}

/*artist section*/
.artist-section {
  padding-top: 150px;
}

.artist-wrapper {
  background-color: #ffe1cb;
  padding: 70px 100px 60px;
  border-radius: 80px;
  padding-right: 44%;
}

.artist-wrapper p {
  font-size: 1em;
  font-weight: 500;
  line-height: 36px;
}

.artist-wrapper .artist-img {
  position: absolute;
  right: -64px;
  bottom: 0;
}

.artist-wrapper .particle-white {
  position: absolute;
  top: 8%;
  right: 38%;
}

.artist-wrapper .particle-black {
  position: absolute;
  top: 34%;
  right: 48%;
}

.artist-wrapper .particle-orange {
  position: absolute;
  top: 6%;
  right: 6%;
}

.artist-wrapper a {
  margin-left: 100px;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  text-align: unset;
  text-transform: uppercase;
  font-weight: bold;
}

/*faq starts*/
.faq-section {
  padding: 230px 0;
  position: relative;
}

.faq-section .section-title {
  padding-left: 100px;
}

.faq-section .section-subtitle {
  padding-left: 100px;
}

.faq-section .particle-orange {
  position: absolute;
  top: calc(100% + 170px);
  right: -15%;
  width: 4%;
}

.faq-section .particle-black {
  position: absolute;
  top: 46%;
  left: -7%;
}

.faq-section .wavy-particle {
  position: absolute;
  bottom: 7%;
  left: -30%;
}

.faq-accordian {
  list-style: none;
  padding-top: 100px;
}

.faq-wrapper .faq-accordian .faq-accordian-item {
  border-bottom: 1px solid #182022;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title {
  font-size: 1em;
  position: relative;
  cursor: pointer;
  padding-right: 40px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title:after {
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 5px;
  color: #f77b21;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  top: 0;
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-title.open:after {
  content: "\f068";
}

.faq-wrapper .faq-accordian .faq-accordian-item .accordian-content {
  font-size: 0.6em;
  color: #747470;
  padding-top: 20px;
  display: none;
}

/* footer starts*/
footer {
  /*padding-bottom: 200px;*/
  padding-bottom:30px;
}

.footer-cont .section-title {
  text-align: center;
}

.footer-cont p {
  font-weight: 600;
  text-align: center;
  padding-bottom: 80px;
}

.footer-cont .social-icon {
  background-color: #fff;
  min-height: 230px;
  border-radius: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cont .social-icon a img {
  transform: scale(1);
}

.footer-cont .social-icon a:hover img {
  transform: scale(0.95);
}

.copyright-para {
  padding-top: 50px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

/*internal pages*/
.internal-pages header {
  padding: 90px;
}

.internal-pages .section-subtitle:after {
  display: none;
}

.btn.more {
  max-width: 110px;
  font-size: 20px;
  min-height: 50px;
  margin-top: 50px;
  color: #f77b21;

}

.btn.more a {
  max-width: 110px;
  font-size: 20px;
  min-height: 50px;
  margin-top: 50px;
  color: #f77b21;
}

.page-banner {
  margin-top: 200px;
  background-color: #ffe1cb;
  padding-top: 110px;
  padding-bottom: 80px;
  text-align: center;

}

.page-banner .page-heading {
  font-size: 60px;
  padding-bottom: 10px;
  font-family: "Righteous", cursive;
  font-weight: 700;

}

.page-banner .sub-heading {
  font-size: 20px;
}

/*about html*/
.about-nft {
  position: relative;
  margin-top: 150px;
}

.about-nft .section-title {
  font-size: 3.2em;
}

.about-nft .section-subtitle {
  font-size: 1em;
  color: #182022;
  padding-right: 110px;
  font-weight: 600;
}



.about-nft-img .banner-img-1 {
  position: absolute;
  top: 15%;
  right: 7%;
}

.about-nft-img .banner-img-2 {
  position: absolute;
  top: 53%;
  right: -22%;
}

.about-nft-img .banner-img-2 img {
  width: 50%;
}

.about-nft-img .banner-img-3 {
  position: absolute;
  top: 50%;
  right: 22%;
}

.about-nft-img .banner-img-3 img {
  width: 50%
}

.about-why {
  display: flex;
  margin-bottom: 200px;

}

.about-why.why-list {
  list-style: none;
  margin-top: 150px;
}

.about-why .why-card {
  margin-right: 70px;
}

.about-why .why-card h3 {
  font-size: 40px;
  color: #182022;
  margin-top: 20px;

}

.about-why .why-card h6 {
  font-size: 20px;
  color: #182022;
  margin-bottom: 12px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}

.about-why .why-card p {
  font-size: 15px;
  color: #182022;
  margin-right: 40px;

}

.about-sec.why-digistic .feature-img {
  position: relative;
}

.about-sec.why-digistic .feature-img::after {
  content: '';
  position: absolute;
  height: 310px;
  background-color: #f3deab;
  border-radius: 160px;
  width: 80%;
  z-index: -1;
  display: block;
  left: -100px;
  bottom: 0;
  top: 230px;
}

.about-features {
  margin-top: 150px;

}

.about-features .feature-content {
  margin-bottom: 60px;
  list-style: none;
}

.about-features .feature-content li {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 40px;
}

.about-features .feature-content li span {
  padding-left: 20px;
}

.about-features .feature-content li .fa-solid {
  margin: auto;
  color: #f77b21;
  font-size: 20px;
}

.about-features button {
  margin-left: 30px;
  color: #f77b21;

}

.about-features button:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
}

.about-team-section {
  padding-top: 300px;
  overflow: hidden;
  position: relative;
  padding-bottom: 100px;
  text-align: center
}

.about-team-section .section-title {
  font-size: 3.2em;
}

.about-team-section .section-subtitle {
  font-size: 1em;
  color: #182022;
  padding-right: 0px;
  font-weight: 600;
}

.about-team-section .team-member-list {
  padding: 0;
  margin: 0;
  position: relative;
  display: grid;
  grid-template-columns: 30% 30% 30%;
  column-gap: 3%;
  justify-content: center;
  align-content: center;
  list-style: none;
  margin-top: 80px
}



.about-team.team-member-list:before {
  display: none;
}

.about-team-member {
  text-align: center
}

.about-team .about-team-member {
  max-width: 320px;
}

.about-team-member .team-member-social a:hover {
  color: #fff
}

.about-team-member .team-member-img {
  background-color: #ffe1cb;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;

}

.about-team-member img {
  height: 400px;
  transition: 0.5s ease-in-out;
  filter: grayscale(100%);
  margin-top: 30px;
}

.about-team-member img:hover {
  filter: grayscale(0%);

}

.about-team-member .team-member-footer {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  min-width: 140px
}

.about-team-member .team-member-footer h5 {
  font-size: 1em;
  color: #f77b21;
  text-align: center;
  font-family: "Righteous", cursive;
  font-weight: 500;
}

.about-team-member .team-member-footer span {
  font-size: 0.8em;
  color: #182022;
  font-weight: 600;
}

.about-team-member .team-member-social {
  font-size: .8em;
  margin-top: 10px;
  display: flex;
  gap: 15px;
  justify-content: center
}

.about-team-member .team-member-social a {
  color: #182022;
}

.about-team-member .team-member-social a:hover {
  color: #f77b21;
}

.about-sec.faq-section .section-title {
  font-size: 3.2em;
  padding-left: 0;
}

.about-sec p.faq-info {
  font-size: 1em;
  color: #182022;
  padding-right: 0px;
  font-weight: 600;
}

.about-sec.faq-section .phase-art-img {
  position: absolute;
  left: -20%;
  top: 10%;
}

.about-sec.faq-section .faq-wrapper .faq-accordian .faq-accordian-item {
  border-top: 1px solid #182022;
  border-bottom: 0;
}

/*blog section*/
.blog-section {
  margin-top: 180px;
}

.blog-section .blogs {
  /* margin-top: 40px; */
}

.blogs .blog-img img {
  border-radius: 35px;
  width: 100%;
}




.blog-info img {
  max-width: 16px;
}

.blog-details {
  margin-top: 40px;
  display: flex;
  font-size: 0.8em;
  font-family: "Raleway", sans-serif;
  color: #182022;
  gap: 14px
}

.blog-details a {
  color: #182022;
  text-decoration: none;
}

.blog-details a:hover {
  color: #f77b21;
}

.blog-details .blog-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-heading {
  margin-top: 30px;
}

.blog-heading a {
  color: #182022;
  font-size: 2.4em;
  line-height: 65px;
  font-family: "Righteous", cursive;
  text-decoration: none;
}

.blog-heading a:hover {
  color: #f77b21;
}

.blog-content span {
  position: relative;
  display: block;
  padding-left: 30px;
}

.blog-content>span::before {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  left: 2%;
  width: 3px;
  background-color: #f77b21;
}

.blog-content {
  color: #182022;
  font-family: "Raleway", sans-serif;
  border-bottom: 1px solid #121722;
  font-size: 1em;
  padding-bottom: 40px;
  padding-right: 70px;
  font-weight: 600;
  margin: 40px 0px;
}

.blog-content button a {
  text-decoration: none;
  color: #fff
}

.blog-comments {
  border-bottom: 2px solid #121722;

}

.blog-comments h4 {
  margin-bottom: 45px;
}

.blog-headings h4 {
  font-family: "Raleway", sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}

.blog-comment-img img {
  border-radius: 20px;
}

.comment-para {
  padding-left: 30px;
  color: #000;
  font-size: 0.8em;
  font-weight: 500;
}

.comment-para p {
  margin-bottom: 10px;
}

.commentor-name {
  font-weight: 700;
  color: #000;
  font-size: 1em;
  font-family: "Raleway", sans-serif;
}

.comment-footer {
  font-size: 0.75em;
  display: flex;
  gap: 15px
}

.nftpost-date {
  font-size: 0.6em;
  color: #121722;

}

.post-list {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.post-list .post-img img {
  border-radius: 8px;
  width: 100px;
}

.post-title {
  font-weight: 700;
  font-size: 0.6em;
  font-family: "Raleway", sans-serif;

}

.post-title a {
  color: #182022;
  text-decoration: none;
}

.post-title:hover a {
  color: #f77b21
}

.comment-footer a {
  color: #f77b21;
  text-decoration: none;
}

.user-comment {
  margin-bottom: 50px;
  display: flex;
}

.post-comments {
  margin-bottom: 150px;
}

.post-comments h4 {
  padding: 80px 0;
}

.post-comments .input-container label {
  font-size: 0.8em;
  margin-bottom: 10px;
  font-weight: 600;
}

.post-comments .input-container input,
.post-comments .input-container textarea {
  padding: 20px 16px;
  border: 2px solid #182022;
  font-size: 0.8em;
  font-weight: 600;
  color: #182022;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 40px;
}

.post-comments .input-container input:focus,
.post-comments .input-container textarea:focus {
  border: 2px solid #f77b21;
  box-shadow: none;
}

.post-comments .input-container input:active,
.post-comments .input-container textarea:active {
  border: 2px solid #f77b21;

}

.post-comments .input-container ::placeholder {
  color: #182022
}

.post-comments button {
  color: #f77b21;
  margin-top: 30px;
}

.post-comments button:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
}

.blogs-right {
  /* margin-top: 40px; */
}

.right-sec {
  background-color: #ffe1cb;
  padding: 40px 30px;
  margin-bottom: 48px;
  border-radius: 35px;
}

.categories-section {
  padding: 48px 35px;
}

.search-section {
  position: relative;
}

.search-section .input-container {
  margin-bottom: 0;
}

.search-section .input-container input {
  padding: 20px 16px;
  border: 2px solid #000;
  font-size: 0.8em;
  font-weight: 600;
  color: #000;
  background: #fdf2e5;
}

.search-section .input-container input:focus,
.search-section .input-container input:active {
  box-shadow: none;
  border: 1px solid #f77b21;
}

.search-section .search-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14%;
}

.post-section .blog-headings {
  margin-bottom: 40px;

}

.categories-section .blog-headings {
  padding-bottom: 35px;
}

.categories-section ul {
  list-style: none;
  font-size: 0.8em;
  font-weight: 700;

}

.categories-section ul li+li {
  margin-top: 25px;
}

.categories-section .categories-list a {
  color: #182022;
  text-decoration: none;
}

.categories-section .categories-list.active a {
  color: #f77b21;
}

.categories-section .categories-list:hover a {
  color: #f77b21;
}

.tag-section .blog-headings {
  margin-bottom: 30px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.blog-tags a {
  font-size: 0.8em;
  font-weight: bold;
  border-radius: 25px;
  color: #182022;
  padding: 10px 20px;
  text-decoration: none;
  background-color: #fdf2e5;
}

.blog-tags a:hover {
  background-color: #f77b21;
  color: #fff;
}

.blog-tags a.active {
  background-color: #f77b21;
  color: #fff;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px
}

.blog-pagination button {
  color: #182022;
  text-decoration: none;
  background-color: transparent;
  max-width: 50px;
  border: 2px solid #182022;
  min-height: 45px;
  font-size: 0.8em;
  padding: 0;
  box-shadow: none;

}

.blog-pagination button:hover,
.blog-pagination button:active {
  background-color: #f77b21;
  transform: translateY(0px);
  color: #fff;
  border: none;
  font-weight: 600;
}

.blog-pagination .page-link.active {
  background-color: #f77b21;
  color: #fff;
  border: none;
  font-weight: 600;
}

.blog-pages {
  padding-top: 60px;
  padding-bottom: 180px;
}

/*blog-section ends*/

/* Contact Us  */
.contact-section {
  padding: 160px 0;
}

.contact-section h2 {
  font-size: 3.2em;
  color: #182022;
  margin-bottom: 30px;
  font-weight: bold;
}

.contact-section p {
  font-size: 0.8em;
  font-weight: 500;
  color: #182022;
  margin-bottom: 72px;
  padding-right: 100px;
}

.contact-info-list {
  margin-top: 55px;
}

.contact-section .input-container {
  margin-bottom: 36px;
}

.contact-section .input-container label {
  font-size: 1.2em;
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-section .input-container input,
.contact-section .input-container textarea {
  min-height: 72px;
  border-radius: 8px;
  background: transparent;
  border: 2px solid #182022;
  color: #182022;
  font-size: 0.8em;
  font-weight: 500;
  padding: 12px 24px;

}

.contact-section .input-container input:focus,
.contact-section .input-container textarea:focus {
  background: transparent;
  box-shadow: none;
  outline: none;
  color: #182022;
  border-color: #182022;
}

.contact-section .form-container .btn {
  margin-top: 60px;
  color: #f77b21;

}

.contact-section .form-container .btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  margin-bottom: 78px;
}

.contact-info-item img {
  margin-bottom: 15px;
}

.contact-info-item span {
  font-size: 0.8em;
  font-weight: 500;
  color: #182022;
  font-weight: 500;
}

.contact-info-item a {
  font-size: 1.2em;
  text-decoration: none;
  color: #182022;
  font-weight: 500;
}

.contact-info-item p {
  font-size: 1.2em;
  text-decoration: none;
  color: #182022;
  padding: 0;
}

.contact-info-item:hover a {
  color: #f77b21;
}

/*contact section ends*/

/* Privacy Policy  */

.privacy-section {
  padding: 160px 0px 100px 0px;
}


.privacy-section .col-sm-12 {

  margin-bottom: 40px;


}

.privacy-section h3 {
  font-size: 3.2em;
  color: #182022;
  margin-bottom: 30px;
}

.privacy-section p {
  font-size: 1em;
  line-height: 1.6em;
  color: #182022;


}

.privacy-section ol {
  list-style-position: outside;
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 500;
  color: #182022;
  padding-left: 20px;


}

.privacy-section li {
  margin-bottom: 20px;


}


.privacy-section .section-title {
  line-height: 1em;
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: .5px;
  color: #182022;

}

.privacy-section button {
  color: #f77b21;

}

.privacy-section .btn:focus,
.privacy-section .btn:hover,
.privacy-section .btn:active,
.privacy-section .btn-primary:focus,
.privacy-section .btn-primary:hover,
.privacy-section .btn-primary:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 0 #f77b21;
}

/*privacy section ends*/



/* Modal MD 770 */
/* Modal SM 570 */
.modal-sm .modal-dialog {
  max-width: 570px;
}

.modal-md .modal-dialog {
  max-width: 770px;
}

.modal-content {
  border-radius: 40px;
}

.modal-header {
  padding: 70px 70px 60px;
  border: 0;
  position: relative;
}

.modal-header .modal-title {
  color: #182022;
  font-size: 2.4em;
  font-weight: bold;
}


.modal-header .btn-close {
  color: #000;
  background: url(../images/close-icon.png) no-repeat center;
  opacity: 1;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 40px;
  top: 40px;
}

.modal-body {
  padding: 0 70px 70px;
}

.wallet-box {
  border: 1px solid #182022;
  border-radius: 20px;
  padding: 40px 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 100%;
}

.wallet-box:hover {
  border: 1px solid #f77b21;
  background: rgba(251, 230, 230, 0.2);
  cursor: pointer;

}

.wallet-box h5 {
  font-size: 1.2em;
  color: #182022;
  margin: 0;
  margin-top: 8px;
}

.wallet-box p {
  font-size: 0.8em;
  color: #182022;
  text-align: center;
}



.modal .form-container {
  color: #182022;
  text-align: center;
}

.modal .input-container {
  margin-bottom: 30px;
}

.modal .input-container label {
  color: #182022;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal .input-container input {
  color: #182022;
  font-weight: bold;
  padding: 20px 12px;
  border: 2px solid #182022;
}

.modal .input-container input:focus {
  border-color: #f77b21;
}

.modal .input-container label a {
  color: #f77b21;
  font-size: 0.8em;
  text-decoration: none;
}

.modal .form-container .btn {
  margin-top: 70px;
  max-width: 80%;
  margin: 70px auto 0;
  color: #f77b21;
}

.modal .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal .form-check .form-check-input {
  width: 21px;
  height: 21px;
  border: 1px solid #182022;
  border-radius: 4px;
}

.modal .form-check .form-check-label {
  color: #182022;
  font-size: 0.8em;
}

.form-check-input:focus {
  box-shadow: none;
}

.another-way {
  color: #182022;
  margin-top: 60px;
  text-align: center;
  margin-bottom: 50px;
}

.modal .form-container .btn:focus,
.modal .form-container .btn:active {
  box-shadow: none;
  color: #fff;
  background-color: #f77b21;
}

.another-way>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 24px;
  margin-top: 16px;
}


.another-way>div a:hover {
  color: #f77b21;
}


.modal .form-container>p {
  color: #182022;
  text-align: center;
}

.modal .form-container>p a {
  color: #f77b21;
  text-decoration: none;
}


/*modals ends*/


.preloader_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100vw;
  height: 100vh;
  background:#CAE5E5;
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 99999999999999;
}

.preloader_inner {
  margin: auto;
  font-family: "Righteous", cursive;
  text-align: center;
  font-size: 6vw;
  font-weight: 600;
  color: #162022;
  margin-top: 8px;
  display: block;
  line-height: 1em;
}

.preloader.hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.preloader img {
  max-width: 145px;
  display: block;
  margin: 0 auto;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  background-color: #360ab0;
}

.infiniteBounce {
  animation-name: bounceUp;
  animation-duration: 2s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

.infiniteZoomInOut {
  animation-name: zoomIn;
  animation-duration: 2s;
  animation-delay: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes moveRighttoLeft {
  0% {
    transform: translateX(0%);
  }

  50% {
    /*transform: translateX(-36%);*/
    transform: translateX(-58%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes moveLeftoRight {
  0% {
    /*transform: translateX(-36%);*/
    transform: translateX(-58%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    /*transform: translateX(-36%);*/
    transform: translateX(-58%);
  }
}

@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

/**************************************************************/
header .logo img{
  max-width:250px;
}
#index header .laEmocion{

}
.section-title{
  font-family:sans-serif;
  font-size:5.5em;
  line-height:110px;
  font-weight:500;
}
.banner-wrapper .wavy-partical,
.banner-3.infiniteBounce{
  top:55%;
  right:0px;
  left:auto;
  height:3.5em;
  width:calc(100vw - 40%);
}
.lineaHome{
  font-family:sans-serif;
  font-size:5.5em;
  line-height:110px;
  font-weight:500;
  /*position:absolute;*/
  width:70%;
  top:calc(32% + 2.7em);
  height:2px;
  background-color:black;
  /*margin-left:calc((100vw - 1110px) / 2);*/
  width:70%;
  margin-left:10vw;
}
#index #home p{
  font-family:sans-serif;
  font-size:2em;
  line-height:45px;
  font-weight:300;
  /*position:absolute;*/
  width:53%;
  top:calc(47% + 4.7em);
  /*margin-left:calc((100vw - 1110px) / 2);*/
  margin-left:10vw;
  color:#4016ED; 
  margin-top:.2em;
  max-width:11em;
}
#qhacemos .imagen{
  vertical-align: middle;
  display:flex;
  position:relative;
  justify-content:center;
  align-items:center;
}
#qhacemos .img1{
  position:relative;
  width:80%;
}
#qhacemos .img2{
  position:relative;
  width:100%;
}
#qhacemos .bkg1{
  position:absolute;
  background-color:#C9DAE5;
  border-radius:80px; 
  width:80%;
  height:90%;
  top:10%;
}
#qhacemos .bkg3{
  position:absolute;
  background-color:#C9DAE5;
  border-radius:80px; 
  width:80%;
  height:90%;
  top:10%;
}
#qhacemos .bkg2{
 position:absolute;
  background-color:#DCEFF0;
  border-radius:80px; 
  width:80%;
  height:66%;
  top:15%; 
}
#qhacemos .bkg3{
 position:absolute;
  background-color:#C9DAE5;
  border-radius:80px; 
  width:70%;
  height:75%;
  top:15%; 
}
#qhacemos .texto{
  width:90%;
  height:fit-content;
  translate:0% 50%;
  margin:auto;
}
#qhacemos h2{
  font-family:sans-serif;
  font-size:2.3em;
  line-height:56px;
  font-weight:600;
  color:#4016ED;
}
#qhacemos p{
  font-weight:500;
}

#qsomos{
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  background-image:url('../images/back_01.png');
  background-size:auto 130%;
  background-position:-35vw center;
  background-repeat:no-repeat;
  padding-bottom:10%;
  margin-top:5em;
}
#qsomos .cont-nube{

}
#qsomos .nube{
  position:absolute;
  height:130%;
  width:auto;
  top:-15%;
  transform:translate(-50%);
}
#qsomos .recuadro.texto{
  background-color:#FFFFFF;
  color:#527CA2;
  border-radius:60px;
  /*position:absolute;*/
  /*height:30em;*/
  width:100%;
  padding-top:50px;
  padding-bottom:50px;
  padding-left:90px;
  padding-right:90px;
  /*margin-left:10%;*/
  margin-left:auto;
  margin-right:auto;
  margin-top:10%;
  /*margin-bottom:10%;*/

}
#qsomos .recuadro.texto h3,
#qsomos .recuadro.texto p{
   font-family:sans-serif;
}
#qsomos h3{
  font-size:2em;
  /*color:#4016ED;*/
}
#qsomos p{
  font-size:1em;
  margin-bottom:1.6em;
  max-width:60%;
  font-weight:600;
}
#qsomos .img1{
  position:absolute;
  left:auto;
  right:0px;
  bottom:0%;
  transform:scale(1);
  max-height:90%;
}

#collection{
  overflow-x:hidden;
  text-align:center;
  padding-bottom:30vh;
}
#collection .imgH{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  transform:scale(.8);
}
#collection h2{
  text-align:center;
  font-size:2em;
  color:#503E98;
  width:fit-content;
  margin-left:auto;
  margin-right:auto;
}
#collection .rowCollection{
  display:flex;
  justify-content: center;
  align-items: center;

}
#collection .img-left{
  margin-left:auto;
  margin-right:0px;
  transform:translateX(-8%);
}
#collection .img-right{
  margin-right:auto;
  margin-left:0px;
}
#collection .cont-img-left,
#collection .cont-img-right{
  margin-top:-4em;
  width:calc((75% - 12em) / 2);
  overflow:hidden;
}
#collection .container-text{
  justify-content:center;
  align-items:center;
  max-width:80%;
  max-height:80%;
  bottom:10%;
  position:absolute;
}
#collection .card{
  /*max-height:25vw;*/
  /*background-color:rgba(0,0,0,0)!important;*/
}
#collection .card2,
#collection .card5{
  border:2px solid #4016ED;
}
#collection .card8{
  border:2px solid #FFFFFF;
}


#comoTrabajamos h3{
  margin-bottom:1.5em;
  margin-top:2em;
  font-size:2.3em;
  color:#743E98;
  font-family:sans-serif;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
#comoTrabajamos .container-diagrama{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  max-width:1048px;
  width:90%
}
#comoTrabajamos img.img-responsive{
  margin-left:auto;
  margin-right:auto;
  max-width:100%;
  max-height:100%;
  width:100%;
  height:auto;
}

#consultoria{
  margin-top:4em;
  padding-top:15em;
  padding-bottom:2em;
  background-image:url('../images/back_04.png');
  /*background-size:100% 100%;*/
  background-size:cover;
  /*background-size:contain;*/
  background-repeat:repeat-x;
  background-position:calc(100% - 20vw) center;
  color:#4016ED;
}
#consultoria h2{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  font-family:sans-serif;
  margin-bottom:.7em;
  /*margin-top:2em;*/
  margin-top:.5em;
  font-size:2.3em;
  color:#4016ED;
}
#consultoria hr{
  /*margin-bottom:2em;*/
}
#consultoria p{
  font-size:.75em;
  font-family:sans-serif;
  margin-bottom:1em;
  font-weight:600;
  padding-left:14px;
  padding-right:14px;
}
#consultoria .recuadro{
  position:relative;
  /*margin-top:50vh;*/
  /*margin-bottom:5vh;*/
  background-color:#FFFFFF;
  padding:65px;
  border-radius:70px;
}

#tecnologias{
  margin-top:16vh;
}
#tecnologias .container-fluid{
  padding:0px;
}
#tecnologias .recuadroGrande{
  margin-top:5em;
  background-color:#4016ED;
  border-radius:120px;
  padding:90px;
  /*max-width:1380px;*/
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  position:relative;
  z-index:2;
}
#tecnologias .recuadroChico{
  background-color:#FFFFFF;
  border-radius:120px;
  padding:50px;
}
#tecnologias img.img{
  width:70%;
}
#tecnologias .cont-img{
  text-align:center;
  margin-top:15px;
  margin-bottom:15px;
  justify-content:center;
  align-items:center;
  display:flex;
}
#tecnologias .container-text h2{
  font-family:sans-serif;
  font-size:1.2em;
  color:#FFFFFF;
  font-weight:700;
  margin-bottom:1.6em;
  margin-top:2em;
}
#tecnologias .container-text a{
  font-family:sans-serif;
  font-size:1em;
  border:3px solid #FFFFFF;
  color:#FFFFFF;
  font-size:1.2em;
  text-decoration:none;
  padding-top:11px;
  padding-bottom:11px;
  padding-left:45px;
  padding-right:45px;
  border-radius:40px;
}
#tecnologias .container-text{
  margin-top:-3em;
  padding-bottom:0em;
  margin-bottom:-6em;
}
#principalesClientes{
  background-color:#FFFFFF;
  padding-top:1em;
  padding-bottom:8em;
  margin-top:-6em;
  margin-bottom:-6em;
}

#principalesClientes .rowCli{
  display:flex;
  max-width:1320px;
  margin-left:auto;
  margin-right:auto;
}
#principalesClientes .cont-cliente{
  justify-content:center;
  align-items:center;
  vertical-align:middle;
  display:flex;
  width:calc(100% / 8);
}
#principalesClientes .cont-cliente img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
}
#principalesClientes .cli1 img{
  transform:scale(.9);
}
#principalesClientes .cli2 img{
  transform:scale(.8);
}
#principalesClientes .cli3 img{
  transform:scale(.7);
}
#principalesClientes .cli4 img{
  transform:scale(.6);
}
#principalesClientes .cli5 img{
  transform:scale(1.2);
}
#principalesClientes .cli6 img{
  transform:scale(.5);
}
#principalesClientes .cli7 img{
  transform:scale(.4);
}
#principalesClientes .cli8 img{
  transform:scale(.9);
}

#principalesClientes h3{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  font-family:sans-serif;
  font-size:2.3em;
  color:#4016ED;
  margin-top:3em;
  margin-bottom:1.6em;
}

#principalesClientes hr{
  color:#000000;
}

#sumate{

}
#sumate .recuadroGrande{

}
#sumate .recuadroChico{
  position:relative;
  justify-content:center;
  align-items:center;
}
#pageIndex #sumate h3{
  position:absolute;
  top:1.4em;
  color:#174455;
  font-family:sans-serif;
  font-size:2em;
  margin-top:2em;
}
#pageIndex #sumate a{
  top:calc(50% - .8em);
  position:absolute;
  border: 2px solid #528CA2;
  color:#528CA2;
  font-family:sans-serif;
  font-size:1.6em;
  padding-left:1em;
  padding-right:1em;
  padding-top:.3em;
  padding-bottom:.3em;
  border-radius:1em;
  text-decoration:none;
}
#sumate .cont-mapa{
  border-radius:70px;
  overflow:hidden;
}
.card{
  /*--bs-card-bg:rgba(0,0,0,0)!important;*/
  /*background-color:rgba(0,0,0,0)!important;*/
}
#consultoria .pc{
  margin-top:-40vh;
  /*width:60vw;*/
  width:52vw;
  max-width:720px;

  /*position:absolute;*/
  /*max-width:60vw;*/
  top:-13em;
  /*left:calc(50% - 30vw);*/
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
#consultoria .pc img{
  max-width:100%;
  height:auto;
}
#tecnologias img.hands{
  max-width:100%;
  transform:scale(110%) translateX(-20%) translateY(14%);
}


#sumate .recuadroGrande{
  max-width:1380px;
  margin-left:auto;
  margin-right:auto;
  /*padding-left:1em;
  padding-right:1em;
  padding-top:1em;*/
  padding-left:4%;
  padding-right:4%;
  padding-top:4%;
  padding-bottom:4em;
  border-radius:200px;
  /*border:.5px solid rgba(0,0,0,.4);*/
  background: rgb(237,214,250);
  background: -moz-linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  background: -webkit-linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  background: linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#edd6fa",endColorstr="#cae5e5",GradientType=1);
}
#sumate>.container-fluid{
  padding:0px;
}
#pageIndex #sumate .recuadroChico{
  background: rgb(203,229,229);
  background: -moz-linear-gradient(90deg, rgba(203,229,229,0.8155637254901961) 27%, rgba(255,255,255,0.6334908963585435) 75%, rgba(255,255,255,1) 98%);
  background: -webkit-linear-gradient(90deg, rgba(203,229,229,0.8155637254901961) 27%, rgba(255,255,255,0.6334908963585435) 75%, rgba(255,255,255,1) 98%);
  background: linear-gradient(90deg, rgba(203,229,229,0.8155637254901961) 27%, rgba(255,255,255,0.6334908963585435) 75%, rgba(255,255,255,1) 98%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cbe5e5",endColorstr="#ffffff",GradientType=1);
  border-radius:190px;
  max-height:14em;
  margin-top:2em;
  margin-bottom:4em;
}
#sumate .img-desafios{
  transform:translateX(7%) translateY(-10%) scale(110%);
}
#sumate{
  overflow:hidden;
  /*margin-top:25vh;*/
}

.nav-menu-wrapper .nav-menu .nav-links li{
  height:2.5em;
}
.nav-link{
  font-size:1.5em!important;
}

.nav-menu-wrapper{
  background-image:url('../images/back_06.png'),linear-gradient(0deg, rgba(237,214,250,1) 0%, rgba(229,233,237,1) 35%, rgba(202,229,229,1) 100%);
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center 100%;
}
footer{
  background-color:#F8F9FA;
}
footer img.imgLogo{
  width:260px;
}
footer .rowLogo{
  padding-top:2em;
  display:flex;
  align-items:center;
}
footer .textFooter{
  font-size:13px;
  max-width:33em;
  font-family:sans-serif;
  font-weight:600;
}
footer .rowData{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  margin-top:3em;
}
footer p{
  text-align:left;
  font-size:15px;
  font-weight:700;
  font-family:sans-serif;
}
footer .divisionFooter{
  margin-bottom:1.5em;
  background-color:#4016ED;
  color:#4016ED;
}
footer h5{
  color:#4016ED;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  font-size:13px;
  font-family:sans-serif;
  font-weight:600;
}

#contactanos{
  font-family:sans-serif;
}
#contactanos .container-recuadro{
  border-radius:34px;
  margin-top:38vh;
  background-color:#F8F9FA;
  text-align:center;
}
#contactanos h2{
 font-family:sans-serif;
 color:#000000;
 font-weight:700;
 font-size:1.4em;
}
#pageContactanos #contactanos h2{
   padding-top:1.8em;
}
#pageContactanos #contactanos h3{
   padding-bottom:1.3em;
}

#contactanos h3{
  font-family:sans-serif;
  color:#528CA2;
  font-weight:500;
  font-size:1.4em;
  padding-bottom:1.2em;
}
#contactanos label{
  padding-top:2em;
  font-size:.7em;
  padding-bottom:.4em;
}
#contactanos input, textarea{
  width:100%;
  padding-top:.8em;
  padding-bottom:.8em;
  padding-left:1.4em;
  padding-right:1.4em;
  border:0px solid rgba(0,0,0,0);
  font-size:.7em;
  border-radius:10px;
  font-weight:400;
}
#contactanos input::placeholder,
textarea::placeholder{
  color:#528CA2;
}
#contactanos .col{
  padding-left:1em;
  padding-right:1em;
}
#contactanos .container-form{
  max-width:1110px;
}
#contactanos textarea{
  min-height:10em;
}
#contactanos #btnContactanos{
  padding-bottom:8px;
  float:right;
  padding-left:0px;
  padding-right:0px;
  font-size:.8em;
  border-left:0px;
  border-right:0px;
  border-top:0px;
  margin-top:1.5em;
  margin-bottom:20vh;
  background-color:rgba(255,255,255,0);
  color:rgb(20,20,20);
}

#pageSumate #sumate{
  font-family:sans-serif;
}
#pageSumate #sumate .container-recuadro{
  border-radius:34px;
  margin-top:38vh;
  background-color:#F8F9FA;
  text-align:center;
}
#pageSumate #sumate h2{
 font-family:sans-serif;
 color:#000000;
 font-weight:700;
 font-size:1.4em;
}
#pageIndex #sumate h3{
  font-family:sans-serif;
  color:#528CA2;
  font-weight:500;
  font-size:1.4em;
  padding-bottom:1.2em;
  margin-top:.5em;
}
#sumate label{
  padding-top:2em;
  font-size:.7em;
  padding-bottom:.4em;
}
#sumate input, textarea{
  width:100%;
  padding-top:.8em;
  padding-bottom:.8em;
  padding-left:1.4em;
  padding-right:1.4em;
  border:0px solid rgba(0,0,0,0);
  font-size:.7em;
  border-radius:10px;
  font-weight:400;
}
#sumate input::placeholder,
textarea::placeholder{
  color:#528CA2;
}
#sumate .col{
  padding-left:1em;
  padding-right:1em;
}
#sumate .container-form{
  max-width:1110px;
}
#sumate textarea{
  min-height:10em;
}
#sumate #btnSumate {
    padding-bottom: 8px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: .8em;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    margin-top: 3.5em;
    margin-bottom: 20vh;
    background-color: rgba(255,255,255,0);
    color: rgb(20,20,20);
}
#sumate #ValidationErrors {
    padding-top: .2em;
    padding-bottom: .2em;
}
#sumate #ValidationErrors p {
    font-size: .7em;
    margin-top: .3em;
    margin-bottom: 0px;
}

#sumate #recaptcha {
    padding-bottom: 8px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: .8em;
    border-left: 0px;
    border-right: 0px;
    border-top: 0px;
    margin-top: 3.5em;
    margin-bottom: 20vh;
}

.img-footer {
    width:1.6em;
    height:auto;
    margin-right:.4em;
}
.spc-img{
  margin-right:2.4em;
}
footer a{
  text-decoration:none;
}
.formularioContactanos,
.formularioSumate{
  position:relative;
}
#resultContactanos,
#resultSumate{
    display:flex;
    justify-content:center;
    align-items:center;
    position:absolute;
    bottom:2em;
    width:480px;
    margin-right:auto;
    padding-left:1em;
    padding-right:1em;
    padding-top:.3em;
    padding-bottom:.3em;
    text-align:center;
    margin-left:calc(50% - 240px);
    border-radius:1em;
    max-height:4em;
    overflow:hidden;
    text-overflow:ellipsis;
}
#pageContactanos .imagen{
  position:absolute;
  bottom:70%;
  right:0%;
  max-width:230px;
}
#pageSumate #sumate h2{
  padding-top:2em;
  color:#174455;
  font-family:sans-serif;
  font-size:1.5em;
  margin-top:2em;
}
#pageSumate #sumate h3{
  color:#528CA2;
  font-family:sans-serif;
  font-size:1.5em;
  padding-bottom:1.5em;
}
#pageSumate .imagen1{
  position:absolute;
  bottom:70%;
  left:5%;
  max-width:230px;
}
#pageSumate .imagen2{
  position:absolute;
  bottom:14%;
  right:5%;
  max-width:230px;
}
#pageSumate .particle-black1{
  position:absolute;
  bottom:70%;
  left:19%;
  max-width:25px;
}
#pageSumate .particle-black1.infiniteZoomInOut{
  animation-duration:3s;
}
#pageSumate .particle-black2{
  position:absolute;
  bottom:35%;
  right:19%;
  max-width:25px;
}
#pageSumate .particle-white{
  position:absolute;
  top:-10%;
  left:25%;
  max-width:25px;
}
#pageContactanos .particle-black1{
  position:absolute;
  top:11%;
  left:8%;
  max-width:25px;
}
#pageContactanos .particle-black1.infiniteZoomInOut{
  animation-duration:1s;
}
#pageContactanos .particle-black2{
  position:absolute;
  bottom:18%;
  right:6%; 
  max-width:25px;
}
#pageContactanos .particle-white{
  position:absolute;
  right:41%;
  top:-67%;
  max-width:25px;
} 
#pageIndex .particle-white1{
  position:absolute;
  left:8%;
  top:16%;
  max-width:25px;
}
#pageIndex .particle-white2{
  position:absolute;
  top:-19%;
  left:52%;
  max-width:25px;
}
#qhacemos{
  position:relative;
}
#pageIndex .particle-white3{
  position:absolute;
  top:3%;
  right:10%;
  max-width:25px;
}
#pageIndex .particle-white4{
  position:absolute;
  top:21%;
  right:48%;
  max-width:25px;
}
#pageIndex .particle-white5{
  position:absolute;
  top:25%;
  right:6%;
  max-width:25px;
  filter:invert(1);
}
#pageIndex .particle-white6{
  position:absolute;
  top:-12%;
  right:40%;
  max-width:25px;
}
#pageIndex .particle-white7{
  position:absolute;
  top:1%;
  left:7%;
  max-width:25px;
}
#pageIndex .particle-white8{
  filter:invert(.8);
  position:absolute;
  top:0%;
  right:20%;
  max-width:25px;
}
#pageIndex .particle-white9{
  position:absolute;
  bottom:0%;
  left:30%;
  max-width:25px;
}
#comoTrabajamos{
  padding-top:10vh;
  position:relative;
}
#pageIndex .particle-white10{
  position:absolute;
  top:8%;
  right:10%;
  max-width:25px;
}
#pageIndex .particle-white11{
  position:absolute;
  top:26%;
  left:5%;
  max-width:25px;
}
#pageIndex .particle-white12{
  position:absolute;
  bottom:19%;
  right:7%;
  max-width:25px;
  filter:invert(1);
}
#pageIndex .particle-white13{
  position:absolute;
  bottom:-9%;
  left:22%;
  max-width:25px;
}
#tecnologias{
  position:relative;
  padding-bottom:8em;
}
#pageIndex .particle-white14{
  position:absolute;
  top:-13%;
  right:40%;
  max-width:25px;
  filter:invert(1);
}
#pageIndex .particle-white15{
  position:absolute;
  top:-5%;
  left:22%;
  z-index:1;
  max-width:25px;
}
#pageIndex .particle-white16{
  position:absolute;
  bottom:16%;
  right:7%;
  z-index:4;
  max-width:25px;
  filter:invert(1);
}
#pageIndex #home .particle-white{
  max-width:28px;
  z-index:-1;
}
.particle-orange {
  filter:invert(.9);
}
/*pageIndex .banner-img-wrapper .banner-1{
  position:absolute;
  right:5%;
  top:-10%
}*/
#pageIndex .section-title{
  position:relative;
}
#pageIndex img.banner-3.infiniteBounce{
  position:absolute;
  max-height:2em;
  left:35vw;
  height:0.7em;
  max-width:1380px;
  margin-left:auto;
  margin-right:auto;
  margin-top:auto;
  bottom:0em;
}
#pageIndex .banner-1{
  position:absolute;
  width:38vw;
  top:-5vw;
  right:1%;
}
#pageIndex .particle-white0{
  right:5%;
  position:absolute;
  z-index:0;
  top:-20%; 
  max-width:25px;
}
.particle-white,
.particle-orange,
.particle-black{
  z-index:-2!important;
}
#tecnologias h3{
  font-family:sans-serif;
  font-size:1em;
  /*font-style:oblique;*/
  padding-left:30px;
}
#tecnologias h3{
  font-size: 2.3em;
  font-family: sans-serif;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight:500;
  margin-bottom:1em;
  padding-left:0px;
  padding-right:0px;
  color:#4016ED;
}
#consultoria a {
    font-family: sans-serif;
    font-size: 1em;
    border: 3px solid #4016ED;
    color: #4016ED;
    font-size: 1.2em;
    text-decoration: none;
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 45px;
    padding-right: 45px;
    border-radius: 40px;
    width:fit-content;
    margin-left:auto;
    margin-right:auto;
    margin-top:2em;
}
#consultoria h3{
  text-align:center;
  font-weight:600;
  font-family:sans-serif;
  margin-bottom:1em;
}
footer .rowData .row{
  margin-left:auto;
  margin-right:auto;
  width:fit-content;
}