.header {
    text-align: center;
}

/*INICIO DE GALERIA DE IMAGENES*/
.slider {
    width: 75vw;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 14);
}

.slider .slide {
    width: 200px;
    margin: 2%;
}

.slider .slide img {
    width: 100%;
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}
/*FIN DE GALERIA DE IMAGENES*/


/*INICIO DE SOCIAL BAR*/

.social-bar {
    position: fixed;
    right: 0;
    top: 35%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
    text-decoration: none !important;
}

.icon {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
    text-decoration: none !important;
}

.icon-facebook {
    background: #3b5998;
}

.icon-facebook:hover{
    color: white;
}

.icon-wsp {
    background-color:#25d366;
}

.icon-wsp:hover{
    color: white;
}

.icon-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.icon-instagram:hover{
    color: white;
}

.icon:first-child {
    border-radius: 1rem 0 0 0;
}

.icon:last-child {
    border-radius: 0 0 0 1rem;
}

.icon:hover {
    padding-right: 3rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
}

@media only screen and (max-width: 768px) {
    .social-bar {
        top: 35%;
        /* Ajusta la posición vertical si es necesario */
    }

    .icon {
        font-size: 3.3rem;
        /* Ajusta el tamaño de la fuente de los íconos */
        padding: 1rem;
        /* Ajusta el espacio alrededor de los íconos */
    }

    .icon:first-child {
        border-radius: 1rem 1rem 0 0;
        /* Ajusta el radio de borde del primer ícono */
    }

    .icon:last-child {
        border-radius: 0 0 1rem 1rem;
        /* Ajusta el radio de borde del último ícono */
    }

    .icon:hover {
        padding-right: 4.3rem;
        /* Ajusta el espacio adicional en la animación de hover */
    }
}
/*FIN DE SOCIAL BAR*/

/*INICIO CONTACTENOS*/

.container-form{
    width: 100%;
    max-width: 1100px;
    margin-top: 90px;
    padding: 20px;
    margin: auto;
}

.container-form a{
    font-size: 17px;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-bottom: 15px;
    color: black;
    
}
.container-form a i{
    color:  #55c7d6;;
    margin-right: 10px;
    padding: 10px;
}

.container-form form .input-form, textarea{
    width: 100%;
    padding: 15px 10px;
    font-size: 16px;
    border: 3px solid #55c7d6;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0px;
}

.container-form .btn-enviar{
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: 0px;
    background-color: #55c7d6;
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 300ms ease;
}
.container-form .btn-enviar:hover{
    background-color: #5598d6;
}
@media screen and (min-width: 1024px){
    .container-form{
       display: flex;
        
    }
    
}

/*FIN DE CONTACTENOS*/