section.hero-content-wrapper {
    padding-top: 5vh;
    justify-content: flex-start;
}

section.hero-content-wrapper h1 {
    margin: 0;
    margin-top: 0;
    font-size: 5vw;
}

section.hero-content-wrapper h2 {
    margin: 0;
    font-size: 2vw;
    margin-bottom: 2rem;
    font-weight: normal;
    color: var(--color-dark-blue);
    font-family: var(--font-barlow);
}

div.carousel-container {
    display: flex;
    font-size: 2vw;
    border-radius: 10px;
    flex-direction: column;
    font-family: var(--font-barlow);
    background-color: rgba(255, 255, 255, 0.2);
}

div.carousel-container h3 {
    margin: 0 !important;
    font-size: 2vw;
}

div.carousel-container p {
    font-size: 1.5vw;
}

.carousel-container {
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: flex;
    transition: transform 0.3s ease-in-out;
    cursor: grab;
}

.carousel-slide:active {
    cursor: grabbing;
}

.carousel-item {
    padding: 20px;
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-dots {
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    border-radius: 50%;
    display: inline-block;
    background-color: #bbb;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

img.elementos_1_white {
    top: 50%;
    left: 70%;
    display: none;
    transform: rotate(-120deg);
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 80%;
    overflow: hidden;
    object-fit: contain;
    opacity: 1;
    position: fixed;
    margin: 0 !important;
}

img.elementos_2_white {
    top: 50%;
    left: 60%;
    opacity: .5;
    transform: rotate(180deg);
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 50%;
    max-width: 100%;
    overflow: hidden;
    max-height: 100%;
    object-fit: cover;
    position: fixed;
    margin: 0 !important;
}

@media screen and (width <= 600px) {
    section.hero-content-wrapper h1 {
        font-size: 2rem;
    }

    section.hero-content-wrapper h2 {
        font-size: 1.2rem;
    }

    div.carousel-container h3 {
        font-size: 1.5rem;
    }

    div.carousel-container p {
        font-size: 1rem;
    }
}
