*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

#body{
    width: 100%;    
    background-image: url("fond.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-clip: content-box;
    backface-visibility: visible;
    object-fit: cover;
    font-family: 'Times New Roman', Times, serif;
    opacity: 1;
    
}

/*SECCIÓN DE INICIO*/

.informacion{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    justify-items: center;
    align-items: center;
    padding: 15px 0;
    animation: moverarriba 1s ease-in;
}

.inicio{
    display: block;
    text-align: center;
    align-items: center;
    width: 100%;
    height: max-content;
    margin: 5px 0;
    padding: 20px 0;
    animation: moverarriba2 1s ease-in;
}

.inicio div{
    display: inline-flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 15px 15px;
    border-radius: 15px;
    width: 50%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;

}

.inicio h2{
    margin: 10px 0;
    padding: 5px 0;
    font: 400;
    font-size: 40px;
    color: #968AC5;
    animation: moverderecha 1s ease-in;
}


.inicio p{
    margin: 5px 0;
    padding: 5px 0;
    font: 400;
    font-size: 30px;
    animation: moverderecha 1s ease-in;
}

.inicio button{
    margin:  10px 0;
    padding:  10px 0;
    font-size: 20px;
    color: #fff;
    background: #453E62 ;
   transition: background 1s;
   animation: moverarriba 1s ease-in;
}

.inicio button:hover{
    background:#968AC5  ;
    color: #000;
}

.btn{
    border-radius: 15px;
    width: 100%;
    height: 60px;
    cursor: pointer;
}

.img-dra{
    border-radius:50%;
    width: 50%;
    height: 50%;
    box-shadow: 5px 10px #888888;
    animation: ilus 2s infinite;
}


#pa1{
    font-size: 20px;
   
}

#ul01{
    text-align: justify;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}



.titulo-service{
    font-size: 20px;
    margin: 5px 0;
    padding: 5px 0;
    animation: moverizquierda 1s ease-in;
}

.img-service{
    width: 150px;
    height: 100px;
    border-radius: 40px;
    animation: moverarriba 1s ease-in;
    
}

.img-service:hover{
  transform: scale(1.2);
}





/*SECCIÓN CONTACTO*/
#form{
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#form input[type="text"], input[type="number"]{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background:#968AC5;
    outline-style: groove;
    margin: 5px 0;
    padding: 5px 0;
}

#select01{
    width: 100%;
    border-radius: 5px;
    height: 40px;
    background:#968AC5;
    color: #fff;
    outline-style: groove;
    margin: 5px 0;
    padding: 5px 0;
}

#textarea{
    width: 100%;
    min-width: 100%;
    border-radius: 5px;
    outline-style: groove;
    margin: 5px 0;
    padding: 5px 0;
    color: #fff;
    background:#968AC5;
}

 input[type="submit"]{
    width: 40%;
    margin: 5px 0;
    padding: 5px 0;
    height: 40px;
    background:#968AC5;
    cursor: pointer;
    outline-style: groove;
    transition: background 1s;
}

#btn-enviar:hover{
    background: #fff;
    color: #000;
}


::placeholder{
    color: #fff;
}



/*FIN SECCIÓN DE CONTACTO*/
.redessociales{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    color: #968AC5;
    position: relative;
    bottom: 25px;    
    animation: moverarriba 1s ease-in;
}


/*MODO TELÉFONO*/

@media screen and (max-width:800px) {


  
   
.btn{
    border-radius: 15px;
    width: 250px;
    height: 60px;
}

#div01{
    width: 250px;
    font-size: 10px;
    
}

#div02{
    width: 250px;
    font-size: 10px;
}

#div03{
    width: 250px;
    font-size: 10px;
}

#div04{
    width: 250px;
    font-size: 10px;
}

.redessociales div h3{
    font-size: 30px;
}

.redessociales{
    position: relative;
    bottom: 25px;
}

.titulo-service{
    font-size: 20px;
}

.img-service{
    width: 100px;
    height: 100px;
    border-radius: 40px;
}


 }

 /*EFECTOS*/
 @keyframes moverarriba2{
    0%{
        opacity: 0;
        transform: translateY(100px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moverarriba{
    0%{
        opacity: 0;
        transform: translatex(100px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes moverderecha{
    0%{
        opacity: 0;
        transform: translatex(200px);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }


    
}

@keyframes moverizquierda{
    0%{
        opacity: 0;
        transform: translatex(300PX);
    }

    100%{
        opacity: 1;
        transform: translate(0);
    }


    
}


@keyframes ilus{
    0%{
        transform: scale(1);
    }100%{
        transform: scale(1.05);
    }


    
}

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
    position: fixed;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  /* Style the icon bar links */
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
  }
  
  /* Style the social media icons with color, if you want */
  .icon-bar a:hover {
    background-color: #000;
  }
  
  .facebook {
    background: #3B5998;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .google {
    background: #dd4b39;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #00bb5a;
    color: white;
  }

  /*TOP*/
  /* top top*/

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #7c79a0;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 20px;
  }
  
  #myBtn:hover {
    background-color: #555;
  }

