.slider-gift__container {
    max-width: 100%;
    height: 576px;
    display: flex;
    justify-content: center;
    align-items: center;

    @media screen and (max-width: 699px) {
        margin-bottom: 50px;

    }

    .slider-gift__containerWrapp {
        position: relative;
        max-width: 1286px;
        min-width: 330px;
        border-radius: 10px;
        background: #DDE7EC;
        padding: 30px;
        margin: 30px;


        @media screen and (max-width: 699px) {
            padding: 0px;
        }

        .slider-gift__titleContain {

            width: 100%;

            .slider-gift__title {
                text-align: center;
                color: var(--Dark-Blue, #011826);
                font-family: Josefin Sans;
                font-size: 32px;
                font-style: normal;
                font-weight: 700;
                line-height: 40px;
                margin: 40px;
                /* 125% */

                @media screen and (max-width: 699px) {
                    margin: 25px 0 40px;
                }
            }

        }

        .slider-gift__imageTitleContain {

            display: flex;
            flex-direction: column;
            align-items: center;
            width: 270px;

            @media screen and (max-width: 1250px) {
                width: 200px;

                @media screen and (max-width: 699px) {
                    width: 230px;
                    height: 360px;
                }
            }

            .slider-gift__image {
                width: 250px;
                height: 250px;
                border-radius: 8.286px;
                border: 6px solid #D7BC99;
                background: #D9D9D9;

                @media screen and (max-width: 1250px) {
                    width: 200px;
                    height: 200px;

                    @media screen and (max-width: 990px) {
                        width: 130px;
                        height: 130px;

                        @media screen and (max-width: 699px) {
                            width: 280px;
                            height: 280px;
                        }

                    }

                }
            }

            .slider-gift__titleImageContain {
                width: 70%;

                &>p {
                    text-align: center;
                    color: var(--Dark-Blue, #011826);
                    font-family: Josefin Sans;
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    /* 100% */

                    @media screen and (max-width: 699px) {
                        font-size: 18px;
                    }
                }

            }

        }

        .swiper {

            .swiper-wrapper {
                gap: 5px;

                .swiper-slide {
                    display: flex;
                    justify-content: center;
                }

                @media screen and (max-width: 1250px) {
                    gap: 0px;
                }

            }

        }

        .slider-gift__pagination {
            display: none;
            position: absolute;
            left: 50%;

            @media screen and (max-width: 699px) {
                display: block;
            }

            .swiper-pagination .swiper-pagination-bullet {
                background-color: #6e8898;
                width: 12px;
                height: 12px;
                margin-right: 8px !important;
                margin-left: 8px !important;
            }



            .swiper-button-nextGift,
            .swiper-button-prevGift {
                display: grid;
                position: relative;
                place-content: center;
                border-radius: 24px;
                width: 40px;
                height: 40px;
                background: var(--Blue-Gray, #6E8898);

                &::after {
                    font-size: 20px;
                    color: #DDE7EC;
                }

            }

            .swiper-button-nextGift {
                left: 50px;
                bottom: -9px;
            }

            .swiper-button-prevGift {
                bottom: 30px;
                right: 90px;
            }

            .swiper-paginationGift {
                position: relative;
                bottom: 62px;
                left: -31px;

                & .swiper-pagination-bullet {
                    background-color: #6e8898;
                    width: 8px;
                    height: 8px;
                }
            }

        }

    }
}