/* HEADER */

header h1 {
    font-size: 72px;
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
}

header h2 {
    font-size: 56px;
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: 72px;
    font-family: 'Antonio', sans-serif;
}

p {
    font-family: 'Source Sans 3', sans-serif;
    color: white;
}

header p {
    font-size: 20px;
    font-weight: 300;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
  color: #fff;
  font-size: 24px;
  animation: beat 2s ease-in-out infinite;
  text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


/* NAVBAR */

.nav_list {
    font-family: 'Antonio', sans-serif;
    font-size: 30px;
}

i {
    color: #FFFFFF;
}

button {
    background-color: #CA0909;
    color: white;
    border: #CA0909;
    font-family: 'Antonio', sans-serif;
    font-size: 30px;



}

.button a {
    font-size: 25px;

}

nav .button {
    margin-top: -100px;
    margin-bottom: -8px;
    margin-right: -27px;
    padding: 30px 80px;


    display: inline;


}

/* SECTION */

#homme_1 h1 {
    font-size: 70px;
    font-family: 'Antonio', sans-serif;
    color: #CA0909;

}

#home_1 .head1 {
    font-size: 72px;
    font-family: 'Antonio', sans-serif;
    color: #CA0909;
    text-transform: uppercase;
}

#home_1 .head2 {
    font-size: 75px;
    font-family: 'Antonio', sans-serif;
    color: #CA0909;
    text-transform: uppercase;
}

#home_1 p {
    font-size: 25px;
}

.button1{
	background-color:  #CA0909;
	color: white;
	border: #CA0909;
	font-family: 'Antonio', sans-serif; 
	font-size: 30px;
	box-shadow: 0px 0px 15px red ,0px 0px 15px red ;
	position: relative;
 }
 
 .button1 a{
	 font-size: 25px;
	 
 }

 /* animation button*/  
 
 .button1::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 2px solid white;
    /* border-style: dashed; */
    border-right: 2px solid white;
    /* border-style: dashed; */
    animation: border-top-right 3s infinite alternate;

}
@keyframes border-top-right{
    0% {width: 0px; height: 0px;}
    25% {width: 260px; height: 0px;}
    50% {width: 260px; height: 50px;}
    100% {width: 260px; height: 50px;}
}
.button1::after{
    content: "";
    position: absolute;
    right:0;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 2px solid white;
    border-left: 2px solid white;
    /* border-style: dashed; */
    animation: border-bottom-left 3s infinite alternate;

}
@keyframes border-bottom-left{
    0% {width: 0px; height: 0px;}
    50% {width: 0px; height: 0px;}
    75% {width: 260px; height: 0px;}
    100% {width: 260px; height: 50px;}
}









/* FOOTER */

footer {
    background-color: #CA0909;
    color: white;
}

footer .para4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.footer_list {
    font-family: 'Antonio', sans-serif;

}

/* footer p{
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
} */


@media(max-width:650px) {



    /* NAVBAR */

    .logo {
        width: 60%;

    }

    nav .button {
        margin-top: 20px;
        padding: 10px 40px !important;
        margin-bottom: 20px;

    }

    nav i {
        margin-right: 0px !important;
    }

    /* HEADER */

    header h1 {
        font-size: 50px;
        padding-top: 20px;
    }

    header p {
        font-size: 20px;
        padding-top: 30px;
    }

    header h4 {
        font-size: 22px;
        padding-bottom: 20px;
    }

    header a .button {
        width: 75% !important;
        height: 75% !important;
        font-size: 30px;
    }

    /* SECTION */
    #home_1 a .button1 {
        width: 85% !important;
        height: 100% !important;
        font-size: 30px;
    }
    #home_1 .head1{
        font-size: 60px;
    }
    #home_1 .head2{
        font-size: 60px;
    }


    /* FOOTER */

    footer .icon {
        float: left !important;
        margin-top: 30px !important;
        margin-left: 20%;

    }

    .footer_list {
        font-size: 25px !important;
        padding-top: 30px !important;
    }

    footer .para4 {
        font-size: 17px !important;
        padding-left: 13px;
    }
}

@media(max-width:998px){
  
 }
