.hero-img {
    filter: brightness(0.8) blur(1px);
}

h1 {
    margin-bottom: 4rem;
    color: #F6F6F6;
}


h2 {
    text-align: center;
    margin: 1em 0;
    padding: 0 1rem;
}

.main_totem p {
    margin: 1em 0;
}

.strong {
    font-weight: 600;
}

.button-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.button {
    background-color: hsl(189, 75%, 39%);
    color: white;
    border: 1px solid hsl(189, 75%, 39%);
    padding: 0.75rem 2rem;
    border-radius: 50vh;
    font-size: 1.25rem;
    transition:
        background-color 0.3s ease-in-out,
        color 0.3s ease-in-out,
        border 0.3s ease-in-out;
}

.button:is(:hover, :focus-visible) {
    background-color: white;
    color: hsl(189, 75%, 39%);
    border: 1px solid hsl(189, 75%, 39%);
}

.totem_information-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;

    @media (max-width: 768px) {
        flex-direction: column;
        gap: 2rem;
    }
}

.totem_information-text {
    flex: 1;
}

.totem_information-title {
    text-align: unset;
    padding: 0;
}

.totem_slider-clients {
    background-color: hsl(0, 0%, 96%);
}

.totem_slider-clients_content {
    max-width: 90%;
    margin: 1rem auto;
}

.totem_ideal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    max-width: 960px;
    margin: 0 auto 2rem auto;
    padding: 1rem;

    @media (max-width: 768px) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.totem_ideal-item {
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 1rem;
    text-align: center;
    border: 1px solid black;
    padding: 2rem;
    border-radius: 10px;
}

.totem_ideal-img {
    max-height: 20rem;
    object-fit: contain;
}

.totem_ideal-title {
    font-weight: 600;
}
