
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* MODAL */

/* styles.css */

/* Estilos para o conteúdo do site */
.content {
    text-align: center;
    margin-top: 50px;
}

/* Estilos para a modal */
/* 
.modal {
    
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    overflow: auto; 
    opacity: 0; 
    transition: opacity 1s ease-in-out; 
}

*/

/* Estilos para o conteúdo da modal */
.modal-content {
    background-color: rgba(153, 40, 40, 0.212);
    margin: 100px auto;
    padding: 20px;
    border: 1px solid transparent;
    width: 80%;
    text-align: center;
    color: white;
}

.modal-content img {
    width: 30%;
}

/* Estilos para o botão de fechar */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* FIM MODAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--fundo);   
}


:root {
    --cor1: #DCB34B;
    --cor2: #DF1E2C;
    --cor3: #000C1A;
    --cor4: #ffffff;
    --cor5: #151518;
    --cor6: #2915c0c8;
    --cor7: #060C18;
    --fundo: #060912;
    --subtexto: #868484;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    background: var(--cor7);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    padding: 0 60px;
    height: 90px;
}

.menu-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: 0.4s;
}

.menu-hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-hamburger.open .bar:nth-child(1) {
    transform: rotate(45deg) translate(10px, 5px);
}

.menu-hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.open .bar:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -5px);
}

.logo a img {
    padding: 6px;
    width: 140px;
    transition: .5s ease-in-out;
}

.logo a img:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu img {
    display: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 16px;
}

.nav-menu ul li a {
    position: relative;
    color: var(--cor4);
    text-decoration: none;
    transition: .5s ease-in-out;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

.nav-menu ul li a:hover {
    color: var(--cor1);
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px; 
    width: 0;
    height: 1px;
    background-color: var(--cor3); 
    transition: width 0.3s ease; 
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.btn{
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 12px;
    color: #ffffffff;
    background: linear-gradient(140deg, #214801 0%, #dcb34b 100%);
    font-weight: 400;
    letter-spacing: 2px;
    background-color: transparent;
    border: none;
    transition: .3s ease-in-out;
    cursor: pointer;
    border-radius: 10px;
    animation: pulsar 1s infinite; 
}

.btn:hover {
    transform: scale(1.1);
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Submenu escondido por padrão */
.nav-menu .submenu {
    display: none;
    position: absolute;
    background: #0b162c;
    height: 30px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    /* box-shadow: 0px 4px 6px rgba(0,0,0,0.15); */
}

.submenu.open {
    display: block;
}


/* Itens do submenu */
.nav-menu .submenu li {
    padding: 5px 15px;
}

.nav-menu .submenu li a {
    color: var(--cor4);
    font-size: 13px;
    text-decoration: none;
    display: block;
    transition: 0.3s;
    position: relative;
    top: -10px;
}

.nav-menu .submenu li a:hover {
    color: var(--cor1);
}

/* Exibe submenu quando passa o mouse */
.nav-item.dropdown:hover .submenu {
    display: block;
}

/* Garante alinhamento */
.nav-item.dropdown {
    position: relative;
}


/* FIM HEADER */


/* MAIN */
.main {
    background: url(../assets/imagens/fundos/fundo-cental-bat-2.1.jpg) no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-content: center;
    padding: 0 30px;
    position: relative;
}

.main-texto {
    flex: 1 1 600px;
    display: flex;
    flex-direction: column;
    padding: 150px 60px;
    position: relative;
    top: 40px;
    /* width: 50%; */
}

.main-texto h1 {
    color: var(--cor1);
    letter-spacing: normal;
    font-size: 35px;
}


.main-texto span {
    color: var(--cor4);
}

.main-texto p {
    color: var(--cor4);
    font-size: 18px;
    padding: 30px 0;
}


.img-what {
    display: none;
}

.ligue-1 {
    display: none;
}


.ligue-2 {
    padding: 20px;
    font-size: 14px;
    color: var(--cor4);
}

.ligue-2 span {
    color: var(--cor1);
    font-size: 16px;
    font-weight: bold;
    margin: 10px;
}

.main-img {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 50%;
    position: relative;
    top: -30px;
    flex: 1 1 300px;
    /* background-color: red; */
}

.main-img img {
    width: 100%;
    transition: 0.3s ease-in-out;
}

.main-img img:hover {
    transform: scale(1.1);
}
/* FIM MAIN */


.evento {
    text-align: center;
    padding: 40px;
    /* height: 350px; */
}

.evento h2 {
    color: var(--cor1);
    text-transform: capitalize;
    font-size: 35px;
}

.evento h3 {
    color: var(--cor4);
    font-size: 26px;
}

.evento h3 span {
    color: var(--cor1);
}

.evento p {
    color: #ccc;
}


.evento .evento-img img {
    width: 290px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.2s ease-in-out;


    padding: 10px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease; /* Adiciona transições suaves */
}

.evento .evento-img img:hover {
    transform: scale(1.05); /* Aumenta a imagem em 5% */
}

/* Animação de borda piscando */
@keyframes borderBlink {
    0% {
        border-color: #58a02e; /* Cor inicial da borda */
    }
    50% {
        border-color: #f00; /* Cor no meio da animação, cor vermelha */
    }
    0% {
        border-color: #ccc; /* Cor final da borda */
    }
}

.evento .evento-img img:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 100px;
    width: 100%;
    height: 80%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 45%;
    height: 90%;
    margin: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.close {
    color: white;
    font-size: 40px;
    position: absolute;
    top: 10px; /* Ajuste a posição se necessário */
    right: 25px; /* Ajuste a posição se necessário */
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 2; /* Garantir que o "X" apareça sobre o conteúdo do modal */
}


.modal-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.modal-controls button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-controls button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
/* FIM EVENTO */

/* HOME */
.home {
    padding: 40px 60px;
    text-align: center;
    background: url(../assets/imagens/fundos/Ellipse-6.png) no-repeat;
    background-size: contain;
    box-shadow: 0 0 10px rgba(6, 9, 18, 0.8);
}

.home h2 {
    text-align: center;
    margin: 20px auto;
    display: inline-block;
    padding-bottom: 10px;
    color: var(--cor1);
    font-size: 35px;
}

.home-box {
    display: flex;
    align-items: center;
}

.home-box-esquerda {
    width: 60%;
}

.home-box-esquerda h3{
    font-size: 26px;
    font-weight: bold;
    color: var(--cor1);
}

.home-box-esquerda .texto {
    color: var(--cor4);
}

.home-box-esquerda h3:nth-child(3){
    margin-top: 20px;
    font-size: 20px;
}


.home-box-direita {
    width: 50%;
    text-align: center;
}

.home-box-direita img {
    width: 250px;
}
/* FIM HOME */


/* BATERIAS QUE TRABALHAMOS */
.empresas-parceira {
    overflow: hidden;
    position: relative;
    width: 100%; 
    padding: 60px 0;
    text-align: center;
}


.empresas-parceira h2 {
    color: var(--cor1);
    font-size: 35px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
    display: inline-block; 
}

.marquee {
    display: flex;
    width: 100%;
    padding: 20px;
}

.marquee-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;    
}

.marquee-img {
    width: 210px; 
    margin: 20px;
    padding: 30px 0;
    box-shadow: 0px 0px 7px 1px #151D48;
}

.marquee-img:hover {
    box-shadow: 0px 0px 7px 1px #202b6f;
    transition: 0.2s ease-in-out;
}


.marquee-img img {
    max-width: 40%; 
}

.marquee-img h2{
    margin: 25px;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
    color: var(--cor1);
    border-top: 1px solid white;
    padding: 20px;
}
/* PRODUTOS */

.produtos {
    text-align: center;
    background: url(../assets/imagens/fundos/Ellipse-5.png) no-repeat;
    background-position: center right;
}

@supports not (background-attachment: fixed) {
    .produtos {
        background-attachment: scroll; /* ou outra propriedade alternativa */
    }
}

.produtos h2 {
    color: var(--cor1);
    font-size: 35px;
    text-align: center;
    margin: 20px auto;
}

.produtos p {
    color: var(--cor4);
}


.produtos-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
    gap: 10px;
}


.produtos-box {
    padding: 20px;
    width: 350px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ccc;
    margin: 30px;
}

.produtos-box .box a:hover{
    background-color: #3B570C;
    color: white;
    transition: ease-in-out;
}

.produtos-box:hover {
    box-shadow: 0px 0px 10px 1px #898585;
}

.produtos-box img {
    padding: 20px 0;
    width: 200px;
}

.produtos-box span {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #3B570C;
    color: var(--cor4);
    padding: 1px 30px;
    border-radius: 10px;
    font-size: 10px;
}

.box {
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.box h3 {
    font-size: 16px;
    color: var(--cor1);
    padding-bottom: 30px;
}

.box p{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.b {
    color: var(--cor1);
}

.produtos-box .box a {
    text-decoration: none;
    color: #000C1A;
    border: 1px solid var(--cor1);
    padding: 8px;
    transform: .20s;
    color: var(--cor1);    
}
/* FIM PRODUTOS */

/* BATERIAS DE MOTO */
.bateria-motos {
    padding: 80px 60px;
    text-align: center;
}

.bateria-motos h2 {
    color: var(--cor1);
    font-size: 35px;
}

.bateria-motos-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.bateria-motos-box img {
    max-width: 350px;
    padding: 10px;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px 1px #ccc;
    margin: 25px;
    display: block;
}

.bateria-motos-box .texto-hover {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    color: white;
    font-size: 18px;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.bateria-motos-box:hover img {
    filter: blur(3px);
}

.bateria-motos-box:hover .texto-hover {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* FIM BATERIAS DE MOTO */


/* EVENTOS SALÃO MOTOS PEÇA */
/* Estilos do modal */
.modal-heliar {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 95%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

/* Botão fechar (X) */
.fechar-modal {
    position: absolute;
    top: 40px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* Setas de navegação */
.seta-modal {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

#prev {
    left: 20px;
}

#next {
    right: 20px;
}

#seta-modal#prev {
    left: 20px;
}

#seta-modal#next {
    right: 20px;
}

/* Imagem dentro do modal */
.modal-img {
    max-width: 90%;
    max-height: 90%;
}

/* FIM EVENTOS SALÃO MOTOS PEÇA */


/* SINAIS BATERIAS */
.sinais-bateria {
    padding: 40px;
    text-align: center

    padding: 40px 60px;
    text-align: center;
    background: url(../assets/imagens/fundos/Ellipse-6.png) no-repeat;
    background-size: contain;
}

.sinais-bateria h2 {
    color: var(--cor1);
    font-size: 35px;
}

.sinais-bateria span {
    color: var(--subtexto);
}


.sinais-baterias-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.baterias-box {
    display: flex;
    justify-content: space-between;
    width: 350px;
    padding: 10px;
}


.baterias-box i {
    height: 150px;
    color: var(--cor1);
    font-size: 40px;
    width: 150px;
    padding: 10px;
}

.baterias-box-car {
    text-align: initial;
}

.baterias-box-car h3 {
    color: var(--cor1);
}

.baterias-box-car p {
    color: var(--subtexto);
    padding-top: 10px;
}
/* FIM SINAIS BATERIAS */


/* DEPOIMENTO */
.depoimento {
    padding: 40px;
    text-align: center;
}

.depoimento h2 {
    color: var(--cor1);
    padding: 20px;
    font-size: 35px;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 60%;
    object-fit: cover;
  }

  .autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
/* FIM DEPOIMENTO */


/* FAQ */
.faq {
    background-color: var(--cor3);
    padding: 60px;

    background: url(../assets/imagens/fundos/Ellipse-5.png) no-repeat;
    background-position: center right;
}

.faq-box {
    background-color: var(--color-1);
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ccc;
}

.faq-box p {
    color: var(--cor4);
    padding: 40px;
}


.faq-item {
    margin-bottom: 10px;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item label.faq-question {
    display: block;
    cursor: pointer;
    padding: 10px;
    background-color: var(--color-2);
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    color: var(--cor4);
}

.faq-item label.faq-question:hover {
    background-color: var(--color-1);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: var(--color-4);
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-item input[type="checkbox"]:checked + label + .faq-answer {
    max-height: 300px; /* Define um valor alto o suficiente para o conteúdo */
    padding: 10px;
}

/* Estilo adicional */
.faq-item .faq-answer p {
    margin: 0;
}
/* FIM FAQ */

.mapas iframe {
    width: 100%;
}

.rodape {
    background: url(../assets/imagens/fundos/Ellipse-5.png) no-repeat;
    background-position: center right;
}

.rodape-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.logo-rodape img {
    width: 160px;
}

.links {
    display: flex;
    flex-direction: column;
}

.links h2 {
    color: var(--cor1);
    font-size: 18px;
}


.links span a {
    text-decoration: none;
    color: var(--cor4);
}

.links span a:hover {
    color: var(--cor1);
}

.contato {
    display: flex;
    flex-direction: column;
    width: 300px;
}

.contato h2 {
    font-size: 18px;
    color: var(--cor1);
}

.contato span {
    color: var(--cor4);
}

.rodape {
    padding: 30px 0;
}

.rodape-box-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--cor4);
    width: 90%;
    margin: 0 auto;
    padding: 15px 0;
}

.rodape-box-info p {
    color: var(--cor4);
}

.rodape-box-info a {
    text-decoration: none;
    position: relative;
    top: 20px;
}

.rodape-box-info span {
    font-size: 12px;
    color: #ccc;
}

.whatsapp {
    position: fixed;
    bottom: 10px;
    right: 30px;
    width: 60px; 
    height: 60px; 
    transition: transform 0.5s ease-in-out; 
    transform: scale(1); 
}

/* Animação para aumentar e diminuir o tamanho */
.whatsapp:hover {
    transform: scale(1.2);
    transition: transform 0.1s ease-in-out; 
}

/* Animação contínua de aumentar e diminuir */
@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.whatsapp {
    animation: pulsar 1s infinite; /* Aplica a animação pulsante continuamente */
}

.whatsapp img {
    width: 60px;
}

                    svg#freepik_stories-carpool:not(.animated) .animable {
                        opacity: 0;
                    }

                    svg#freepik_stories-carpool.animated #freepik--background-complete--inject-70 {
                        animation: 7.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideLeft;
                        animation-delay: 0s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-3--inject-70 {
                        animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 1s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-2--inject-70 {
                        animation: 1s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 1s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--icon-1--inject-70 {
                        animation: 2.6s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) slideRight, 1.5s Infinite linear heartbeat;
                        animation-delay: 0s, 2.6s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-1--inject-70 {
                        animation: 4.6s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedLeft, 1.5s Infinite linear floating;
                        animation-delay: 0s, 4.6s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-2--inject-70 {
                        animation: 5.8s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedRight, 3s Infinite linear wind;
                        animation-delay: 0s, 5.8s;
                    }

                    svg#freepik_stories-carpool.animated #freepik--character-3--inject-70 {
                        animation: 2.9s 1 forwards cubic-bezier(.36, -0.01, .5, 1.38) lightSpeedLeft, 1.5s Infinite linear floating;
                        animation-delay: 0s, 2.9s;
                    }

                    @keyframes slideLeft {
                        0% {
                            opacity: 0;
                            transform: translateX(-30px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateX(0);
                        }
                    }

                    @keyframes slideRight {
                        0% {
                            opacity: 0;
                            transform: translateX(30px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateX(0);
                        }
                    }

                    @keyframes heartbeat {
                        0% {
                            transform: scale(1);
                        }

                        10% {
                            transform: scale(1.1);
                        }

                        30% {
                            transform: scale(1);
                        }

                        40% {
                            transform: scale(1);
                        }

                        50% {
                            transform: scale(1.1);
                        }

                        60% {
                            transform: scale(1);
                        }

                        100% {
                            transform: scale(1);
                        }
                    }

                    @keyframes lightSpeedLeft {
                        from {
                            transform: translate3d(-50%, 0, 0) skewX(20deg);
                            opacity: 0;
                        }

                        60% {
                            transform: skewX(-10deg);
                            opacity: 1;
                        }

                        80% {
                            transform: skewX(2deg);
                        }

                        to {
                            opacity: 1;
                            transform: translate3d(0, 0, 0);
                        }
                    }

                    @keyframes floating {
                        0% {
                            opacity: 1;
                            transform: translateY(0px);
                        }

                        50% {
                            transform: translateY(-10px);
                        }

                        100% {
                            opacity: 1;
                            transform: translateY(0px);
                        }
                    }

                    @keyframes lightSpeedRight {
                        from {
                            transform: translate3d(50%, 0, 0) skewX(-20deg);
                            opacity: 0;
                        }

                        60% {
                            transform: skewX(10deg);
                            opacity: 1;
                        }

                        80% {
                            transform: skewX(-2deg);
                        }

                        to {
                            opacity: 1;
                            transform: translate3d(0, 0, 0);
                        }
                    }

                    @keyframes wind {
                        0% {
                            transform: rotate(0deg);
                        }

                        25% {
                            transform: rotate(1deg);
                        }

                        75% {
                            transform: rotate(-1deg);
                        }
                    }
              