@import url(https://fonts.googleapis.com/css?family=Montserrat);@charset "UTF-8";

* {
  padding: 0;
  margin: 0;
}

.shade {
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.3);*/
}

.front-content {
  text-align: center;
  /* padding-left: 10%;*/
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

header {
  background: url("/img/index.jpg") no-repeat center center fixed;
  height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  color: #d9d9d9;
}

html,
body {
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  font-size: 16px;
}

input,
button.btn-regular {
  font-family: "Nunito Sans", sans-serif;
}

p {
  line-height: 1.6;
  max-width: 50em;
}

.wrap {
  margin: 0 auto;
  max-width: 1000px;
}

.nav {
  position: fixed;
  z-index: 3;
  height: 60px;
  width: 100%;
  transition: 300ms ease;
  /*background: linear-gradient(to right, #018647 0%, #008570 50%, #008685 100%);*/
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid #1FA050;
}

.brand {
  float: left;
  line-height: 70px;
  color: white;
  font-weight: 500;
  padding-left: 1rem;
}

.brand span {
  font-size: 0.9em;
  font-weight: 700;
}

.brand img {
  vertical-align: middle;
  height: calc(70px - 1rem);
  margin-right: 0.5rem;
}

a.btn-regular {
  background: none;
  border: 3px solid #aaaebc;
  min-width: 40px;
  transition: 300ms ease;
  -webkit-appearance: none;
  font-size: 1rem;
  text-shadow: none;
  line-height: 1.2;
  display: inline-block;
  padding: 10px 16px;
  margin: 0 10px 0 0;
  position: relative;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
  font-weight: normal !important;
}

a.btn-regular:hover {
  /*background: white;
  border-color: white;
  color: white;*/
  border-color: #3baa35;
  background: #3baa35;
  box-shadow: white;
}

.title {
  /*    background: -webkit-linear-gradient(left top, #fed136, #2ecc71);
      background: linear-gradient(to bottom right, #fed136, #2ecc71);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background: #23cc71;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background: #2ecc71;
      background: linear-gradient(to bottom right, #fed136, #2ecc71);*/
  color: red;
  font-size: 5rem;
  padding: 0 9px;
  border-radius: 1rem;
  display: inline-block;
  text-shadow: #bbb 0 0 1px, #fff 0 -1px 2px, #3baa35 0 -3px 2px, #3ba935 0 3px 25px;
  transition: margin-left 0.3s cubic-bezier(0, 1, 0, 1);
}

.subheading {
  background: #004187;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Arial", cursive;
  font-size: 20px;
}

/*animacion colaborador y notario*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Roboto, -apple-system, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  background: #3b4465;
}

.forms-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 32px;
  letter-spacing: 1px;
  color: #fff;
}

.forms {
  /*para centrar los botones se usa inline-flex*/
  display: inline-flex;
  align-items: center;
  /*margin-top: 30px;*/
}

.form-wrapper {
  -webkit-animation: hideLayer 0.3s ease-out forwards;
          animation: hideLayer 0.3s ease-out forwards;
}

.form-wrapper.is-active {
  -webkit-animation: showLayer 0.3s ease-in forwards;
          animation: showLayer 0.3s ease-in forwards;
}

@-webkit-keyframes showLayer {
  50% {
    z-index: 1;
  }

  100% {
    z-index: 1;
  }
}

@keyframes showLayer {
  50% {
    z-index: 1;
  }

  100% {
    z-index: 1;
  }
}

@-webkit-keyframes hideLayer {
  0% {
    z-index: 1;
  }

  49.999% {
    z-index: 1;
  }
}

@keyframes hideLayer {
  0% {
    z-index: 1;
  }

  49.999% {
    z-index: 1;
  }
}

.switcher {
  position: relative;
  cursor: pointer;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  text-transform: uppercase;
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #999;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.3s ease-out;
}

.form-wrapper.is-active .switcher-login {
  color: #fff;
  -webkit-transform: translateX(90px);
          transform: translateX(90px);
}

.form-wrapper.is-active .switcher-signup {
  color: #fff;
  -webkit-transform: translateX(-90px);
          transform: translateX(-90px);
}

.underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
  height: 2px;
}

.underline::before {
  content: "";
  position: absolute;
  top: 0;
  left: inherit;
  display: block;
  width: inherit;
  height: inherit;
  background-color: currentColor;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.switcher-login .underline::before {
  -webkit-transform: translateX(101%);
          transform: translateX(101%);
}

.switcher-signup .underline::before {
  -webkit-transform: translateX(-101%);
          transform: translateX(-101%);
}

.form-wrapper.is-active .underline::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.form {
  overflow: hidden;
  min-width: 260px;
  margin-top: 5px;
  padding: 30px 25px;
  border-radius: 5px;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.form-login {
  -webkit-animation: hideLogin 0.3s ease-out forwards;
          animation: hideLogin 0.3s ease-out forwards;
}

.form-wrapper.is-active .form-login {
  -webkit-animation: showLogin 0.3s ease-in forwards;
          animation: showLogin 0.3s ease-in forwards;
}

@-webkit-keyframes showLogin {
  0% {
    background: transparent;
    -webkit-transform: translate(40%, 10px);
            transform: translate(40%, 10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    background-color: transparent;
    -webkit-transform: translate(35%, -20px);
            transform: translate(35%, -20px);
  }
}

@keyframes showLogin {
  0% {
    background: transparent;
    -webkit-transform: translate(40%, 10px);
            transform: translate(40%, 10px);
  }

  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    background-color: transparent;
    -webkit-transform: translate(35%, -20px);
            transform: translate(35%, -20px);
  }
}

@-webkit-keyframes hideLogin {
  0% {
    background-color: transparent;
    -webkit-transform: translate(35%, -20px);
            transform: translate(35%, -20px);
  }

  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    background: transparent;
    -webkit-transform: translate(40%, 10px);
            transform: translate(40%, 10px);
  }
}

@keyframes hideLogin {
  0% {
    background-color: transparent;
    -webkit-transform: translate(35%, -20px);
            transform: translate(35%, -20px);
  }

  50% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    background: transparent;
    -webkit-transform: translate(40%, 10px);
            transform: translate(40%, 10px);
  }
}

.notario {
  -webkit-animation: hidenotario 0.3s ease-out forwards;
          animation: hidenotario 0.3s ease-out forwards;
}

.form-wrapper.is-active .notario {
  -webkit-animation: shownotario 0.3s ease-in forwards;
          animation: shownotario 0.3s ease-in forwards;
}

@-webkit-keyframes shownotario {
  0% {
    background: transparent;
    -webkit-transform: translate(-40%, 10px) scaleY(0.8);
            transform: translate(-40%, 10px) scaleY(0.8);
  }

  50% {
    -webkit-transform: translate(0, 0) scaleY(0.8);
            transform: translate(0, 0) scaleY(0.8);
  }

  100% {
    background-color: transparent;
    -webkit-transform: translate(-35%, -20px) scaleY(1);
            transform: translate(-35%, -20px) scaleY(1);
  }
}

@keyframes shownotario {
  0% {
    background: transparent;
    -webkit-transform: translate(-40%, 10px) scaleY(0.8);
            transform: translate(-40%, 10px) scaleY(0.8);
  }

  50% {
    -webkit-transform: translate(0, 0) scaleY(0.8);
            transform: translate(0, 0) scaleY(0.8);
  }

  100% {
    background-color: transparent;
    -webkit-transform: translate(-35%, -20px) scaleY(1);
            transform: translate(-35%, -20px) scaleY(1);
  }
}

@-webkit-keyframes hidenotario {
  0% {
    background-color: transparent;
    -webkit-transform: translate(-35%, -20px) scaleY(1);
            transform: translate(-35%, -20px) scaleY(1);
  }

  50% {
    -webkit-transform: translate(0, 0) scaleY(0.8);
            transform: translate(0, 0) scaleY(0.8);
  }

  100% {
    background: transparent;
    -webkit-transform: translate(-40%, 10px) scaleY(0.8);
            transform: translate(-40%, 10px) scaleY(0.8);
  }
}

@keyframes hidenotario {
  0% {
    background-color: transparent;
    -webkit-transform: translate(-35%, -20px) scaleY(1);
            transform: translate(-35%, -20px) scaleY(1);
  }

  50% {
    -webkit-transform: translate(0, 0) scaleY(0.8);
            transform: translate(0, 0) scaleY(0.8);
  }

  100% {
    background: transparent;
    -webkit-transform: translate(-40%, 10px) scaleY(0.8);
            transform: translate(-40%, 10px) scaleY(0.8);
  }
}

.form fieldset {
  position: relative;
  opacity: 0;
  margin: 0;
  padding: 0;
  border: 0;
  transition: all 0.3s ease-out;
}

.form-login fieldset {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.notario fieldset {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.form-wrapper.is-active fieldset {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: opacity 0.4s ease-in, -webkit-transform 0.35s ease-in;
  transition: opacity 0.4s ease-in, transform 0.35s ease-in;
  transition: opacity 0.4s ease-in, transform 0.35s ease-in, -webkit-transform 0.35s ease-in;
}

.form legend {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.input-block {
  margin-bottom: 20px;
}

.input-block label {
  font-size: 14px;
  color: #a1b4b4;
}

.form [type=submit] {
  opacity: 0;
  display: block;
  min-width: 120px;
  margin: 30px auto 10px;
  font-size: 18px;
  line-height: 40px;
  border-radius: 25px;
  border: none;
  transition: all 0.3s ease-out;
}

.form-wrapper.is-active .form [type=submit] {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: all 0.4s ease-in;
}

.btn-login {
  color: #fbfdff;
  background: #004187;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

.btn-signup {
  color: #fbfdff;
  background: #004187;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

/*finaliza las animcaciones para elegir colaborador o notario*/

/*animación de las letras EXPECO*/

span {
  -webkit-animation: textColor 6s ease infinite;
          animation: textColor 6s ease infinite;
}

@-webkit-keyframes textColor {
  1% {
    color: #004187;
  }

  30% {
    color: #3baa35;
  }

  100% {
    color: #004187;
  }
}

@keyframes textColor {
  1% {
    color: #004187;
  }

  30% {
    color: #3baa35;
  }

  100% {
    color: #004187;
  }
}

/*animacion botones*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

.btn {
  display: inline-block;
  width: 20%;
  padding: 5px;
  background: #0c8f0c;
  width: 10%;
  text-align: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 20px 5px #15f800;
  border-radius: 20px;
  border: none;
  outline: none;
}

.first:hover {
  box-shadow: 0px 0px 20px 5px #004187;
}

@-webkit-keyframes animate1 {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #004187);
  -webkit-animation: animate2 1s linear infinite;
          animation: animate2 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

@-webkit-keyframes animate2 {
  0% {
    top: -100%;
  }

  50%, 100% {
    top: 100%;
  }
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%, 100% {
    top: 100%;
  }
}

span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #004187);
  -webkit-animation: animate3 1s linear infinite;
          animation: animate3 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes animate3 {
  0% {
    right: -100%;
  }

  50%, 100% {
    right: 100%;
  }
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%, 100% {
    right: 100%;
  }
}

span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #004187);
  -webkit-animation: animate4 1s linear infinite;
          animation: animate4 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%, 100% {
    bottom: 100%;
  }
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%, 100% {
    bottom: 100%;
  }
}

/*Inicia la animacion para el texto "Expeco en el index"*/

html,
body {
  height: 100%;
  font-weight: 800;
  margin: 0;
  padding: 0;
}

body {
  background: #ffff;
  font-family: Arial;
}

.container {
  display: flex;
  /*   border:1px solid red; */
  height: 40%;
  align-items: center;
}

svg {
  display: block;
  font: 10.5em "Montserrat";
  width: 960px;
  height: 300px;
  margin: 0 auto;
}

.text-copy {
  fill: none;
  stroke: white;
  stroke-dasharray: 6% 29%;
  stroke-width: 5px;
  stroke-dashoffset: 0%;
  -webkit-animation: stroke-offset 5.5s infinite linear;
          animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1) {
  stroke: #007c48;
  -webkit-animation-delay: -1;
          animation-delay: -1;
}

.text-copy:nth-child(2) {
  stroke: #3baa35;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}

.text-copy:nth-child(3) {
  stroke: #007c48;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
}

.text-copy:nth-child(4) {
  stroke: #004187;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
}

.text-copy:nth-child(5) {
  stroke: #3baa35;
  -webkit-animation-delay: -5s;
          animation-delay: -5s;
}

@-webkit-keyframes stroke-offset {
  100% {
    stroke-dashoffset: -35%;
  }
}

@keyframes stroke-offset {
  100% {
    stroke-dashoffset: -35%;
  }
}

/*finaliza ala animación del texto "Expeco" en el index*/

/*Inicia animación botón para ingresar*/

a {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 0 20px;
  color: #004187;
  font-size: 24px;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  transition: 0.5s;
  letter-spacing: 4px;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}

a:hover {
  background: #004187;
  color: #FFFFFF;
  box-shadow: 0 0 5px #004187, 0 0 25px #004187, 0 0 50px #004187, 0 0 200px #004187;
}

a span {
  position: absolute;
  display: block;
}

a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #004187);
  -webkit-animation: animate1 1s linear infinite;
          animation: animate1 1s linear infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }

  50%, 100% {
    left: 100%;
  }
}

a span:nth-child(2) {
  top: -100px;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #004187);
  -webkit-animation: animate2 1s linear infinite;
          animation: animate2 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

@keyframes animate2 {
  0% {
    top: -100%;
  }

  50%, 100% {
    top: 100%;
  }
}

a span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #3baa35);
  -webkit-animation: animate3 1s linear infinite;
          animation: animate3 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@keyframes animate3 {
  0% {
    right: -100%;
  }

  50%, 100% {
    right: 100%;
  }
}

a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #3baa35);
  -webkit-animation: animate4 1s linear infinite;
          animation: animate4 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@keyframes animate4 {
  0% {
    bottom: -100%;
  }

  50%, 100% {
    bottom: 100%;
  }
}

/*Finaliza animación botón ingresar*/

