.wrapper {
    padding: 70px 0;
    overflow-x: hidden;
}


.my-slider {
    padding: 0 70px;
}

.slick-initialized .slick-slide {
    /* background-color: #b32532; */
    color: #FFF;
    height: 200px;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-next,
.slick-prev {
    z-index: 5;
}

.slick-next {
    right: 15px;
}

.slick-prev {
    left: 15px;
}

.slick-next:before,
.slick-prev:before {
    color: #000;
    font-size: 26px;
}

.html,
.body,
.stage,
.ring,
.img {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    user-select: none;
}

.html,
.body,
.stage {
    overflow: hidden;
    background: #fff;
}

.html,
.body,
.stage,
.containerSlider,
.ring,
.img,
svg {
    position: absolute;
}

.containerSlider {
    perspective: 2000px;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* Text Marquee Effect */
.dateSize {
    font-size: 22px;
}

.marqueeHead {
    position: absolute;
    z-index: 99999;
    bottom: 158px;
    left: 50px;
    transform: rotate(-2deg) scale(1.1);
    overflow: visible;
    font-family: "Dancing Script", cursive;
    letter-spacing: 2px;
    color: white;
    padding-left: 40px;
    font-size: 22px;
}

.desktopHide {
    display: none;
}

.desktopShow {
    display: block;
}

@media (max-width: 1025px) {
    .marqueeHead {
        bottom: 163px;
        left: 50px;
    }
}

@media (max-width: 780px) {
    .marqueeHead {
        bottom: 179px;
        left: 298px;
    }
}

/*MOBILE*/
@media (max-width: 430px) {
    .mobShow {
        display: block;
    }

    .mobHide {
        display: none;
    }

    .marqueeHead {
        font-size: 19px;
        bottom: 175px;
        left: 90px;
    }

    .dateSize {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .marqueeHead {
        font-size: 16px;
        bottom: 175px;
        left: 47px;
    }
}

@media (max-width: 325px) {
    .marqueeHead {
        font-size: 18px;
        bottom: 178px;
        left: 57px;
    }

    .dateSize {
        font-size: 9px;
    }
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;

    margin-top: 5rem;
    transform: rotate(-2deg) scale(1.1);
    background-color: #b78948;
    position: absolute;
    width: 100%;
    z-index: 999;
    bottom: 140px;
    opacity: 0.8;

    .marquee__text {
        text-decoration: none;
        display: inline-block;
        padding-left: 100%;
        font-size: 3.5rem;
        text-transform: uppercase;
        color: white !important;
        animation: marquee-direction var(--_speed) linear infinite;
        font-family: 'Black Ops One', sans-serif;

        &[data-direction="rtl"] {
            /* DON'T CHANGE */
            --_right: 0%;
            --_left: -100%;
        }

        &[data-direction="ltr"] {
            /* DON'T CHANGE */
            --_right: -100%;
            --_left: 0%;
        }
    }
}

@keyframes marquee-direction {
    0% {
        transform: translateX(var(--_right));
    }

    100% {
        transform: translateX(var(--_left));
    }
}

.mainInstaDiv
{
    padding-top: 100px;
    margin-bottom: 300px;
}