@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

/* global style */
.space-y {
    margin-top: 100px;
}

.rotate-180 {
    transform: rotate(180deg);
}

.sectionTitle {
    font-family: "Montserrat", serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 70px;
    color: #1F1F1F;
    text-align: center;
}

.d-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.position-relative {
    position: relative;
}

.flip-x {
    transform: scaleX(-1);
}

.opacity-0 {
    opacity: 0;
}

.hide {
    display: none;
}

.open {
    display: block;
}

.hero-mt {
    margin-top: 100px;
}

@media only screen and (max-width: 1260px) {
    .sectionTitle {
        font-size: 46px;
        font-weight: 500;
        line-height: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .space-y {
        margin-top: 70px;
    }

    .sectionTitle {
        font-size: 35px;
        line-height: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .space-y {
        margin-top: 50px;
    }

    .sectionTitle {
        font-size: 28px;
    }
}

/* navbar */
.bestSellersBar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 32px;
    background-color: #1F1F1F;
    width: 100%;
}

.bestSellersBar h4 {
    font-family: "Montserrat", serif;
    font-size: 22px;
    font-weight: 500;
    color: #FFFF;
    margin: 9px 0px;
}

.selectors {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.selectors p {
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFF;
}

.countrySelector {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 0px 24px;
    align-items: center;
    cursor: pointer;
}

.flagImg {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.langSelector {
    position: relative;
    margin: 0px 20px;
    z-index: 111;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFF;
}

.langSelectorEn {
    width: 115px;
}

.langSelectorAr {
    width: 85px;
}

.langSelector select {
    appearance: none;
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFF;
    z-index: 22;
    padding: 10px 0px;
}

.langSelector img {
    position: absolute;
    top: 5px;
    cursor: pointer;
    z-index: -1;
}

.langArrowIconEn {
    right: 0px;
}

.langArrowIconAr {
    left: 0px;
}

.langSelector select option {
    background-color: #1F1F1F;
    z-index: 9;
    font-size: 18px;
    font-weight: 500;
    color: #FFFF;
    border: none;
}

.navbar {
    background-color: #FFFF;
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.scrolledNavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    border-bottom: 1px solid #F0F0F0;
}

.navbar ul {
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.navbar ul li {
    font-family: "Montserrat", serif;
    color: #1F1F1F;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.logo {
    width: 165px;
}

.navbar button {
    border: none;
    background-color: #1A1A1A;
    font-family: "Montserrat", serif;
    color: #FFFF;
    font-size: 20px;
    text-align: center;
    border-radius: 40px;
    padding: 20.5px;
    cursor: pointer;
    font-weight: 600;
}

.navbar button:hover {
    background-color: #235B4E;
}

.resNavbar {
    display: none;
    padding: 20px;
    background-color: #FFFF;
}

.resNavbar img {
    cursor: pointer;
}

.menuModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

.resNavbar nav {
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: linear-gradient(#454444, #000000);
    z-index: 9999999999999;
    position: fixed;
    top: 0px;
    bottom: 0px;
    padding-top: 20px;
}

.menuModalEn {
    left: 0px;
    animation: resnav 0.5s forwards;
}

.menuModalAr {
    right: 0px;
    animation: resnavAr 0.5s forwards;
}

.menuModal nav ul {
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.menuModal nav ul li {
    font-family: "Montserrat", serif;
    color: #FFFF;
    font-size: 18px;
    cursor: pointer;
}

.menuModal button {
    border: none;
    background-color: #235B4E;
    font-family: "Montserrat", serif;
    color: #FFFF;
    font-size: 20px;
    text-align: center;
    border-radius: 40px;
    padding: 20.5px;
    cursor: pointer;
    font-weight: 600;
}

.cross {
    cursor: pointer;
    width: 25px;
    align-self: end;
}

@keyframes resnav {
    from {
        opacity: 0;
        transform: translateX(-400px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes resnavAr {
    from {
        opacity: 0;
        transform: translateX(400px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media only screen and (max-width: 1260px) {
    .navbar {
        padding: 20px 30px;
    }

    .navbar ul {
        gap: 30px;
    }

    .navbar ul li {
        font-size: 18px;
    }

    .logo {
        width: 155px;
    }

    .navbar button {
        font-size: 18px;
        border-radius: 35px;
        padding: 18px;
    }
}

@media only screen and (max-width: 1024px) {
    .bestSellersBar h4 {
        font-size: 18px;
        margin: 6px 0px;
    }

    .selectors {
        gap: 26px;
    }

    .selectors p {
        font-size: 15px;
    }

    .countrySelector {
        gap: 5px;
        padding: 0px;
    }

    .flagImg {
        width: 20px;
        height: 20px;
    }

    .langSelector {
        position: relative;
        margin: 0px;
        z-index: 111;
    }

    .langSelectorEn {
        width: 80px;
    }

    .langSelectorAr {
        width: 60px;
    }

    .arrowIcon {
        width: 22px;
    }

    .langSelector img {
        top: 8px;
    }

    .langSelector select,
    .langSelector select option {
        font-size: 15px;
    }

    .navbar {
        padding: 18px 20px;
    }

    .navbar ul {
        gap: 25px;
    }

    .navbar ul li {
        font-size: 15px;
    }

    .logo {
        width: 125px;
    }

    .navbar button {
        font-size: 15px;
        border-radius: 30px;
        padding: 16px;
    }
}

@media only screen and (max-width: 768px) {
    .bestSellersBar {
        padding: 10px 15px;
    }

    .bestSellersBar h4 {
        font-size: 14px;
        margin: 0px;
    }

    .selectors {
        gap: 15px;
    }

    .selectors p {
        font-size: 14px;
    }

    .countrySelector {
        gap: 5px;
        padding: 0px;
    }

    .flagImg {
        width: 15px;
        height: 15px;
    }

    .langSelectorEn {
        width: 75px;
    }

    .langSelectorAr {
        width: 55px;
    }

    .arrowIcon {
        width: 20px;
    }

    .langSelector img {
        top: 5px;
    }

    .langSelector select {
        padding: 7px 0px;
    }

    .langSelector select,
    .langSelector select option {
        font-size: 14px;
    }

    .navbar {
        display: none;
    }

    .resNavbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .hero-mt {
        margin-top: 70px;
    }
}

@media only screen and (max-width: 500px) {
    .bestSellersBar {
        justify-content: end;
    }

    .bestSellersBar h4 {
        display: none;
    }
}


/* hero section */
.hero {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 519px;
    width: 100%;
    padding: 50px 32px;
}

.heroAr {
    background-image: url("../assets/hero-ar.jpg");
}

.heroEn {
    background-image: url("../assets/hero.jpg");
}

.hero div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 40px;
}

.hero h1 {
    font-family: "Montserrat", serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 70px;
    color: #FFFF;
    max-width: 732px;
    text-shadow:  0px 0px 10px #000000;
}

.hero button {
    border: 3px solid #1A1A1A;
    background-color: #1A1A1A;
    font-family: "Montserrat", serif;
    color: #FFFF;
    font-size: 24px;
    text-align: center;
    border-radius: 40px;
    padding: 20.5px;
    cursor: pointer;
    font-weight: 600;
}

.hero button:hover {
    background-color: transparent;
    border: 3px solid #FFFFFF;
}

@media only screen and (max-width: 1260px) {
    .hero {
        background-size: cover;
        background-position: center;
    }

 
}

@media only screen and (max-width: 1024px) {
 
 
}

@media only screen and (max-width: 768px) {
    .hero div {
        gap: 30px;
    }

    .hero h1 {
        font-size: 37px;
        font-weight: 600;
        line-height: 55px;
        max-width: 630px;
    }

    .hero button {
        border: 3px solid #1A1A1A;
        background-color: #1A1A1A;
        font-family: "Montserrat", serif;
        color: #FFFF;
        font-size: 20px;
        text-align: center;
        border-radius: 40px;
        padding: 20.5px;
        cursor: pointer;
        font-weight: 600;
    }
}

@media only screen and (max-width: 500px) {

 

    .hero {
        background-position: center;
        background-repeat: no-repeat;
        height: 400px;
        width: 100%;
        padding: 31px 16px;
    }

    .hero div {
        gap: 30px;
    }

    .hero h1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 50px;
    }

    .hero button {
        border: 2px solid #1A1A1A;
        color: #FFFF;
        font-size: 18px;
        border-radius: 30px;
        padding: 11px 20px;
    }

    .hero button:hover {
        border: 2px solid #FFFFFF;
    }
}


/* slider */
.slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 40.5px;
    margin-top: 40px;
    height: auto;
    position: relative;
    overflow: hidden;
}
.swiperWrapper {
    display: flex;
    align-items: end;
    flex-direction: row;
    width: auto;
    height: auto;
    overflow: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none; 
    margin: 0px 75px;
}
 
.swiperWrapper::-webkit-scrollbar {
    display: none; 
}

.swiperSlide {
    height: auto;
    max-width: 400px;
    min-width: 300px;
    padding: 20px;
    flex-shrink: 0; 
}

.sliderEn div div {
    border-right: 2px solid #F0F0F0;
}

.sliderAr div div {
    border-left: 2px solid #F0F0F0;
}

.swiperSlide h3 {
    font-family: "Montserrat", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: #505050;
    margin: 10px 0px;
}

.swiperSlide p {
    font-family: "Montserrat", serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    color: #1F1F1F;
}

.swiperSlide img {
    width: 100%;
    max-height: 365px;
    height: 365px;
    min-height: 280px;
}

.slideBtn {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    box-shadow: 0px 2.2px 22px #70707023;
    background-color: #FFFF;
    padding: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.slideBtn img {
    width: 100%;
}

.prevBtn {
    left: 0px;
}
.nextBtn {
    right: 0px;
}

.jewelleryImgs {
    display: flex;
    margin-left: 28px;
    margin-right: 28px;
    border-radius: 20px;
    overflow: hidden;
}

.jewelleryImg1 {
    width: 59%;
}

.jewelleryImg2 {
    width: 41%;
}

@media only screen and (max-width: 1300px) {
    .swiperSlide h3 {
        font-family: "Montserrat", serif;
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
        color: #505050;
    }
    
    .swiperSlide p {
        font-family: "Montserrat", serif;
        font-size: 24px;
        font-weight: bold;
        line-height: 32px;
        color: #1F1F1F;
    }

    .swiperSlide img {
        height: auto;
    }
    
}

@media only screen and (max-width: 1200px) {
    .swiperWrapper {
        margin: 0px 50px;
    }
}

@media only screen and (max-width: 1130px) {
    .slider {
        margin: 0px 25px;
        margin-top: 40px;
    }

}

@media only screen and (max-width: 1100px) {
     
    .swiperWrapper{
        margin: 0px;
    }
    .swiperSlide{
        max-width: 300px;
    }

    .slideBtn {
        width: 45px;
        height: 45px;
    }
}

@media only screen and (max-width: 768px) {
    .swiperSlide {
        min-width: 260px;
        padding: 15px;
    }

    .swiperSlide h3,
    .swiperSlide p {
        font-size: 22px;
        line-height: 28px;
    }

    .swiperSlide img {
        min-height: 240px;
    }

    .jewelleryImgs {
        display: flex;
        flex-direction: column;
        margin-left: 28px;
        margin-right: 28px;
        max-width: 500px;
    }

    .jewelleryImg1,
    .jewelleryImg2 {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .swiperSlide {
        min-width: 190px;
        padding: 10px;
    }

    .swiperSlide h3,
    .swiperSlide p {
        font-size: 18px;
        line-height: 22px;
    }

    .swiperSlide img {
        min-height: 180px;
    }

    .slideBtn {
        width: 35px;
        height: 35px;
        padding: 7px;
    }

    .jewelleryImgs {
        margin-left: 16px;
        margin-right: 16px;
    }
}

/* our categories */
.categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin: 0px auto;
    margin-top: 40px;
    max-width: 1384px;
    padding: 0px 24px;
}

.category {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category img {
    width: 90%;
    max-height: 700px;
    border-radius: 30px;
}

.categoryTilte {
    font-family: "Montserrat", serif;
    font-size: 40px;
    font-weight: 500;
    line-height: auto;
    color: #1F1F1F;
}

@media only screen and (max-width: 1260px) {
    .categoryTilte {
        font-size: 35px;
    }
}

@media only screen and (max-width: 1024px) {
    .categoryTilte {
        font-size: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .categoryTilte {
        font-size: 24px;
    }

    .categories {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin: 0px;
        margin-top: 20px;
        padding: 0px 20px;
        overflow: scroll;
        max-width: 100%;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .categories::-webkit-scrollbar {
        display: none;
    }

    .category {
        gap: 15px;
        min-width: 140px;
    }

    .category img {
        min-height: 420px;
        object-fit: cover;
        border-radius: 15px;
    }

}

/* virtual try */
.section-bg {
    background-color: #F8F8F8;
}

.virtualTry {
    padding: 0px 39px;
    padding-top: 70px;
    padding-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 102px;
    background-color: #F8F8F8;
    max-width: 1369px;
}

.virtualTryContent {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.virtualTryContent p {
    max-width: 704px;
    font-family: "Montserrat", serif;
    font-size: 28px;
    line-height: 44px;
    color: #444444;
    margin-top: 24px;
    margin-bottom: 40px;
}

.blackButton {
    padding: 20.5px;
    border: none;
    border-radius: 40px;
    background-color: #1A1A1A;
    text-align: center;
    font-family: "Montserrat", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: auto;
    color: #FFFFFF;
    cursor: pointer;
}

.virtualTryContent button:hover {
    background-color: #235B4E;
}

.virtualTryImgs {
    position: relative;
    z-index: 99;
}

.virtualTryImg {
    width: 100%;
    z-index: 9;
    min-width: 400px;
}

.virtualTryBackImg {
    position: absolute;
    width: 100%;
    top: -20px;
    z-index: -1;
}

.virtualTryBackImgEn {
    left: -24px;
}

.virtualTryBackImgAr {
    right: -24px;
}

.virtualTryImgEn,
.virtualTryImgAr {
    padding: 0px;
}

@media only screen and (max-width: 1260px) {
    .virtualTry {
        padding: 0px 30px;
        padding-top: 50px;
        padding-bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 85px;
    }

    .virtualTryContent p {
        font-size: 22px;
        line-height: 40px;
        margin-top: 20px;
        margin-bottom: 32px;
    }

    .blackButton {
        border-radius: 40px;
        font-size: 20px;
    }

}

@media only screen and (max-width: 1024px) {
    .virtualTry {
        padding: 0px 30px;
        padding-top: 50px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 55px;
    }

    .virtualTryContent p {
        font-size: 22px;
        line-height: 38px;
    }

    .blackButton {
        border-radius: 40px;
        font-size: 20px;
    }

}

@media only screen and (max-width: 768px) {
    .virtualTry {
        padding: 0px 30px;
        padding-top: 40px;
        padding-bottom: 30px;
        gap: 35px;
    }

    .virtualTryContent p {
        font-size: 20px;
    }

    .blackButton {
        border-radius: 40px;
        font-size: 18px;
    }

    .virtualTryImgs {
        margin: 0px 10%;
    }

    .virtualTryImg {
        width: 100%;
        min-width: auto;
    }

}

@media only screen and (max-width: 500px) {
    .virtualTry {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 40px;
        padding-bottom: 20px;
        gap: 20px;
    }

    .virtualTryContent p {
        font-size: 19px;
        line-height: 35px;
        margin-top: 12px;
    }

    .blackButton {
        border-radius: 30px;
        padding: 11px 20px;
    }


}

/* coming soon */
.comingSoon {
    background-image: url("../assets/coming-soon-bg.jpg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 100%;
    padding: 36.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comingSoon h2 {
    font-family: "Montserrat", serif;
    font-size: 40px;
    font-weight: 500;
    line-height: auto;
    color: #FFFFFF;
    margin-bottom: 32px;

}

.comingSoon p {
    font-family: "Montserrat", serif;
    font-size: 18px;
    font-weight: 300;
    line-height: auto;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.comingSoon b {
    font-family: "Montserrat", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: auto;
    color: #FFFFFF;
    margin-bottom: 32px;
    text-align: center;
}

@media only screen and (max-width: 1024px) {
    .comingSoon h2 {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .comingSoon p {
        font-size: 16px;
    }

    .comingSoon b {
        font-size: 20px;
        margin-bottom: 28px;
    }
}

@media only screen and (max-width: 768px) {
    .comingSoon {
        padding: 32px 20px;
    }

    .comingSoon h2 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .comingSoon p {
        font-size: 14px;
    }

    .comingSoon b {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* store */
.store div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.store div img {
    width: 70px;
    height: 70px;
}

.storeImg{
    width: 100%;
}

@media only screen and (max-width: 1260px) {
    .store div {
        margin-bottom: 30px;
    }

    .store div img {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (max-width: 768px) {
    .store div {
        gap: 13px;
        margin-bottom: 20px;
    }

    .store div img {
        width: 50px;
        height: 50px;
    }
}

@media only screen and (max-width: 500px) {
    .store div {
        gap: 10px;
        margin-bottom: 10px;
    }

    .store div img {
        width: 45px;
        height: 45px;
    }
}

/* benifits */
.benifits {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    margin-top: 40px;
    max-width: 1376px;
    padding: 0px 50px;
}

.benifit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.benifit h4 {
    font-family: "Montserrat", serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    color: #505050;
    text-align: center;
}

@media only screen and (max-width: 1260px) {
    .benifits {
        margin-top: 35px;
        padding: 0px 40px;
    }

    .benifitMidImg {
        width: 70px;
    }

    .benifitImgs {
        width: 50px;
    }

    .benifit h4 {
        font-size: 26px;
        line-height: 36px;
    }
}

@media only screen and (max-width: 1024px) {
    .benifits {
        margin-top: 35px;
        padding: 0px 40px;
    }

    .benifit {
        gap: 12px;
    }

    .benifitMidImg {
        width: 55px;
    }

    .benifitImgs {
        width: 40px;
    }

    .benifit h4 {
        font-size: 20px;
        line-height: 26px;
    }
}

@media only screen and (max-width: 768px) {
    .benifits {
        margin-top: 30px;
        padding: 0px 20px;
        gap: 8px;
    }
}

@media only screen and (max-width: 500px) {
    .benifits {
        margin-top: 20px;
        padding: 0px 10px;
        gap: 8px;
    }

    .benifit {
        gap: 8px;
    }

    .benifitMidImg {
        width: 43px;
    }

    .benifitImgs {
        width: 33px;
    }
}

/* footer */
.footer {
    margin-top: 50px;
    padding-top: 50px;
    padding-left: 57px;
    padding-right: 57px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    border-top: 1px solid #DDDD;
}

.footerLogo {
    max-width: 177px;
}

.footerContent {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
}

.footerColumn {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footerColumn h6 {
    font-family: "Montserrat", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: auto;
    color: #1F1F1F;
}

.footerColumn p {
    font-family: "Montserrat", serif;
    font-size: 18px;
    font-weight: 500;
    line-height: auto;
    color: #5B5B5B;
}

.stayUbdate {
    max-width: 358px;
}

.footerEmail {
    width: 100%;
    max-width: 360px;
    padding: 24px 20px;
    border: 1px solid #DDDD;
    border-radius: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 8px 24px #2E2E2E10;
}

.footerEmail input {
    border: none;
    outline-color: invert;
    height: 30px;
    width: 100%;
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 18px;
    color: #898989;
}

.footerEmail input:focus {
    outline: none;
}

.footerEmail input::placeholder {
    font-family: "Montserrat", serif;
    font-size: 16px;
    line-height: 18px;
    color: #898989;
}

.copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 34px;
    border-top: 1px solid #DDDD;
}

.copyright p,
.copyright b {
    font-family: "Montserrat", serif;
    font-size: 18px;
    line-height: 20px;
    color: #5B5B5B;
    font-weight: 400;
}

.payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright img {
    max-width: 52px;
}

.subscribeMob {
    display: none;
}

.paymentLogos {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

@media only screen and (max-width: 1260px) {
    .copyright p {
        font-size: 16px;
        line-height: 18px;
    }

}

@media only screen and (max-width: 1024px) {
    .footer {
        padding-top: 40px;
        padding-left: 37px;
        padding-right: 37px;
    }

    .copyright p {
        font-size: 14px;
        line-height: 18px;
    }

    .payment {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

}

@media only screen and (max-width: 768px) {
    .copyright {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}

@media only screen and (max-width: 500px) {
    .footer {
        margin-top: 40px;
        padding-top: 16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 20px;
        gap: 24px;
    }

    .footerLogo {
        max-width: 140px;
        margin: 0px auto;
    }

    .footerContent {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
    }

    .footerColumn {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .footerColumn h6 {
        margin-top: 10px;
    }

    .subscribe {
        display: none;
    }

    .subscribeMob {
        display: block;
        width: 100%;
    }

    .footerEmail {
        padding: 10px 20px;
        margin-top: 22px;
        max-width: 400px;
    }

}

/* animation */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translatey(-100px);
    }

    to {
        opacity: 1;
        transform: translatey(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-animation {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slideAnimation {
    from {
        transform: translatey(-30px) translateX(-30px);
    }

    to {
        transform: translatey(0) translateX(0);
    }
}

.animateSlide {
    animation: slideAnimation 1.5s forwards;
}

#store.animate,
#slider.animate {
    animation: fadeInUp 1.5s forwards;
}

#sectionDown.animate,
#comingSoon.animate,
#benifitTitle.animate,
#categoriesTitle.animate,
#sliderTitle.animate {
    animation: fadeInDown 1.5s forwards;
}

#heroTitleEn.animate,
#virtualSectionLeft.animate,
#benifitsEn.animate,
#copyrightSectionLeft.animate {
    animation: fadeInLeft 1.5s forwards;
}

#heroTitleAr.animate,
#virtualSectionRight.animate,
#benifitsAr.animate,
#copyrightSectionRight.animate {
    animation: fadeInRight 1.5s forwards;
}

#category-1.animate {
    animation: fadeInDown 1.5s forwards;
}

#category-2.animate {
    animation: fadeInDown 1.5s forwards;
    animation-delay: 0.3s;
}

#category-3.animate {
    animation: fadeInDown 1.5s forwards;
}

#category-4.animate {
    animation: fadeInDown 1.5s forwards;
    animation-delay: 0.3s;
}

#benifit-1.animate {
    animation: fadeInDown 1.5s forwards;
}

#benifit-2.animate {
    animation: fadeInDown 1.5s forwards;
    animation-delay: 0.3s;
}

#benifit-3.animate {
    animation: fadeInDown 1.5s forwards;
    animation-delay: 0.6s;
}

#footerColunm-0.animate,
#footerColunm-5.animate {
    animation: fadeInDown 1s forwards;
}

#footerColunm-1.animate {
    animation: fadeInDown 1s forwards;
    animation-delay: 0.2s;
}

#footerColunm-2.animate {
    animation: fadeInDown 1s forwards;
    animation-delay: 0.4s;
}

#footerColunm-3.animate {
    animation: fadeInDown 1s forwards;
    animation-delay: 0.6s;
}

#footerColunm-4.animate {
    animation: fadeInDown 1s forwards;
    animation-delay: 0.8s;
}