/**
 * Created by Maatify.dev
 * User: Maatify.dev
 * Date: 2023-08-31
 * Time: 15:15 PM
 * https://www.Maatify.dev
 */
/* footer */
.footer {
    background: linear-gradient(to bottom right, #000 75%, #8707ff 120%);
    padding: 40px 0;
    border-top: 1px solid #333;
    /*margin-top: 100px;*/
}

.footer .logo img {
    width: 100px;
    margin-top: -20px;
}

.footer .footer-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #e0e0e0;
}

.footer .footer-card ul {
    list-style: none;
    padding: 0;
}

.footer .footer-card ul li {
    margin-bottom: 10px;
}

.footer .footer-card ul li a {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 16px;
}

.footer .footer-card ul li a:hover {
    color: #8707ff;
}

.footer .icons {
    display: flex;
    justify-content: flex-end;
    padding: 0 15px;
}

.footer .icons a {
    margin: 0 10px;
    text-decoration: none;
    color: #c0c0c0;
    font-size: 20px;
}

.footer .icons i {
    font-size: 15px;
}

.footer .sign-up .ep-btn-default {
    border-radius: 12px;
    padding: 14px 29px;
    font-size: 13px;
}

.footer .bottom-footer {
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 0 10px 0 10px;
    margin: 15px 0 0 0;
}

.footer .bottom-footer .text {
    font-size: 15px;
    color: #b6b6b6;
    text-align: left;
    flex: 1;
    margin-top: 20px;
}

/*.footer .bottom-footer .icons {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    flex: 1;*/
/*}*/

.footer .icons i {
    font-size: 20px;
}

.footer .card-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 25px;
}

.footer .card-bottom .privacy-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    font-size: 12px;
}

.footer .card-bottom .privacy-card a {
    margin: 0 50px;
    text-decoration: none;
    color: #b6b6b6;
}

/* footer */
/* card special offer */
.card-special-offer{
    margin-top: 100px;
    background-color: #000;
}
.card-special-offer .card-special-offer-content {
    /*background-color: #000;*/
    padding: 30px 30px 0 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
}

.card-special-offer .card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*max-width: 60%;*/
    /*margin-left: -30px;*/
}
.card-special-offer .card-content .card-text {
    margin-bottom: 20px;
}
.card-special-offer .card-content .card-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
    font-style: italic;
}
.card-special-offer .card-content .card-text p {
    font-size: 15px;
}
.card-special-offer .card-content .card-btn {
    display: flex;
    gap: 60px;
    margin-bottom: 15px;
}
.card-special-offer .card-content .card-btn .btn-left {
    position: relative;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(to right, #7f00ff, #7f00ff, #bdff00, #bdff00);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.card-special-offer .card-content .card-btn .btn-right {
    background: none;
    border: none;
    color: var(--second-color);
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.card-special-offer .card-content .card-btn .btn-right i {
    transition: transform 0.3s;
}
.card-special-offer .card-content .card-btn .btn-right:hover i {
    transform: translateX(5px);
}
.card-special-offer .card-images {
    display: flex;
    gap: 5px;
    margin-top: auto;
    margin-left: 210px;
}
.card-special-offer .card-images img {
    width: 130px;
    height: auto;
    margin-top: auto;
}
.card-special-offer .card-images .img-center {
    width: 150px;
}
/* card special offer */

/* partners */

.carousel-gallery {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 140px;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    height: 250px;
    margin: 0 auto;
    max-width: 100%;
    align-items: center;
}

.carousel-item-payment {
    position: absolute;
    border-radius: 10px;
    background-size: contain;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
}

.carousel-item-payment:hover {
    transform: scale(1.05);
}

.carousel-item-left-1,
.carousel-item-left,
.carousel-item-left-2,
.carousel-item-right-2,
.carousel-item-right,
.carousel-item-right-1 {
    width: 237px;
    height: 143px;
    transform: translateX(-50%);
    z-index: 0;
}

.carousel-item-left-1 {
    left: 0;
}

.carousel-item-left {
    left: 16%;
}

.carousel-item-left-2 {
    left: 32%;
}

.carousel-item-center {
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 2;
    width: 270px;
    height: 165px;
    border-radius:10px;
}

.carousel-item-right-2 {
    left: 68%;
}

.carousel-item-right {
    left: 84%;
}

.carousel-item-right-1 {
    left: 100%;
}

.carousel-item-payment:not(.carousel-item-center):not(.carousel-item-left):not(.carousel-item-right):not(.carousel-item-left-1):not(.carousel-item-right-1):not(.carousel-item-left-2):not(.carousel-item-right-2) {
    display: none;
    left: 100%;
}

@keyframes slide-right {
    0% {
        opacity: 0;
        transform: translateX(30px) translateY(-50%);
    }

    100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes slide-left {
    0% {
        opacity: 0;
        transform: translateX(-130px) translateY(-50%);
    }

    100% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(-50%);
    }
}

.image-name {
    font-family: 'Tajawal', sans-serif;
    font-size: 25px;
    color: white;
    margin-top: 10px;
    opacity: 0;

}

@keyframes slide-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-down {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-button {
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 125%;
    transform: translateY(-50%);
}

.nav-button-prev {
    left: 30%;
}

.nav-button-next {
    right: 30%;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.nav-button i {
    color: #000;
}
/* partners */
