* {
    margin: 0;
    padding: 0;
    

}

@font-face {
    font-family: 'Mogilte';
    src: url('../font/Mogilte.woff2') format('woff2'),
        url('../font/Mogilte.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Moga';
    src: url('../font/MogaRegular.woff2') format('woff2'),
        url('../font/MogaRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Dellyani';
    src: url('../font/Dellyani.woff2') format('woff2'),
        url('../font/Dellyani.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dellyani";
    src: url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.eot");
    src: url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/af2febba1ed7b08844bbb3d021d301fb.svg#Dellyani")format("svg");
}

img {
    max-width: 100%;
    height: auto;
}

section.blckfriday-sec {
    min-height: 953px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

section.blckfriday-sec::after {
    position: absolute;
    inset: 0;
    content: "";
    background: #000000b8;
}

video.video-overlays {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.fs-254 {
    font-family: 'Mogilte';
    font-size: 254.075px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fridaysale-grid {
    display: flex;
}

.all-heading {
    position: relative;
    z-index: 1;
}

.discount-image {
    max-width: 149px;
    width: 100%;
    position: absolute;
    bottom: -15px;
    left: -91px;
    z-index: 1;
}



.fs-237 {
    font-family: 'Dellyani', sans-serif;
    color: #1E78EF;
    font-size: 237.136px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
        /* animation: delaydata 3s linear; */
}



.custom-containerss {
    max-width: 1215px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: delaydata 0.5s linear;
    
}

@keyframes delaydata{
    0%{
    opacity: 0;
    }
    100%{
      opacity: 1;

    }
}

.fs-68 {
    font-family: 'Moga';
    font-size: 68.351px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fs-50 {
    font-family: 'Moga';
    color: #1E78EF;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 2.5px;
}

.fs-30 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 1.2px;
    padding-bottom: 10px;
}

img.discount-two {
    position: absolute;
    right: -77px;
    bottom: -120px;
    z-index: -1;
    animation: discount 10s linear infinite alternate;
}

@keyframes discount {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(45deg);
    }
}

.fridaysale-grid.two {
    /* gap: 50px; */
    justify-content: end;
    margin-top: -125px;
    align-items: center;
}

.image-here.imageonly {
    max-width: 331px;
    width: 100%;
}

/* .image-here h2.fs-237 {
    transform: rotate(-8.825deg);
} */

.fridaysale-grid.one .image-here {
    margin-top: -25px;
    max-width: 333px;
    width: 100%;
}

.fridaysale-grid.one {
    gap: 15px;
}


.grid-coupon-code {
    display: flex;
    align-items: start;
    gap: 15px;
    justify-content: end;
    margin-right: 18.2%;
    margin-top: -78px;
    position: relative;
    z-index: 1;
}

.fridaysale-grid.one .image-here img {
    animation: image 50s linear infinite;
}

@keyframes image {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.animated-text {
    display: flex;
    gap: 5px;
    visibility: hidden;
}

.animated-text.animate {
    visibility: visible;
}

.animated-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(50px);
}

.animated-text span:nth-child(even) {
    transform: translateY(-50px);
}

.animated-text.animate span {
    animation: animateUp 1s ease forwards;
}

.animated-text.animate span:nth-child(even) {
    animation-name: animateDown;
}

.animated-text.animate span:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
}

.coupon-code {
    border-left: 2px solid #D9D9D9;
    padding-left: 15px;
}

@keyframes animateUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animateDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:1600px) {
    .fs-254 {
        font-size: 190.075px;
    }

    .fridaysale-grid.one .image-here {
        max-width: 270px;
    }

    .fs-237 {
        font-size: 135.136px;
    }

    .fs-68 {
        font-size: 50.351px;
    }

    .fs-30 {
        font-size: 22px;
    }

    .fs-50 {
        font-size: 35px;
    }

    .custom-containerss {
        max-width: 990px;
    }

    .fridaysale-grid.two {
        margin-top: -84px;
    }

    .discount-image {
        max-width: 117px;
        bottom: -15px;
        left: -71px;
    }

    .grid-coupon-code {
        margin-top: -65px;
    }

    img.discount-two {
        max-width: 300px;
    }

    section.blckfriday-sec {
        min-height: 772px;
    }
    .image-here.imageonly {
    max-width: 215px;
}


}


@media(max-width:1400px) {
    .fs-254 {
        font-size: 125.075px;
    }

    .fridaysale-grid.one .image-here {
        max-width: 165px;
    }

    .fs-237 {
        font-size: 82.136px;
    }

    .fs-68 {
        font-size: 35.351px;
    }

    .fs-30 {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .fs-50 {
        font-size: 30px;
        line-height: 15px;
    }

    img.discount-two {
        max-width: 250px;
    }

    .custom-containerss {
        max-width: 767px;
    }

    section.blckfriday-sec {
        min-height: 641px;
    }

    .fridaysale-grid.two {
        margin-top: -42px;
        /* gap: 30px; */
    }

    .discount-image {
        max-width: 90px;
        bottom: -19px;
        left: -57px;
    }

    .grid-coupon-code {
        margin-top: -40px;
        margin-right: 11%;
    }

    img.discount-two {
        max-width: 200px;
    }

        .image-here.imageonly {
        max-width: 160px;
    }
}

@media(max-width:1199px) {
    section.blckfriday-sec {
        min-height: 520px;
        padding: 40px 0px;
    }
}

@media(max-width:991px) {
    .fs-254 {
        font-size: 100px;
    }

    .fridaysale-grid.two,
    .fridaysale-grid.one {
        margin-top: 0;
        gap: 20px;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }

    .fridaysale-grid.one .image-here {
        position: static;
    }

    .grid-coupon-code {
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .all-heading {
        text-align: center;
        margin: 0 auto;
    }

    .fridaysale-grid.one .image-here {
        margin: 0 auto;
    }

    .discount-image {
        max-width: 79px;
        bottom: -18px;
        left: -49px;
    }

    .coupon-code{
        padding-left: 0;
        border: none;
    }

}

@media(max-width:575px) {
    .fs-254 {
        font-size: 70px;
    }

    .discount-image {
        max-width: 72px;
        bottom: -31px;
        left: -50px;
    }

    img.discount-two {
        display: none;
    }
}