.mt-20 {
	margin-top: 20px;
}

.mb-50 {
   margin-bottom: 50px
}

.mt-100 {
	margin-top: 100px;
}
.mb-100 {
	margin-bottom: 100px;
}

.mt-50 {
	margin-top: 50px;
}

.pt-50 {
   padding-top: 50px;
}


.text-uppercase {
	text-transform: uppercase;
}


.font-weight-700 {
	font-weight: 700;
}

.text-naranja {
	color: #F58125;
}

.text-justify{
	text-align: justify;
}


/*PERSONALIZADO*/
.btn-whatsapp {
   display:block;
   width:80px !important;
   height:80px !important;
   color:#fff;
   position: fixed;
   right:30px;
   bottom:90px;
   border-radius:50%;
   line-height:80px;
   text-align:center;
   z-index:9999;
}


.lineahorizontal-footer {
   background: #e07017;
   height: 1px;
   width: 100%;
   margin-top: 10px;
   margin-bottom: 10px;
}


/*LOGO*/
/* Animación */

@keyframes beat {
  0%, 50%, 100% { transform: scale(1, 1); }
  30%, 80% { transform: scale(0.92, 0.95); }
}


/* Corazón */

.heart{
    position: relative;
    /*
    width: 100px;
    height: 90px;*/
    animation: 2.5s ease 0s infinite beat;
}
.heart:before,
.heart:after{
    position: absolute;
    content: "";
    /*
    left: 50px;
    top: 0;
    width: 50px;
    height: 80px;
    background: #fc2e5a;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
            transform-origin: 0 100%;*/
}
.heart:after{
    left: 0;
    transform: rotate(45deg);
    transform-origin :100% 100%;
}