/* Enter Your Custom CSS Here */
/* Esta sección de código cambia el color de la letra, tamaño y espaciado especificamente para el titulo de la sección portfolio*/
#section.portfolio .container .row .col-md-12 .section-title h1.section-heading {
  letter-spacing: 0.2em;
	color:#183263;
}

#section.portfolio .container .row .col-md-12 .section-title p {
	color:#2a292b;
}

/* esta línea cambia color de texto NO contenido dentro de ROWs del Live Composer
.entry-content{
		color:#183263;
}*/

/* SCROLLING ESTUDANTES INVSTE. HORIZONTAL CSS + VER CÓDIGO HTML complementario*/
body {
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.horizontal-container {
    display: flex;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    padding: 10px 0;
}

.item {
    min-width: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    margin-right: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.item p {
    margin: 0;
    font-weight: bold;
}

.item a {
    display: block;
    margin-top: 5px;
    text-decoration: none;
    color: green;
}
/* Formato Horizontal para imagenes de Quienes Somos + Animaciones*/
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-bottom: 20px;
}

.gallery-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}

.gallery {
    display: inline-flex;
    animation: scroll-left 120s linear infinite;
}

.gallery img {
    width: 300px;
    height: 300px;
    margin-right: 10px;
    border-radius: 5px;
}

.gallery img:last-child {
    margin-right: 0;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-170%);
    }
}
/* Formato Horizontal para imagenes de Semillero + Animaciones*/
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-bottom: 20px;
}

.gallery-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
}

.gallery {
    display: inline-flex;
    animation: scroll-left 350s linear infinite;
}

.gallery img {
    width: 300px;
    height: 200px;
    margin-right: 10px;
    border-radius: 5px;
}

.gallery img:last-child {
    margin-right: 0;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-170%);
    }
}


