*{padding:0;margin:0}.wrapper{height:100vh;display:flex;justify-content:center;align-items:center;background-color:#eee}
.checkmark__circle{stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 2;stroke-miterlimit: 10;stroke: #7ac142;fill: none;animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}
.checkmark{width:30px;height: 30px;border-radius: 50%;display: block;stroke-width: 2;stroke: #fff;stroke-miterlimit: 10;margin: 1% 1%;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both}
.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}@keyframes stroke{100%{stroke-dashoffset: 0}}@keyframes scale{0%, 100%{transform: none}50%{transform: scale3d(1.1, 1.1, 1)}}@keyframes fill{100%{box-shadow: inset 0px 0px 0px 30px #7ac142}}

.txt_just{
    text-align: justify;
}
    .success-checkmark {
    width: 80px;
    height: 115px;
    left: -20px;
    margin: -25px auto;
    
    .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #80c6d5;
        
        &::before {
            top: 3px;
            left: -20px;
            width: 30px;
            transform-origin: 100% 50%;
            border-radius: 100px 0 0 100px;
        }
        
        &::after {
            top: 0;
            left: -20px;
            width: 60px;
            transform-origin: 0 50%;
            border-radius: 0 100px 100px 0;
            animation: rotate-circle 4.25s infinite;
        }
        
        &::before, &::after {
            content: '';
            height: 100px;
            position: absolute;
            background: #FFFFFF;
            transform: rotate(-45deg);
        }
        
        .icon-line {
            height: 5px;
            background-color: #80c6d5;
            display: block;
            border-radius: 2px;
            position: absolute;
            z-index: 10;
            
            &.line-tip {
                top: 46px;
                left: 14px;
                width: 25px;
                transform: rotate(45deg);
                animation: icon-line-tip 2.75s infinite;
            }
            
            &.line-long {
                top: 38px;
                right: 8px;
                width: 47px;
                transform: rotate(-45deg);
                animation: icon-line-long 2.75s infinite;
            }
        }
        
        .icon-circle {
            top: -4px;
            left: -4px;
            z-index: 10;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: absolute;
            box-sizing: content-box;
            border: 4px solid rgba(127, 196, 212, .5);
        }
        
        .icon-fix {
            top: 8px;
            width: 5px;
            left: 26px;
            z-index: 1;
            height: 85px;
            position: absolute;
            transform: rotate(-45deg);
            background-color: #FFFFFF;
        }
    }

    .check-icon{
        transform: scale(0.4);
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}


/* ***************/ 
/* LOADING PAGES */.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loader-bar {
  height: 25px;
  width: 6px;
  margin: 0 3px;
  border-radius: 20px;
  animation: loader 2s ease-in-out infinite;
}

.bar-1 {
  background: linear-gradient(to right, #00e6e6, #00ccff, #0099ff, #0066ff);
  animation-delay: 0s;
  box-shadow: 0px 0px 15px 3px #00e6e6;
}

.bar-2 {
  background: linear-gradient(to right, #00ccff, #0099ff, #0066ff, #00e6e6);
  animation-delay: 0.1s;
  box-shadow: 0px 0px 15px 3px #00ccff;
}

.bar-3 {
  background: linear-gradient(to right, #0099ff, #0066ff, #00e6e6, #00ccff);
  animation-delay: 0.2s;
  box-shadow: 0px 0px 15px 3px #0099ff;
}

.bar-4 {
  background: linear-gradient(to right, #0066ff, #00e6e6, #00ccff, #0099ff);
  animation-delay: 0.3s;
  box-shadow: 0px 0px 15px 3px #0066ff;
}

@keyframes loader {
  0% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(2);
  }

  100% {
    transform: scaleY(1);
  }
}

/* 3d slider */

#slideshow {
    margin: 0 auto;
    padding-top: 20px;
    height: 750px;
    width: 100%;
    background-color: rgb(0,176,240,0.1);
    box-sizing: border-box;
}

.slideshow-title {
    font-family: 'Allerta Stencil';
    font-size: 62px;
    color: #fff;
    margin: 0 auto;
    text-align: center;
    margin-top: 25%;
    letter-spacing: 3px;
    font-weight: 300;
}

.sub-heading {
    padding-top: 50px;
    font-size: 18px;
} .sub-heading-two {
    font-size: 15px;
} .sub-heading-three {
    font-size: 13px;
} .sub-heading-four {
    font-size: 11px;
} .sub-heading-five {
    font-size: 9px;
} .sub-heading-six {
    font-size: 7px;
} .sub-heading-seven {
    font-size: 5px;
} .sub-heading-eight {
    font-size: 3px;
} .sub-heading-nine {
    font-size: 1px;
}
.sub-heading-ten {
    font-size: 1px;
}

.entire-content {
    margin: auto;
    width: 190px;
    perspective: 1000px;
    position: relative;
    padding-top: 80px;
}

.entire-content2 {
    margin: auto;
    width: 190px;
    perspective: 500px;
    position: relative;
    padding-top: 80px;
}

.content-carrousel {
    width: 100%;
    position: absolute;
    float: right;
    animation: rotar 55s infinite linear;
    transform-style: preserve-3d;
}

.content-carrousel:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.content-carrousel figure {
    width: 100%;
    height: 120px;
    border: 0.001em solid rgb(0,176,240,0.1);
    overflow: hidden;
    position: absolute;
}

.content-carrousel2 {
    width: 100%;
    position: absolute;
    float: right;
    animation: rotar 55s infinite linear;
    transform-style: preserve-3d;
}
.content-carrousel2:hover {
    animation-play-state: paused;
    cursor: pointer;
}
.content-carrousel2 figure {
    width: 100%;
    height: 120px;
    border: 0.001em solid rgb(0,176,240,0.1);
    overflow: hidden;
    position: absolute;
}

.content-carrousel figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(500px); 
} .content-carrousel figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(500px); 
} .content-carrousel figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(500px); 
} .content-carrousel figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(500px); 
} .content-carrousel figure:nth-child(5) {
    transform: rotateY(160deg) translateZ(500px); 
} .content-carrousel figure:nth-child(6) {
    transform: rotateY(200deg) translateZ(500px); 
} .content-carrousel figure:nth-child(7) {
    transform: rotateY(240deg) translateZ(500px); 
} .content-carrousel figure:nth-child(8) {
    transform: rotateY(280deg) translateZ(500px); 
} .content-carrousel figure:nth-child(9) {
    transform: rotateY(320deg) translateZ(500px); 
} .content-carrousel figure:nth-child(10) {
    transform: rotateY(360deg) translateZ(500px); 
}.content-carrousel figure:nth-child(11) {
    transform: rotateY(240deg) translateZ(500px); 
} .content-carrousel figure:nth-child(12) {
    transform: rotateY(280deg) translateZ(500px); 
} .content-carrousel figure:nth-child(13) {
    transform: rotateY(320deg) translateZ(500px); 
}

.content-carrousel2 figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(500px); 
} .content-carrousel2 figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(500px); 
} .content-carrousel2 figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(500px); 
} .content-carrousel2 figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(500px); 
}

.shadow {
    position: absolute;
    box-shadow: 0px 0px 20px 0px #000;
    border-radius: 1px;
}

.content-carrousel img {
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

.content-carrousel img:hover {
    transform: scale(1.2);
    transition: all 300ms;
}

.content-carrousel2 img {
    image-rendering: auto;
    transition: all 300ms;
    width: 100%;
    height: 100%;
}

.content-carrousel2 img:hover {
    transform: scale(1.2);
    transition: all 400ms;
}

@keyframes rotar {
    from {
        transform: rotateY(0deg);
    } to {
        transform: rotateY(360deg);
    }
}

/* MAQUINA DE ESCRIBIR EFECTO*/

.line {
  position: relative;
  top: 50%;
  width: 4.5em;
  margin: 0 auto;
  border-right: 2px solid rgba(100, 250, 100, 0.9);
  /*font-size: 100%;*/
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translatey(-50%);
  
}
/*Animacion*/
.anim-typewriter{
    animation: typewriter 6s steps(40) 1s 0.5 normal both,
    blinkTextCursor 500ms steps(40) infinite normal both;

}

.anim-typewriter2{
    animation: typewriter 6s steps(40) 1s 1 normal both,
    blinkTextCursor 500ms steps(40) infinite normal both;

}
@keyframes typewriter {
  from{
    width: 0;
  }
  to{
    width: 15em;
  }
}
@keyframes blinkTextCursor{
  from{
    border-right-color: rgba(100, 250, 100, 0.9);
  }
  to{
    border-right-color: transparent;
  }
}

/* ******************** */

.contenedor {
    margin: auto;
    display: table;
}

h1 { 
    position: relative; 
    float: center;
    background: white;
    color: #474e8d;
    font-size: 2.5em;
    left:-225px;
}

h1 span {
    position:absolute;
    right:0;
    width:0;
    background: white;
    border-left: 1px solid #000;
    animation: escribir 5s steps(30) infinite alternate;
}

@keyframes escribir {
    from { width: 100% }
    to { width:0 }
}
