/* Start Global Rules */
* {
    -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: 10px;
    --main-padding-bottom: 50px;
    --section-background: #ECECEC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
}

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;
    }
}

/* Meduim */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* End Global Rules */

/* Start Gallery */

.gallery {
    position: relative;
    padding-top: var(--main-padding-top);
    padding-bottom: var(--main-padding-bottom);
}

.gallery .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.gallery .menu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 25px;
}

.gallery .menu-logo img {
    width: 400px;
    height: 317px;
}

@media (max-width: 991px) {
    .gallery .menu-logo img {
        width: 290px;
        height: 230px;
    }
}

.gallery .container-price {
    display: flex;
    justify-content: center;
    align-items: center;
}


.gallery .box {
    padding: 1px;
    background-color: #FFA600;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
                0px 2px 4px 0px rgb(0 0 0 / 12%);
}

.gallery .box-price {
    /* position: relative; */
    display: flex;
    padding: 1px;
    background-color: #FFA600;
}

.gallery .box-price .return {
    /* position: absolute;
    top: -15%;
    left: 50%;
    transform: translate(-50%, -50%); */
    margin-right: 15px;
    font-size: 35px;
    color: white;
    font-weight: bold;
    /* animation: goleft .3s linear infinite; */
}

.gallery .box .image {
    position: relative;
    overflow: hidden;
}

.gallery .box .image h3 {
    font-size: 35px;
    color: white;
}

.gallery .box-price .image h3 {
    font-size: 35px;
    color: white;
}

.gallery .box .image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(255 255 255 / 20%);
    width: 0;
    height: 0;
    opacity: 0;
    z-index: 2;
}

.gallery .box .image:hover:before {
    /* animation: flashing 0.7s; */
}

.gallery .box img {
    max-width: 100%;
    transition: var(--main-transition);
}

.gallery .box .image:hover img {
    /* transform: rotate(5deg) scale(1.1); */
}

/* End Gallery */

/* Start Footer */

.footer {
    /* background-color: #191919; */
    border-top: 1px solid #FFA600;
    padding: 70px 0 0;
}

@media (max-width: 991px) {
    .footer {
        text-align: center;
        margin-top: 20px;
    }
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    justify-content: center;
    align-items: center;
    gap: 30%;
}

.footer .box h3{
    color: white;
    font-size: 33px;
    margin: 0 0 20px;
}

.footer .box p {
    padding-top: 15px;
    color: white;
    font-size: 15px;
    text-align: justify;
    line-height: 1.3;
    margin: 0 0 20px;
}

.footer .box p a {
    font-weight: bold;
    color: #1877f2;
}

.footer .box .social {
    display: flex;
}

@media (max-width: 991px) {
    .footer .container {
        gap: 7%;
    }
    .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 .instagram:hover {
    background-color: #833AB4;
}

.footer .box .social .tiktok:hover {
    background-color: #00f2ea;
}

.footer .box .social .whatsapp:hover {
    background-color: #25D366;
}

.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 {
    content: "\F101";
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
    font-weight: 900;
    color: var(--main-color);
}

.footer .box .line {
    display: flex;
    align-items: center;
    color: #b9b9b9;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .footer .box .line {
        flex-direction: column;
    }
}


.footer .box .line i {
    color: var(--main-color);
    font-size: 25px;
    margin-right: 10px;
}


@media (max-width: 991px) {
    .footer .box .line i {
        margin-bottom: 10px;
    }
}


.footer .box .line .info {
    color: white;
    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 change-backgound {
    0%, 100% {
        background-image: url("../imgs/discount-background1.jpg");
    }
    50% {
        background-image: url("../imgs/discount-background2.jpg");
    }
}

@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 anim {
    0% {
        left: 0;
        height: 100%;
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes goleft {
    0% {
        left: 50%;
    }
    /* 50% {
        left: 40%;
    } */
    100% {
        left: 47%;
    }
}

/* End Animation */