@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap');

@font-face {
    font-family: 'YourFont-Bold';
    src: url('/assets/GlacialIndifference_1312/OTF/GlacialIndifference-Bold.otf') format('opentype'),
        url('/assets/GlacialIndifference_1312/TTF/GlacialIndifference-Bold.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'YourFont-Regular';
    src: url('/assets/GlacialIndifference_1312/OTF/GlacialIndifference-Regular.otf') format('opentype'),
        url('/assets/GlacialIndifference_1312/TTF/GlacialIndifference-Regular.ttf') format('truetype');
    font-display: swap;
}

/*Reset*/
html {
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 16px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/**/
.none {
    display: none;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}


/*inicio*/
.carousel {
    position: relative;
    width: 100vw;
    overflow: hidden;
    z-index: 9;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-in-out;
    z-index: -1;
}

.carousel-image img {
    height: inherit;
    width: inherit;
    object-fit: cover;
    /* object-position: 50% 0%; */
}

.carousel-image.active {
    opacity: 1;
    visibility: visible;
}

.carousel-dot-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    user-select: none;
    margin: .5rem;
}

.carousel-dot {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #fff;
    margin: 0 .5rem;
    opacity: 0.5;
}

.carousel-dot.active {
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    /* Esto centra las flechas verticalmente */
    transform: translateY(-50%);
    /* Esto también es para centrar las flechas verticalmente */
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}

.carousel-arrow-left {
    left: 5rem;
    /* Ajusta este valor según tus necesidades */
    cursor: pointer;
}

.carousel-arrow-right {
    right: 5rem;
    /* Ajusta este valor según tus necesidades */
    cursor: pointer;
}

.regular-text {
    font-family: 'YourFont-Regular';
    font-size: 1.25rem;
    color: #FFFFFF;
    margin: auto 0;
}

.bold-text {
    font-family: 'YourFont-Bold';
    font-size: 1.25rem;
    background-color: rgba(75, 82, 56, .75);
    color: #FFFFFF;
    margin: auto 0;
}

.text-container-1 {
    width: 65vw;
    height: auto;
    position: fixed;
    left: 35vw;
    top: 60vh;
}

.text-container-1 .bold-text {
    width: 100%;
    text-align: end;
    padding-right: .5rem;
}

.text-container-2 {
    width: 60vw;
    height: auto;
    position: fixed;
    left: 40vw;
    top: 50vh;
}

.text-container-2 .bold-text {
    text-align: center;
}

.text-container-2 .bold-text:last-child {
    text-align: end;
    padding-right: .5rem;
}

.text-container-3 {
    width: 65vw;
    height: auto;
    position: fixed;
    left: 35vw;
    top: 50vh;
}

.text-container-3 .bold-text {
    width: 100%;
    text-align: center;
}

.text-container-3 .regular-text:last-child {
    text-align: end;
    padding-right: .5rem;
}

.text-container-4 {
    width: 80vw;
    height: auto;
    position: fixed;
    left: 20vw;
    top: 50vh;
}

.text-container-4 .bold-text {
    width: 100%;
    text-align: center;
}

.text-container-4 .regular-text {
    padding-right: 2rem;
    text-align: end;
}

.text-container-5 {
    width: 65vw;
    height: auto;
    position: fixed;
    left: 35vw;
    top: 50vh;
}

.text-container-5 .bold-text {
    width: 100%;
    text-align: center;
}

.text-container-5 .regular-text {
    text-align: end;
    padding-right: .5rem;
}

.text-container-6 {
    width: 70vw;
    height: auto;
    position: fixed;
    left: 30vw;
    top: 45vh;
}

.text-container-6 .bold-text {
    width: 100%;
    text-align: center;
}

/* @media screen and (min-width: 712px) {

    .bold-text {
        font-size: 2.5rem;
    }

    .regular-text {
        font-size: 2.2rem;
    }
} */

@media screen and (min-width: 712px){
    .bold-text {
        font-size: 1.5rem;
    }

    .regular-text {
        font-size: 1.5rem;
    }

    .text-container-1,
    .text-container-2,
    .text-container-3,
    .text-container-4,
    .text-container-5,
    .text-container-6 {
        width: 40vw;
        left: 60vw;
    }
}

@media screen and (min-width: 1024px) {

    .bold-text {
        font-size: 1.75rem;
    }

    .regular-text {
        font-size: 1.75rem;
    }

    .text-container-1,
    .text-container-2,
    .text-container-3,
    .text-container-4,
    .text-container-5,
    .text-container-6 {
        width: 30vw;
        left: 70vw;
    }
}

@media screen and (min-width: 1444px) {
    .bold-text {
        font-size: 3rem;
    }

    .regular-text {
        font-size: 3rem;
    }

    .text-container-1,
    .text-container-2,
    .text-container-3,
    .text-container-4,
    .text-container-5,
    .text-container-6 {
        width: 30vw;
        left: 70vw;
    }
}