@import url("https://fonts.googleapis.com/css2?family=Akshar:wght@300;400&display=swap");
body {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-family: "Akshar", sans-serif;
  font-size: 1.1em;
  --background-top-nav: #010101;
  --white-button: #fafafa;
  --dark-white: #919191;
  --blue-green: #002030;
  --blue-green-light: #34b8dd;
  --blue-dark: #012130;
  --blue-green-light-2: #0093e82d;
  --shadow-gray: 0px 3px 20px rgb(0 0 0 / 7%);
}
/*UTILS CLASSES*/
.blue-text {
  color: var(--blue-green-light);
}
.sm-text {
  font-size: 1em;
}
.text-grey {
  color: var(--dark-white);
}
.vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.text-white-bold {
  color: var(--white-button);
  font-weight: bolder;
  font-size: 1.1em;
}

.text-white-light {
  color: var(--white-button);
  font-weight: lighter;
}

.formulario-demo {
  text-align: center;
  /*background:hsl(249, 87%, 43%);*/
  /*border: 0px solid rgba(253, 250, 250, 0.5);*/
  padding: 10px 10px 10px 10px;
  border-radius: 7px;
  position: absolute;
  top: 120px;
  right: 25%;
  width: 250px;
  color: rgb(255, 241, 240);
  text-align: left;
}
.contact-demo {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  /*  border: 1px solid rgba(248, 248, 248, 0.986);*/
}
.contact-demo input {
  color: #f8f8f7;
  border: 1px solid rgba(248, 248, 248, 0.986);
  background: none;
  /*box-shadow: var(--shadow-gray);*/
  margin-bottom: 0.5em;
  outline: 1px;

  padding: 1em;
  border-radius: 10px;
  font-size: 1em;
}
::placeholder {
  color: rgb(105, 105, 105);
  font-family: "Akshar", sans-serif;
}

.form-submit-btn {
  outline: 0px;

  padding: 0.5em;
  border-radius: 6px;
  font-size: 1em;
  background-image: linear-gradient(to right, #41cab6 -3.77%, #00adee 114.05%);
  box-shadow: 3px 6px 30px rgb(0 164 212 / 55%);
  color: var(--white-button);
  margin-bottom: 1em;
  cursor: pointer;
}
.strengths-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wrap {
  width: 400px;
  margin: 20px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tarjeta-wrap {
  -webkit-perspective: 600;
  perspective: 600;
  display: flex;
  width: 100%;
  margin-top: 1em;
  justify-content: center;
}

.tarjeta {
  width: 300px;
  height: 350px;
  border-radius: 20px;
  background: #f8f8f7;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  -webkit-box-shadow: 0px 10px 15px -5px rgba(248, 247, 247, 0.925);
  box-shadow: 0px 10px 15px -5px rgba(250, 250, 250, 0.993);
}

.adelante,
.atras {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.adelante {
  width: 100%;
}

.atras {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);

  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  text-align: center;
  color: rgb(0, 0, 0);
  font-family: "open sans";
  font-size: small;
  background: #ffffff;
}

.tarjeta-wrap:hover .tarjeta {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.card1 {
  background-image: url("https://sapia.com.pe/wp-content/uploads/2021/05/icono-AGILIDAD.jpg");

  background-repeat: no-repeat;
  background-position: center;
}

.card2 {
  background-image: url("https://sapia.com.pe/wp-content/uploads/2021/05/icono-INNOVACION-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
}

.card3 {
  background-image: url("https://sapia.com.pe/wp-content/uploads/2021/05/icono-COMPROMISO.jpg");
  background-repeat: no-repeat;
  background-position: center;
}
.img-mov {
  width: 550px;
  background-image: linear-gradient(to right, #e0e7e6 -3.77%, #eff1f1 114.05%);
  box-shadow: 3px 6px 30px rgba(239, 241, 241, 0.55);
  margin: 5px auto;
  display: flex;
}
.img-mov span {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .wrap {
    width: 90%;
    max-width: 1200px;
    flex-direction: row;
    justify-content: space-around;
  }
}
