/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 12 2025 | 11:10:04 */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
.post-878 h1{
	display: none;
}
/* Variables globales */
:root {
    --primary-color: #027DCC;
    --secondary-color: #59BFFF;
    --text-color: white;
    --gray-text: #828282;
    --grey-paragraph: #CBCBCB;
    --light-gray: #f5f5f5;
    --font-primary: "Open Sans", serif;
    --font-secondary: "Lato", serif;
}

/* general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--light-gray);
}

h1 {
    color: var(--primary-color);
}

h1, h2 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin: 0.5rem 0;
}

h2 {
    color: var(--secondary-color);
}
h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--gray-text);
}
h3{
    color: var(--text-color);
}
p{
    color: var(--text-color);
}

.big-title{
    font-size: 2.5rem;
    font-weight: 700;
}

.left-position{
    display: flex;
    justify-content: left;
}


  
.filter{
    filter: brightness(0.5);
}
.grey-link {
    color: var(--light-gray);
}
.grey-text{
    color: var(--grey-paragraph);
}

.padding-top{
    padding-top: 3rem;
}

.padding-text{
    padding: 3rem;
}

.uppercase {
    text-transform: uppercase;
}
.margin-space{
    margin: 2rem 0;
}
.image-container{
    position: relative;
}

.image-container-large {
    position: relative;
    width: 100%;
    height: 100vh; /* Ajusta la altura según lo que necesites */
    overflow: hidden;
}

/* One clumn styles */

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white; /* Asegura que el texto sea legible */
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.overlay-text h3,
.overlay-text h2 {
    margin: 0;
}

.margin-space {
    margin-top: 1rem; /* Ajusta el espacio entre los elementos */
}

/* Button fixed */

.fixed-button {
    position: fixed;
    bottom: 1rem;
    right: 20px; 
    width: 100px; 
    height: 90px; 
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%; /* Makes it a circle */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-align: center;
    z-index: 1000; /* Ensures it's above other elements */
}

.fixed-button .icon {
    width: 30px; /* Adjust icon size */
    height: 30px;
}

.fixed-button h4 {
    font-size: 12px; /* Adjust text size */
    margin: 5px 0 0 0;
    color: white;
}



/* Responsiveness */ 
/* Two Columns */
/* En desktop, la imagen pequeña se estira para que coincida con la grande */
@media (min-width: 768px) {
    .small-img .image-container {
        height: 80%;
    }

    .small-img img {
        height: 100%;
        object-fit: cover;
    }
    .flex-desktop{
        display: flex;
        flex-direction: column;
    }
    .right-text-position{
        justify-content: left;
        text-align: left;
        align-items:flex-end;
        padding-right: 2rem;
        top: 80%;
        transform: translate(-50%, -80%);
    }
    .left-text-position{
        justify-content: right;
        text-align: right;
        align-items:flex-start;
        padding-left: 2rem;
        top: 80%;
        transform: translate(-50%, -80%);
    }
}

/* En mobile, agregar separación entre las imágenes */
@media (max-width: 767px) {
    .large-img {
        margin-bottom: 1.5rem; 
    }
    .small-img {
        flex: 1; /* Ocupa la mitad del espacio en mobile */
    }
}
