/* IMPORTING FONTS */
@import url("./fonts.css");
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* INITIAL CONFIGURATIONS */

@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

:focus {
    outline: none !important;
}

@keyframes slide-right {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(100%);
    }
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}



body{
    background-color: var(--color-0);
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.scroll{
    overflow-y: scroll;
}

button {
    all: unset;
    cursor: pointer;
}

button:focus {
    outline: none;
}

:focus{
    outline: none;
}

:root{
    /* COLORS PALETTE*/
    --color-0: #ededed;
    --color-1: #6D77BB;
    --color-2: #383153;
    --color-3: #1d192c;
    --color-4: #1e1e1e;
    --color-5: #677F85;
    --color-6: #5F9277;
    
    /* FONTS STYLE*/

    --font-primary: "Lora", sans-serif;
    --font-secondary: "Glacial", glacial-indifference;
    --font-secondary-bold: "Glacial-bold", glacial-indifference-bold;  
}

/* img {
    -webkit-touch-callout: none; 
    -webkit-user-select: none;   
    -khtml-user-select: none;    
    -moz-user-select: none;      
    -ms-user-select: none;       
    user-select: none;           
} */

/* STYLES FOR NAVBAR */

.close-button-cell{
    width: 3rem;
    height: 3rem;
    color: #e0e1dd;
    position: absolute;
    right: 3rem;
    top: 3rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    i{
        width: 100%;
        height: 100%;
        font-size: 3rem;
    }
}

.menu-button-cell{
    width: 3rem;
    height: 3rem;
    color: #e0e1dd;
    position: absolute;
    right: 3rem;
    top: 3rem;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    i{
        width: 100%;
        height: 100%;
        font-size: 3rem;
    }
}

.button-nav-panel{
    position: fixed;
    right: 3rem;
    top: 3rem;
    border-radius: 50%;
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: 2rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-color: var(--color-1);
    color: var(--color-0);
    z-index: 99999;
    i{
        transform: scaleY(1);
        cursor: pointer;
        color: var(--color-0);
    }
}
.button-nav-panel.active{
    color: black;
    border-color: black;
}

/* **************************************************************************************************************/
/* ***********************************************NAVIGATION PANEL***********************************************/
/* **************************************************************************************************************/

.nav-panel{
    background-color: var(--color-1);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transform: translateY(-100%);
    transition: all .3s ease-in-out;
    overflow: scroll;

    .header{
        width: 100%;
        height: 7rem;
        position: relative;
        display: flex;
        flex-direction: row;;
        .left{
            margin: auto;
            position: absolute;
            left: 3rem;
            top: 3rem;
            width: 4rem;
            height: 4rem;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .center{
            margin: auto;
            position: relative;
            top: 1.5rem;
            margin: auto;
            h2{
                font-size: 2.5rem;
                font-family: var(--font-primary);
                font-weight: 600;
            }
        }
        .right{
            position: absolute;
            right: 3rem;
            top: 3rem;
            border: solid 1px var(--color-3);
            border-radius: 50%;
            height: 4rem;
            width: 4rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }
    .container{
        width: 85%;
        margin: auto;
        margin-top: 10rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        .one{
            height: 100%;
            border-left: solid 2px rgba(0, 0, 0, 0.5);
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        .two{
            height: 100%;
            border-left: solid 2px rgba(0, 0, 0, 0.5);
            padding-left: 1.5rem;
            padding-right: 1.5rem;

        }
        .three{
            height: 100%;
            border-left: solid 2px rgba(0, 0, 0, 0.5);
            border-right: solid 2px rgba(0, 0, 0, 0.5);
            padding-left: 1.5rem;
            padding-right: 1.5rem;

        }
        .element{
            transform: scaleY(1);
            margin-top: 4rem;
            p{
                font-family: var(--font-secondary);
                font-size: 1.3rem;
                font-weight: 500;
                color: var(--color-3);
            }
            .line{
                position: absolute;
                width: 100%;
                height: 1.5px;
                left: -100%;
                bottom: 0;
                background-color: var(--color-3);
                transition: all .3s ease-in-out;
                margin-top: 1rem;
            }
            .button{
                position: relative;
                display: inline-block;
                overflow-x: hidden;
                letter-spacing: 1px;
                a{
                    font-family: var(--font-primary);
                    font-size: 2rem;
                    color: var(--color-3);
                    font-weight: 600;
                }
                
            }
            .button:hover .line{
                left: 0%;
            }
            .sub-elements{
                .sub-element{
                    margin-top: 1.2rem;
                    a{
                        font-size: 1.3rem;
                        font-weight: 500;
                        letter-spacing: 1.5px;
                    }
                }
            }
        }
        .element:nth-child(1){
            margin-top: 0;
        }
    }

    .social{
        width: 85%;
        margin: auto;
        h3{
            font-size: 1.3rem;
            font-family: var(--font-secondary);
            font-weight: 500;
        }
        .social-links{
            margin-top: 1rem;
            display: flex;
            flex-direction: row;
            .icons{
                display: flex;
                flex-direction: row;
                a{
                    margin-left: 1rem;
                    width: 4rem;
                    height: 4rem;
                    border-radius: 50%;
                    background-color: var(--color-3);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: var(--color-0);
                    transition: all 0.3s ease;
                    i{
                        font-size: 1.5rem;
                    }
                }
                a:first-child{
                    margin-left: 0;
                }
                a:hover{
                    background-color: var(--font-color-dark);
                    color: var(--color-0);
                }
            }
        }
    }
}

.logo-fixed{
    position: absolute;
    left: 3rem;
    top: 3rem;
    height: 6.5rem;
    width: 6.5rem;
    z-index: 9999;
}

.nav-panel.active{
    transform: translate(0%);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* **************************************************************************************************************/
/* *************************************************MAIN SECTION*************************************************/
/* **************************************************************************************************************/

main{
    /* GENERAL CLASS STYLES */
    position: relative;
    .rectangular-button{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        height: 3.4rem;
        transition: all .3s ease-in-out;
        outline: none;
        p{
            position: relative;
            z-index: 99;
            font-family: var(--font-secondary);
            font-weight: 100;
            font-size: 1.1rem;
            transition: all .3s ease-in-out;
        }
        i{
            position: relative;
            z-index: 99;
            margin-right: 1rem;
            transition: all .3s ease-in-out;
            font-size: 1.7rem;
        }
        .rectangular-filling{
            position: absolute;
            width: 0rem;
            height: 0rem;
            transition: all .3s ease-in-out;
            border-radius: 2rem;
        }
    }
    .rectangular-button:focus{
        outline: none;
    }

    .rectangular-button,
    .rectangular-button * {
        outline: none !important;
        -webkit-tap-highlight-color: transparent; /* Evita el resalte en móviles */
    }

    .section-landing{
        width: 100vw;
        position: relative;
        margin-top: 15rem;
        display: flex;
        flex-direction: column;
        .section-container{
            width: 75vw;
            margin: auto;
            .section-header{
                display: flex;
                width: 100%;
                flex-direction: column;
                .section-title{
                    font-size: 5rem;
                    font-family: var(--font-primary);
                    font-weight: 600;
                    color: var(--color-2);
                    line-height: 5rem;
                }
                .section-subtitle{
                    font-size: 1.5rem;
                    font-family: var(--font-secondary);
                    font-weight: 500;
                    margin-top: 1rem;
                    color: var(--color-4);
                }
            }
        }
    }

    .circle-span-container{
        position: relative;
    }

    .circle-span{
        width: 0%;
        height: 0%;
        position: absolute;
        border-radius: 50%;
        transition: all .3s ease-in-out;
    }

    .circle-span-container:hover .circle-span{
        width:  100%;
        height: 100%;
    }

    #cover{
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
        justify-content: space-between;
        height: 100vh;
        position: relative;
        width: 100vw;
        .right{
            display: flex;
            height: 100%;
            width: 100%;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 99;
            flex-direction: column;
            .titles{
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                h1{
                    margin: 0;
                    padding: 0;
                    font-weight: 600;
                    display: flex;
                    flex-direction: column;
                    span{
                        font-size: 4rem;
                        display: inline-block;
                        margin-top: 2.5rem;
                        color: var(--color-2);
                        font-family: var(--font-primary);
                        font-weight: 700;
                    }
                }
        
                h2{
                    font-family: var(--font-secondary);
                    color: var(--color-3);
                    display: flex;
                    margin-top: 1rem;
                    font-size: 1.5rem;
                    font-weight: 400;
                    height: 2rem;
                }
            }


            .explore-button {
                width: 15rem;
                height: 4rem;
                border: none;
                outline: none;
                color: var(--color-3);
                background-color: var(--color-1);
                font-weight: 700;
                cursor: pointer;
                position: relative;
                z-index: 0;
                border-radius: 2rem;
                margin-top: 2rem;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                font-family: var(--font-secondary);
                font-size: 1.4rem;
            }

            .explore-button:before {
                content: '';
                background: linear-gradient(45deg, #27293f, #2354da, #1154ff, #8896cc, #077bff, #6d77bb, #43496c, #5e66a4, #27293f);
                position: absolute;
                top: -2px;
                left:-2px;
                background-size: 400%;
                z-index: -1;
                filter: blur(5px);
                width: calc(100% + 4px);
                height: calc(100% + 4px);
                animation: glowing 20s linear infinite;
                opacity: 0;
                transition: opacity .3s ease-in-out;
                border-radius: 2rem;
            }

            .explore-button:active {
                color: var(--color-1)
            }

            .explore-button:active:after {
                background: transparent;
            }

            .explore-button:hover:before {
                opacity: 1;
            }

            .explore-button:after {
                z-index: -1;
                content: '';
                position: absolute;
                width: 100%;
                height: 100%;
                background: var(--color-1);
                left: 0;
                top: 0;
                border-radius: 2rem;
            }

        }
        .left{
            display: flex;
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            overflow: hidden;
            .image-universe{
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }

    /* *----------------------------------------------ORIGIN - ABOUT -------------------------------------------- */

    #origins{
        position: relative;
        width: 100vw;
        background-color: var(--color-1);
        margin-top: 0;
        .section-container{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 4rem 0rem;
            .origins-text{
                width: 50%;
                height: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                .section-header{
                    .section-title{
                        color: var(--color-2);
                    }
                    .section-subtitle{
                        text-align: left;
                        color: var(--color-4);
                    }
                }

                .description{
                    margin-top: 3rem;
                    font-family: var(--font-secondary);
                    font-size: 1.4rem;
                    color: var(--color-4);
                }
            }
            .origins-image{
                width: 40%;
                display: flex;
                flex-direction: column;
                position: relative;
                img{
                    width: 100%;
                    border-radius: 1.5rem;
                    object-fit: cover;
                }
            }
        }
    }
    
    /* ------------------------------------------ GROW WITH US ------------------------------------------ */

    #what-we-do{
        .section-container{
            position: relative;
            display: flex;
            flex-direction: column;

            /* ---------------- HEADER SECTION ---------------- */

            .section-header{
                width: 70rem;
                .section-subtitle{
                    text-align: left;
                }
            }

            /* ---------------- CARDS / PRODUCTS ---------------- */

            .cards-grid{
                display: flex;
                flex-direction: row;
                width: 100%;
                flex-wrap: wrap;
                margin-top: 5rem;
                gap: 0.2rem;
                justify-content: center;

                .card{
                    display: flex;
                    cursor: pointer;
                    box-sizing: border-box;
                    flex-direction: column;
                    padding: 3rem;
                    background-color: var(--color-2);
                    border-radius: 2rem 0rem 0rem 2rem;
                    width: 40%;

                    .card-header{
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        width: 100%;

                        .card-icon{
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            width: 6rem;
                            height: 6rem;
                            transition: transform .3s ease-in-out;
                            position: relative;
                            img {
                                position: absolute;
                                width: 100%;
                                height: 100%;
                                transition: opacity .3s ease;
                            }
                        }

                        .card-titles{
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center;
                            margin-top: 1rem;
                            .card-title{
                                color: var(--color-0);
                                font-family: var(--font-primary) ;
                                font-weight: 600;
                                font-size: 3rem;
                                padding: 0;
                            }
                        }
                    }
                    
                    .card-text {
                        margin-top: 1.5rem;
                        font-size: 1.4rem;
                        font-family: var(--font-secondary);
                        color: var(--color-0);
                        text-align: right;
                    }
                }

                .card:nth-child(2){
                    background-color: var(--color-1);
                    border-radius: 0rem 2rem 2rem 0rem;
                    .card-header{
                        flex-direction: row-reverse;
                        .card-titles .card-title{
                            color: var(--color-0);
                        }
                        .card-titles .card-subtitle{
                            color: var(--color-0);
                        }
                    }
                    .card-text{
                        color: var(--color-0);
                        text-align: left;

                    }
                }
    
                .card:hover .card-icon{
                    transform: scale(1.3);
                    .icon-svg-yellow{
                        opacity: 1;
                    }
                }
            }
            
            /* ---------------- VIDEO DE LA SECCIÓN ---------------- */

            .section-media{
                position: absolute;
                top: 0;
                right: 0;
                display: flex;
                flex-direction: row;

                .section-media__video{
                    width: 8rem;
                    height: 8rem;
                    border-radius: 50%;
                    object-fit: cover;
                    transform: translateX(3rem);
                }

                .section-media__play-btn {
                    width: 8rem;
                    height: 8rem;
                    border-radius: 50%;
                    background-color: var(--color-1);
                    color: var(--color-3);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    position: relative;
                    transition: transform 0.2s ease; 
                    i{
                        object-fit: cover;
                        font-size: 3rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        z-index: 999;
                        cursor: pointer;
                        transition: all .3s ease-in-out;
                    }
                    .section-media__play-effect{
                        position: absolute;
                        background-color: var(--color-3);
                        width: 0;
                        height: 0;
                        transition: all .3s ease-in-out;
                        z-index: 99;
                        border-radius: 50%;
                        cursor: pointer;
                    }
                }

                .section-media__play-btn:hover .section-media__play-effect{
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                }
                .section-media__play-btn:hover i{
                    color: var(--color-0);
                }
            }
        }
    }

    /* *----------------------------------------------SERVICE-FLOATING-------------------------------------------- */

    .service-video-floating{
        position: fixed;
        right: 4rem;
        bottom: -100%;
        opacity: 0;
        width: 25rem;
        height: 40rem;
        z-index: 999;
        border-radius: 1.5rem;
        transition: bottom .5s ease-in-out, opacity 1s ease-in-out;
        .video-background{
            border-radius: 1.5rem;
            width: 100%;
            height: 100%;
            overflow: hidden;
            video{
                object-fit: cover;
                width: 100%;
                height: 100%;
            }
        }
        .close-button{
            position: absolute;
            right: -1rem;
            top: -1rem;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--color-1);
            cursor: pointer;
            
        }
    }

    .service-video-floating.show{
        bottom: 4rem;
        opacity: 1;
    }

    /* *---------------------------------------------- NEWS -------------------------------------------- */

    #news {
        background-position: center;
        background-size: cover;
        position: relative;
        display: none;

        .section-container {
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;

            .section-header {
                width: 85vw;
                margin: auto;

                .section-title {
                    text-align: center;
                }

                .section-subtitle {
                    text-align: center;
                }
            }

            /* ======================
            CARRUSEL
            ======================= */
            .news-carousel {
                position: relative;
                border-radius: 1.25rem;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin-top: 3rem;

                .carousel-wrapper {
                    overflow: hidden;
                    border-radius: 1.25rem;
                    width: 80rem;

                    .carousel-track {
                        display: flex;
                        transition: transform 0.6s ease-in-out;
                        width: 100%;
                        height: 40rem;
                        gap: 1rem;

                        .news-card {
                            flex: 0 0 80rem;
                            background-color: var(--color-1);
                            border-radius: 1.5rem;
                            overflow: hidden;
                            padding: 2rem;
                            display: flex;

                            img {
                                object-fit: cover;
                                width: 45%;
                                height: 100%;
                                border-radius: 1.5rem;
                            }

                            .news-content {
                                width: 55%;
                                padding: 2rem;
                                display: flex;
                                flex-direction: column;

                                .title {
                                    font-size: 2.3rem;
                                    font-weight: 600;
                                    color: var(--color-3);
                                    font-family: var(--font-primary);
                                }

                                .subtitle {
                                    font-size: 1.5rem;
                                    margin-top: 0.2rem;
                                    font-weight: 600;
                                    color: var(--color-3);
                                    font-family: var(--font-secondary);
                                }

                                .description {
                                    font-size: 1.3rem;
                                    margin-top: 0.6rem;
                                    font-weight: 500;
                                    color: var(--color-3);
                                    font-family: var(--font-secondary);
                                }

                                .yellow-btn {
                                    background-color: var(--color-3);
                                    border: none;
                                    padding: 12px;
                                    border-radius: 10px;
                                    font-weight: 600;
                                    text-align: center;
                                    cursor: pointer;
                                    width: 100%;
                                    font-family: var(--font-secondary);
                                    color: var(--color-0);
                                    font-size: 1rem;
                                    transition: all 0.1s ease-in-out;
                                    margin-top: 1rem;
                                }

                                .gray-box{
                                    margin-top: 1rem;
                                    p{
                                        color: var(--color-3);
                                        font-size: 1.2rem;
                                        font-family: var(--font-secondary);
                                        font-weight: 600;
                                    }
                                }

                                .yellow-btn:hover {
                                    background-color: var(--color-2);
                                }

                                .rectangular-button {
                                    background-color: var(--color-0);
                                    border-radius: 10px;
                                    width: 100%;
                                    margin-top: 0.5rem;
                                    transition: all 0.3s ease-in-out;

                                    .icon {
                                        font-size: 1.3rem;
                                        color: var(--color-3);
                                    }

                                    .text {
                                        font-family: var(--font-secondary);
                                        color: var(--color-3);
                                        font-size: 1rem;
                                        font-weight: 600;
                                    }
                                }

                                .rectangular-button:hover {
                                    background-color: var(--color-2);

                                    .icon,
                                    .text {
                                        color: var(--color-0);
                                    }
                                }
                            }
                        }
                    }
                }

                /* ====== BOTONES DEL CARRUSEL ====== */

                .carousel-btn {
                    position: absolute;
                    background: var(--color-3);
                    border: none;
                    border-radius: 50%;
                    cursor: pointer;
                    z-index: 10;
                    width: 4rem;
                    height: 4rem;
                    transition: background-color 0.3s ease-in-out;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    i {
                        color: var(--color-0);
                    }

                    &:hover {
                        background-color: var(--color-2);
                    }

                    &.prev {
                        left: -5rem;
                    }

                    &.next {
                        right: -5rem;
                    }
                }

                /* ====== INDICADORES ====== */

                .carousel-indicators {
                    display: flex;
                    justify-content: center;
                    margin-top: 2rem;
                    gap: 1rem;

                    button {
                        width: 12px;
                        height: 12px;
                        border: none;
                        border-radius: 50%;
                        background: var(--color-3);
                        cursor: pointer;
                        transition: background 0.2s ease-in-out;

                        &:hover {
                            background: var(--color-1);
                        }

                        &.active {
                            background: var(--color-1);
                        }
                    }
                }
            }

            /* ======================
            FRASE
            ======================= */
            
        }
    }

    /* *--------------------------------------------------PROGRAMS------------------------------------------------- */

    #programs{
        .section-container{
            .section-header{
                .section-title{
                    text-align: center;
                }
                .section-subtitle{
                    text-align: center;
                }
            }
            .program-item{
                margin-top: 5rem;
                .program-header{
                    .program-header-text{
                        display: flex;
                        flex-direction: column;
                        .program-title{
                            font-family: var(--font-primary);
                            font-size: 4rem;
                            font-weight: 600;
                            color: var(--color-2);
                        }
                        

                        .program-description{
                            font-family: var(--font-secondary);
                            font-size: 1.4rem;
                            margin-top: 1rem;
                            color: var(--color-4);
                        }
                    }
                }
            }
    
            /* ******************************ASTROTOURISM PROGRAM */
    
            #astrotourism-program{
                .astrotourism-section{
                    width: 100%;
                    margin-top: 3rem;
                    .experience-container{
                        display: flex;
                        align-items: center;
                        position: relative;
                        width: 100%;
                        .nav-arrow{
                            border: none;
                            cursor: pointer;
                            z-index: 10;
                            i{
                                font-size: 2rem;
                            }
                        }

                        .large-arrow{
                            font-size: 3rem;
                            opacity: 0;
                            transition: opacity .3s ease-in-out;
                            width: 4rem;
                            height: 4rem;
                            background-color: var(--color-1);
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            border-radius: 50%;
                            position: absolute;
                            i{
                                margin-top: 0;
                                color: var(--color-3);
                            }
                        }

                        #prevExperience{
                            left: 2rem;
                        }

                        #nextExperience{
                            right: 2rem;
                        }

                        

                        .experience-view{
                            width: 100%;
                            display: flex;
                            flex: 1;
                            flex-direction: column;
                            position: relative;
                            border-radius: 1.5rem; 
                            
                            /* overflow: hidden; */
                            .gallery-container{
                                position: relative;
                                text-align: center;
                                border-radius: 1.5rem;
                                .mobile-only{
                                    font-family: var(--font-secondary);
                                    font-size: 1.1rem;
                                    color: var(--color-0);
                                    height: fit-content;
                                    display: none;
                                    position: absolute;
                                    bottom: 1rem;
                                    left: 1rem;
                                    text-shadow:
                                        -2px -2px 4px black,
                                        2px -2px 4px black,
                                        -2px  2px 4px black,
                                        2px  2px 4px black,
                                        0px  0px 6px black;
                                }
                                #mainImage {
                                    width: 100%;
                                    height: 42rem;
                                    object-fit: cover;
                                    opacity: 1;
                                    transition: all 0.5s ease-in-out;
                                    border-radius: 1.5rem 1.5rem 0rem 0rem;
                                }

                                #mainImage.fade-out {
                                    opacity: 0;
                                }
                                .gallery-nav{
                                    position: absolute;
                                    bottom: 1.5rem;
                                    left: 50%;
                                    transform: translateX(-50%);
                                    padding: 0.5rem 1rem;
                                    display: flex;
                                    align-items: center;
                                    gap: 1rem;

                                    .small-arrow {
                                        font-size: 1.5rem;
                                        border-radius: 50%;
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        background-color: rgba(109, 119, 187, 0.5);
                                        backdrop-filter: blur(10px);
                                        width: 3rem;
                                        height: 3rem;
                                        i{
                                            color: var(--color-3);
                                        }
                                    }
                                    span{
                                        font-family: var(--font-secondary);
                                        color: var(--color-1);
                                        font-size: 1.2rem;
                                        font-weight: 700;
                                        text-shadow:
                                        -2px -2px 4px rgb(53, 53, 53),
                                        2px -2px 4px rgb(66, 66, 66),
                                        -2px  2px 4px black,
                                        2px  2px 4px black,
                                        0px  0px 6px black;
                                    }
                                }
                            }
                            .experience-info{
                                display: flex;
                                background: var(--color-0);
                                border: solid 2px var(--color-3);
                                padding: 1rem;
                                gap: 1rem;
                                justify-content: space-between;
                                height: auto;
                                border-radius: 0rem 0rem 1.5rem 1.5rem;
                                .info-left{
                                    flex: 1;
                                    display: flex;
                                    justify-content: left;
                                    align-items: center;
                                    padding-left: 2rem;
                                    padding-right: 2rem;
                                    border-right: 1px var(--color-3) solid;
                                    .experience-title{
                                        font-size: 2.5rem;
                                        color: var(--color-3);
                                        font-family: var(--font-secondary);
                                    }
                                }

                                .info-right{
                                    flex: 2;
                                    display: flex;
                                    flex-direction: row;
                                    gap: 3rem;
                                    padding-right: 2rem;
                                    .experience-description{
                                        font-family: var(--font-secondary);
                                        font-size: 1.4rem;
                                        display: flex;
                                        align-items: center;
                                        color: var(--color-3);
                                        font-weight: 500;
                                    }

                                    .info-links{    
                                        display: flex;
                                        flex-direction: column;
                                        justify-content: center;
                                        gap: 1rem;
                                        margin-left: 5rem;
                                        .itinerary-link, .schedule-link{
                                            display: flex;
                                            color: var(--color-3);
                                            font-size: 1.4rem;
                                            font-family: var(--font-secondary);
                                            i{
                                                margin-right: 0.5rem;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                    .experience-container:hover .large-arrow{
                        opacity: 1;
                    }

                    .overlay{
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: var(--color-2);
                        overflow-y: scroll;
                        z-index: 100;
                        padding: 1rem;
                        #overlayImages img {
                            width: 100%;
                            border-radius: 12px;
                            object-fit: cover;
                        }
                        #closeOverlay{
                            position: fixed;
                            top: 2rem;
                            left: 1rem;
                            background-color: var(--color-1);
                            border: solid 2px var(--color-1);
                            border-radius: 50%;
                            width: 3.5rem;
                            height: 3.5rem;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            i{
                                color: var(--color-0);
                                font-size: 2rem;
                            }
                        }
                    }
                    .overlay.hidden {
                        display: none;
                    }
                }
            }
            
            /* ******************************EDUCATIONAL PROGRAM */
    
            #educational-program{
                height: 100%;
                width: 100%;
                display: flex;
                flex-direction: column;
                .program-title{
                    color: var(--color-5);
                }
                .educational-section{
                    position: relative;
                    width: 100%;
                    .educational-items{
                        display: flex; /* Se adapta según el espacio */
                        margin-top: 3rem;
                        gap: 2rem;
                        position: relative;
                        justify-content: space-between;
                        align-items: center;
                        .item{
                            height: 30rem;
                            width: 50%;
                            transition: all .3s ease-in-out;
                            padding: 0;
                            position: relative;
                            border-radius: 2rem;
                            overflow: hidden;
                            .item-content{
                                width: 100%;
                                height: 100%;
                                .background-image{
                                    width: 100%;
                                    height: 100%;
                                    position: absolute;
                                    object-fit: cover;
                                    transition: all .3s ease-in-out;
                                }
                                .item-title{
                                    position: absolute;
                                    bottom: 2.5rem;
                                    right: 2.5rem;
                                    font-family: var(--font-primary);
                                    color: var(--color-0);
                                    font-size: 2.8rem;
                                    font-weight: 600;
                                }
                            }

                            .item-content-hover{
                                position: absolute;
                                top: 0;
                                left: 0;
                                width: 100%;
                                height: 100%;
                                background-color: rgba(95, 146, 119, 0.8);
                                padding: 5rem;
                                opacity: 0;
                                visibility: hidden;
                                transition: .3s ease-in-out all;
                                .item-description{
                                    color: var(--color-0);
                                    font-family: var(--font-secondary);
                                    font-size: 1.5rem;
                                }
                                .item-title{
                                    position: absolute;
                                    bottom: 2.5rem;
                                    right: 2.5rem;
                                    font-family: var(--font-primary);
                                    color: var(--color-0);
                                    font-size: 2.8rem;
                                    font-weight: 500;
                                }
                            }

                        }
                        .item:nth-child(2){
                            .item-content-hover{
                                background-color: rgba(103, 127, 133, 0.8);
                            }
                        }
                        .item:hover .item-content-hover{
                            visibility: visible;
                            opacity: 1;
                        }
                    }
                }
                
            }

        }
    }

    /* *------------------------------------------------AUDIOVISUAL-SECTION---------------------------------------------- */

    #audiovisual{
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        
        .section-container{
            width: 100vw;
            display: flex;
            align-items: center;
            flex-direction: column;
            .section-header{
                width: 75vw;
                text-align: center;
                .section-title{
                    font-size: 3rem;
                }
            }
            .audiovisual-section{
                display: flex;
                flex-direction: column;
                margin-top: 3rem;
                background-color: var(--color-5);
                width: 100%;
                align-items: center;
                padding: 5rem 0rem;
                .video-element{
                    width: 75vw;
                    display: flex;
                    flex-direction: row;
                    gap: 2rem;
                    align-items: center;
                    .video-description{
                        .description{
                            font-size: 1.8rem;
                            font-family: var(--font-secondary);
                            color: var(--color-0);
                            text-align: center;
                        }
                    }
                }
            }
        }
    }
    

    /* *--------------------------------------------------CLOSE PAGE------------------------------------------------- */

    .close-page{
        width: 75vw;
        margin: auto;
        display: flex;
        flex-direction: row;
        margin-top: 10rem;
        justify-content: center;
        .close-page-container{
            display: flex;
            flex-direction: row;
            width: 100%;
            justify-content: space-between;
            .left{
                width: 70vw;
                .logo{
                    width: 6rem;
                    padding: 0;
                    height: 6rem;
                    transform: translateY(1rem);
                    display: none;
                }
                .phrase{
                    color: var(--color-3);
                    font-size: 5rem;
                    font-family: var(--font-primary);
                    font-weight: 500;
                }
            }
            .right{
                display: flex;
                align-items: end;
                .rectangular-button{
                    background-color: var(--color-3);
                    color: var(--color-0);
                    width: 18rem;
                    border: solid var(--color-3) 2px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    p{
                        font-weight: 500;
                    }
                    .rectangular-filling.active{
                        background-color: var(--color-0);
                        width: 100%;
                        height: 100%;
                    }
                    .text.active, .icon.active{
                        color: var(--color-3);
                    }
                }
            }
        }
    }

    /* ******************************* CONTACT US ********************************* */

    .contact-us{
        width: 90vw;
        margin: auto;
        margin-top: 8rem;
        flex: 1;
        .contact-us-container{
            padding-top: 3rem;
            padding-bottom: 3rem;
            width: 94%;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            margin: auto;
            border-top: solid 1px #333;
            .left{
                flex: 1;
                p{
                    font-family: var(--font-secondary);
                    color: var(--color-3);
                    font-size: 1.2rem;
                    font-weight: 500;
                }
            }
            .center{
                flex: 1;
                display: flex;
                justify-content: center;
                .social{
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                    margin-left: 1rem;
                    overflow: hidden;
                    a{
                        color: var(--color-3);
                        font-family: var(--font-secondary);
                        font-size: 1.2rem;
                        
                    }
                    .line{
                        width: 100%;
                        height: 1px;
                        background-color: var(--color-3);
                        margin-top: 0.1rem;
                        transition: transform .3s ease-in-out;
                        transform: translateX(-100%);
                    }
                }
                .social:nth-child(1){
                    margin-left: 0rem;
                }
                .social:hover .line{
                    transform: translateX(0%);
                }
            }
            .right{
                flex: 1;
                display: flex;
                justify-content: end;
                .more-info{
                    display: flex;
                    justify-content: center;
                    flex-direction: column;
                    overflow: hidden;
                    width: fit-content;
                    a{
                        color: var(--color-3);
                        font-family: var(--font-secondary);
                        font-size: 1.2rem;
                    }
                    .line{
                        width: 100%;
                        height: 1px;
                        background-color: var(--color-3);
                        margin-top: 0.1rem;
                        transition: transform .3s ease-in-out;
                        transform: translateX(-100%);
                    }
                }
                .more-info:hover .line{
                    transform: translateX(0%);
                }
            }
        }
    }

    .return-button{
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow: hidden;
        width: fit-content;
        a{
            color: var(--font-color-dark);
            font-family: var(--font-secondary);
            font-size: 1.3rem;
        }
        .line{
            width: 100%;
            height: 1px;
            background-color: var(--font-color-dark);
            margin-top: 0.1rem;
            transition: transform .3s ease-in-out;
            transform: translateX(-100%);
        }
    }

    .return-button:hover .line{
        transform: translateX(0%);
    }
}

@media (max-width: 1280px){
    main{
        #cover{
            .right{
                .titles{

                    h1{
                        span{
                            font-size: 4rem;
                        }
                    }
            
                    h2{
                        font-size: 1.6rem;
                    }
                }
                .explore-button{
                    font-size: 1.5rem;
                }
            }
        }

        .section-landing{
            margin-top: 10rem;
            .section-container{
                width: 85vw;
                .section-header{
                    .section-title{
                        font-size: 3.5rem;
                        line-height: 4rem;
                    }
                    .section-subtitle{
                        font-size: 1.4rem;
                        margin-top: 0.5rem;
                    }
                }
            }
        }

        /* *----------------------------------------------ORIGIN - ABOUT -------------------------------------------- */

        #origins{
            .section-container{
                .origins-text{
                    .description{
                        font-size: 1.3rem;
                    }
                }
            }
        }

        /* *------------------------------------------ GROW WITH US ------------------------------------------ */

        #what-we-do{
            .section-container{

                /* ---------------- HEADER SECTION ---------------- */

                .section-header{
                    width: 50rem;
                }

                /* ---------------- CARDS / PRODUCTS ---------------- */

                .cards-grid{
                    .card{

                        .card-header{
                            .card-titles{
                                .card-title{
                                    font-size: 2.2rem;
                                }
                            }
                        }
                        
                        .card-text {
                            font-size: 1.3rem; 
                        }
                    }
                }
                
                /* ---------------- VIDEO DE LA SECCIÓN ---------------- */

                .section-media{

                    .section-media__video{
                        width: 6.5rem;
                        height: 6.5rem; 
                    }

                    .section-media__play-btn {
                        width: 6.5rem; 
                        height: 6.5rem; 
                        i{
                            font-size: 2rem;
                        }
                    }
                }
            }
        }

        /* *----------------------------------------------SERVICE-FLOATING-------------------------------------------- */

        .service-video-floating{
            height: 35rem;
            width: 22rem;
        }

        /* *---------------------------------------------- NEWS -------------------------------------------- */

        #news {

            .section-container {

                /* ======================
                CARRUSEL
                ======================= */
                .news-carousel {

                    .carousel-wrapper {
                        width: 60rem; /* !CHANGE */

                        .carousel-track {
                            height: 33rem; /* !CHANGE */

                            .news-card {
                                flex: 0 0 60rem; /* !CHANGE */
                                padding: 1rem; /* !CHANGE */

                                .news-content {

                                    .title {
                                        font-size: 2.1rem; /* !CHANGE */
                                    }

                                    .subtitle { 
                                        font-size: 1.3rem; /* !CHANGE */
                                    }

                                    .description {
                                        font-size: 1.1rem; /* !CHANGE */
                                    }

                                    .yellow-btn {
                                        font-size: 1.1rem; /* !CHANGE */
                                    }

                                    .gray-box{
                                        p{
                                            font-size: 1.1rem; /* !CHANGE */
                                        }
                                    }

                                    .rectangular-button {
                                        .text {
                                            font-size: 1.1rem; /* !CHANGE */
                                        }
                                    }
                                }
                            }
                        }
                    }

                    /* ====== BOTONES DEL CARRUSEL ====== */

                    .carousel-btn {
                        width: 3.5rem; /* !CHANGE */
                        height: 3.5rem; /* !CHANGE */
                    }
                }
            }
        }

        /* *--------------------------------------------------PROGRAMS------------------------------------------------- */

        #programs{
            .section-container{
                .program-item{
                    margin-top: 4rem;
                    .program-header{
                        .program-header-text{
                            .program-title{
                                font-size: 3rem;
                            }
                            .program-description{
                                font-size: 1.3rem;
                            }
                        }
                    }
                }
        
                /* ******************************ASTROTOURISM PROGRAM */
        
                #astrotourism-program{
                    .astrotourism-section{
                        .experience-container{
                            .large-arrow{
                                width: 3.5rem; 
                                height: 3.5rem;
                                transform: translateY(-5rem);
                            }

                            #prevExperience{
                                left: 1.5rem;
                            }

                            #nextExperience{
                                right: 1.5rem;
                            }

                            .experience-view{
                                .gallery-container{
                                    #mainImage {
                                        height: 32rem;
                                    }
                                    .gallery-nav{
                                        .small-arrow {
                                            width: 2.8rem; 
                                            height: 2.8rem; 
                                            i{
                                                font-size: 1.5rem; 
                                            }
                                        }
                                        span{
                                            font-size: 1.1rem; 
                                        }
                                    }
                                }
                                .experience-info{
                                    .info-left{
                                        .experience-title{
                                            font-size: 2.2rem;
                                        }
                                    }

                                    .info-right{
                                        .experience-description{
                                            font-size: 1.3rem;
                                        }

                                        .info-links{
                                            gap: 0.5rem; 
                                            margin-left: 0rem;
                                            .itinerary-link, .schedule-link{
                                                font-size: 1.3rem;
                                                align-items: center; 
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }

                /* ******************************EDUCATIONAL PROGRAM */
        
                #educational-program{
                    .educational-section{
                        .educational-items{
                            margin-top: 3rem;
                            .item{
                                height: 25rem;
                                .item-content{
                                    .item-title{
                                        font-size: 2.5rem;
                                    }
                                }

                                .item-content-hover{
                                    padding: 4rem;
                                    .item-description{
                                        font-size: 1.3rem;
                                    }
                                    .item-title{
                                        font-size: 2.5rem;
                                    }
                                }

                            }
                        }
                    }
                    
                }
            }
        }

        /* *------------------------------------------------AUDIOVISUAL-SECTION---------------------------------------------- */

        #audiovisual{
            .section-container{
                width: 100vw;
                .section-header{
                    width: 85vw;
                    text-align: center;
                    .section-title{
                        font-size: 2.5rem;
                        line-height: 3rem;
                    }
                }
                .audiovisual-section{
                    .video-element{
                        width: 85vw;
                        .video-description{
                            .description{
                                font-size: 1.5rem;
                            }
                        }
                    }
                }
            }
        }

        /* *--------------------------------------------------CLOSE PAGE------------------------------------------------- */

        .close-page{
            width: 85vw;
            .close-page-container{
                .left{
                    width: 85vw; /*! CHANGE*/
                    .logo{
                        width: 4rem; /*! CHANGE*/
                        height: 4rem; /*! CHANGE*/
                    }
                    .phrase{
                        font-size: 3rem; /*! CHANGE*/
                    }
                }
                .right{
                    .rectangular-button{
                        p{
                            font-size: 1.1rem; /*! CHANGE*/
                        }
                    }
                }
            }
        }

        /* ******************************* CONTACT US ********************************* */

        .contact-us{
            width: 85vw; /*! CHANGE*/
            .contact-us-container{
                width: 100%; /*! CHANGE*/
                .left{
                    p{
                        font-size: 1.1rem; /*! CHANGE*/
                    }
                }
                .center{
                    .social{
                        a{
                            font-size: 1.1rem; /*! CHANGE*/
                            
                        }
                    }
                }
                .right{
                    .more-info{
                        a{
                            font-size: 1.1rem; /*! CHANGE*/
                        }
                    }
                }
            }
        }
    }
}

/* <= 1024px (tablets landscape) */
@media (max-width: 1024px){
    main{
        #cover{
            .right{
                .titles{
                    h1{
                        span{
                            line-height: 3rem;
                            font-size: 3rem;
                        }
                    }
            
                    h2{
                        font-size: 1.3rem;
                    }
                }
                .explore-button{
                    margin-top: 3.5rem;
                    font-size: 1.2rem;
                }
                .explore-button:hover{
                    background-color: var(--font-color-dark);
                }
            }
        }

        .section-landing{
            margin-top: 9rem;
            .section-container{
                width: 90vw;
                .section-header{
                    .section-title{
                        font-size: 3rem;
                        line-height: 3rem;
                    }
                    .section-subtitle{
                        font-size: 1.3rem;
                    }
                }
            }
        }

        /* *----------------------------------------------ORIGIN - ABOUT -------------------------------------------- */

        #origins{
            .section-container{
                .origins-text{
                    .description{
                        font-size: 1.2rem;
                    }
                }
            }
        }

        /* *------------------------------------------ GROW WITH US ------------------------------------------ */

        #what-we-do{
            .section-container{

                /* ---------------- HEADER SECTION ---------------- */

                .section-header{
                    max-width: 30rem;
                }

                /* ---------------- CARDS / PRODUCTS ---------------- */

                .cards-grid{
                    .card{

                        .card-header{
                            .card-icon{
                                width: 5rem;
                                height: 5rem;
                            }
                            .card-titles{
                                .card-title{
                                    font-size: 2rem;
                                }
                            }
                        }
                        
                        .card-text {
                            font-size: 1.2rem; 
                        }
                    }
                }
                
                /* ---------------- VIDEO DE LA SECCIÓN ---------------- */

                .section-media{

                    .section-media__video{
                        width: 6rem;
                        height: 6rem; 
                    }

                    .section-media__play-btn {
                        width: 6rem; 
                        height: 6rem; 
                        i{
                            font-size: 2rem;
                        }
                    }
                }
            }
        }

        /* *----------------------------------------------SERVICE-FLOATING-------------------------------------------- */

        .service-video-floating{
            height: 30rem;
            width: 20rem;
            right: 2rem;
        }

        .service-video-floating.show{
            bottom: 2rem;
        }

        /* *---------------------------------------------- NEWS -------------------------------------------- */

        #news {

            .section-container {

                /* ======================
                CARRUSEL
                ======================= */
                .news-carousel {

                    .carousel-wrapper {
                        width: 60rem; /* !CHANGE */

                        .carousel-track {
                            height: 33rem; /* !CHANGE */

                            .news-card {
                                flex: 0 0 60rem; /* !CHANGE */
                                padding: 1rem; /* !CHANGE */

                                .news-content {

                                    .title {
                                        font-size: 2.1rem; /* !CHANGE */
                                    }

                                    .subtitle { 
                                        font-size: 1.3rem; /* !CHANGE */
                                    }

                                    .description {
                                        font-size: 1.1rem; /* !CHANGE */
                                    }

                                    .yellow-btn {
                                        font-size: 1.1rem; /* !CHANGE */
                                    }

                                    .gray-box{
                                        p{
                                            font-size: 1.1rem; /* !CHANGE */
                                        }
                                    }

                                    .rectangular-button {
                                        .text {
                                            font-size: 1.1rem; /* !CHANGE */
                                        }
                                    }
                                }
                            }
                        }
                    }

                    /* ====== BOTONES DEL CARRUSEL ====== */

                    .carousel-btn {
                        width: 3.5rem; /* !CHANGE */
                        height: 3.5rem; /* !CHANGE */
                    }
                }
            }
        }

        /* *--------------------------------------------------PROGRAMS------------------------------------------------- */

        #programs{
            .section-container{
                .program-item{
                    margin-top: 3rem;
                    .program-header{
                        .program-header-text{
                            .program-title{
                                font-size: 2.5rem;
                            }
                            .program-description{
                                font-size: 1.2rem; 
                            }
                        }
                    }
                }
        
                /* ******************************ASTROTOURISM PROGRAM */
        
                #astrotourism-program{
                    .astrotourism-section{
                        .experience-container{
                            .large-arrow{
                                width: 3rem;
                                height: 3rem; 
                                i{
                                    font-size: 1.5rem;
                                }
                            }

                            .experience-view{
                                .gallery-container{
                                    #mainImage {
                                        max-height: 28rem;
                                    }
                                    .gallery-nav{
                                        .small-arrow {
                                            width: 2.5rem;
                                            height: 2.5rem; 
                                            i{
                                                font-size: 1.4rem; 
                                            }
                                        }
                                        span{
                                            font-size: 1.1rem;
                                        }
                                    }
                                }
                                .experience-info{
                                    .info-left{
                                        padding: 1rem;
                                        .experience-title{
                                            font-size: 2rem; 
                                        }
                                    }

                                    .info-right{
                                        .experience-description{
                                            font-size: 1.2rem; 
                                        }

                                        .info-links{
                                            gap: 0.5rem; 
                                            .itinerary-link, .schedule-link{
                                                font-size: 1.2rem;
                                                align-items: center; 
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                /* ******************************EDUCATIONAL PROGRAM */
                
                #educational-program{
                    .educational-section{
                        .educational-items{
                            margin-top: 3rem;
                            .item{
                                height: 20rem;
                                .item-content{
                                    .item-title{
                                        font-size: 2.1rem;
                                    }
                                }

                                .item-content-hover{
                                    padding: 3rem;
                                    .item-description{
                                        font-size: 1.2rem;
                                    }
                                    .item-title{
                                        font-size: 2.1rem;
                                    }
                                }

                            }
                        }
                    }
                    
                }
            }
        }

        /* *------------------------------------------------AUDIOVISUAL-SECTION---------------------------------------------- */

        #audiovisual{
            .section-container{
                .section-header{
                    width: 80vw;
                    .section-title{
                        font-size: 2.4rem;
                        line-height: 2.8rem;
                    }
                }
                .audiovisual-section{
                    .video-element{
                        width: 90vw;
                        .video{
                            width: 80rem;
                            iframe{
                                width: 100%;
                            }
                        }
                        .video-description{
                            .description{
                                font-size: 1.3rem;
                            }
                        }
                    }
                }
            }
        }

        /* *--------------------------------------------------CLOSE PAGE------------------------------------------------- */

        .close-page{
            .close-page-container{
                .left{
                    width: 65vw; /*! CHANGE*/
                    .logo{
                        width: 4rem; /*! CHANGE*/
                        height: 4rem; /*! CHANGE*/
                    }
                    .phrase{
                        font-size: 2.5rem; /*! CHANGE*/
                    }
                }
                .right{
                    .rectangular-button{
                        p{
                            font-size: 1.1rem; /*! CHANGE*/
                        }
                    }
                }
            }
        }

        /* ******************************* CONTACT US ********************************* */

        .contact-us{
            width: 85vw; /*! CHANGE*/
            .contact-us-container{
                width: 100%; /*! CHANGE*/
                .left{
                    p{
                        font-size: 1.1rem; /*! CHANGE*/
                    }
                }
                .center{
                    .social{
                        a{
                            font-size: 1.1rem; /*! CHANGE*/
                            
                        }
                    }
                }
                .right{
                    .more-info{
                        a{
                            font-size: 1.1rem; /*! CHANGE*/
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    
    .button-nav-panel{
        right: 2rem;
        top: 2rem;
    }

    .nav-panel{
        max-height: 100vh;
        overflow-y: auto;
        .header{
            .left{
                left: 2rem;
                top: 2rem;
            }
            .center{
                opacity: 0;
                visibility: hidden;
            }
            .right{
                right: 2rem;
                top: 2rem;
            }
        }

        .container{
            display: flex;
            flex-direction: column;
            width: 90%;
            height: fit-content;
            margin-top: 4rem;
            .one{
                border: none;
                border-bottom: solid 1px var(--color-0);
                border-top: solid 1px var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .two{
                border: none;
                border-bottom: 1px solid var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .three{
                border: none;
                border-bottom: 1px solid var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .element{
                margin-top: 1.5rem;
                .button{
                    a{
                        font-size: 1.2rem;        
                    }
                }
                p{
                    font-size: 1.1rem;
                }
            }
        }

        .social{
            width: 90%;
        }
    }


    main{
        .titles-of-all-sections{
            font-size: 3.5rem;
            font-weight: 400;
        }

        .section-landing{
            margin-top: 10rem;
            width: 100vw; 
            .section-container{
                width: 80vw;
                .section-header{
                    .section-title{
                        font-size: 2.8rem;
                        line-height: 3rem;
                    }
                    .section-subtitle{
                        font-size: 1.2rem;
                    }
                    
                }
            }
        }

        #cover{
            .right{
                .titles{
                    h1{
                        span{
                            font-size: 3rem;
                            margin: 0;
                            line-height: 3.4rem;
                        }
                    }
            
                    h2{
                        font-size: 1.2rem;
                    }
                }
                .explore-button{
                    margin-top: 4rem;
                    font-size: 1.1rem;
                    
                }
            }
        }

        /* *----------------------------------------------ORIGIN - ABOUT-------------------------------------------- */

        #origins{
            .section-container{
                flex-direction: column;
                justify-content: center;
                padding: 5rem 0rem;
                .origins-text{
                    width: 100%;
                    .description{
                        margin-top: 1rem;
                        font-size: 1.1rem;

                    }
                }
                .origins-image{
                    width: 100%;
                    margin-top: 2rem;
                }
            }
        }

        #what-we-do{
            .section-container{
                padding: 0rem 0rem;
                .section-header{
                    width: 100%;
                }
                .cards-grid{
                    flex-direction: column;
                    margin-top: 2rem;
                    gap: 0.1rem;

                    .card{
                        cursor: default;
                        padding: 2rem;
                        border-radius: 1rem 1rem 0rem 0rem;
                        width: 100%;

                        .card-header{
                            .card-icon{
                                width: 5rem;
                                height: 5rem;
                            }

                            .card-titles{
                                margin-top: 0.5rem;
                                .card-title{
                                    font-size: 2rem;
                                }
                                .card-subtitle{
                                    font-size: 1.2rem;
                                }
                            }
                        }
                        
                        .card-text {
                            margin-top: 1rem;
                            font-size: 1rem;
                            font-weight: 500;
                        }
                    }
                    .card:nth-child(2){
                        border-radius: 0rem 0rem 1rem 1rem;
                    }
                }


                
                .section-media{
                    width: 100%;
                    margin-top: 2rem;
                    position: relative;
                    justify-content: center;
                    align-items: center;
                    .section-media__video{
                        width: 100%;
                        height: 12rem;
                        border-radius: 0rem;
                        transform: translateX(0rem);
                    }
                    .section-media__play-btn{
                        position: absolute;
                        width: 3.5rem;
                        height: 3.5rem;
                        border-radius: 50%;
                        i{
                            font-size: 1rem;
                        }
                    }
                }
            }
        }

        /* *----------------------------------------------SERVICE-FLOATING-------------------------------------------- */

        .service-video-floating{
            left: 0rem;
            bottom: -100%;
            opacity: 0;
            width: 100vw;
            height: 100vh;
            z-index: 999;
            border-radius: 1.5rem;
            transition: bottom .5s ease-in-out, opacity 1s ease-in-out;
            .video-background{
                border-radius: 1.5rem;
                width: 100%;
                height: 100%;
                video{
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                }
            }
            .close-button{
                position: absolute;
                height: 3.5rem;
                width: 3.5rem;
                top: 2rem;
                left: 2rem;
                i{
                    font-size: 1.5rem;
                }
            }
        }

        .service-video-floating.show{
            bottom: 0% !important;
            opacity: 1;
        }


        /* *----------------------------------------------INFORMATION POINT-------------------------------------------- */

        #news{
            width: 100vw;
            .section-container{
                padding: 0rem 0.75rem;
                width: 100%;
                .section-header{
                    width: 100%;
                }
                /* ======================
                CARRUSEL
                ======================= */
                .news-carousel{
                    width: 100%;
                    margin-top: 2rem;
                    .carousel-wrapper{
                        width: 100%; 
                        height: 45.813rem; 
                        .carousel-track{
                            height: 100%; 
                            .news-card{
                                flex: 0 0 100%;
                                padding: 1.2rem;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                height: 100%;

                                img{
                                    width: 100%;
                                    height: 19rem;
                                    border-radius: 1.2rem;
                                }

                                .news-content{
                                    margin-top: 1rem; /*!CHANGE*/
                                    width: 100%; /*!CHANGE*/
                                    padding: 0rem; /*!CHANGE*/

                                    .title{
                                        font-size: 2rem; /*!CHANGE*/
                                    }
                                    .subtitle {
                                        font-size: 1.3rem; /*!CHANGE*/
                                    }

                                    .description {
                                        font-size: 1rem; /*!CHANGE*/
                                    }
                                    .gray-box {
                                        p{
                                            font-size: 1rem; /* !CHANGE*/
                                        }
                                    }
                                }
                            }
                        }
                    }

                    

                    .carousel-btn{
                        display: none; /* !CAMBIO*/
                    }

                    .carousel-indicators button {
                        width: 8px; /* !CAMBIO*/
                        height: 8px; /* !CAMBIO*/
                    }
                }
            }
        }

        /* *---------------------------------------- PROGRAMS --------------------------------------- */

        #programs{
            .section-container{
                padding: 0rem 0rem;
                .section-header{
                    width: 100%;
                    .section-title{
                        width: 100%;
                    }
                }
                .program-item{
                    margin-top: 4rem;
                    .program-header{
                        .program-header-text{
                            display: flex;
                            flex-direction: column;
                            .program-title{
                                font-size: 2rem;
                                font-weight: 500;
                                width: 100%;
                            }
                            .program-description{
                                width: 100%;
                                margin-top: 1rem;
                                font-size: 1.1rem;
                            }
                        }
                    }
                }

                /* ******************************ASTROTOURISM PROGRAM */

                #astrotourism-program{
                    .astrotourism-section{
                        margin-top: 2rem;
                        .experience-container{

                            .large-arrow{
                                display: none; /* !CHANGE*/
                            }

                            .small-arrow {
                                font-size: 1.5rem;
                                i{
                                    color: var(--color-2);
                                    font-size: 1.5rem; /*! CHANGE*/
                                }
                            }

                            .experience-view{
                                .gallery-container{
                                    .mobile-only{
                                        display: block; /*! CHANGE*/
                                    }
                                    #mainImage {
                                        height: 21.563rem;
                                    }
                                    .gallery-nav{
                                        display: none;
                                    }
                                }
                                .experience-info{
                                    flex-wrap: nowrap;
                                    flex-direction: column; /*! CHANGE*/
                                    .info-left{
                                        width: 100%;
                                        flex: none; /*! CHANGE*/
                                        padding-left: 0rem; /*! CHANGE*/
                                        padding-right: 0rem; /*! CHANGE*/
                                        border-right: 0px var(--color-0) solid; /*! CHANGE*/
                                        margin: 0;
                                        .experience-title{
                                            font-size: 1.8rem; /*! CHANGE*/
                                        }
                                    }

                                    .info-right{
                                        flex: auto; /*! CHANGE*/
                                        flex-direction: column; /*! CHANGE*/
                                        padding-right: 0rem; /*! CHANGE*/
                                        .experience-description{
                                            font-size: 1.1rem; /*! CHANGE*/
                                            width: 100%;
                                        }

                                        .info-links{
                                            flex-direction: row; /*! CHANGE*/ 
                                            gap: 2rem;
                                            margin-top: 1rem; /*! CHANGE*/
                                            .itinerary-link, .schedule-link{
                                                display: flex;
                                                color: var(--color-3);
                                                font-size: 1.1rem; /*! CHANGE*/
                                                gap: 0.5rem;
                                                i{
                                                    margin-right: 0rem;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        .experience-container:hover .large-arrow{
                            opacity: 1;
                        }
                    }
                }

                /* ******************************EDUCATIONAL PROGRAM */
    
                #educational-program{
                    height: 100%;
                    width: 100%;
                    display: flex;
                    flex-direction: column;

                    .program-header{
                        .program-header-text{
                            display: flex;
                            flex-direction: column;
                        }
                    }

                    .educational-section{
                        .educational-items{
                            flex-direction: column; /* !CHANGE*/
                            margin-top: 2rem;
                            gap: 1.5rem;
                            .item{
                                height: 20rem;
                                width: 100%; /* !CHANGE*/
                                .item-content{
                                    .item-title{
                                        bottom: 1.5rem;
                                        right: 1.5rem;
                                        font-size: 1.8rem;
                                    }
                                }

                                .item-content-hover{
                                    padding: 3rem;
                                    .item-description{
                                        font-size: 1.1rem;
                                    }
                                    .item-title{
                                        bottom: 1.5rem;
                                        right: 1.5rem;
                                        font-size: 1.8rem;
                                    }
                                }

                            }
                        }
                    }
                    
                }
            }
        }

        /* ******************************AUDIOVISUAL PROGRAM */
    
        #audiovisual{
            .section-container{
                .section-header{
                    width: 80vw;
                    text-align: center;
                    .section-title{
                        font-size: 2rem;
                        line-height: 2.5rem;
                    }
                }
                .audiovisual-section{
                    padding: 4rem 0rem;
                    .video-element{
                        width: 80vw;
                        flex-direction: column;
                        .video{
                            width: 100%;
                            height: 20rem;
                        }
                        .video-description{
                            width: 100%;
                            margin-top: 0rem;
                            padding-left: 0rem;
                            .video-title{
                                font-size: 2rem;
                                text-align: center;
                            }
                            .description{
                                font-size: 1.1rem;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }

        /* *--------------------------------------------------CLOSE PAGE------------------------------------------------- */

        .close-page{
            margin-top: 6rem;
            width: 80vw;
            padding: 0rem 0.8rem;
            .close-page-container{
                flex-direction: column;
                .left{
                    width: 100%;
                    .logo{
                        width: 3rem;
                        height: 3rem;
                        transform: translateY(0.5rem);
                    }
                    .phrase{
                        font-size: 2.8rem;
                    }
                }
                .right{
                    margin-top: 2rem;
                    .rectangular-button{
                        width: 15rem;
                        padding: 0.4rem;
                        padding-left: 0.8rem;
                        padding-right: 0.8rem;
                        i{
                            font-size: 1.5rem;
                        }
                    }
                }
            }
        }

        .contact-us{
            width: 90vw;
            margin-top: 3rem;
            .contact-us-container{
                flex-direction: row;
                flex-wrap: wrap;
                padding-left: 0.6rem;
                padding-right: 0.6rem;
                padding-top: 2rem;
                padding-bottom: 2rem;
                .left{
                    p{
                        font-size: 0.9rem;
                    }
                }
                .center{
                    justify-content: left;
                    margin-top: 0.5rem;
                    .social{
                        a{
                            font-size: 0.9rem;
                        }
                    }
                }
                .right{
                    margin-top: 0.5rem;
                    justify-content: start;
                    .more-info{
                        a{
                            font-size: 0.9rem;
                        }
                    }
                }
            }
        }

    }
}


@media (max-width: 480px) {

    .logo-fixed{
        position: absolute;
        left: 1.5rem;
        top: 2rem;
        height: 5rem;
        width: 5rem;
        z-index: 9999;
    }
    
    .button-nav-panel{
        right: 2rem;
        top: 2rem;
    }

    .nav-panel{
        max-height: 100vh;
        overflow-y: auto;
        .header{
            .left{
                left: 2rem;
                top: 2rem;
            }
            .center{
                opacity: 0;
                visibility: hidden;
            }
            .right{
                right: 2rem;
                top: 2rem;
            }
        }

        .container{
            display: flex;
            flex-direction: column;
            width: 90%;
            height: fit-content;
            margin-top: 4rem;
            .one{
                border: none;
                border-bottom: solid 1px var(--color-0);
                border-top: solid 1px var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .two{
                border: none;
                border-bottom: 1px solid var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .three{
                border: none;
                border-bottom: 1px solid var(--color-0);
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .element{
                margin-top: 1.5rem;
                .button{
                    a{
                        font-size: 1.2rem;        
                    }
                }
                p{
                    font-size: 1.1rem;
                }
            }
        }

        .social{
            width: 90%;
        }
    }


    main{

        .section-landing{
            margin-top: 6rem;
            width: 100vw; 
            .section-container{
                width: 86vw;
                .section-header{
                    .section-title{
                        font-size: 2.2rem;
                        line-height: 2.5rem;
                    }
                    .section-subtitle{
                        font-size: 1.1rem;
                        margin-top: 1rem;
                    }
                    
                }
            }
        }

        #cover{
            .right{
                .titles{
                    h1{
                        span{
                            font-size: 2.5rem;
                            line-height: 3rem;
                        }
                    }
            
                    h2{
                        font-size: 1.1rem;
                        padding: 0 2rem;
                    }
                }
                .explore-button{
                    margin-top: 3rem;
                    font-size: 1rem;
                    padding: 0.8rem 2rem;
                }
            }
        }
        
        #loader{
            .loader-container{
                .loader-container-top{
                    .avatar{
                        transform: scale(0.5);
                    }
                    .hall{
                        font-size: 1.5rem;
                        margin-top: 0rem;
                        width: 82vw;
                        font-weight: 600;
                        text-align: center;
                    }
                    .tell-me{
                        font-size: 1.2rem;
                        width: 90vw;
                        font-weight: 400;
                        text-align: center;
                        margin-top: 0.8rem;
                    }
                }
                .loader-container-bottom{
                    .options{
                        flex-wrap: wrap;
                        margin-top: 2rem;
                        .option{
                            width: 8rem;
                            height: 8rem;
                            i{
                                font-size: 1.5rem;
                            }
                            p{
                                margin-top: 0rem;
                                font-size: 0.8rem;
                                width: 5rem;
                            }
                        }
                    }
                }
            }
        }

        /* *----------------------------------------------ORIGIN - ABOUT-------------------------------------------- */

        #origins{
            .section-container{
                flex-direction: column;
                justify-content: center;
                padding: 2rem 0rem;
                .origins-text{
                    width: 100%;
                    .description{
                        margin-top: 1.5rem;
                        font-size: 1rem;

                    }
                }
            }
        }

        #what-we-do{
            .section-container{
                padding: 0rem 0rem;
                .section-header{
                    width: 100%;
                }
                .cards-grid{
                    margin-top: 2rem;
                    gap: 0.1rem;

                    .card{
                        padding: 2rem;

                        .card-header{
                            .card-icon{
                                width: 4rem;
                                height: 4rem;
                            }

                            .card-titles{
                                .card-title{
                                    font-size: 1.7rem;
                                }
                                .card-subtitle{
                                    font-size: 1.1rem;
                                }
                            }
                        }
                        
                        .card-text {
                            font-size: 1rem;
                        }
                    }
                    .card:nth-child(2){
                        border-radius: 0rem 0rem 1rem 1rem;
                    }
                }


                
                .section-media{
                    .section-media__play-btn{
                        width: 3rem;
                        height: 3rem;
                        i{
                            font-size: 1.1rem;
                        }
                    }
                }
            }
        }

        /* *----------------------------------------------SERVICE-FLOATING-------------------------------------------- */

        .service-video-floating{
            left: 0rem;
            bottom: -100%;
            opacity: 0;
            width: 100vw;
            height: 100vh;
            z-index: 999;
            border-radius: 1.5rem;
            transition: bottom .5s ease-in-out, opacity 1s ease-in-out;
            .video-background{
                border-radius: 1.5rem;
                width: 100%;
                height: 100%;
                video{
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                }
            }
            .close-button{
                position: absolute;
                height: 3.5rem;
                width: 3.5rem;
                top: 2rem;
                left: 2rem;
                i{
                    font-size: 1.5rem;
                }
            }
        }

        .service-video-floating.show{
            bottom: 0% !important;
            opacity: 1;
        }


        /* *----------------------------------------------INFORMATION POINT-------------------------------------------- */

        #news{
            width: 100vw;
            .section-container{
                padding: 0rem 0.75rem;
                width: 100%;
                .section-header{
                    width: 100%;
                }
                /* ======================
                CARRUSEL
                ======================= */
                .news-carousel{
                    width: 100%;
                    margin-top: 2rem;
                    .carousel-wrapper{
                        width: 100%; 
                        height: 45.813rem; 
                        .carousel-track{
                            height: 100%; 
                            .news-card{
                                flex: 0 0 100%;
                                padding: 1.2rem;
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                height: 100%;

                                img{
                                    width: 100%;
                                    height: 19rem;
                                    border-radius: 1.2rem;
                                }

                                .news-content{
                                    margin-top: 1rem; /*!CHANGE*/
                                    width: 100%; /*!CHANGE*/
                                    padding: 0rem; /*!CHANGE*/

                                    .title{
                                        font-size: 2rem; /*!CHANGE*/
                                    }
                                    .subtitle {
                                        font-size: 1.3rem; /*!CHANGE*/
                                    }

                                    .description {
                                        font-size: 1rem; /*!CHANGE*/
                                    }
                                    .gray-box {
                                        p{
                                            font-size: 1rem; /* !CHANGE*/
                                        }
                                    }
                                }
                            }
                        }
                    }

                    

                    .carousel-btn{
                        display: none; /* !CAMBIO*/
                    }

                    .carousel-indicators button {
                        width: 8px; /* !CAMBIO*/
                        height: 8px; /* !CAMBIO*/
                    }
                }
            }
        }

        /* *---------------------------------------- PROGRAMS --------------------------------------- */

        #programs{
            .section-container{
                padding: 0rem 0rem;
                .program-item{
                    margin-top: 2rem;
                    .program-header{
                        .program-header-text{
                            .program-title{
                                font-size: 1.8rem;
                                font-weight: 800;
                            }
                            .program-description{
                                margin-top: 0.8rem;
                                font-size: 1rem;
                            }
                        }
                    }
                }

                /* ******************************ASTROTOURISM PROGRAM */

                #astrotourism-program{
                    .astrotourism-section{
                        margin-top: 2rem;
                        .experience-container{

                            .large-arrow{
                                display: none; /* !CHANGE*/
                            }

                            .small-arrow {
                                font-size: 1.5rem;
                                i{
                                    color: var(--color-2);
                                    font-size: 1.5rem; /*! CHANGE*/
                                }
                            }

                            .experience-view{
                                .gallery-container{
                                    .mobile-only{
                                        display: block; /*! CHANGE*/
                                    }
                                    #mainImage {
                                        height: 21.563rem;
                                    }
                                    .gallery-nav{
                                        display: none;
                                    }
                                }
                                .experience-info{
                                    flex-wrap: nowrap;
                                    flex-direction: column; /*! CHANGE*/
                                    .info-left{
                                        width: 100%;
                                        flex: none; /*! CHANGE*/
                                        padding-left: 0rem; /*! CHANGE*/
                                        padding-right: 0rem; /*! CHANGE*/
                                        border-right: 0px var(--color-0) solid; /*! CHANGE*/
                                        margin: 0;
                                        .experience-title{
                                            font-size: 1.8rem; /*! CHANGE*/
                                        }
                                    }

                                    .info-right{
                                        flex: auto; /*! CHANGE*/
                                        flex-direction: column; /*! CHANGE*/
                                        padding-right: 0rem; /*! CHANGE*/
                                        .experience-description{
                                            font-size: 1.1rem; /*! CHANGE*/
                                            width: 100%;
                                        }

                                        .info-links{
                                            flex-direction: row; /*! CHANGE*/ 
                                            gap: 2rem;
                                            margin-top: 1rem; /*! CHANGE*/
                                            .itinerary-link, .schedule-link{
                                                display: flex;
                                                color: var(--color-3);
                                                font-size: 1.1rem; /*! CHANGE*/
                                                gap: 0.5rem;
                                                i{
                                                    margin-right: 0rem;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        .experience-container:hover .large-arrow{
                            opacity: 1;
                        }
                    }
                }

                /* ******************************EDUCATIONAL PROGRAM */
    
                #educational-program{
                    height: 100%;
                    width: 100%;
                    display: flex;
                    flex-direction: column;

                    .program-header{
                        .program-header-text{
                            display: flex;
                            flex-direction: column;
                        }
                    }

                    .educational-section{
                        .educational-items{
                            flex-direction: column; /* !CHANGE*/
                            margin-top: 2rem;
                            gap: 1.5rem;
                            .item{
                                height: 20rem;
                                width: 100%; /* !CHANGE*/
                                .item-content{
                                    .item-title{
                                        bottom: 1.5rem;
                                        right: 1.5rem;
                                        font-size: 1.8rem;
                                    }
                                }

                                .item-content-hover{
                                    padding: 3rem;
                                    .item-description{
                                        font-size: 1.1rem;
                                    }
                                    .item-title{
                                        bottom: 1.5rem;
                                        right: 1.5rem;
                                        font-size: 1.8rem;
                                    }
                                }

                            }
                        }
                    }
                    
                }
            }
        }

        /* ******************************AUDIOVISUAL PROGRAM */
    
        #audiovisual{
            .section-container{
                .section-header{
                    width: 80vw;
                    text-align: center;
                    .section-title{
                        font-size: 2rem;
                        line-height: 2.5rem;
                    }
                }
                .audiovisual-section{
                    padding: 4rem 0rem;
                    .video-element{
                        width: 80vw;
                        flex-direction: column;
                        .video{
                            width: 100%;
                            height: 20rem;
                        }
                        .video-description{
                            width: 100%;
                            margin-top: 0rem;
                            padding-left: 0rem;
                            .video-title{
                                font-size: 2rem;
                                text-align: center;
                            }
                            .description{
                                font-size: 1.1rem;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }

        /* *--------------------------------------------------CLOSE PAGE------------------------------------------------- */

        .close-page{
            margin-top: 6rem;
            width: 80vw;
            padding: 0rem 0rem;
            .close-page-container{
                flex-direction: column;
                .left{
                    width: 100%;
                    .logo{
                        width: 3rem;
                        height: 3rem;
                        transform: translateY(0.5rem);
                    }
                    .phrase{
                        font-size: 2.8rem;
                    }
                }
                .right{
                    margin-top: 2rem;
                    .rectangular-button{
                        padding: 0.4rem;
                        width: 10rem;
                        padding-left: 1rem;
                        padding-right: 1rem;
                        i{
                            font-size: 1.2rem;
                        }
                        p{
                            font-size: 1rem;
                        }
                    }
                }
            }
        }

        .contact-us{
            width: 90vw;
            margin-top: 3rem;
            .contact-us-container{
                flex-direction: row;
                flex-wrap: wrap;
                padding-left: 0.6rem;
                padding-right: 0.6rem;
                padding-top: 2rem;
                padding-bottom: 2rem;
                .left{
                    flex: none;
                    p{
                        font-size: 0.9rem;
                    }
                }
                .center{
                    justify-content: left;
                    margin-top: 0.5rem;
                    flex: none;
                    .social{
                        a{
                            font-size: 0.9rem;
                        }
                    }
                }
                .right{
                    flex: none;
                    margin-top: 0.5rem;
                    justify-content: start;
                    .more-info{
                        a{
                            font-size: 0.9rem;
                        }
                    }
                }
            }
        }

    }
}
