* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/********************************************
Nav
********************************************/

nav {
    height: 75px;
    background-color: #EEE;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}

nav .nav-img {
    width: 40%;
    text-align: right;
    position: relative;
}

nav .nav-link, nav .nav-link-2 {
    width: 15%;
    text-align: right;
}

nav .nav-link a, nav .nav-link-2 a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: .2s;
}

nav .nav-link a:hover, nav .nav-link-2 a:hover {
    color: black;
    text-decoration: none;
    font-weight: 600;
}

nav .active a {
    color: black;
    font-weight: 600;
}

nav .nav-img i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #444;
    font-size: 20px;
    cursor: pointer;
}

nav .nav-img i:hover {
    color: black;
}

nav .links {
    max-height: 0;
    transition: .65s;
    overflow: hidden;
}

@media (max-width:750px) {
    nav {
        padding: 0 5%;
    }

    nav .nav-img {
        width: 30%;
    }

    nav .nav-link {
        width: 17.5%;
    }
}

@media (max-width:750px) {
    nav {
        display: block;
        height: auto;
    }

    nav .nav-img {
        text-align: right;
        width: 100%;
    }

    nav .nav-link {
        display: none;
    }

    nav .nav-link-2 {
        text-align: center;
        width: 50%;
        float: right;
        padding: 3px 0;
    }

    nav .nav-img i {
        display: inline-block;
    }
}

/***************************************
Header
***************************************/

header .swiper {
    width: 100%;
    height: 100%;
    direction: ltr;
}

header .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: calc(100vh - 75px);
    width: 100%;
    background-size: cover;
    background-position: center;
}

header .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .swiper-pagination {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .3), rgba(0, 0, 0, .05));
    bottom: 0;
    color: white;
}

header .swiper-button-next, header .swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 3px;
}

header .swiper-button-next:after, header .swiper-button-prev:after {
    font-size: 24px;
}

@media (max-width: 1100px) {
    header .swiper-slide {
        height: calc(75vh - 75px);
    }
}

@media (max-width: 700px) {
    header .swiper-slide {
        height: calc(60vh - 75px);
    }

    header .swiper-button-next:after, header .swiper-button-prev:after {
        font-size: 20px;
    }
}

@media (max-width: 500px) {
    header .swiper-slide {
        height: calc(40vh - 75px);
    }
}

/***************************************
Features
***************************************/

.features {
    background-color: #EEE;
    padding: 15px 15px 25px 15px;
    border: 1px solid #DDD;
}

.features h3 {
    font-size: 24px;
    color: #222;
    text-align: center;
    padding: 10px;
    font-weight: 700;
}

.features p {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-align: right;
}

.features p i {
    margin: 0 7px;
    font-size: 16px;
    color: #444;
}

/***************************************
Products
***************************************/

.products .product {
    text-align: center;
    border: 1px solid #DDD;
    padding: 15px 15px 25px 15px;
    background-color: #EEE;
}

.products .product h2 {
    text-align: center;
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 7px 0;
}

.products .product .pic {
    position: relative;
    width: 200px;
    margin: 0 auto;
}

.products .product .pic span {
    position: absolute;
    right: 55%;
    top: 55%;
    background-color: red;
    font-size: 14px;
    padding: 5px 10px;
    color: white;
    font-weight: 600;
    transform: translate(-50%);
}

.products .product a {
    padding: 3px 20px;
    text-decoration: none;
    color: white;
    border-radius: 2px;
    background-color: rgb(233, 188, 39);
}

.products .product a i:first-of-type {
    font-size: 14px;
    margin: 0 10px;
    position: relative;
    left: 0;
    animation: CTA 1s infinite ease-out;
}

.products .product a i:last-of-type {
    font-size: 14px;
    margin: 0 10px;
    position: relative;
    right: 0;
    animation: CTA2 1s infinite ease-out;
}

@keyframes CTA {
    0% {
        left: 0px;
    }

    50% {
        left: -7px;
    }

    100% {
        left: 0;
    }
}

@keyframes CTA2 {
    0% {
        right: 0px;
    }

    50% {
        right: -7px;
    }

    100% {
        right: 0;
    }
}

.products .product a:hover {
    color: rgb(233, 188, 39);
    background-color: #fff;
}

/*********************************
Footer
*********************************/

footer {
    background-color: #EEE;
    padding: 20px 0 0 0;
}

footer .links {
    text-align: right;
}

footer .links h4 {
    font-size: 20px;
    color: #333;
    text-align: center;
    margin-bottom: 15px;
}

footer .links a, footer .links span {
    text-align: center;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    direction: rtl;
    display: block;
}

footer .links span label {
    margin: 0 5px;
}

footer .links span a {
    display: inline-block;
}

footer .bottom-footer {
    background-color: #444;
    color: white;
    margin: 20px 0 0 0;
    padding: 5px 7px;
}

footer .bottom-footer span {
    font-size: 14px;
}

footer .bottom-footer a {
    margin: 0 5px;
    text-decoration: none;
    color: #EEE;
    font-size: 16px;
    transition: .2s;
}

footer .links a {
    transition: .2s;
}

footer .links a:hover {
    color: #09C;
}

footer .bottom-footer .facebook:hover {
    color: #4267B2;
}

footer .bottom-footer .instagram:hover {
    color: #8a3ab9;
}

footer .bottom-footer .youtube:hover {
    color: #FF0000;
}

@media (max-width: 768px) {
    .bottom-footer .col-12{
        text-align: center !important;
    }
}

/*****************************************
Shipping
*****************************************/

.shipping{
    min-height: 375px;
}

.shipping h1{
    direction: rtl;
    text-align: right;
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin: 0 0 15px 0;
}

.shipping p{
    text-align: right;
    direction: rtl;
    margin: 5px 0;
    font-size: 16;
    font-weight: 500;
    color: #333;
}

.shipping p i{
    margin: 0 5px;
    color: #444;
    font-size: 14px;

}