* {
    margin: 0;
    padding: 0; 
}
body {
    font-family: 'Georgia', serif;
    background-color: #fef9e7; /* Fondo sepia claro */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #6a1b9a; /* Fondo morado */
    color: #fff;
    padding: 1em 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
}

main {
    padding: 2em;
    max-width: 800px;
    margin: auto;
    background-color: #fff; /* Fondo blanco */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2em;
    background-color: #fff; /* Fondo blanco */
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 0.5em;
    font-weight: bold;
}

input, textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Georgia', serif;
}

textarea {
    width: 100%;
    height: 500px !important;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2em;
}

.profile .bio {
    max-width: 600px;
    text-align: center; /* Centra el texto */
}

.profile .bio h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #6a1b9a; /* Color morado */
}

.profile .bio p {
    margin: 0.5em 0;
}

#carousel-orgsj-container {
 height:500px;
 overflow:hidden;
 margin-bottom:32px;
}
.carousel-inner {
  max-height: 600px; /* Ajusta la altura según tus necesidades */
}

.img-fluid {
  width: 100%;
  height: auto; /* Permite que la altura se ajuste automáticamente */
  object-fit: cover;
}

.monsieur-la-doulaise-regular {
    font-family: "Monsieur La Doulaise", system-ui;
    font-weight: 400;
    font-style: normal;
}

.img-orgsj {
	image-rendering:auto;
	height:540px;

}

footer a{
 color:#FF4;
}
footer a:hover{
   color: #FF0;
}

.logo {
    height: 100px;
    background-color: white;
    border-radius: 50%;
}


#preview img {
    max-width: 200px;
    margin: 10px;
}


.carousel-item {
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.active {
    opacity: 1;
}

#mensaje-hermanos{
    display:none;
}

#experiencia{
    display:none;
}

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -50px; /* Half of the width */
    margin-top: -50px; /* Half of the height */
    width: 60px;
    
  aspect-ratio: 1;
   --c:no-repeat linear-gradient(orange 0 0);
  background:
    var(--c) left   20px top    0,
    var(--c) top    20px right  0,
    var(--c) right  20px bottom 0,
    var(--c) bottom 20px left   0;
  background-size:calc(100%/3) calc(100%/3);
  animation: 
    l29-1 .75s infinite alternate linear,
    l29-2 1.5s infinite;
}
@keyframes l29-1 {
 90%,100% {background-size:calc(2*100%/3) calc(100%/3),calc(100%/3) calc(2*100%/3)}
}
@keyframes l29-2 {
 0%,49.99% {transform:scaleX(1)}
 50%,100%  {transform:scaleX(-1)}
}