/* Start Global Rules */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --main-color: #2196f3;
    --main-color-alt: #1787e0;
    --main-transition: 0.3s;
    --main-padding-top: 100px;
    --main-padding-bottom: 100px;
    --section-background: #ececec;
    --transparent-color: rgb(15 116 143 / 70%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.main-title {
    text-transform: uppercase;
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    font-size: 30px;
    width: fit-content;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
}

    .main-title::before,
    .main-title::after {
        content: "";
        width: 12px;
        height: 12px;
        background-color: var(--main-color);
        position: absolute;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }

    .main-title::before {
        left: -30px;
    }

    .main-title::after {
        right: -30px;
    }

    .main-title:hover::before {
        z-index: -1;
        animation: left-move 0.5s linear forwards;
    }

    .main-title:hover::after {
        z-index: -1;
        animation: right-move 0.5s linear forwards;
    }

    .main-title:hover {
        color: white;
        border: 2px solid white;
        transition-delay: 0.5s;
    }
.main-heading {
    margin: 0 auto;
    text-align: center;
}

.main-heading h2 {
    font-weight: normal;
    font-size: 40px;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
}

    .main-heading h2::before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 2px;
        background-color: #333;
        bottom: -30px;
        width: 120px;
    }

    .main-heading h2::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid #333;
        bottom: -36px;
        background-color: white;
    }

.main-heading p {
    width: 550px;
    margin: 0 auto 100px;
    max-width: 100%;
    line-height: 2;
    color: #777;
}
.spikes {
    position: relative;
}

    .spikes::after {
        content: "";
        position: absolute;
        right: 0;
        width: 100%;
        height: 30px;
        z-index: 1;
        background-image: linear-gradient(135deg, white 25%, transparent 25%), linear-gradient(225deg, white 25%, transparent 25%);
        background-size: 30px 30px;
    }

.dots {
    background-image: url("../imgs/dots.png");
    height: 186px;
    width: 204px;
    background-repeat: no-repeat;
    position: absolute;
}

.dots-up {
    top: 200px;
    right: 0;
}

.dots-down {
    bottom: 200px;
    left: 0;
}
/* End Global Rules */
/* Start Header */
.header {
    background-color: white;
    position: relative;
    -webkit-box-shadow: 0 0 10px #ddd;
    -moz-box-shadow: 0 0 10px #ddd;
    box-shadow: 0 0 10px #ddd;
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        position: relative;
    }

    .header .logo {
        color: var(--main-color);
        font-size: 26px;
        font-weight: bold;
        height: 72px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .header .logo img {
            width: 180px;
        }

@media (max-width: 767px) {
    .header .logo {
        padding: 10px 0;
        width: 100%;
        // height: 50px;
    }
}

.header .main-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .header .main-nav {
        margin: auto;
    }
}

.header .main-nav > li:hover .mega-menu {
    opacity: 1;
    z-index: 100;
    top: calc(100% + 1px);
}

.header .main-nav > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    position: relative;
    color: black;
    padding: 0 30px;
    overflow: hidden;
    font-size: 18px;
    transition: var(--main-transition);
}

.header .main-nav > li select {
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 16px;
    border-color: #bdbdbd;
    border-radius: 5px;
}

.header .main-nav > li:last-child {
    color: red;
}

@media (max-width: 767px) {
    .header .main-nav > li > a {
        padding: 10px;
        font-size: 14px;
        height: 40px;
    }
}

.header .main-nav > li > a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    top: 0;
    left: -100%;
    transition: var(--main-transition);
}

.header .main-nav > li > a:hover {
    color: var(--main-color);
    background-color: #fafafa;
}

    .header .main-nav > li > a:hover::before {
        left: 0;
    }

.header .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 30px;
    background-color: white;
    border-bottom: 3px solid var(--main-color);
    z-index: -1;
    display: flex;
    gap: 40px;
    top: calc(100% + 50px);
    opacity: 0;
    transition: top var(--main-transition), opacity var(--main-transition);
}

@media (max-width: 767px) {
    .header .mega-menu {
        flex-direction: column;
        gap: 0;
        padding: 5px;
    }
}

.header .mega-menu .image img {
    max-width: 100%;
}

@media (max-width: 991px) {
    .header .mega-menu .image {
        display: none;
    }
}

.header .mega-menu .links {
    min-width: 250px;
    flex: 1;
}

    .header .mega-menu .links li {
        position: relative;
    }

        .header .mega-menu .links li:not(:last-child) {
            border-bottom: 1px solid #e9e6e6;
        }

@media (max-width: 767px) {
    .header .mega-menu .links:first-of-type li:last-child {
        border-bottom: 1px solid #e9e6e6;
    }
}

.header .mega-menu .links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fafafa;
    z-index: -1;
    transition: var(--main-transition);
}

.header .mega-menu .links li:hover::before {
    width: 100%;
}

.header .mega-menu .links li a {
    color: var(--main-color);
    padding: 15px;
    display: block;
    font-size: 18px;
    font-weight: bold;
}

    .header .mega-menu .links li a i {
        margin-right: 10px;
    }
/* End Header */
/* Start Landing */
.landing {
    min-height: 100vh;
    background-color: #1f2021;
    background-image: url("../imgs/freepik3.jpeg");
    background-size: cover;
    position: relative;
    transition: background-image 1.5s ease-in-out;
}

.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 60%);
}

    .landing .text {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50%;
        padding: 50px;
        background-color: var(--transparent-color);
        color: white;
        display: flex;
        justify-content: flex-end;
    }
html[dir="rtl"] .landing .text {
    justify-content: flex-start;
}
.landing .text .content {
    max-width: 500px;
}

@media (max-width: 767px) {
    .landing .text {
        width: 100%;
    }

        .landing .text .content {
            max-width: 100%;
        }
}

.landing .text .content h2 {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
}

.landing .text .content p {
    font-size: 20px;
    line-height: 2;
}

.landing .change-background {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd;
}

@media (max-width: 767px) {
    .landing .change-background {
        display: none;
    }
}

.landing .fa-angle-left {
    cursor: pointer;
    left: 30px;
}

.landing .fa-angle-right {
    cursor: pointer;
    right: 30px;
}

.landing .bullets {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

    .landing .bullets li {
        width: 20px;
        height: 20px;
        border: 1px solid white;
        border-radius: 50%;
        margin-right: 10px;
    }

        .landing .bullets li.active {
            background-color: var(--main-color);
            border-color: var(--main-color);
        }
/* End Landing */
/* Start Articles */
.articles {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}
.products {
    background-color: var(--section-background);
}

.articles .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

    .articles .box {
        box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
        background-color: white;
        border-radius: 6px;
        overflow: hidden;
        transition: transform var(--main-transition), box-shadow var(--main-transition);
    }
        .articles .box img {
            width: 100%;
            max-width: 100%;
        }
        .articles .box:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
        }

        .articles .box .content {
        }

            .articles .box .content .p-title {
                background: var(--main-color);
                padding: 15px;
                text-align: center;
                color: white;
                margin: 0;
            }
            .articles .box .content .h-title {
                margin: 0;
            }

            .articles .box .content p {
                margin: 10px 0 0;
                line-height: 1.5;
                color: #777;
            }

        .articles .box .info {
            padding: 20px;
            border-top: 1px solid #e6e6e7;
            display: flex;
            
            justify-content: space-between;
            align-items: center;
        }

            .articles .box .info a {
                font-size: 20px;
                color: var(--main-color);
                font-weight: bold;
            }

            .articles .box .info i {
                color: var(--main-color);
            }

        .articles .box:hover .info i {
            animation: moving-arrow 0.6s linear infinite;
        }
///////////////////////////////
///////////////////////////////
///////////////////////////////
.articles .content .speed-container {
    padding: 20px 10px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 25px;
}

#speed-container {
    padding: 20px 10px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.circular-progress {
    position: relative;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

    .circular-progress:before {
        content: "";
        position: absolute;
        height: 84%;
        width: 84%;
        background-color: #ffffff;
        border-radius: 50%;
    }

.value-container {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    color: #231c3d;
}

.articles .speed-container div .info {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
}

.articles .speed-container .info .label {
    font-size: 20px;
    font-weight: bold;
}

.articles .speed-container .info .value {
    font-size: 18px;
    font-weight: 500;
}
    .articles .box .info {
        margin: 0 !important;
        padding: 10px !important;
    }
///////////////////////////////
///////////////////////////////
///////////////////////////////
#price {
    padding: 20px;
    background-color: #ececec;
    border-top: 2px solid var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.articles .box .price a {
    color: black;
    font-weight: bold;
    margin: 0 auto;
    font-size: 26px;
}
/* End Articles */
/* Start Gallery */
.gallery {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
}

    .gallery .container {
        /*display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 40px;*/
    }

.accordion .accordion-item {
    padding: 5px 15px;
    border-bottom: 1px solid #e5e5e5;
}

    .accordion .accordion-item button[aria-expanded='true'] {
        border-bottom: 1px solid var(--main-color);
    }

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    padding-right: 20px;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}
html[dir="rtl"] .accordion button {
    text-align: right !important;
    padding-left: 20px;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: var(--main-color);
}

    .accordion button:hover::after,
    .accordion button:focus::after {
        cursor: pointer;
        color: var(--main-color);
        border: 1px solid var(--main-color);
    }

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}
html[dir="rtl"] .accordion button .accordion-title {
    padding: 1em 0 1em 1.5em !important;
}
.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}
html[dir="rtl"] .accordion button .icon {
    margin-right: 10px;
    left: 0 !important;
    right: inherit;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: '';
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: '';
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded='true'] {
    color: var(--main-color);
}

.accordion button[aria-expanded='true'] .icon::after {
    width: 0;
}

    .accordion button[aria-expanded='true'] + .accordion-content {
        opacity: 1;
        max-height: 103em;
        transition: all 200ms linear;
        will-change: opacity, max-height;
    }
        .accordion button[aria-expanded='true'] + .accordion-content img {
            width: 100%;
            height: 100%;
        }
        .accordion button[aria-expanded='true'] + .accordion-content iframe {
            height: 740px;
        }
@media (max-width: 767px) {
    .accordion button[aria-expanded='true'] + .accordion-content iframe {
        height: 250px;
    }
}

    .accordion .accordion-content {
        opacity: 0;
        max-height: 60em;
        overflow: hidden;
        transition: opacity 200ms linear, max-height 200ms linear;
        will-change: opacity, max-height;
    }

        .accordion .accordion-content p {
            font-size: 1rem;
            font-weight: 300;
            margin: 2em 0;
        }
    /* End Gallery */
/* Start Portfolio */
.portfolio {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

    .portfolio .shuffle {
        display: flex;
        justify-content: center;
    }

        .portfolio .shuffle li {
            padding: 10px;
        }

            .portfolio .shuffle li.active {
                background-color: var(--main-color);
                color: white;
            }

    .portfolio .imgs-container {
        display: flex;
        flex-wrap: wrap;
        margin-top: 60px;
    }

        .portfolio .imgs-container .box {
            overflow: hidden;
            position: relative;
        }

            .portfolio .imgs-container .box:hover .caption {
                bottom: 0;
            }

            .portfolio .imgs-container .box:hover img {
                transform: rotate(3deg) scale(1.1);
            }

@media (min-width: 768px) {
    .portfolio .imgs-container .box {
        flex-basis: 50%;
    }
}

@media (min-width: 1199px) {
    .portfolio .imgs-container .box {
        flex-basis: 33%;
    }
}

.portfolio .imgs-container .box img {
    width: 100%;
    max-width: 100%;
    transition: 0.3s;
}

.portfolio .imgs-container .box .caption {
    position: absolute;
    left: 0;
    padding: 20px;
    background-color: white;
    width: 100%;
    transition: 0.3s;
    bottom: -100%;
}

    .portfolio .imgs-container .box .caption h4 {
        font-weight: normal;
        margin-bottom: 10px;
    }

    .portfolio .imgs-container .box .caption p {
        color: var(--main-color);
    }

.portfolio .more {
    background-color: var(--main-color);
    color: white;
    padding: 15px 20px;
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-decoration: none;
    text-transform: uppercase;
}
/* End Portfolio */
    /* Start Services */
    .services {
        padding-top: var(--main-padding-top);
        padding-bottom: var(--main-padding-bottom);
        position: relative;
        background-color: var(--section-background);
    }

        .services .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
        }

        .services .box {
            background-color: white;
            box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
            counter-increment: services;
            transition: var(--main-transition);
            position: relative;
        }

            .services .box::before {
                content: "";
                left: 50%;
                transform: translateX(-50%);
                height: 3px;
                top: -3px;
                background-color: var(--main-color);
                position: absolute;
                width: 0;
                transition: var(--main-transition);
            }

            .services .box:hover {
                transform: translateY(-10px);
            }

                .services .box:hover::before {
                    width: 100%;
                }

            .services .box > i {
                margin: 30px auto 20px;
                display: block;
                text-align: center;
                color: #d5d5d5;
            }

            .services .box > h3 {
                text-align: center;
                margin: 20px 0 40px;
                font-size: 25px;
                color: black;
            }

            .services .box .info {
                padding: 15px;
                position: relative;
                background-color: #f9f9f9;
                text-align: right;
            }

                .services .box .info::before {
                    content: "0" counter(services);
                    position: absolute;
                    background-color: var(--main-color);
                    color: white;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 80px;
                    font-size: 30px;
                    font-weight: bold;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    padding-right: 15px;
                }

                .services .box .info::after {
                    content: "";
                    position: absolute;
                    background-color: #d5d5d5;
                    top: 0;
                    left: 62px;
                    width: 50px;
                    height: calc(100% + 0.4px);
                    transform: skewX(-30deg);
                }

                .services .box .info a {
                    color: var(--main-color);
                }
    /* End Services */
/* Start Features */
.features {
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
    position: relative;
    background-color: white;
}

    .features .container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 40px;
    }

    .features .box {
        text-align: center;
        border: 1px solid #ccc;
        padding: 20px 15px;
    }

        .features .box .img-holder {
            position: relative;
            overflow: hidden;
        }

            .features .box .img-holder::before {
                content: "";
                position: absolute;
                left: 0;
                top: -1px;
                width: 100%;
                height: 100%;
            }

            .features .box .img-holder::after {
                content: "";
                position: absolute;
                bottom: 0;
                right: 0;
                border-style: solid;
                border-width: 0px 0px 170px 500px;
                border-color: transparent transparent white transparent;
                transition: var(--main-transition);
            }

            .features .box .img-holder img {
                max-width: 100%;
            }

        .features .box:hover .img-holder::after {
            border-width: 170px 500px 170px 0;
        }

        .features .box h2 {
            position: relative;
            font-size: 26px;
            margin: auto;
            width: fit-content;
        }

            .features .box h2::after {
                content: "";
                position: absolute;
                bottom: -20px;
                left: 15px;
                height: 5px;
                width: calc(100% - 30px);
            }
        .features .box .info {
            font-size: 20px;
            margin: 10px 0 0;
            padding: 25px;
            color: #777;
        }
        .features .box p {
            font-size: 20px;
            color: #777;
        }

        .features .box a {
            display: block;
            border: 3px solid transparent;
            width: fit-content;
            margin: 0 auto;
            font-weight: bold;
            font-size: 14px;
            padding: 8px 20px;
            border-radius: 6px;
            transition: var(--main-transition);
        }

    .features .quality .img-holder::before {
        background-color: rgb(244 64 54 / 60%);
    }

    .features .quality h2::after {
        background-color: #f44036;
    }

    .features .quality a {
        color: #f44036;
        border-color: #f44036;
        background: linear-gradient(to right, #f44036 50%, white 50%);
        background-size: 200% 100%;
        background-position: right bottom;
    }

    .features .time .img-holder::before {
        background-color: rgb(0 150 136 / 60%);
    }

    .features .time h2::after {
        background-color: #009688;
    }

    .features .time a {
        color: #009688;
        border-color: #009688;
        background: linear-gradient(to right, #009688 50%, white 50%);
        background-size: 200% 100%;
        background-position: right bottom;
    }

    .features .passion .img-holder::before {
        background-color: rgb(3 169 244 / 60%);
    }

    .features .passion h2::after {
        background-color: #03a9f4;
    }

    .features .passion a {
        color: #03a9f4;
        border-color: #03a9f4;
        background: linear-gradient(to right, #03a9f4 50%, white 50%);
        background-size: 200% 100%;
        background-position: right bottom;
    }

    .features .box:hover a {
        background-position: left bottom;
        color: white;
    }
/* End Features */
    /* Start Footer */
    .footer {
        background-color: #191919;
        padding: 70px 0 0;
    }

    @media (max-width: 767px) {
        .footer {
            text-align: center;
        }
    }

    .footer .container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer .box h3 {
        color: white;
        font-size: 50px;
        margin: 0 0 20px;
    }

    .footer .box img {
        width: 150px;
        margin: 0 0 20px;
    }

    .footer .box .social {
        display: flex;
    }

    @media (max-width: 767px) {
        .footer .box .social {
            justify-content: center;
        }
    }

    .footer .box .social li {
        margin-right: 10px;
    }

        .footer .box .social li a {
            background-color: #313131;
            color: #b9b9b9;
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            font-size: 20px;
            transition: var(--main-transition);
        }

    .footer .box .social .facebook:hover {
        background-color: #1877f2;
    }

    .footer .box .social .twitter:hover {
        background-color: #1da1f2;
    }

    .footer .box .social .youtube:hover {
        background-color: #ff0000;
    }

    .footer .box .text {
        line-height: 2;
        color: #b9b9b9;
    }

    .footer .box .links li {
        padding: 15px 0;
        transition: var(--main-transition);
    }

        .footer .box .links li:not(:last-child) {
            border-bottom: 1px solid #444;
        }

        .footer .box .links li:hover {
            padding-left: 10px;
        }

            .footer .box .links li:hover a {
                color: white;
            }

        .footer .box .links li a {
            color: #b9b9b9;
            transition: var(--main-transition);
        }

            .footer .box .links li a::before {
                font-family: "Font Awesome 5 Free";
                content: "\F101";
                font-weight: 900;
                margin-right: 10px;
                color: var(--main-color);
            }

    .footer .box .line {
        display: flex;
        align-items: center;
        color: #b9b9b9;
        margin-bottom: 30px;
    }

    @media (max-width: 767px) {
        .footer .box .line {
            flex-direction: column;
        }
    }

    .footer .box .line i {
        font-size: 25px;
        color: var(--main-color);
        margin-right: 10px;
    }

    @media (max-width: 767px) {
        .footer .box .line i {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }

    .footer .box .line .info {
        line-height: 1.7;
        flex: 1;
    }

        .footer .box .line .info span {
            display: block;
        }

    .footer .footer-gallery img {
        width: 78px;
        border: 3px solid white;
        margin: 2px;
    }

    .footer .copyright {
        padding: 25px 0;
        text-align: center;
        color: white;
        margin: 50px 0 0;
        border-top: 1px solid #444;
    }
    /* End Footer */
    /* Start Animation */
    @keyframes up-and-down {
        0%, 100% {
            top: 0;
        }

        50% {
            top: -50px;
        }
    }

    @keyframes bouncing {
        0%, 10%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }

        40%, 60% {
            transform: translateY(-15px);
        }
    }

    @keyframes left-move {
        50% {
            left: 0;
            width: 12px;
            height: 12px;
        }

        100% {
            left: 0;
            border-radius: 0;
            width: 50%;
            height: 100%;
        }
    }

    @keyframes right-move {
        50% {
            right: 0;
            width: 12px;
            height: 12px;
        }

        100% {
            right: 0;
            border-radius: 0;
            width: 50%;
            height: 100%;
        }
    }

    @keyframes moving-arrow {
        100% {
            transform: translateX(10px);
        }
    }

    @keyframes flashing {
        0%, 40% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            width: 200%;
            height: 200%;
        }
    }

    @keyframes change-background {
        0%, 100% {
            background-image: url("../imgs/discount-background1.jpg");
        }

        50% {
            background-image: url("../imgs/discount-background2.jpg");
        }
    }
    /* End Animation */
