.special-container {
    padding: 0;
    padding-bottom: 30px;

    .special-collection-wrapper {

        .special-collection {
            display: flex;
            align-items: center;
            gap: 60px;
            align-self: stretch;

            background:rgb(255, 242, 242);

            &.right {
                flex-direction: row-reverse;
                padding-bottom: 0 !important;
            }

            @media screen and (max-width: 749px) {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                flex-shrink: 0;

                padding-right: 0;
                padding-bottom: 30px;

                &.right {
                    flex-direction: column-reverse;
                }
            }

            .special-collection__collection-container {
                flex: 1;
                width: 100%;
                overflow: hidden;

                display: flex;
                justify-content: center;

                position: relative;

                .special-collection__collection {
                    max-width: 344px;

                    overflow: hidden;

                    @media screen and (max-width: 749px) {
                        max-width: 80%;
                    }

                    .special-collection__collection-wrapper {
                        width: 100%;

                        .grid__item {
                            width: auto;
                            max-width: unset;

                            list-style: none;

                            .card__inner {
                                @media screen and (min-width: 749px) {
                                    min-height: 543px;
                                }
                            }
                        }
                    }
                }

                .swiper-button-next,
                .swiper-button-prev {
                    background-color: var(--gradient-base-accent-2);
                    height: 50px;
                    width: 50px;

                    top: 50%;

                    &:after {
                        border-color: var(--gradient-base-background-1);
                    }
                }

                .swiper-button-next {
                    @media screen and (min-width: 749px) {
                        right: 40px;
                    }
                }
            }

            .special-collection__content {
                display: flex;
                align-items: flex-start;
                height: 730px;
                gap: 10px;

                position: relative;
                width: 50%;

                @media screen and (max-width: 749px) {
                    min-height: unset;
                    max-height: unset;
                    height: auto;
                    width: 100%;
                }

                .special-collection__image {
                    width: 100%;
                    height: 100%;
                }

                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

                .special-collection__text {
                    display: flex;
                    width: 350px;
                    flex-direction: column;
                    align-items: center;
                    gap: 16px;

                    position: absolute;
                    bottom: 60px;
                    left: 0;
                    right: 0;
                    margin: 0 auto;

                    z-index: 10;

                    .special-collection__subheading {
                        h3 {
                            color: var(--Background-Page, #FFF);
                            text-align: center;
                            font-size: 14px;
                            font-style: normal;
                            font-weight: 400;
                            line-height: normal;
                            letter-spacing: 1px;
                            text-transform: uppercase;

                            margin: 0;
                        }

                    }

                    .special-collection__heading {
                        h2 {
                            color: var(--Background-Page, #FFF);
                            text-align: center;
                            font-size: 24px;
                            font-style: normal;
                            font-weight: 700;
                            line-height: normal;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                            margin: 0;
                        }

                    }
                }
            }
        }
    }
}