html {
  /* width: 100vw; */
  scroll-behavior: smooth;
}

:root {
  --body-bg: #ffffff;
  --item-bg: #ffffff;
}

body{
  font-family: 'SF Pro Display', sans-serif;
  color: #4845B8;
  overflow-x: hidden;
  margin: inherit;
}

h1{
  font-family: 'SF Pro Display';
  font-weight: bold;
  font-style: normal;
}

h2, h3, h4{
  font-family: 'SF Pro Display';
  font-weight: 600;
  font-style: normal;
}

p, header nav.navbar ul li{
  font-family: 'SF Pro Display';
  font-weight: normal;
  font-style: normal;
}

header nav.navbar{
  font-size: 1rem;
  font-weight: bold;
  background-color: white;
  /* border-bottom: solid 1px #e1e1e1; */
  padding: 1.3rem 1rem;
}

header nav.navbar ul li a.nav-link.brochure{
  border: solid 1px grey;
  border-radius: 1rem;
  margin: 0 2rem;
}

header nav.navbar ul li{
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}

header nav.navbar ul li a.nav-link {
    padding: .5rem 2rem;
}


header nav.navbar ul li a.nav-link.brochure:hover {
  border: radial-gradient(
    farthest-side at bottom left,
    rgba(120, 13, 155), 
    transparent
  ),
  radial-gradient(
    farthest-corner at bottom right,
    rgb(0, 0, 255), 
    transparent 800px
  );;
  border-radius: 1rem;
  margin: 0 2rem;
  background: 
  radial-gradient(
    farthest-side at bottom left,
    rgb(13, 0, 255), 
    transparent
  ),
  radial-gradient(
    farthest-corner at bottom right,
    rgba(120, 13, 155),
    transparent 800px
  );
  color: #ffffff;
}

header nav.navbar ul li a,
header nav.navbar ul li a:active,
header nav.navbar ul li a:hover,
header nav.navbar ul li a:focus,
header nav.navbar ul li a:focus-within,
header nav.navbar ul li a:visited {
  color: black;
}

header nav.navbar .navbar-brand{
  margin-left: 0.8rem;
}
header nav.navbar .navbar-brand img{
  max-height: 4vh;
}

main section.main-head{
  color: #1F1F1F;
  text-align: center;
  min-height: 40vh;
  border-bottom: solid 1px #e1e1e1;
}

main section.main-head h1{
  font-family: 'SF Pro Display';
  /* padding: 23vh 3vw; */
  font-weight: bolder;
  font-size: 5rem;
  margin: 12vh 0;
  /* width: 100%; */
}

main section.main-head h2{
  /* position: absolute; */
  /* width: 100%; */
  /* left: 3vw;
  top: 25vh; */
  /* padding: 31vh 3vw; */
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 1.7rem;
  margin-bottom: 4vh;
}

main section.main-head .transition-text.active{
  /* display: block; */
  opacity:1;
}

main section.main-head .transition-text{
  /* display: none; */
  opacity:0;
  transition:opacity 1s linear;
  position: relative;
  z-index: 1;
}

main section.about-main-head{
  color: #1F1F1F;
  text-align: center;
  min-height: 40vh;
  /* padding-bottom: 10vh; */
}

main section.about-main-head h1{
  font-family: 'SF Pro Display';
  padding: 3vh 3vw;
  font-weight: bolder;
  font-size: 3rem;
  margin: 10vh 31vw 0;
  border-bottom: solid 1px #e1e1e1;
  /* width: 100%; */
  overflow: hidden;
}

main section.about-main-head h2{
  padding: 4vh 3vw;
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 1.5rem;
  margin: 0 24vw;
}

main section.about-main-head .row h3{
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 1rem;
}

main section.about-main-head .row p{
  font-family: 'SF Pro Display';
  color: grey;
  font-size: 1rem;
}

main section.about-main-head .row .img-wrapper{
  overflow: hidden;
  border: solid 1rem white;
  position: relative;
  height: 17rem;
  width: 13rem;
  display: inline-block;
}

main section.about-main-head .row .img-wrapper img{
  height: 15rem;
  position: absolute;
  object-fit: cover;
  text-align: center;
  left: -5.5rem;
  top: 0;
  transition:all .2s ease-in-out;
}

main section.about-main-head .row .img-wrapper img:nth-child(2){
  opacity: 0;
}

main section.about-main-head .row .img-wrapper:hover img:nth-child(1){
  opacity: 0;
}

main section.about-main-head .row .img-wrapper:hover img:nth-child(2){
  opacity: 1;
}

.cta-mobile-box {
  display: none;
}

/*** effect rotate-z ***/

main section.about-main-head .row .img-wrapper img.img-rotate-z{
  transition:all .2s ease-in-out;
  -webkit-transition:all .2s ease-in-out;
  -moz-transition:all .2s ease-in-out;
  -ms-transition:all .2s ease-in-out;
  -o-transition:all .2s ease-in-out;
}

main section.about-main-head .row .img-wrapper img.img-rotate-z:hover{
  transform:rotateZ(30deg) scale(1.2,1.2);
  -webkit-transform:rotateZ(30deg) scale(1.2,1.2);
  -moz-transform:rotateZ(30deg) scale(1.2,1.2);
  -ms-transform:rotateZ(30deg) scale(1.2,1.2);
  -o-transform:rotateZ(30deg) scale(1.2,1.2);
}

main section.about-main-head .row .col{
  padding-left: 5px;
  padding-right: 5px;
}

main section.about-main-head .about-main-footer {
  margin: 10vh 31vw 4vh;
  /* border-top: solid 1px #e1e1e1; */
  border-bottom: solid 1px #e1e1e1;
}

main section.about-main-head .about-main-footer img{
  max-height: 4vh;
  margin: 4vh 0 0 0;
}

main section.about-main-head .about-main-footer h2{
  margin: 0;
}

main section.about-main-detail{
  padding: 5vh 0;
  border-top: solid 1px #e1e1e1;
}

main section.about-main-detail .row .img-wrapper{
  overflow: hidden;
  position: relative;
  height: 22rem;
  width: 15rem;
  display: inline-block;
}

main section.about-main-detail .row .img-wrapper img{
  height: 23rem;
  position: absolute;
  object-fit: cover;
  text-align: center;
  left: 0;
  top: 0;
}

main section.about-main-detail img{
  display: block;
  width: 100%;
}

main section.about-main-detail ul{
  list-style: none;
  padding: 0;
  color: grey;
}

main section.about-main-detail h1{
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 3rem;
}

main section.about-main-detail h5{
  font-family: 'SF Pro Display';
  font-weight: bolder;
  margin-top: 5vh;
}

main section.about-main-detail h2{
  color: grey;
  border-bottom: solid 1px #e1e1e1;
  margin-bottom: 5vh;
  font-size: 1.6rem;
  padding-bottom: 1vh;
}

main section.about-main-detail p, main section.about-main-detail div > a{
  color: grey;
}

main section.about-main-detail div > a:hover{
  color: #999999;
}

main section.about-main-detail .row .col-3{
  text-align: center;
}

main section.description{
  text-align: center;
  padding: 5vh 0 0 0;
  overflow: hidden;
}

main section.description h3{
  margin: 2vh 0;
  font-size: 1.1rem;
  font-weight: bold;
}

main section.description p{
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  background-color: black;
}

main section.description p strong{
  color: white;
  font-size: 1.1rem;
  background-color: black;
  font-weight: normal;
  width: 100%;
  display: block;
  margin-bottom: 1vh;
}

main section.description figure.effect-goliath h2{
  color: white;
  /* font-weight: bold; */
  font-size: 1.1rem;
  background-color: black;
  font-weight: normal;
  opacity: 0.9;
}

/* main section.description img{
  max-height: 38vh;
} */

main section.description figure h2{
  text-align: center;
  font-size: 1.5rem;
  color: white;
  /* text-shadow: 4px 5px 6px #1C6EA4; */
  width: 100%;
}

.proyects_folio {
  margin-top: 2vh;
}

/*Brand banner section*/
main section.brand-banner{
  /* background-image: url(../img/fondo-sect.png);
  background-repeat: no-repeat;
  background-position: right; */
  color: white;
  /* padding: 24vh 63vh 22vh 38vh; */
  position: relative;
  max-height: 400px;
  overflow: hidden;
  /* background-size: cover; */
}

/* Slider brand section */
.partners_section {
  padding: 64px 0 12vh 0;
}

.section_title {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 8rem;
  border-bottom: solid 1px #e1e1e1;
}

.section_title h2 {
  font-size: 2rem;
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 1.7rem !important;
  margin-bottom: 4vh;
}

.logos_slider {
  overflow-x: hidden;
}

.overflow {
  display: flex;
  padding: .5rem 1rem;
  overflow: hidden;
}

.reverse .logos_wrapper {
  animation-direction: reverse;
}

.logos_wrapper {
  display: flex;
  justify-content: space-around;
  animation: logoLoop 30s linear infinite;
}

.logo_item {
  margin-left: 1rem;
  padding: 1rem;
  aspect-ratio: 30/9;
  background: var(--item-bg);
  display: flex;
  display: grid;
  place-items: center;
  border-radius: 1rem;
}

.logo_item img {
  /* height: 1.5rem; */
  width: 10rem;
  margin-inline: 2rem;
}

@keyframes logoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}



/* End brand section */

main section.brand-banner:after{
  content: '';
  background-color: black;
  width: 100%;
  height: 100%;
  background-image: url(../img/fondo-sect.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

main section.brand-banner:before{
  content: '';
  background-color: black;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

main section.brand-banner h1{
  font-weight: bold;
  padding-top: 13vh;
  padding-left: 11vw;
}

main section.brand-banner p{
  margin-top: 1vh;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 22vh;
  padding-left: 11vw;
  padding-right: 46vw;
}

main section.brand-banner p span{
  color: #00EBC4;
}

/*Roadnmap section*/
main section.container.roadmap{
  text-align: center;
  padding: 0 6vw;
  background-color: white;
  position: relative;
}

main section.container.roadmap h1{
  color: black;
  font-size: 2rem;
  font-weight: bolder;
  padding: 14vh 0;
}

main section.container.roadmap h4{
  color: grey;
  font-size: 1.4rem;
  font-weight: bolder;
}

main section.container.roadmap .row.months{
  text-align: left;
}

main section.container.roadmap .row.months .circle{
  height: 10px; width: 10px;
  border-radius: 5px;
  background-color: #4845B8;
}

main section.container.roadmap .row.descriptions{
  text-align: left;
  border-top: 1px solid grey;
  padding-top: 1vh;
  margin-top: 4vh;
  margin-bottom: 14vh;
  position: relative;
}

main section.container.roadmap .row.descriptions:after{
  content: '';
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background-color: #50E3C2;
  position: absolute;
  left: 0;
  top: -1vh;
}

main section.container.roadmap .row.descriptions:before{
  content: '';
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background-color: #50E3C2;
  position: absolute;
  right:0;
  top: -1vh;
}

main section.container.roadmap .row.descriptions h4{
  font-weight: bold;
  color: grey;
  margin: 0;
}

main section.container.roadmap .row.descriptions p{
  color: grey;
}

/*Trust branding section*/
main section.trust-branding{
  text-align: center;
  padding: 18vh 0;
  /* border-bottom: solid 1px #e1e1e1; */

  /* box-shadow: 8px 56px 10px -52px rgba(0,0,0,0.17) inset;
  -webkit-box-shadow: 8px 56px 10px -52px rgba(0,0,0,0.17) inset;
  -moz-box-shadow: 8px 56px 10px -52px rgba(0,0,0,0.17) inset; */
}
main section.trust-branding h1{
  font-size: 2rem;
  font-weight: bolder;
}
main section.trust-branding h2{
  /* position: absolute; */
  /* width: 100%; */
  /* left: 3vw;
  top: 25vh; */
  /* padding: 31vh 3vw; */
  font-family: 'SF Pro Display';
  font-weight: bolder;
  font-size: 1.7rem;
  /* margin-bottom: 4vh; */
  margin: 0 0 4vh 0;
  border-bottom: solid 1px #e1e1e1;
}

main section.trust-branding img{
  /* background-color: black; */
  max-height: 12vh;
  max-width: 90vw;
  margin-top: 7vh;
}

.presentation-box i {
  color: #000000;
  padding: 0 4px;
  font-size: 2rem;
}

/*Footer*/
footer{
  background-color: black;
  /* min-height: 50vh; */
  text-align: center;
  vertical-align: middle;
  padding: 4vh 2vw;
}

footer h1{
  padding: 17vh 0;
  background-image: url(../img/textura.png);
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  background-color: #005C74;
  background-size: cover;
  font-weight: bold;
}

footer img{
  padding: 4vh 0;
}

footer label{
  width: 100%;
  color: white;
  text-align: left;
  font-weight: bolder;
}

footer input, footer .input-group-append button{
  background-color: black !important;
  border-left: none !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: solid 2px !important;
}

footer small#emailHelp, footer small#emailSuccesfull{
  display: none;
  font-size: 0.8rem;
}

footer input.form-control {
    padding: 0;
}

footer input.form-control:focus {
    color: white !important;
}

footer .input-group{
  margin-bottom: 9vh;
}
footer p{
  /* margin: 3vh 0 2vh 0; */
  color: #999;
  font-weight: bold;
}
footer img{
  /* float: left; */
  padding: 0;
  max-height: 1.6rem;
}

/* H1 EFFECT */
.effect {
  font-size: 6vw;
  /* text-transform: uppercase; */
  letter-spacing: 0.2vw;
  font-weight: 700;
  display: inline-block;
  position: relative;
 -webkit-background-clip: text;
  background-clip: text;
  background: -webkit-linear-gradient(0deg, #222 50%, transparent 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 100% 0;
  background-size:200% 100%;
  transition: 0.6s all cubic-bezier(0.860, 0.000, 0.070, 1.000) 0.8s;
}

.effect:before{
  content: "";
  height: 100%;
  width: 100%;
  background: #eaeaea;
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;left: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.effect:after{
  content: "";
  height: 100%;
  width: 100%;
  background: #222;
  z-index: 2;
  display: block;
  position: absolute;
  top: 0;left: 0;
  transform-origin: left;
  transform: scaleX(0);
}
.effect.active {
  background-position: 0 0;
}

.effect.active:before {
    animation: anime 1.2s cubic-bezier(0.860, 0.000, 0.070, 1.000) forwards;
}
.effect.active:after {
    animation: anime 1.2s 0.5s cubic-bezier(0.860, 0.000, 0.070, 1.000) forwards;
}
@keyframes anime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51%{
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }


}

/** Media Queries **/
@media (max-width: 767.98px) {

  main section.roadmap .row.months {
    display: none;
  }
  main section.roadmap .row.descriptions {
    display: none;
  }

  main section.roadmap .row.mobile {
    display: block;
  }

  main section.container.roadmap h1 {
    padding-bottom: 2vh;
  }

  main section.roadmap ul.timeline {
    list-style-type: none;
    position: relative;
    margin-bottom: 14vh;
  }
  main section.roadmap ul.timeline:before {
      content: ' ';
      background: #d4d9df;
      display: inline-block;
      position: absolute;
      left: 29px;
      width: 2px;
      height: 100%;
      z-index: 400;
  }
  main section.roadmap ul.timeline > li {
      margin: 20px 0;
      padding-left: 20px;
  }
  main section.roadmap ul.timeline > li:before {
      content: ' ';
      background: white;
      display: inline-block;
      position: absolute;
      border-radius: 50%;
      border: 3px solid #22c0e8;
      left: 20px;
      width: 20px;
      height: 20px;
      z-index: 400;
  }

  main section.use-cases .row.attributes p {
    /* font-size: 1.5vw; */
    padding-left: 5vw;
  }
}

@media (max-width: 1000px) {
  main section.brand-banner:after{
    opacity: 0.5;
  }
  main section.brand-banner h1, main section.brand-banner p{
    padding-left: 23vw;
    padding-right: 10vw;
  }

  /* main section.main-head .main-head-item h1{
    font-size: 2rem;
    padding: 15vh 3vw;
  }

  main section.main-head .main-head-item h2{
    font-size: 1rem;
    padding: 20vh 3vw;
  } */
  header nav.navbar ul li a.nav-link {
    padding: .5rem 1.2rem;
  }

  .main-head svg{
    min-height: 91vh;
  }

  main section.main-head{
    text-align: center;
  }

  .justify-content-center {
    margin: auto;
  }

  .media-mt {
    margin-top: 4vh;
  }
}

@media (max-width: 991.98px) {

}

@media (max-width: 767px) {
  header nav.navbar .navbar-brand {
    display: block;
    margin: auto;
  }
  header nav.navbar .navbar-brand img{
    max-height: 4vh;
  }

  .nav-buttons {
    display: none !important;
  }

  .contain-cta-mobile-box {
    width: 100%;
    text-align: center;
    padding-top: 4rem;
    border-top: solid 1px #c1c1c1;
  }

  .cta-mobile-box {
    display: inherit;
  }

  .btn-cta-mobile {
    width: 60%;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 4vh;
    border: none;
    font-size: 1.6rem;
    font-weight: bolder;
    font-family: 'SF Pro Display';
    color: #ffffff;
    box-shadow: 1px 20px 23px -17px rgba(32,4,49,0.83);
-webkit-box-shadow: 1px 20px 23px -17px rgba(32,4,49,0.83);
-moz-box-shadow: 1px 20px 23px -17px rgba(32,4,49,0.83);
  }

  .element {
      background: 
        radial-gradient(
          farthest-side at bottom left,
          rgba(120, 13, 155), 
          transparent
        ),
        radial-gradient(
          farthest-corner at bottom right,
          rgb(0, 26, 255), 
          transparent 800px
        );
  }

  main section.main-head h1 {
    font-weight: bolder;
    font-size: 4rem;
    margin: 4vh 0 4vh 0;
    line-height: 3.5rem;
  }

  .main-head h2 {
    padding: 0 6vw;
  }

  main section.description {
    padding: 5vh 6vw 0 6vw;
}

  .info-footer-box {
    width: 100%;
    margin: auto;
    display: inline-block !important;
  }

  footer .row div:first-child{
    margin-bottom: 4vh;
    padding: 0 6vw;
  }

  main section.about-main-head h1 {
    margin: 0;
  }

  main section.about-main-head h2 {
    margin: 0;
  }

  main section.about-main-head .about-main-footer {
    margin: 0;
  }

  main section.trust-branding {
    padding: 0 0 10vh 0;
  }

  figure.effect-goliath p {
    /* text-transform: none;
    font-size: 90%; */
    opacity: 1;
    /* -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,50px,0);
    transform: translate3d(0,1vh,0); */
  }


  main section.description p {
  padding-bottom: 24px;
  }

  .section_title {
    margin-top: 4rem;
  }

  .presentation-box {
    text-align: center;
    border-bottom: solid 1px #e1e1e1;
    padding-bottom: 2rem;
  }

  .presentation-box i {
    color: #000000;
    padding: 0 4px;
    font-size: 2rem;
  }

  main section.about-main-detail h1 {
    padding-top: 2rem;
}
}


@media (max-width: 720px) {
  /* main section.main-head .main-head-item h1{
    font-size: 1.5rem;
    padding: 11vh 3vw;
  }

  main section.main-head .main-head-item h2{
    font-size: 1rem;
    padding: 15vh 3vw;
  } */
  main section.trust-branding h2 {
    margin: 0;
    padding: 5vh 0;
  }
}

@media (max-width: 615px) {
  /* main section.main-head .main-head-item h1{
    font-size: 1.3rem;
    padding: 5vh 3vw;
  }

  main section.main-head .main-head-item h2{
    font-size: 1rem;
    padding: 9vh 3vw;
    line-height: 14px;
  } */
/*
  .main-head-indicators {
    bottom: 0;
  } */

  /* .main-head {
    min-height: 82vh;
  } */

  .main-head img{
    min-height: 85vh;
  }


}

@media (max-width: 575.98px) {
  main section.main-head h2{
    top: 14vh;
  }

  figure.effect-goliath {
    min-height: 600px;
  }

  main section.description figure.effect-goliath h2 {
    display: none;
  }
}
