:root {
    --blue-1: #00879F;
    --blue-2: #1ea1b8;
    --blue-3: #4cbdd1;
    --blue-4: #82c4cf;
    --blue-5: #b3dfe6;
    --blue-6: #d4f4fa;
    --blue-7: #eefcff;
    --opacity-black: #3c3c3c98;
    --black-text: #313131;
    --shadow-black: #4949498d;
    --max-width: 89% ;
}

/* Colores de texto */
.blue-1{
    color: var(--blue-1) !important;
}
.blue-2{
    color: var(--blue-2) !important;
}
.blue-3{
    color: var(--blue-3) !important;
}
.blue-4{
    color: var(--blue-4) !important;
}
.blue-5{
    color: var(--blue-5) !important;
}
.blue-6{
    color: var(--blue-6) !important;
}
.white{
    color: white !important;
}

/* Colores de fondo */
.background-blue-1{
    background-color: var(--blue-1) !important;
}
.background-blue-2{
    background-color: var(--blue-2) !important;
}
.background-blue-3{
    background-color: var(--blue-3) !important;
}
.background-blue-4{
    background-color: var(--blue-4) !important;
}
.background-blue-5{
    background-color: var(--blue-5) !important;
}
.background-blue-6{
    background-color: var(--blue-6) !important;
}
.background-white{
    background-color: white !important;
}
.bg-opacity-black{
    background-color: var(--opacity-black) !important;
}
/* Tamaños de texto */
.font-1{
    font-size: 1rem !important;
}
.font-1-1{
    font-size: 1.1rem !important;
}
.font-1-2{
    font-size: 1.2rem !important;
}
.font-1-3{
    font-size: 1.3rem !important;
}
.font-1-4{
    font-size: 1.4rem !important;
}
.font-1-5{
    font-size: 1.5rem !important;
}
.font-2{
    font-size: 2rem !important;
}
.font-3{
    font-size: 3rem !important;
}
.font-4{
    font-size: 4rem !important;
}
.font-5{
    font-size: 5rem !important;
}
.font-6{
    font-size: 6rem !important;
}
.font-7{
    font-size: 7rem !important;
}
.font-8{
    font-size: 8rem !important;
}
.font-9{
    font-size: 9rem !important;
}
.font-center{
    text-align: center !important;
}
.font-left{
    text-align: left !important;
}
.font-right{
    text-align: right !important;
}
.font-justify{
    text-align: justify !important;
}
*{
    box-sizing: border-box !important;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    scroll-behavior: smooth;
    will-change: transform;
}
.contents{
    display: contents !important;
}
.notransform{
    transform: none !important;
}
html, body{
    display: contents !important;
}
h1, h2, h3{
    font-weight: 600;
    margin: 0;
}
h4, h5, h6{
    font-weight: 500;
    margin: 0;
}
h1 {
    font-size: 4rem; /* Principal título */
    color: var(--black-text);
    line-height: 1.2;
    text-shadow: 0 0 0.1rem var(--opacity-black);
}
h2 {
    font-size: 3rem; /* Segundo nivel de título */
    color: var(--black-text);
    line-height: 1.3;
}
h3 {
    font-size: 2.5rem; /* Tercer nivel de título */
    color: var(--black-text);
    line-height: 1.4;
}
h4 {
    font-size: 2rem; /* Cuarto nivel de título */
    color: var(--black-text);
    line-height: 1.4;
}
h5 {
    font-size: 1.5rem; /* Quinto nivel de título */
    color: var(--black-text);
    line-height: 1.5;
}
h6 {
    font-size: 1.25rem; /* Sexto nivel de título */
    color: var(--black-text);
    line-height: 1.5;
}
p {
    font-size: 1rem; /* Párrafo normal */
    line-height: 1.6;
    font-weight: 400;
    color: var(--black-text);
    margin: 0;
    text-align: justify;
}
.main{
    display: flex;
    flex-flow: column nowrap;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.header-container {
    width: 100%;
    background-color: var(--blue-1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 10000;
}

.header {
    width: var(--max-width);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
}

.menu-icon, .mini-checkbtn {
    /* font-size: 2rem; */
    cursor: pointer !important;
}
.mini-checkbtn span{
    font-size: 3rem !important;
    color: var(--blue-1);
}
.menu-icon{
    color: white;
    display: none;

}
.menu {
    display: flex;
}
.header-container .header .logo-img {
    width: 16rem;
    display: flex;
    height: 90%;
}
.header-container .header .logo-img img {
    width: 100%;
    height: 100%;
}
.header-container .header nav {
    display: contents;
}
.header-container .header nav .header-list {
    width: auto;
    display: flex;
    text-decoration: none;
    list-style: none;
    margin: 0;
}
.header-container .header nav .header-list li {
    margin: 0 0.2rem;
    padding: 0.5rem 0.8rem;
    color: white;
    transition: background-color 0.3s, border-radius 0.3s;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--blue-1);
    cursor: pointer;
    min-width: 6rem;
}
.header-container .header nav .header-list li.menu-active{
    background-color: white ;
    border-radius: 0.4rem 0.4rem 0.4rem 0;
    color: var(--blue-1);
}
.header-container .header nav .header-list li.menu-active:hover{
    background-color: var(--blue-4);
}
.header-container .header nav .header-list li:hover {
    background-color: var(--blue-2);
    border-radius: 0.4rem 0.4rem 0.4rem 0;
}
.header-container .header nav .header-list li span{
    transition: 0.3s;
}
.header-container .header nav .header-list li:hover > span{
    transform: rotate(180deg);
    transition: 0.3s;
}
.header-container .header nav .header-list li a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}
.header-container .header nav .header-list li .dropdown-menu {
    display: flex;
    position: absolute;
    flex-flow: column nowrap;
    top: 100%;
    right: -999em;
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    opacity: 0;
    transform: translate(0, -40px);
    transition: opacity 0.7s, transform 0.3s;
    width: 19rem !important;
    box-shadow: 0 0 0.1rem var(--opacity-black);
}
.header-container .header nav .header-list li .dropdown-menu li {
    padding: 0.5rem 0.8rem;
    margin: 0;
    /* white-space: nowrap; */
    background-color: transparent;
    width: 100%;
    border-radius: 0 !important;
}
.header-container .header nav .header-list li .dropdown-menu li:hover > span{
    transform: rotate(15deg) !important;
}
.header-container .header nav .header-list li .dropdown-menu li:hover{
    background-color: var(--blue-5);
}
.header-container .header nav .header-list li .dropdown-menu li  {
    color: var(--blue-1) !important;
    text-decoration: none;
    /* display: flex;
    flex-flow: column nowrap;
    align-items: start;
    justify-content: start; */
}
.header-container .header nav .header-list li:hover > .dropdown-menu {
    opacity: 1;
    transform: translate(0, 0);
    transition: 0.2s;
    right: auto;
    left: 0;
}
/* .header-container .header nav .header-list li .dropdown-menu li .dropdown-submenu {
    position: relative;
} */

/* .header-container .header nav .header-list li .dropdown-menu li .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: white;
    box-shadow: 0 0 0.1rem var(--opacity-black);
    z-index: 1001;
    width: 16rem;
}

.header-container .header nav .header-list li .dropdown-menu li .dropdown-submenu li {
    padding: 0.5rem 0.8rem;
    background-color: transparent;
}

.header-container .header nav .header-list li .dropdown-menu li .dropdown-submenu li:hover {
    background-color: var(--blue-5);
}

.header-container .header nav .header-list li .dropdown-menu li:hover > .dropdown-submenu {
    display: block !important;
} */

.item-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    width: 100%;
    transition: 0.3s;
}
.item-container:hover{
    background-color: var(--blue-7);
    transform: scale(1.02);
    transition: 0.3s;
}
.item-container .item{
    width: var(--max-width);
    display: flex;
    flex-flow: column nowrap;
}
.bg-img-1 {
    background-image: url('assets/banner-1.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-2 {
    background-image: url('assets/banner-2.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-3 {
    background-image: url('assets/servicios/2.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-4 {
    background-image: url('assets/banner-4.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-5 {
    background-image: url('assets/servicios/5.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-6 {
    background-image: url('assets/servicios/6.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-7 {
    background-image: url('assets/servicios/3.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-8 {
    background-image: url('assets/servicios/8.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}
.bg-img-9 {
    background-image: url('assets/servicios/9.webp');
    background-position: center;
    background-size: cover;
    width: 100% !important;
    height: auto;
}



.four-gallery, .three-gallery{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.four-gallery .element{
    width: 24%;
    display: flex;
    padding: 1rem;
    border-radius: 0.4rem;
    background-color: white;
    flex-flow: column nowrap;
    box-shadow: 0 0 0.1rem var(--opacity-black);
}
.three-gallery .element{
    width: 32%;
    padding: 0;
    border-radius: 0.4rem;
    background-color: white;
    display: flex;
    transition: 0.4s;
    flex-flow: column nowrap;
    box-shadow: 0 0 0.1rem var(--opacity-black);
}
.three-gallery  .element-transparent{
    box-shadow: none !important;
    background-color: transparent !important;
    width: 32% !important;
}
.three-gallery .element .element-info{
    display: flex;
    align-items: center;
    flex-flow: column nowrap;
    width: 100%;
    padding: 1rem;
}
.three-gallery .element .element-list, .four-gallery .element .element-list{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1.5rem 2.5rem;
}
.three-gallery .element .element-list span, .four-gallery .element .element-list span{
    font-size: 7rem;
    transition: 0.4s;
    color: var(--blue-1) !important;
}
.three-gallery .element .element-list span:hover, .four-gallery .element .element-list span:hover{
    transform: scale(1.1);
    transition: 0.4s;
}
.three-gallery .element .image-container, .four-gallery .element .image-container{
    border-radius: 0.4rem 0.4rem 0 0;
}
.three-gallery .element:hover{
    /* transform: translate(0, -0.5rem); */
    transition: 0.4s;
}
.three-gallery .element:hover > .image-container img{
    transform: scale(1.2);
    transition: 0.2s;
}
.image-container {
    width: 100%;
    overflow: hidden; /* Ocultar lo que se salga del contenedor */
    display: flex;
    height: 15rem;
}
.image-container img {
    width: 100%;
    min-width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.2s;
    object-fit: cover;
}
.circle-image-container {

    overflow: hidden; /* Ocultar lo que se salga del contenedor */
    display: flex;
    border-radius: 100%;
    justify-content: center; /* Centrar la imagen horizontalmente */
    align-items: center; /* Centrar la imagen verticalmente */
}
.circle-image-container img {
    /* width: 100%; */
    min-width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: 0.2s;
    object-fit: cover;
}

/* Height */
.h-20{
    min-height: 20vh;
    /* height: 35vh; */
}
.h-25{
    min-height: 25vh;
    /* height: 35vh; */
}
.h-30{
    min-height: 30vh;
    /* height: 35vh; */
}
.h-35{
    min-height: 35vh;
    /* height: 35vh; */
}
.h-40{
    min-height: 40vh;
    /* height: 40vh; */
}
.h-45{
    min-height: 45vh;
    /* height: 45vh; */
}
.h-50{
    min-height: 50vh;
    /* height: 50vh; */
}
.h-55{
    min-height: 55vh;
    /* height: 55vh; */
}
.h-60{
    min-height: 60vh;
    /* height: 60vh; */
}
.h-65{
    min-height: 65vh;
    /* height: 65vh; */
}
.h-70{
    min-height: 70vh;
    /* height: 70vh; */
}
.h-75{
    min-height: 75vh;
    /* height: 75vh; */
}
.h-80{
    min-height: 80vh;
    /* height: 80vh; */
}
.h-85{
    min-height: 85vh;
    /* height: 85vh; */
}
.h-90{
    min-height: 90vh;
    /* height: 90vh; */
}
.h-95{
    min-height: 95vh;
    /* height: 95vh; */
}
.h-100{
    min-height: 100vh;
    /* height: 100vh; */
}
.h-100p{
    height: 100% !important;
}

/* Width */

.w-5{
    min-width: 5% !important;
    width: 5% !important;
}
.w-10{
    min-width: 10% !important;
    width: 10% !important;
}
.w-15{
    min-width: 15% !important;
    width: 15% !important;
}
.w-19{
    min-width: 19% !important;
    width: 19% !important;
}
.w-20{
    min-width: 20% !important;
    width: 20% !important;
}
.w-25{
    min-width: 25% !important;
    width: 25% !important;
}
.w-30{
    min-width: 30% !important;
    width: 30% !important;
}
.w-35{
    min-width: 35% !important;
    width: 35% !important;
}
.w-37{
    min-width: 37% !important;
    width: 37% !important;
}
.w-40{
    min-width: 40% !important;
    width: 40% !important;
}
.w-45{
    min-width: 45% !important;
    width: 45% !important;
}
.w-49{
    min-width: 49% !important;
    width: 49% !important;
}
.w-50{
    min-width: 50% !important;
    width: 50% !important;
}
.w-55{
    min-width: 55% !important;
    width: 55% !important;
}
.w-60{
    min-width: 60% !important;
    width: 60% !important;
}
.w-65{
    min-width: 65% !important;
    width: 65% !important;
}
.w-70{
    min-width: 70% !important;
    width: 70% !important;
}
.w-75{
    min-width: 75% !important;
    width: 75% !important;
}
.w-80{
    min-width: 80% !important;
    width: 80% !important;
}
.w-85{
    min-width: 85% !important;
    width: 85% !important;
}
.w-90{
    min-width: 90% !important;
    width: 90% !important;
}
.w-95{
    min-width: 95% !important;
    width: 95% !important;
}
.w-100{
    min-width: 100% !important;
    width: 100% !important;
}
.margin-0{
    margin: 0 !important;
}
.margin-h-1rem{
    margin: 0 1rem !important;
}
.margin-v-1rem{
    margin: 1rem 0 !important;
}
/* Margenes */
.margin-1{
    margin-top: 1% !important;
    margin-bottom: 1% !important;
}
.margin-2{
    margin-top: 2% !important;
    margin-bottom: 2% !important;
}
.margin-3{
    margin-top: 3% !important;
    margin-bottom: 3% !important;
}
.margin-4{
    margin-top: 4% !important;
    margin-bottom: 4% !important;
}
.margin-5{
    margin-top: 5% !important;
    margin-bottom: 5% !important;
}
.margin-6{
    margin-top: 6% !important;
    margin-bottom: 6% !important;
}
.margin-7{
    margin-top: 7% !important;
    margin-bottom: 7% !important;
}
.margin-8{
    margin-top: 8% !important;
    margin-bottom: 8% !important;
}
.margin-9{
    margin-top: 9% !important;
    margin-bottom: 9% !important;
}
.margin-10{
    margin-top: 10% !important;
    margin-bottom: 10% !important;
}

/* Margenes Bottom */

.margin-b-1{
    margin-bottom: 1% !important;
}
.margin-b-2{
    margin-bottom: 2% !important;
}
.margin-b-3{
    margin-bottom: 3% !important;
}
.margin-b-4{
    margin-bottom: 4% !important;
}
.margin-b-5{
    margin-bottom: 5% !important;
}
.margin-b-6{
    margin-bottom: 6% !important;
}
.margin-b-7{
    margin-bottom: 7% !important;
}
.margin-b-8{
    margin-bottom: 8% !important;
}
.margin-b-9{
    margin-bottom: 9% !important;
}
.margin-b-10{
    margin-bottom: 10% !important;
}

.margin-r-1{
    margin-right: 1% !important;
}
.margin-r-2{
    margin-right: 2% !important;
}
.margin-r-3{
    margin-right: 3% !important;
}
.margin-r-4{
    margin-right: 4% !important;
}
.margin-r-5{
    margin-right: 5% !important;
}
.margin-r-6{
    margin-right: 6% !important;
}
.margin-r-7{
    margin-right: 7% !important;
}
.margin-r-8{
    margin-right: 8% !important;
}
.margin-r-9{
    margin-right: 9% !important;
}
.margin-r-10{
    margin-right: 10% !important;
}
.margin-l-1{
    margin-left: 1% !important;
}
.margin-l-2{
    margin-left: 2% !important;
}
.margin-l-3{
    margin-left: 3% !important;
}
.margin-l-4{
    margin-left: 4% !important;
}
.margin-l-5{
    margin-left: 5% !important;
}
.margin-l-6{
    margin-left: 6% !important;
}
.margin-l-7{
    margin-left: 7% !important;
}
.margin-l-8{
    margin-left: 8% !important;
}
.margin-l-9{
    margin-left: 9% !important;
}
.margin-l-10{
    margin-left: 10% !important;
}

/* hr */
hr{
    height: 0.2rem !important;
    border: none;
    margin: 0 auto;
    background-color: var(--blue-1);
}
.left-hr{
    margin: 0 auto 0 0;
}
.right-hr{
    margin: 0 0 0 auto;
}

/* Botones */
.btn{
    padding: 0.5rem 0.8rem;
    border: none;
    box-shadow: 0 0 0.1rem var(--blue-1);
    font-size: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    background-color: white;
    transition: 0.3s;
    outline: none;
    width: fit-content;
    display: flex;
    align-items: center;
    color: var(--blue-1);
}
/* Aplicar el estilo básico */
input[type="text"],
textarea,
select {
    padding: 0.5rem 0.8rem !important;
    box-shadow: 0 0 0.1rem var(--blue-1);
    font-size: 1rem;
    border: none;
    outline: none;
    background-color: rgb(245, 245, 245);
    transition: border 0.3s, box-shadow 0.3s;
    width: 100%;
    color: var(--blue-1);
    -webkit-appearance: none; /* Remueve estilo por defecto en Safari */
    -moz-appearance: none; /* Remueve estilo por defecto en Firefox */
    appearance: none; /* Remueve estilo por defecto en otros navegadores */
}

/* Opcional: agregar un fondo para simular una flecha personalizada */
select {
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzY2NjY2NiIgZD0iTTEuNzA3IDNMMCA0LjcwN2w4IDguMDEgOCAtOC4wMUwxNC4yOTMgM2wtNi4yOTMgNi4yOTN6Ii8+PC9zdmc+') no-repeat right 0.8rem center;
    background-size: 1rem;
    border-radius: 2rem;
    background-color: rgb(245, 245, 245);
    cursor: pointer;
}


/* Opcional: Estilo en hover para el select */
select:hover {
    box-shadow: 0 0 0.2rem var(--blue-2);
}

input[type="text"]{
    border-radius: 2rem;
}
textarea{
    border-radius: 1.2rem;
}
a{
    text-decoration: none !important;
}
input[type="text"]::placeholder,
textarea::placeholder, select::placeholder{
    color: var(--blue-1);
    opacity: 0.8;
}

input[type="text"]:focus,
textarea:focus, select:focus{
    box-shadow: 0 0 0.3rem var(--blue-1);
    background-color: var(--blue-7);
}

textarea {
    resize: none; /* Para que no se pueda redimensionar, opcional */
    height: 150px; /* Ajusta la altura según sea necesario */
}

.btn:hover{
    opacity: 0.8;
    transition: 0.3s;
    transform: scale(1.05);
}

/* divs flex */
.flex{
    display: flex !important;
    flex-flow: row nowrap !important;
}
.flex-center{
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
}
.flex-start{
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: flex-start !important;
}
.flex-start-between{
    display: flex !important;
    align-items: flex-start !important;
    flex-flow: row nowrap !important;
    justify-content: space-between !important;
}
.flex-center-center{
    display: flex !important;
    align-items: center !important;
    flex-flow: row nowrap !important;
    justify-content: center !important;
}
.flex-center-end{
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
}
.flex-center-between{
    display: flex !important;
    align-items: center !important;
    flex-flow: row nowrap !important;
    justify-content: space-between !important;
}
.flex-center-start{
    display: flex !important;
    align-items: center !important;
    flex-flow: row nowrap !important;
    justify-content: flex-start !important;
}
.flex-stretch-between{
    display: flex !important;
    align-items: stretch !important;
    flex-flow: row nowrap !important;
    justify-content: space-between !important;
}
.flexc-end-center{
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: flex-end !important;
    justify-content: center !important;
}
.flexc{
    display: flex !important;
    flex-flow: column nowrap !important;
}
.flexc-start{
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: flex-start !important;
}
.flexc-center{
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: center !important;
}
.flexc-center-center{
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: center !important;
    justify-content: center !important;
}
.flexc-center-between{
    display: flex !important;
    flex-flow: column nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
}
/* Img */
.left-img{
    margin: 0 auto 0 0;
}
.right-img{
    margin: 0 0 0 auto;
}
.center-img{
    margin: 0 auto;
}

.box{
    padding: 1rem;
    border-radius: 0.4rem;
    display: flex;
    box-shadow: 0 0 0.1rem var(--shadow-black);
    flex-flow: column nowrap;
}

.social-info{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.social-info span{
    border: solid 0.1rem var(--blue-3);
    border-radius: 100%;
    font-size: 2rem;
    padding: 1rem;
    margin: 0 0.4rem;
}

.footer-container {
    width: 100%;
    background-color: var(--blue-1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    flex-direction: column;
}
.footer {
    width: var(--max-width);
    display: flex;
    justify-content: space-between;
}
.footer-column {
    width: 22%;
}
.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 0.5rem;
}
.footer-column ul li a {
    color: white;
    text-decoration: none;
}
.footer-column ul li a:hover {
    text-decoration: underline;
}
 .social-media {
    display: flex;
    align-items: center;
}
 .social-media a {
    margin-right: 0.5rem;
}
 .social-media a:nth-child(1) img,  .social-media a:nth-child(2) img{
    filter: invert();
}
 .social-media img {
    width: 24px;
    height: 24px;
}
.footer-bottom {
    width: var(--max-width);
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.5;
}
.footer-bottom a {
    color: white;
    text-decoration: underline;
}

#blogForm{
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
}
#posts{
    display: flex;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}
#posts .post-item{
    width: 49%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    margin: 0 0 1rem 0;
    padding: 1rem;
    border-radius: 0.4rem !important;
    box-shadow: 0 0 0.1rem var(--opacity-black);
}
#posts .post-item h5{
    color: var(--blue-1);
    text-align: center;
    margin: 1rem 0;
}
#posts .post-item .image-container{
    height: 14rem !important;
    border-radius: 0.4rem !important;
}
#posts .post-item .btn{
    margin-top: 1rem;
}
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* Estilos para pantallas pequeñas (móviles y tabletas) */
@media (max-width: 950px) {

    /* Ajustes generales */
    .header-container .header {
        align-items: center;
        justify-content: space-between;
        height: auto;
    }

    .header-container .header .logo-img {
        width: 40% !important;
        justify-content: center;
    }
    .header-container .header .logo-img img{
        width: 100%;
    }

    .header-container .header nav .header-list {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .header-container .header nav .header-list li {
        width: 100%;
        text-align: center;
        margin: 0.2rem 0;
    }
    .four-gallery, .three-gallery{
        flex-flow: column nowrap !important;
    }
    .four-gallery div, .three-gallery div {
        width: 100% !important;
        margin-bottom: 1rem;
    }

    #posts .post-item {
        width: 100%;
    }

    /* Ajustes específicos para tamaños de texto */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4, h5, h6 {
        font-size: 1.4rem;
    }

    p {
        font-size: 0.9rem;
    }

    /* Ajustes de padding/margen */
    .header-container {
        padding: 1rem 0;
    }

    .footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .footer-column ul li {
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        font-size: 0.7rem;
        padding: 1rem;
    }

    /* Ajustes de imágenes */
    .image-container {
        height: 10rem;
    }

    .circle-image-container {
        width: 150px;
        height: 150px;
    }

    .flexc-end-center {
        align-items: center;
    }
}

@media (max-width: 950px) {
    .menu-icon {
        display: block !important;
    }
    .menu-icon span{
        font-size: 3rem !important;

    }
    .menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        background-color: var(--blue-1);
    }

    #check:checked ~ .nav.appear-responsive {
        left: 0 !important;
    }
    #check:checked ~ body {
        overflow: hidden !important;
    }
    .appear-responsive {
        display: flex !important;
        align-items: start;
        justify-content: center;
        position: fixed !important;
        width: 100% !important;
        height: 100%;
        background-color: #ffffffe8;
        z-index: 20 !important;
        left: -100%;
        transition: all 0.5s;
        overflow-y: auto !important;
    }
}
@media (max-width: 950px) {
    .w-19 {
        width: 50% !important;
    }

    .w-49, .w-37 {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .w-19,
    .w-49 {
        width: 100% !important;
    }
}

.appear-responsive {
    display: none ;
}
#check:checked ~ .main{
    overflow: hidden ;
}
.checkbtn, #check {
    display: none;
}
@media (max-width: 950px) {
    .flex {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: stretch !important; /* Permite que los elementos se estiren a lo largo del contenedor */
        justify-content: flex-start !important; /* Los elementos se alinean al inicio del contenedor */
    }

    .flex-center {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important; /* Centra los elementos en el eje horizontal */
        justify-content: center !important; /* Centra los elementos en el eje vertical */
    }

    .flex-start {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important; /* Alinea los elementos al inicio del contenedor en el eje horizontal */
        justify-content: flex-start !important; /* Alinea los elementos al inicio del contenedor en el eje vertical */
    }

    .flex-start-between {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important; /* Alinea los elementos al inicio del contenedor en el eje horizontal */
        justify-content: space-between !important; /* Distribuye los elementos uniformemente en el contenedor verticalmente */
    }

    .flex-center-center {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important; /* Centra los elementos en el eje horizontal */
        justify-content: center !important; /* Centra los elementos en el eje vertical */
    }

    .flex-center-end {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important; /* Centra los elementos en el eje horizontal */
        justify-content: flex-end !important; /* Alinea los elementos al final del contenedor en el eje vertical */
    }

    .flex-center-between {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important; /* Centra los elementos en el eje horizontal */
        justify-content: space-between !important; /* Distribuye los elementos uniformemente en el contenedor verticalmente */
    }

    .flex-center-start {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: center !important; /* Centra los elementos en el eje horizontal */
        justify-content: flex-start !important; /* Alinea los elementos al inicio del contenedor en el eje vertical */
    }

    .flex-stretch-between {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        align-items: stretch !important; /* Permite que los elementos se estiren a lo largo del contenedor */
        justify-content: space-between !important; /* Distribuye los elementos uniformemente en el contenedor verticalmente */
    }
    .transparent-bg-950{
        box-shadow: 0 0 !important;
        background-color: transparent !important;
    }
    .footer-container .footer{
        flex-flow: column nowrap !important;
    }
    .footer .social-media{
        width: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .footer .w-35, .footer .w-30{
        width: 100% !important;
    }
}
@media (max-width:1200px){
    .force-flex-1200{
        flex-flow: row wrap !important;
    }
    .force-flex-1200 .element{
        width: 48% !important;
        margin-bottom: 1rem !important;
    }
}
@media (max-width:670px){
    .force-flex-1200{
        flex-flow: column nowrap !important;
    }
    .force-flex-1200 .element{
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
}

.force-row{
    flex-flow: row nowrap !important;
}
