.special {
    --color-text: var(--color-white);
    
    background-color: var(--color-secondary);
    padding: 0.5rem;
    padding-top: 3rem;
    padding-bottom: 5rem;
    border-radius: 3.125rem;

    text-align: center;
}

@media screen and (min-width: 26rem) {
    .special {
        margin-inline: var(--container-padding);
        padding-top: 0;
    }
}

.special-content {
    width: min(100%, 40rem);
    margin-bottom: 2rem;
    margin-inline: auto;
}

.special-video {
    position: relative;
    margin-block: 1.5rem;

    width: min(100%, 50rem);
    margin-inline: auto;
}

.special-video video {    
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 3.125rem;

    aspect-ratio: 16 / 9;
}


.special-triangles {
    margin-top: 1rem;
}

.triangles-list li {
    width: 100%;
    display: flex;
    justify-content: center;
}


.special-triangle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 0.5rem;

    width: min(28.75rem, 100%);
    height: auto;
    aspect-ratio: 1 / 1;

    background-color: var(--color-primary);

    text-align: center;

    clip-path: polygon( 6.672% 33.893%,6.672% 33.893%,4.27% 36.716%,2.402% 39.805%,1.068% 43.093%,0.267% 46.513%,0.001% 50%,0.267% 53.487%,1.068% 56.907%,2.402% 60.195%,4.27% 63.284%,6.672% 66.107%,33.893% 93.328%,33.893% 93.328%,36.716% 95.73%,39.805% 97.598%,43.093% 98.932%,46.513% 99.733%,50% 99.999%,53.487% 99.733%,56.907% 98.932%,60.195% 97.598%,63.284% 95.73%,66.107% 93.328%,93.328% 66.107%,93.328% 66.107%,95.73% 63.284%,97.598% 60.195%,98.932% 56.907%,99.733% 53.487%,99.999% 50%,99.733% 46.513%,98.932% 43.093%,97.598% 39.805%,95.73% 36.716%,93.328% 33.893%,66.107% 6.672%,66.107% 6.672%,63.284% 4.27%,60.195% 2.402%,56.907% 1.068%,53.487% 0.267%,50% 0.001%,46.513% 0.267%,43.093% 1.068%,39.805% 2.402%,36.716% 4.27%,33.893% 6.672%,6.672% 33.893% );
}

.special-triangle:nth-child(even) {
    background-color: var(--color-petrol-60);
}

.special-triangle img {
    height: 3rem;
    width: auto;
    margin-top: -2rem;
}

@media screen and (min-width: 26rem) {
    .special-triangle img {
        height: 4rem;
    }
}

.special-triangle a span:last-child {
    display: none;
}

.special-triangle a {
    width: auto;
    padding-inline: 1rem;
}

.special-triangle-content {
    width: 80%;
    margin-inline: auto;
    font-size: clamp(0.875rem, 0.7082rem + 0.4706vw, 1rem);
}

.special-triangles {
    --swiper-pagination-bullet-inactive-color: var(--color-white);
    --swiper-pagination-bottom: -2.5rem;

    position: relative;
}

.special-video-frame {
    padding-top: 2rem;
    display: flex;
    flex-direction: column-reverse;
}

.special-video-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media screen and (min-width: 75rem) {
    .special-triangle img {
        height: 4rem;
    }

    .special-triangle-content {
        width: 80%;
        margin-inline: auto;
        font-size: clamp(0.875rem, 0.5982rem + 0.4464vw, 1rem);
    }

}

@media screen and (min-width: 90rem) {

    .special {
        background-color: transparent;
    }

    .special-triangle img {
        height: 5rem;
    }

    .special-triangle a span:first-child {
        display: none;
    }

    .special-triangle a span:last-child {
        display: unset;
    }

    .special-triangles-wrapper {
        width: min(100%, 90rem);
        margin-inline: auto;
        position: relative;
    }


    .special-video-wrapper {
        width: var(--wrapper-width);
        aspect-ratio: 16 / 9;

        overflow: hidden;

        text-align: start;

        margin-inline: auto;

        position: relative;
    }

    .special-video-frame {
        width: 75rem;
        margin-inline: auto;
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        gap: 1.5rem;

        padding-top: 0;
    }

    .special-video-frame h2 {
        order: 1;
    }

    .special-video-frame .special-content {
        order: 2;
    }

    .special-video-frame .special-video {
        order: 3;
    }

    .special-video {
        position: unset;
        margin: unset;
    }

    .special-video video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;

        border-radius: 0;

        z-index: -1;

        border-radius: 3.125rem;
    }

    .special-content {
        margin-inline: unset;
        width: min(100%, 33.125rem);
    }

    .special-video-card {
        background-color: var(--color-primary);
        display: block;

        border-radius: 3.125rem;
        padding-inline: 2rem;
        padding-block: 2rem;

        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
    }

}