/* -------- Variables globales -------- */
:root {
    --color-negro: #000;
    --color-blanco: #fff;
    --color-rojo: #f00;
    --color-rosa: #de5a5a;
    --color-azul-claro: #0ff;
    --color-verde-alfa: rgba(0, 255, 0, 0.3); /*usado en los botones de la seccion contacto*/
    --seccion-color-borde: #4f5a79;
    --seccion-margen-inferior: 250px;
    --body-font: "Poppins", normal, sans-serif;
}


/*estilos*/
body {
    font-family: var(--body-font);
    background-image: url(../_web_img/bg_contacto.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#logo {
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#img_logo {
    width: 70%;
}

#nosotros {
    background: rgba(255, 0, 0, 0.25);
    margin-bottom: var(--seccion-margen-inferior);
}

#Webs {
    background: rgba(0,255,255,0.3);
    margin-bottom: var(--seccion-margen-inferior);
}

#pc {
    background: rgba(0, 255, 0, 0.3);
    margin-bottom: var(--seccion-margen-inferior);
}

#android {
    background: rgba(255, 141, 0, 0.3);
    margin-bottom: var(--seccion-margen-inferior);
}
#contacto {
    background: rgba(0, 0, 255, 0.3);
    margin-bottom: var(--seccion-margen-inferior);
}

section {
    position: relative;
    width: 95%;
    padding-bottom: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 10px var(--seccion-color-borde);
    -webkit-box-shadow: 0px 0px 10px 10px var(--seccion-color-borde);
    border-radius: 50px;
    margin: auto;
}

.contenedor {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.contenedor2 {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0px 0px 10px 10px var(--seccion-color-borde);
    -webkit-box-shadow: 0px 0px 10px 10px var(--seccion-color-borde);
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
}

/*Anclas para menu nahegacion*/
#AnclaNosotros,
#AnclaWeb,
#AnclaPc,
#AnclaAndroid,
#AnclaContacto {
    height: 130px;
}

#nosotros_cabecera,
#webs_cabecera,
#pc_cabecera,
#android_cabecera,
#contacto_cabecera {
    visibility: hidden;
    border-radius: 30px;
}

.tx_cabecera {
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--color-negro);
    font-size: 40px;
    font-weight: bold;
    text-shadow: 0px 0px 10px var(--color-rojo);
    -webkit-text-fill-color: var(--color-rojo);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-negro);
}

a {
    color: var(--color-azul-claro);
    cursor: pointer;
}

p { /*texto quien soy*/
    text-align: center;
    color: var(--color-azul-claro);
    font-size: 30px;
}

h2 {
    text-align: center;
    font-size: 25px;
    padding: 0;
    text-shadow: 0px 0px 10px var(--color-rojo);
    -webkit-text-fill-color: var(--color-blanco);
}

h3 {
    text-align: center;
    font-size: 30px;
    padding: 0;
    text-shadow: 0px 0px 10px var(--color-rojo);
    -webkit-text-fill-color: var(--color-rojo);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-negro);
}

h4 {
    text-align: center;
    font-size: 30px;
    padding: 0;
    text-shadow: 0px 0px 20px var(--color-azul-claro);
    -webkit-text-fill-color: var(--color-azul-claro);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-negro);
}

article {
    visibility: hidden;
    background: rgba(0, 0, 0, 0.5);
    width: 70%;
    max-width: 400px;
    margin: auto;
    border: 4px solid var(--color-negro);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
    -webkit-box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
    padding: 10px;
    margin-top: 50px;
}

#img_circulo {
    width: 80%;
    display: block;
    margin: auto;
    margin-top: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0px 0px 10px 10px var(--color-rojo);
    -webkit-box-shadow: 0px 0px 10px 10px var(--color-rojo);
}
#img_mas_info {
    width: 60%;
    display: block;
    margin: auto;
    margin-top: 20px;
    border-radius: 1%;
    -webkit-border-radius: 1%;
    box-shadow: 0px 0px 5px 5px var(--color-rojo);
    -webkit-box-shadow: 0px 0px 5px 5px var(--color-rojo);
}

#icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
}
#ico {
    width: 60%;
    border: 2px solid var(--color-rojo);
    border-radius: 20px;
}

#ico:hover, #icon:hover {
    box-shadow: 0px 0px 30px 30px var(--color-azul-claro);
    -webkit-box-shadow: 0px 0px 30px 30px var(--color-azul-claro);
}

@media (min-width: 1024px) {
    /*Anclas para menu nahegacion*/
    #AnclaNosotros {
        height: 140px;
    }
	#AnclaWeb,
	#AnclaPc,
	#AnclaAndroid,
	#AnclaContacto {
        height: 80px;
    }
    #logo {
        width: 1024px;
    }
    #img_logo {
        width: 40%;
    }
    /* #nosotros {
        background: url(_web_img/bg_nosotros.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    #Webs {
        background-image: url(_web_img/bg_web.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #pc {
        background-image: url(_web_img/bg_pc.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    #android {
        background-image: url(_web_img/bg_android.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }    
    section {
        -webkit-animation: movebackground 20s infinite;
        animation: movebackground 20s infinite;
    }*/
    .contenedor {
        width: 1024px;
        margin: auto;
    }
    .tx_cabecera {
        font-size: 80px;
    }
    h3 {
        font-size: 50px;
    }
    h4 {
        font-size: 35px;
    }
    p {
        font-size: 35px;
        /*color: var(--color-negro);*/
        /*text-shadow: 0px 0px 10px var(--color-blanco);*/
    }
    article {
        /*background: rgba(0, 0, 0, 0.7);*/
        width: 100%;
        max-width: 400px;
        margin: 15px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        border-top-left-radius: 150px;
        border-top-right-radius: 150px;
        box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
        -webkit-box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
        padding: 10px;
    }
    #img_circulo {
        margin-top: 20px;
        width: 60%;
        box-shadow: 0px 0px 10px 10px var(--color-rojo);
        -webkit-box-shadow: 0px 0px 10px 10px var(--color-rojo);
    }
    #img_mas_info {
        margin-top: 20px;
        width: 60%;
        box-shadow: 0px 0px 10px 10px var(--color-rojo);
        -webkit-box-shadow: 0px 0px 10px 10px var(--color-rojo);
    }
    #ico {
        width: 200px;
        border-radius: 10px;
    }
    #ico:hover, .icon:hover {
        box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
        -webkit-box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
    }
}






header {
    position: fixed;
    width: 100%;
    margin-left: -10px;
    top: 0;
    z-index: 100;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(19,19,19,1) 10%, rgba(64,65,65,1) 50%, rgba(19,19,19,1) 90%, rgba(0,0,0,1) 100%);
    box-shadow: 0 0 15px var(--color-azul-claro);
}

#bar1, #bar2, #bar3 {
    width: 50px;
    height: 10px;
    background-color: #0ff;
    margin: 10px -10px;
    transition: 0.4s;
    border-radius: 5px;
}

.cabecera_menu {
    width: 100%;
    justify-content: center;
	margin: auto;
}

#menu_inicio {
    color: red;
}

#logo_texto {
    float: left;
    padding: 10px;
    width: 200px;
    height: 50px;
    visibility: hidden;
}

.control-menu {
    float: right;
    height: 50px;
    margin-top: 10px;
    width: 50px;
}

.control-menu .close {
    display: none;

}

.control-menu .open {
    display: block;

}

#menu_vertical:target .close {
    display: block;
}

#menu_vertical:target .open {
    display: none;
}

#menu_vertical:target .menu-items {
    background: #333;
    height: 500px;
}

.menu-items {
    clear: both;
    margin: 0;
    padding: 0;
    height: 0;
    width: 100%;
    overflow: hidden;
    transition: height 0.4s ease-in-out 0s, background-color 1s ease 0s;
    text-align: center;
}

.menu-items a {
    display: block;
    font-size: 60px;
    color: var(--color-azul-claro);
    height: 100px;
    width: 100%;
    line-height: 100px;
}

.menu-items a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.menu_horizontal {
    display: none;
}

@media (min-width: 1024px) {    
    .cabecera_menu {
        width: 95%;
    }
    #logo_texto {
        width: 400px;
        height: 100px;
    }
    #menu_vertical {
        display: none;
    }
    .menu_horizontal {
        position: static;
        width: auto;
        height: auto;
        float: right;
        display: flex;
        visibility: hidden;
    }
    .menu_horizontal a {
        color: var(--color-azul-claro);
        height: 15px;
        padding-top: 0px;
        padding-bottom: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 20px;
        margin-left: 20px;
        margin-top: 25px;
    }
    .menu_horizontal a:hover {
        box-shadow: 0px 0px 10px 10px #0ff;
        -webkit-box-shadow: 0px 0px 10px 10px #0ff;
        border-radius: 20px;
    }
}





#contacto {
    /*background-image: url(_web_img/bg_contacto.jpg);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    -webkit-animation: movebackground 20s infinite;
    animation: movebackground 20s infinite;
}

#contacto button {
    font-family: var(--body-font);
    font-size: 30px;
    border-radius: 15px;
    margin: 20px;
    background: var(--color-azul-claro);
}

    #contacto button:hover {
        background: var(--color-verde-alfa);
        color: var(--color-blanco);
        box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
        -webkit-box-shadow: 0px 0px 10px 10px var(--color-azul-claro);
    }

#whatsapp {
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

#contacto #formulario {
    width: 100%;
    margin: auto;
}

input[type=text],
textarea {
    width: 90%;
    margin-left: 5%;
    height: 60px;
    padding: 20px;
    margin-bottom: 20px;
    border: 3px solid #000;
    border-radius: 15px;
    box-sizing: border-box;
    font-size: 30px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 10px #4f5a79;
    -webkit-box-shadow: 0px 0px 10px 10px #4f5a79;
}

input:focus,
textarea:focus {
    background-color: #F3F781;
}

textarea {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 10px #4f5a79;
    -webkit-box-shadow: 0px 0px 10px 10px #4f5a79;
}

input[type=submit] {
    width: 90%;
    margin-left: 5%;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 10px #4f5a79;
    -webkit-box-shadow: 0px 0px 10px 10px #4f5a79;
}

input[type=submit]:active {
    background-color: #ff0000;
}

input[type=submit]:hover {
    background: rgba(0, 255, 0, 0.3);
    color: var(--color-blanco);
    box-shadow: 0px 0px 10px 10px #0ff;
    -webkit-box-shadow: 0px 0px 10px 10px #0ff;
}

input:-ms-input-placeholder {
    font-size: 30px;
}

textarea:-ms-input-placeholder {
    font-size: 30px;
}

#contacto_cabecera,
#contacto_tx,
#formulario {
    visibility: hidden;
}

#contacto h4 {
    font-size: 30px;
    font-weight: normal;
}

@media (min-width: 1024px) {
    #contacto p {
        font-size: 23px;
    }
    #contacto #formulario {
        width: 80%;
        margin: auto;
    }
    #contacto button {
        font-size: 30px;
    }
    #whatsapp {
        width: 40px;
        height: 40px;
    }
    input[type=text],
    textarea {
        width: 80%;
        margin-left: 10%;
        padding: 20px;
        margin-bottom: 20px;
        border: 2px solid #000;
        border-radius: 10px;
        box-sizing: border-box;
        font-size: 20px;
    }
    textarea {
        height: 200px;
    }
    input[type=submit] {
        width: 80%;
        margin-left: 10%;
        font-size: 30px;
    }
    input:-ms-input-placeholder {
        font-size: 20px;
    }
    textarea:-ms-input-placeholder {
        font-size: 20px;
    }
    #contacto h4 {
        font-size: 30px;
    }
}





.card {
  width: 90%;
  max-width: 400px;
  height: 500px;
  margin: 40px auto;
  perspective: 1000px;
  cursor: pointer;
}

/* NUEVO contenedor interno: esto soluciona el bug */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  background: transparent;
  color: inherit;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 10px;
}

/* Frente visible inicialmente */
.card-front {
  transform: rotateY(0deg);
}

/* Reverso, rotado */
.card-back {
  transform: rotateY(180deg);
}






/*==============================================
Texto NEON
==============================================*/
@keyframes neon {
  from {
    text-shadow: 0 0 10px #fff,
				0 0 20px #fff,
				0 0 30px #fff,
				0 0 40px #0f0,
				0 0 50px #0f0,
				0 0 60px #0f0,
				0 0 70px #0f0,
				0 0 80px #0f0,
				0 0 90px #0f0,
				0 0 100px #00f,
				0 0 110px #00f,
				0 0 120px #00f,
				0 0 130px #00f,
				0 0 140px #00f,
				0 0 150px #00f;
  }
  to {
    text-shadow: 0 0 5px #f00,
				0 0 10px #f00,
				0 0 15px #f00,
				0 0 20px #0f0,
				0 0 25px #0f0,
				0 0 30px #0f0,
				0 0 35px #0f0,
				0 0 40px #0f0,
				0 0 45px #0f0,
				0 0 50px #00f,
				0 0 55px #00f,
				0 0 50px #00f,
				0 0 65px #00f,
				0 0 70px #00f,
				0 0 75px #00f;
  }
}

/*==============================================
BgGradient
==============================================*/
@keyframes BgGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/*==============================================
movebackground
==============================================*/
@-webkit-keyframes movebackground {
    50% {
        background-position: center;
    }
}

@keyframes movebackground {
    50% {
        background-position: center;
    }
}

/*==============================================
slideDown
==============================================*/
.slideDown {
    animation-name: slideDown;
    -webkit-animation-name: slideDown;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(8%);
    }
    65% {
        transform: translateY(-4%);
    }
    80% {
        transform: translateY(4%);
    }
    95% {
        transform: translateY(-2%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    50% {
        -webkit-transform: translateY(8%);
    }
    65% {
        -webkit-transform: translateY(-4%);
    }
    80% {
        -webkit-transform: translateY(4%);
    }
    95% {
        -webkit-transform: translateY(-2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

/*==============================================
slideUp
==============================================*/
.slideUp {
    animation-name: slideUp;
    -webkit-animation-name: slideUp;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }
    50% {
        transform: translateY(-8%);
    }
    65% {
        transform: translateY(4%);
    }
    80% {
        transform: translateY(-4%);
    }
    95% {
        transform: translateY(2%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(100%);
    }
    50% {
        -webkit-transform: translateY(-8%);
    }
    65% {
        -webkit-transform: translateY(4%);
    }
    80% {
        -webkit-transform: translateY(-4%);
    }
    95% {
        -webkit-transform: translateY(2%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}

/*==============================================
slideLeft
==============================================*/
.slideLeft {
    animation-name: slideLeft;
    -webkit-animation-name: slideLeft;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes slideLeft {
    0% {
        transform: translateX(150%);
    }
    50% {
        transform: translateX(-8%);
    }
    65% {
        transform: translateX(4%);
    }
    80% {
        transform: translateX(-4%);
    }
    95% {
        transform: translateX(2%);
    }
    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideLeft {
    0% {
        -webkit-transform: translateX(150%);
    }
    50% {
        -webkit-transform: translateX(-8%);
    }
    65% {
        -webkit-transform: translateX(4%);
    }
    80% {
        -webkit-transform: translateX(-4%);
    }
    95% {
        -webkit-transform: translateX(2%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

/*==============================================
slideRight
==============================================*/
.slideRight {
    animation-name: slideRight;
    -webkit-animation-name: slideRight;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes slideRight {
    0% {
        transform: translateX(-150%);
    }
    50% {
        transform: translateX(8%);
    }
    65% {
        transform: translateX(-4%);
    }
    80% {
        transform: translateX(4%);
    }
    95% {
        transform: translateX(-2%);
    }
    100% {
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        -webkit-transform: translateX(-150%);
    }
    50% {
        -webkit-transform: translateX(8%);
    }
    65% {
        -webkit-transform: translateX(-4%);
    }
    80% {
        -webkit-transform: translateX(4%);
    }
    95% {
        -webkit-transform: translateX(-2%);
    }
    100% {
        -webkit-transform: translateX(0%);
    }
}

/*==============================================
slideExpandUp
==============================================*/
.slideExpandUp {
    animation-name: slideExpandUp;
    -webkit-animation-name: slideExpandUp;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease -out;
    visibility: visible !important;
}

@keyframes slideExpandUp {
    0% {
        transform: translateY(100%) scaleX(0.5);
    }
    30% {
        transform: translateY(-8%) scaleX(0.5);
    }
    40% {
        transform: translateY(2%) scaleX(0.5);
    }
    50% {
        transform: translateY(0%) scaleX(1.1);
    }
    60% {
        transform: translateY(0%) scaleX(0.9);
    }
    70% {
        transform: translateY(0%) scaleX(1.05);
    }
    80% {
        transform: translateY(0%) scaleX(0.95);
    }
    90% {
        transform: translateY(0%) scaleX(1.02);
    }
    100% {
        transform: translateY(0%) scaleX(1);
    }
}

@-webkit-keyframes slideExpandUp {
    0% {
        -webkit-transform: translateY(100%) scaleX(0.5);
    }
    30% {
        -webkit-transform: translateY(-8%) scaleX(0.5);
    }
    40% {
        -webkit-transform: translateY(2%) scaleX(0.5);
    }
    50% {
        -webkit-transform: translateY(0%) scaleX(1.1);
    }
    60% {
        -webkit-transform: translateY(0%) scaleX(0.9);
    }
    70% {
        -webkit-transform: translateY(0%) scaleX(1.05);
    }
    80% {
        -webkit-transform: translateY(0%) scaleX(0.95);
    }
    90% {
        -webkit-transform: translateY(0%) scaleX(1.02);
    }
    100% {
        -webkit-transform: translateY(0%) scaleX(1);
    }
}

/*==============================================
expandUp
==============================================*/
.expandUp {
    animation-name: expandUp;
    -webkit-animation-name: expandUp;
    animation-duration: 0.7s;
    -webkit-animation-duration: 0.7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    visibility: visible !important;
}

@keyframes expandUp {
    0% {
        transform: translateY(100%) scale(0.6) scaleY(0.5);
    }
    60% {
        transform: translateY(-7%) scaleY(1.12);
    }
    75% {
        transform: translateY(3%);
    }
    100% {
        transform: translateY(0%) scale(1) scaleY(1);
    }
}

@-webkit-keyframes expandUp {
    0% {
        -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
    }
    60% {
        -webkit-transform: translateY(-7%) scaleY(1.12);
    }
    75% {
        -webkit-transform: translateY(3%);
    }
    100% {
        -webkit-transform: translateY(0%) scale(1) scaleY(1);
    }
}

/*==============================================
fade
==============================================*/
.fade {
    animation-name: fade;
    -webkit-animation-name: fade;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

/*==============================================
fadeIn
==============================================*/
.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    60% {
        -webkit-transform: scale(1.1);
    }
    80% {
        -webkit-transform: scale(0.9);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

/*==============================================
expandOpen
==============================================*/
.expandOpen {
    animation-name: expandOpen;
    -webkit-animation-name: expandOpen;
    animation-duration: 1.2s;
    -webkit-animation-duration: 1.2s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}

@keyframes expandOpen {
    0% {
        transform: scale(1.8);
    }
    50% {
        transform: scale(0.95);
    }
    80% {
        transform: scale(1.05);
    }
    90% {
        transform: scale(0.98);
    }
    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes expandOpen {
    0% {
        -webkit-transform: scale(1.8);
    }
    50% {
        -webkit-transform: scale(0.95);
    }
    80% {
        -webkit-transform: scale(1.05);
    }
    90% {
        -webkit-transform: scale(0.98);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

/*==============================================
bigEntrance
==============================================*/
.bigEntrance {
    animation-name: bigEntrance;
    -webkit-animation-name: bigEntrance;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    visibility: visible !important;
}

@keyframes bigEntrance {
    0% {
        transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }
    30% {
        transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }
    45% {
        transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    60% {
        transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    75% {
        transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    90% {
        transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

@-webkit-keyframes bigEntrance {
    0% {
        -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
        opacity: 0.2;
    }
    30% {
        -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    75% {
        -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    90% {
        -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
        opacity: 1;
    }
}

/*==============================================
hatch
==============================================*/
.hatch {
    animation-name: hatch;
    -webkit-animation-name: hatch;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    visibility: visible !important;
}

@keyframes hatch {
    0% {
        transform: rotate(0deg) scaleY(0.6);
    }
    20% {
        transform: rotate(-2deg) scaleY(1.05);
    }
    35% {
        transform: rotate(2deg) scaleY(1);
    }
    50% {
        transform: rotate(-2deg);
    }
    65% {
        transform: rotate(1deg);
    }
    80% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@-webkit-keyframes hatch {
    0% {
        -webkit-transform: rotate(0deg) scaleY(0.6);
    }
    20% {
        -webkit-transform: rotate(-2deg) scaleY(1.05);
    }
    35% {
        -webkit-transform: rotate(2deg) scaleY(1);
    }
    50% {
        -webkit-transform: rotate(-2deg);
    }
    65% {
        -webkit-transform: rotate(1deg);
    }
    80% {
        -webkit-transform: rotate(-1deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

/*==============================================
bounce
==============================================*/
.bounce {
    animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-duration: 1.6s;
    -webkit-animation-duration: 1.6s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
    0% {
        transform: translateY(0%) scaleY(0.6);
    }
    60% {
        transform: translateY(-100%) scaleY(1.1);
    }
    70% {
        transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }
    80% {
        transform: translateY(0%) scaleY(1.05) scaleX(1);
    }
    90% {
        transform: translateY(0%) scaleY(0.95) scaleX(1);
    }
    100% {
        transform: translateY(0%) scaleY(1) scaleX(1);
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0%) scaleY(0.6);
    }
    60% {
        -webkit-transform: translateY(-100%) scaleY(1.1);
    }
    70% {
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
    }
    80% {
        -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
    }
    90% {
        -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
    }
    100% {
        -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
    }
}

/*==============================================
pulse
==============================================*/
.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}

/*==============================================
floating
==============================================*/
.floating {
    animation-name: floating;
    -webkit-animation-name: floating;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(8%);
    }
    100% {
        transform: translateY(0%);
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(0%);
    }
    50% {
        -webkit-transform: translateY(8%);
    }
    100% {
        -webkit-transform: translateY(0%);
    }
}


/*==============================================
tossing
==============================================*/
.tossing {
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
    0% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(4deg);
    }
    100% {
        transform: rotate(-4deg);
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-4deg);
    }
    50% {
        -webkit-transform: rotate(4deg);
    }
    100% {
        -webkit-transform: rotate(-4deg);
    }
}

/*==============================================
pullUp
==============================================*/
.pullUp {
    animation-name: pullUp;
    -webkit-animation-name: pullUp;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
    0% {
        transform: scaleY(0.1);
    }
    40% {
        transform: scaleY(1.02);
    }
    60% {
        transform: scaleY(0.98);
    }
    80% {
        transform: scaleY(1.01);
    }
    100% {
        transform: scaleY(0.98);
    }
    80% {
        transform: scaleY(1.01);
    }
    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullUp {
    0% {
        -webkit-transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
    }
}

/*==============================================
pullDown
==============================================*/
.pullDown {
    animation-name: pullDown;
    -webkit-animation-name: pullDown;
    animation-duration: 1.1s;
    -webkit-animation-duration: 1.1s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 50% 0%;
    -ms-transform-origin: 50% 0%;
    -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
    0% {
        transform: scaleY(0.1);
    }
    40% {
        transform: scaleY(1.02);
    }
    60% {
        transform: scaleY(0.98);
    }
    80% {
        transform: scaleY(1.01);
    }
    100% {
        transform: scaleY(0.98);
    }
    80% {
        transform: scaleY(1.01);
    }
    100% {
        transform: scaleY(1);
    }
}

@-webkit-keyframes pullDown {
    0% {
        -webkit-transform: scaleY(0.1);
    }
    40% {
        -webkit-transform: scaleY(1.02);
    }
    60% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(0.98);
    }
    80% {
        -webkit-transform: scaleY(1.01);
    }
    100% {
        -webkit-transform: scaleY(1);
    }
}

/*==============================================
stretchLeft
==============================================*/
.stretchLeft {
    animation-name: stretchLeft;
    -webkit-animation-name: stretchLeft;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
    0% {
        transform: scaleX(0.3);
    }
    40% {
        transform: scaleX(1.02);
    }
    60% {
        transform: scaleX(0.98);
    }
    80% {
        transform: scaleX(1.01);
    }
    100% {
        transform: scaleX(0.98);
    }
    80% {
        transform: scaleX(1.01);
    }
    100% {
        transform: scaleX(1);
    }
}

@-webkit-keyframes stretchLeft {
    0% {
        -webkit-transform: scaleX(0.3);
    }
    40% {
        -webkit-transform: scaleX(1.02);
    }
    60% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(0.98);
    }
    80% {
        -webkit-transform: scaleX(1.01);
    }
    100% {
        -webkit-transform: scaleX(1);
    }
}

/*==============================================
stretchRight
==============================================*/
.stretchRight {
    animation-name: stretchRight;
    -webkit-animation-name: stretchRight;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
    0% {
        transform: scaleX(0.3);
    }
    40% {
        transform: scaleX(1.02);
    }
    60% {
        transform: scaleX(0.98);
    }
    80% {
        transform: scaleX(1.01);
    }
    100% {
        transform: scaleX(0.98);
    }
    80% {
        transform: scaleX(1.01);
    }
    100% {
        transform: scaleX(1);
    }
}