@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
body{
    font-family: "Tajawal", sans-serif;
    background-color: #fff;
}
*{
    box-sizing: border-box;
    padding: 0px;
}
html{
    scroll-behavior: smooth;
}
:root{
    --main-color : #063018 ;
    --alt-color : #94c458 ;
    --nav-color : #e4ffba;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    text-align: center;
}
#preloader .loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  -webkit-transform: translate(-50% , -50%);
  -moz-transform: translate(-50% , -50%);
  -ms-transform: translate(-50% , -50%);
  -o-transform: translate(-50% , -50%);
}
.loader::after,
.loader::before {
  content: '';  
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 2s linear infinite;
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
::-webkit-scrollbar{
    background-color: #255946;
    width: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--alt-color);
    width: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
p{
    line-height: 30px;
    text-transform: capitalize;
}
ul{
    padding: 0;
}
li{
    list-style-type: none;
}
a , span , label{
    display: block;
}
a{
    text-decoration: none;
}
img{
    max-width: 100%;
}
input , textarea{
    padding: 5px 10px;
    width: 100%;
    font-size: 20px;
    outline: none;
    box-shadow: none;
}
::placeholder{
    font-size: 16px;
    color: #777;
    text-transform: capitalize;
}
header , section , nav , footer{
    width: 100%;
    height: auto;
}
header , section , nav {
    overflow: hidden;
}
section , footer{
    margin-top: 70px;
    padding: 30px 0px;
}
/* start css to the cursor */
.cursor1 , 
.cursor2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translate(-50% , -50%);
    -webkit-transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
    cursor: pointer;
}
.cursor1{
    background-color: transparent;
    border: 1px solid var(--main-color);
    width: 40px;
    height: 40px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -ms-transition: .2s;
    -o-transition: .2s;
    pointer-events: none;
}
.cursor2{
    width: 10px;
    height: 10px;
    background-color: #1f4e3d;
    border: 1px solid #1f4e3d;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    pointer-events: none;
}
/* start css to the header */
header .header-top{
    padding: 0px 30px;
    display: flex;
    align-items: center;
    background-color: #255946;
    border: 1px solid #255946;
    text-align: center;
    width: 100%;
    height: 45px;
}
header .header-top ul.social{
    width: 25%;
    text-align: center;
    margin-top: 22px;
}
ul.social li{
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 2px 5px;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}
ul.social li a{
    color: var(--alt-color);
}
ul.social li:hover{
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transition: .2s ease-in;
    -webkit-transition: .2s ease-in;
    -moz-transition: .2s ease-in;
    -ms-transition: .2s ease-in;
    -o-transition: .2s ease-in;
}
ul.social li:hover a{
    color: var(--alt-color);
}
header .header-top marquee{
    width: 50%;
    text-align: center;
    color: #fff;
}
header nav{
    background: #E4FFBA;
    background: linear-gradient(138deg, rgba(228, 255, 186, 1) 0%, rgba(148, 196, 88, 1) 50%);
    margin-top: 0px;
    padding: 3px 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header nav .logo{
    width: 20%;
    text-align: center;
}
header nav .logo img{
    width: 80px;
    height: 60px;
}
header nav .menu{
    width: 60%;
    text-align: center;
    margin-top: 20px;
}
header nav .menu li{
    height: 35px;
    line-height: 35px;
    display: inline-block;
    font-size: 18px;
    text-transform: capitalize;
    margin: 2px 18px;
    font-weight: bold;
}
header nav .menu li a{
    color: var(--main-color);
}
header nav .menu li:hover a{
    color: var(--nav-color);
    transition: .1s ease;
    -webkit-transition: .1s ease;
    -moz-transition: .1s ease;
    -ms-transition: .1s ease;
    -o-transition: .1s ease;
}
header nav .last-icons{
    width: 20%;
    text-align: center;
    display: flex;
    align-items: center;
}
header nav .last-icons .serach-icon{
    cursor: pointer;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #1f4e3d;
    border: 1px solid #1f4e3d;
    color: var(--alt-color);
    margin-right: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
header nav .last-icons button{
    width: 140px;
    height: 45px;
    background-color: #ffe400;
    border: 1px solid #ffe400;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
header nav .last-icons button a{
    color: var(--main-color);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}
header nav .last-icons button:hover{
    background-color: transparent;
    border: 1px solid var(--main-color);
}
header nav .last-icons button:hover a{
    color: var(--main-color);
}
header nav .open-mobile-menu{
    display: none;
    margin-right: 30px;
}
header nav .open-mobile-menu i{
    font-size: 28px;
    color: var(--main-color);
    cursor: pointer;
}
@media only screen and (max-width : 992px){
    header nav .open-mobile-menu{
        display: block;
    }
    header nav .menu , 
    header nav .last-icons{
        display: none;
    }
}
@media only screen and (max-width : 768px){
    header .header-top , 
    header nav .last-icons{
        display: none;
    }
}
/* start css to the search-modal */
.search-modal{
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: hidden;
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}
.search-modal form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    -webkit-transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
    display: flex;
    align-items: center;
    width: 560px;
    height: 65px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
}
.search-modal form input{
    border: none;
    width: 85%;
}
.search-modal form button{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    color: var(--main-color);
    width: 15%;
    height: 100%;
    position: relative;
    z-index: 99;
}
.search-modal form button::before{
    position: absolute;
    content: "";
    top: -5%;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
}
.search-modal form button:hover::before{
    height: 110%;
    transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    z-index: -1;
}
.search-modal .close-search{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    color: var(--main-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: absolute;
    left: 47%;
    top: 5%;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}
.search-modal:hover .close-search{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}
@media only screen and (max-width : 768px){
    .search-modal form{
        width: 80%;
        max-width: 100%;
    }
}
/* start css to the sidenav */
.sidenav{
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 5;
}
.sidenav .logo{
    text-align: center;
    margin-top: 20px;
    padding: 10px 0px;
}
.sidenav img{
    width: 100px;
    height: 60px;
    text-align: center;
}
.sidenav .menu{
    margin: 30px 0px;
}
.sidenav .menu ul li{
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0px 20px;
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 15px 0px;
}
.sidenav .menu ul li a{
    color: var(--alt-color);
}
.sidenav .menu ul li:hover{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.sidenav .menu ul li:hover a{
    color: var(--main-color);
}
.sidenav .social{
    margin: 35px 0px;
    padding-left: 20px;
}
.sidenav .close{
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    text-align: center;
    line-height: 50px;
    color: var(--alt-color);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    right: -50px;
    top: 50%;
}
/* start css to the carousel */
.carousel{
   z-index: 2;
}
.carousel.carousel-fade .carousel-item{
    position: relative;
    text-align: center;
    height: 700px;
    background-color: #fff;
}
.carousel.carousel-fade .carousel-item::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #063018;
    background: linear-gradient(178deg, rgba(6, 48, 24, 1) 0%, 
    rgba(148, 196, 88, 1) 84%);
    opacity: .6;
}
.carousel .carousel-item .text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -60%);
    -webkit-transform: translate(-50% , -60%);
    -moz-transform: translate(-50% , -60%);
    -ms-transform: translate(-50% , -60%);
    -o-transform: translate(-50% , -60%);
    color: #fff;
    animation: showfromtop .5s ease-in-out;
    -webkit-animation: showfromtop .5s ease-in-out;
}
.carousel .carousel-item .text h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    color: #fff;
}
.carousel .carousel-item .text span{
    font-size: 25px;
    margin-top: 20px;
    color: #ffe400;
    font-weight: 500;
}
@keyframes showfromtop{
    0%{
        transform: translate(-50% , -20%);
        -webkit-transform: translate(-50% , -20%);
        -moz-transform: translate(-50% , -20%);
        -ms-transform: translate(-50% , -20%);
        -o-transform: translate(-50% , -20%);
        opacity: 0;
}
100%{
    transform: translate(-50% , -60%);
    -webkit-transform: translate(-50% , -60%);
    -moz-transform: translate(-50% , -60%);
    -ms-transform: translate(-50% , -60%);
    -o-transform: translate(-50% , -60%);
    opacity: 1;
}
}
.carousel .carousel-control-next ,
.carousel .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    opacity: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 40%;
    margin: 0px 30px;
}
.carousel:hover .carousel-control-next , 
.carousel:hover .carousel-control-prev{
    opacity: 1;
}
@media only screen and (max-width : 992px){
    .carousel.carousel-fade .carousel-item{
        height: auto;
    }
    .carousel .carousel-item .text span{
        font-size: 15px;
    }
    .carousel .carousel-item .text h2{
        font-size: 30px;
        margin-top: 10px;
        line-height: 50px;
        font-weight: 600;
    }
}
@media only screen and (max-width : 768px){
    .carousel .carousel-item .text span{
        font-size: 13px;
    }
    .carousel .carousel-item .text h2{
        font-size: 20px;
        margin-top: 10px;
        line-height: 40px;
        font-weight: 600;
    }
}
@media only screen and (max-width : 550px){
    .carousel .carousel-item .text{
        display: none;
    }
}
/* start css to the about section */
.about{
    text-align: center;
}
.about span:first-of-type{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0px;
    text-transform: capitalize;
}
.about h2 , 
.features h2 , 
.categories h2 , 
.shop h2 , 
.related h2{
    color: var(--main-color);
    font-size: 40px;
    font-weight: bold;
    line-height: 60px;
    text-transform: capitalize;
}
@media only screen and (max-width : 768px){
    .about h2 , 
    .features h2 , 
    .categories h2 , 
    .shop h2 , 
    .related h2{
        font-size: 25px;
    }
}
.about span:last-of-type{
    font-weight: bold;
    font-size: 16px;
    color: var(--alt-color);
    margin: 25px 0px;
    text-transform: capitalize;
    line-height: 30px;
}
.about p{
    color: #656565;
    font-size: 17px;
}
.btn-grad {
    width: 200px;
    height: 60px;
    line-height: 60px;
    background-image: linear-gradient(to right, var(--main-color) 0%, var(--alt-color) 60%);
    margin: 25px auto;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #ffe400;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 0 20px #eee;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.btn-grad:hover {
    color: var(--main-color);
    background-position: right center; /* change the direction of the change here */
    text-decoration: none;
}
.about img{
    margin-top: 20px;
    max-height: 400px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.about .about-img1 img{
    text-align: left;
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    clip-path: inset(0 0 100% 0);
    -webkit-transition: 1.2s ease-out;
    -khtml-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
    -moz-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
    -ms-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
    -o-transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
    transition: 1.2s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.about .about-img2 img{
    text-align: right;
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    -o-transform: rotate(10deg);
    clip-path: inset(0 0 100% 0);
    transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
    -webkit-transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
    -khtml-transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
    -moz-transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
    -ms-transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
    -o-transition: 1.4s cubic-bezier(0.63, 0.25, 0.25, 1);
}
.about .about-img1 img.show{
    clip-path: inset(0 0 0 0);
}
.about .about-img2 img.show2{
    clip-path: inset(0 0 0 0);
}
@media only screen and (max-width : 992px){
    .about img{
        display: none;
    }
}
/* start css to the features section */
.features , 
.categories , 
.related{
    text-align: center;
}
.features span , 
.categories span , 
.related span.first-arrow{
    color: var(--alt-color);
    font-size: 20px;
    margin: 25px auto;
    height: 30px;
    line-height: 40px;
    text-transform: capitalize;
}
.features span i , 
.categories span i , 
.related span i{
    margin: 0px 15px;
}
.features .cart-box{
    background-color: transparent;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 15px;
    margin-top: 40px;
}
.features .cart-box::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    left: 0;
    background-color: #e8edf1;
    border: 1px solid #e8edf1;
    z-index: -1;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.features .cart-box.first::before , 
.features .cart-box.third::before {
    top: 0;
}
.features .cart-box.second::before , 
.features .cart-box.fourth::before {
    bottom: 0;
}
.features .cart-box:hover::before{
    background-color: var(--alt-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.features .cart-box .inside-cart{
    background-color: #fff;
    border: 1px solid #fff;
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.features .cart-box .inside-cart h2{
    font-size: 20px;
    color: #161616;
    margin: 15px 0px;
}
.features .cart-box .inside-cart p{
    color: #6d6d6d;
    font-size: 15px;
    line-height: 27px;
    margin: 15px 0px;
}
.features .cart-box .inside-cart .icon{
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 6px solid #e8edf1;
    margin: auto;
}
.features .cart-box .inside-cart .icon i{
    color: var(--alt-color);
    line-height: 80px;
    font-size: 26px;
}
.features .cart-box.first .inside-cart .icon , 
.features .cart-box.third .inside-cart .icon{
    margin-bottom: -50px;
}
.features .cart-box.second .inside-cart .icon,
.features .cart-box.fourth .inside-cart .icon{
    margin-top: -50px;
}
.features .cart-box:hover .inside-cart .icon{
    border: 6px solid var(--alt-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
/* start css to the scroll */
.scroll{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    color: #fff;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    position: fixed;
    right: 2%;
    bottom: 5%;
    z-index: 33;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: pointer;
    transform: translateY(-1500px);
    -webkit-transform: translateY(-1500px);
    -moz-transform: translateY(-1500px);
    -ms-transform: translateY(-1500px);
    -o-transform: translateY(-1500px);
    transition: 1s ease-in-out;
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -ms-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
}
.scroll i{
    font-weight: bold;
}
.scroll.show{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
/* start css to the categories section */
.categories {
    background-color: #f0fff0;
    position: relative;
    padding: 100px 0px;
}
.categories::before{
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("../img/service-top-bg-img.svg") center/cover no-repeat;
}
.categories .categ-box{
    position: relative;
    margin-top: 35px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
    text-align: left;
}
.categories .categ-box .categ-img{
    overflow: hidden;
}
.categories .categ-box img{
    width: 100%;
    max-height: 450px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.categories .categ-box .categ-img .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 56, 40 , .5);
    opacity: 0;
}
.categories .categ-box .categ-img .overlay .text{
    padding: 10px;
    position: absolute;
    bottom: 2%;
    left: 2%;
    z-index: 2;
    color: #fff;
    transform: translateY(200px);
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
}
.categories .categ-box .categ-img .overlay .text p{
    font-size: 18px;
}
.categories .categ-box .categ-img .overlay .text a{
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    color: var(--main-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
}
.categories .categ-box h3{
    color: #fff;
    font-size: 24px;
    position: absolute;
    top: 5%;
    left: 5%;
    z-index: 3;
    text-transform: capitalize;
}
.categories .categ-box:hover img{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
}
.categories .categ-box:hover .overlay{
    opacity: 1;
    transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
}
.categories .categ-box:hover .overlay .text{
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
       transition: .6s ease-in-out;
    -webkit-transition: .6s ease-in-out;
    -moz-transition: .6s ease-in-out;
    -ms-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
}
/* start css to the certificates */
.certificates{
    background: #E4FFBA;
    background: linear-gradient(138deg, var(--main-color) 0%, rgba(148, 196, 88, 1) 50%);
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    white-space: nowrap;
}
.certificates .list{
    display: inline-block;
    animation: certimove 12s ease-in-out infinite alternate;
    -webkit-animation: certimove 12s ease-in-out infinite alternate;
}
.certificates .list .list-item{
    display: inline-block;
    text-align: center;
    margin: 5px 30px;
}
.certificates .list .list-item h3{
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
}
@keyframes certimove{
    0%{
        transform: translateX(0%);
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
}
100%{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
}
.certificates:hover .list{
    animation-play-state: paused;
}
/* start css to the shop section */
.shop .sec-title{
    display: flex;
    align-items: center;
    margin: 20px 0px;
    justify-content: space-between;
}
.shop .rotate-circle{
    margin: 20px 0px;
    position: relative;
    width: 120px;
    height: 120px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.shop .rotate-circle .text{
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotatechar 10s linear infinite;
    -webkit-animation: rotatechar 10s linear infinite;
}
.shop .rotate-circle .text span{
    color: var(--main-color);
    transform-origin: 0 60px;
    position: absolute;
    left: 50%;
    font-size: 16px;
}
.shop .rotate-circle .arrow{
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    z-index: 33;
}
.shop .rotate-circle .arrow a{
    display: block;
    z-index: 33;
}
.shop .rotate-circle .arrow i{
    color: var(--alt-color);
    font-size: 25px;
}
@keyframes rotatechar{
    0%{
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
}
}
.item-box{
    margin: 15px;
    background-color: #fff;
    border: 1px solid var(--nav-color);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.item-box .item-img{
    text-align: center;
    overflow: hidden;
}
.item-box .item-text{
    padding: 12px;
    text-align: left;
}
.item-box .item-text a{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    margin: 8px 0px;
    text-transform: capitalize;
}
.item-box .item-text a:hover{
    color: var(--alt-color);
}
.item-box .item-text .details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0px;
}
.item-box .item-text .details span{
    color: #278d45;
    font-size: 18px;
    font-weight: 800;
    margin: 8px 0px;
    display: inline-block;
}
.item-box .item-text .details span:nth-child(2){
    color: #93c6a2;
    text-decoration: line-through;
    margin-left: 8px;
}
.item-box .item-text .details i{
    color: #ffe400;
    font-size: 12px;
}
.item-box:hover .item-img img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.item-box span.top-icons{
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 5;
    width: 60px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.item-box span.top-icons.one{
    background-color: #ffe400;
    border: 1px solid #ffe400;
    color: var(--main-color);
}
.item-box span.top-icons.two{
    background-color: var(--main-color);
    color: #fff;
}
.shop-items .slick-prev, 
.shop-items .slick-next {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    top: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 5;
    opacity: 0;
}
.shop-items .slick-prev::before, 
.shop-items .slick-next::before{
    line-height: 40px;
} 
.shop-items .slick-next, 
.arrivals .slick-next{
    right: 1%;
}
.shop-items .slick-prev, 
.arrivals .slick-prev{
    left: 1%;
}
.shop-items .slick-prev:hover::before, 
.shop-items .slick-next:hover::before {
    color: var(--main-color);
}
.shop-items:hover .slick-prev, 
.shop-items:hover .slick-next {
    opacity: 1;
    transition: .1s ease-in;
    -webkit-transition: .1s ease-in;
    -moz-transition: .1s ease-in;
    -ms-transition: .1s ease-in;
    -o-transition: .1s ease-in;
}
.shop .line{
    height: 1px;
    background-color: var(--nav-color);
    margin-top: 30px;
}
/* start css to the offers section*/
.shop.offers .left , 
.myshop .left{
    display: flex;
    align-items: center;
}
.shop.offers .icon , 
.myshop .icon{
    background-color: #ffe400;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 10px;
}
/* ==================================================== about page =============
===================================== */
/* start css to the banner section */
.banner{
    background: url("../img/banner.webp") center/cover no-repeat fixed;
    width: 100%;
    height: auto;
    overflow: hidden;
    text-align: center;
    margin-top: 0px;
    padding: 0;
}
.banner .overlay{
    width: 100%;
    height: 100%;
    padding: 50px 0px;
    background: #063018;
    background: linear-gradient(178deg, rgba(6, 48, 24, .5) 0%, 
    rgba(148, 196, 88, .5) 84%);
}
.banner h2{
    color: #fff;
    font-size: 60px;
    text-transform: capitalize;
    margin: 15px 0px;
}
.banner li{
    font-size: 22px;
    font-weight: bold;
    margin: 25px 0px;
    color: #fff;
}
.banner li a{
    color: #fff;
    display: inline-block;
    text-transform: capitalize;
    margin: 5px;
}
/* =================================================== about page ============
============================================================== */
/* start css to the choose section */
.choose{
    background-color: #f0fff0;
    padding: 60px 0px;
}
.choose .row{
    margin: 25px 0px;
}
.choose .choose-img , 
.choose .choose-box{
    margin: 30px 0px;
    position: relative;
}
.choose .choose-img{
    overflow: hidden;
}
.choose .choose-img img{
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    max-height: 400px;
    width: 100%;
}
.choose .choose-box h2{
    font-size: 100px;
    font-weight: bold;
    text-transform: capitalize;
    -webkit-text-stroke-color: #e5f2e5;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    position: absolute;
    left: 0;
    top: -16%;
    pointer-events: none;
    opacity: .7;
}
.choose .choose-box h3{
    color: var(--main-color);
    font-size: 35px;
    font-weight: 500;
    margin-top: 25px;
    line-height: 50px;
}
.choose .choose-box p{
    color: #555;
    font-size: 17px;
    font-weight: 400;
    margin-top: 20px;
}
@media only screen and (max-width : 768px){
    .choose .row{
        margin: 0px;
    }
    .choose .choose-box h2{
        display: none;
    }
    .choose .choose-box h3{
        font-size: 25px;
        line-height: 40px;
    }
}
/* ================================================= shop page ==================
====================================== */
/* start css to the shop section */
.myshop .col-lg-9 .row{
    margin: 25px 0px;
}
.myshop .col-lg-9 h3{
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--main-color);
    margin-top: 10px;
}
.myshop select{
    width: 100%;
    height: 60px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--main-color);
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    padding: 5px 10px;
    background-color: #f6f6f6;
    border: 1px solid #f6f6f6;
    cursor: pointer;
}
@media only screen and (max-width : 768px){
    .myshop select{
        margin-top: 20px;
    }
}
.myshop select option{
    height: 40px;
}
.myshop select:hover{
    color: var(--main-color);
    background-color: transparent;
    border: 1px solid var(--main-color);
}
.myshop select:hover option{
    color: var(--main-color);
    padding: 5px;
}
.myshop .side-shop , 
.myshop .popular{
    background-color: #fff;
    border: 1px solid #e8edf1;
    margin-top: 25px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow: hidden;
    margin: 25px 0px;
}
.myshop .side-shop .side-shop-title ,
.myshop .popular .popular-text{
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    height: auto;
    padding: 5px;
    border-radius: 12px 12px 0px 0px;
    -webkit-border-radius: 12px 12px 0px 0px;
    -moz-border-radius: 12px 12px 0px 0px;
    -ms-border-radius: 12px 12px 0px 0px;
    -o-border-radius: 12px 12px 0px 0px;
}
.myshop .side-shop .side-shop-title h2 ,
.myshop .popular .popular-text h2{
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.myshop .side-shop ul{
    padding: 10px 20px;
}
.myshop .side-shop ul li{
    font-size: 18px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-transform: capitalize;
    border-bottom: 1px solid #e8edf1;
    font-family: var(--heading-text);
    font-weight: 600;
    margin: 10px 0px;
    overflow: hidden;
    padding-bottom: 10px;
}
.myshop .side-shop ul li a{
    color: var(--main-color);
    display: flex;
    align-items: center;
    transform: translateX(-19px);
    -webkit-transform: translateX(-19px);
    -moz-transform: translateX(-19px);
    -ms-transform: translateX(-19px);
    -o-transform: translateX(-19px);
}
.myshop .side-shop ul li a i{
    font-size: 25px;
    font-weight: 600;
    margin-top: 2px;
}
.myshop .side-shop ul li a span{
    display: inline-block;
}
.myshop .side-shop ul li:hover a{
    color: var(--alt-color);
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}
.myshop .popular .popular-items{
    padding: 7px;
}
.myshop .popular .popular-item{
    display: flex;
    margin: 5px 0px;
    padding: 10px;
    align-items: start;
    border-bottom: 1px solid #ccc;
}
.myshop .popular .popular-item:last-child{
    border-bottom: none;
}
.myshop .popular .popular-item .img{
    width: 25%;
    height: 80px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    margin-right: 10px;
    overflow: hidden;
}
.myshop .popular .popular-item .img img{
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.myshop .popular .popular-item .text{
    width: 75%;
}
.myshop .popular .popular-item a{
    color: var(--main-color);
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
} 
.myshop .popular .popular-item a:hover{
    color: var(--alt-color);
}
/* ====================================== product details page ============
=============================================================== */
/* start css to the product-details section */
/* start css to the product-details section */
.product-details{
    position: relative;
}
.product-details .product-img{
    width: 100%;
    height: 400px;
    max-height: 400px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    margin-top: 25px;
    overflow: hidden;
    border: 1px solid #eee;
}
.product-details .product-img img{
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
@media only screen and (max-width : 992px){
    .myshop .popular .popular-item .img img{
        height: 100px;
    }
}
.product-details span a{
    text-transform: uppercase;
    font-size: 15px;
    line-height: 26px;
    color: var(--main-color);
    margin-top: 25px;
    font-weight: 400;
}
.product-details h2{
    font-size: 30px;
    line-height: 36px;
    color: var(--main-color);
    margin-top: 25px;
    font-weight: 500;
    text-transform: capitalize;
}
.product-details .rate {
    margin-top: 20px;
    color: #ffbb05;
    font-size: 14px;
}
.product-details li{
    margin-top: 25px;
    font-size: 22px;
    font-weight: 500;
}
.product-details li span{
    display: inline-block;
    color: #278d45;
}
.product-details li del{
    color: #93c6a2;
}
.product-details p{
    color: #555;
    font-size: 17px;
    margin-top: 25px;
    font-family: var(--text-font);
    font-weight: 400;
}
.product-details li.cat-type{
    color: #ffbb05;
    font-size: 22px;
    text-transform: capitalize;
    display: block;
}
.product-details a.btn-grad{
    margin:30px 0px;
}
.product-details li.cat-type span{
    display: inline-block;
    margin-left: 5px;
    color: #656565;
}
.product-details .organic{
    position: absolute;
    top: 5%;
    right: 8%;
    z-index: 9;
    width: 100px;
    height: 100px;
}
/* =================================================================
=============================== Contact page ====================== */
/* start css to the contact section */
.contact .contact-box{
    background-color: #255946;
    border: 1px solid #255946;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    overflow: hidden;
    padding: 25px 20px;
    margin-top: 25px;
    position: relative;
}
.contact .contact-box h2{
    font-size: 130px;
    font-weight: bold;
    text-transform: capitalize;
    -webkit-text-stroke-color: #3d6759;
    -webkit-text-stroke-width: 1px;
    -webkit-text-fill-color: transparent;
    opacity: .7;
    position: absolute;
    top: -2%;
    left: 2%;
    z-index: 1;
    pointer-events: none;
}
.contact .contact-box .title , 
.choose .choose-box .title{
    display: flex;
    align-items: center;
    color: var(--alt-color);
    margin: 15px 0px;
}
.contact .contact-box .title i , 
.choose .choose-box .title i{
    margin-right: 20px;
    font-size: 29px;
    z-index: 3;
}
.contact .contact-box .title span , 
.choose .choose-box .title span{
    font-size: 26px;
    text-transform: capitalize;
    z-index: 3;
}
.contact .contact-box h3{
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    margin-top: 30px;
    z-index: 3;
    word-spacing: 1px;
    text-transform: capitalize;
    line-height: 60px;
}
.contact .contact-box span{
    font-size: 40px;
    color: #fff;
    display: inline-block;
}
.contact .contact-box p{
    color: #fff;
    font-size: 18px;
    margin-top: 25px;
}
.contact .contact-box form input , 
.contact .contact-box form textarea{
    width: 100%;
    background-color: #fff;
    border: 1px solid #fff;
    margin-top: 25px;
    border-radius: 22px;
    -webkit-border-radius: 22px;
    -moz-border-radius: 22px;
    -ms-border-radius: 22px;
    -o-border-radius: 22px;
}
.contact .contact-box form input{
    height: 55px;
}
.contact .contact-box form textarea{
    height: 150px;
    padding-top: 15px;
}
.contact form input::placeholder ,
.contact form textarea::placeholder{
    color: var(--main-color);
    font-weight: 500;
}
.contact .contact-box form input:focus , 
.contact .contact-box form textarea:focus{
    border: 2px solid var(--alt-color);
}
.contact .contact-box form button{
    width: 100%;
    height: 55px;
    background-color: #278d45;
    border: 1px solid #278d45;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 40px 0px 100px 0px;
    z-index: 5;
    position: relative;
}
.contact .contact-box form button:hover{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
    color: var(--main-color);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.contact .contact-box .wave img{
    width: 100%;
    height: 160px;
    position: absolute;
    bottom: -58px;
    left: 0;
    z-index: 1;
}
.contact .contact-img{
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}
.contact .contact-img::before , 
.choose .choose-img::before{
    position: absolute;
    content: "";
    width: 50px;
    height: 300%;
    background-color: rgba(255 , 255 , 255 , .2);
    top: -100%;
    left: -100%;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transition: .8s ease-in-out;
    -webkit-transition: .8s ease-in-out;
    -moz-transition: .8s ease-in-out;
    -ms-transition: .8s ease-in-out;
    -o-transition: .8s ease-in-out;
}
.contact .contact-img:hover::before , 
.choose .choose-img:hover::before{
    left: 150%;
}
.contact .contact-img img{
    width: 100%;
    height: 440px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.contact .contact-items{
    background-color: #f0fff0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-top: 25px;
    padding: 25px;
}
.contact .contact-items .item{
    background-color: #fff;
    border: 1px solid #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    margin: 14px 0px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.contact .contact-items .item .icon{
    margin-right: 35px;
}
.contact .contact-items .item .icon i{
    color: var(--main-color);
    font-size: 27px;
}
.contact .contact-items .item .info span{
    color: #777;
    text-transform: capitalize;
    font-size: 18px;
    display: inline-block;
}
.contact .contact-items .item .info h4{
    color: var(--main-color);
    margin-top: 10px;
    font-size: 17px;
}
.contact .contact-items .item:hover{
    background-color: #255946;
    border: 1px solid #255946;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
.contact .contact-items .item:hover i , 
.contact .contact-items .item:hover span , 
.contact .contact-items .item:hover h4{
    color: #fff;
}
@media only screen and (max-width : 768px){
    .contact .contact-box h2{
        display: none;
    }
    .contact .contact-box h3{
        font-size: 30px;
        line-height: 40px;
    }
    .contact .contact-box span{
        font-size: 22px;
    }
    .contact .contact-img{
        display: none;
    }
    .contact .contact-items span{
        font-size: 16px
    }
    .contact .contact-items h4{
        font-size: 16px;
    }
    .contact-map .map iframe{
        height: 350px !important;
    }
}
/* start css to the contact-map section */
.contact-map .map{
    margin-top: 30px;
}
.contact-map .map iframe{
    width: 100%;
    height: 700px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.contact-map .map:hover iframe{
    filter:saturate(7);
    -webkit-filter:saturate(7);
}
/* =================================================================
=============================== Order page ====================== */
/* start css to the order section */
.order .order-img{
    max-height: 420px;
    background-color: #fff;
    border: 1px solid #93c6a2;
    margin-top: 25px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    text-align: center;
    overflow: hidden;
}
.order h3{
    color: var(--main-color);
    font-size: 34px;
    margin-top: 25px;
    font-weight: bold;
}
@media only screen and (max-width : 768px){
    .order h3{
        font-size: 25px;
    }
}
.order p{
    color: #161616;
    font-size: 17px;
    margin: 15px 0px;
}
.order input , 
.order textarea{
    background-color: #32715b;
    border: 1px solid var(--main-color);
    margin: 15px 0px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    color: #fff;
}
.order input{
    height: 55px;
}
.order textarea{
    height: 120px;
}
.order input::placeholder , 
.order textarea::placeholder{
    color: #ffbb05;
    text-transform: capitalize;
    font-size: 17px;
}
.order form button{
    border: 1px solid var(--main-color);
}
/* =================================================================
=============================== Privacy page ====================== */
/* start css to the privacy section */
.privacy h1 , 
.privacy h2{
    color: var(--alt-color);
    font-size: 22px;
    margin: 15px 0px;
    text-transform: capitalize;
}
.privacy p{
    color: #555;
    font-size: 17px;
    font-weight: 500;
}
.privacy ul li{
    font-size: 17px;
    margin: 8px 0px;
    color: #063018;
    font-weight: 500;
}
/* start css to the footer */
footer{
    background-color: #255946;
    position: relative;
    padding-bottom: 0;
    margin-top: 80px;
}
footer .container .col-lg-3{
    z-index: 3;
}
footer a img{
    width: 120px;
    height: 80px;
    margin-top: 45px;
}
footer p{
    color: #b5c3be;
    font-size: 17px;
    margin-top: 25px;
}
footer .subscribe{
    background-color: #fff;
    border: 1px solid #fff;
    height: 60px;
    display: flex;
    align-items: center;
    margin-top: 25px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
}
footer .subscribe input{
    width: 84%;
    border: none;
    height: 100%;
}
footer .subscribe button{
    background-color: transparent;
    border: 1px solid transparent;
    color: #fff;
    width: 16%;
    height: 100%;
}
footer .subscribe button i{
    color: var(--main-color);
    font-weight: bold;
    font-size: 25px;
}
footer .subscribe button:hover{
    background-color: var(--alt-color);
    border: 1px solid var(--alt-color);
}
footer .footer-social{
    margin-top: 25px;
}
footer .footer-social ul li {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
}
footer .footer-social ul li a{
    color: #fff;
}
footer .footer-social ul li:hover{
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
}
footer .footer-social ul li:hover a{
    color: var(--alt-color);
}
footer h3{
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    margin: 45px 0px;
    font-weight: 600;
}
footer ul{
    margin-top: 25px;
}
footer ul li a{
    color: #b5c3be;
    font-size: 18px;
    margin-top: 12px;
    text-transform: capitalize;
}
footer ul li a i:not(footer .footer-social ul li a i){
    color: var(--alt-color);
    font-size: 12px;
    margin-right: 10px;
}
footer ul li:hover a:not(footer .footer-social ul li:hover a ){
    color: var(--alt-color);
    transform: translateX(5px);
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(5px);
    -ms-transform: translateX(5px);
    -o-transform: translateX(5px);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
}
footer .contact-item{
    margin-top: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed #32715b;
    padding-bottom: 15px;
    color: #fff;
    font-size: 17px;
}
footer .contact-item i{
    color: var(--alt-color);
    margin-right: 15px;
}
footer .contact-item a{
    color: #fff;
}
footer .footer-img1 img , 
footer .footer-img2 img {
    position: absolute;
    z-index: 1;
}
footer .footer-img1 img{
    right: 1%;
    top: 30%;
    width: 600px;
    height: 350px;
}
footer .footer-img2 img{
    left: 1%;
    bottom: 10%;
    width: 250px;
    height: 250px;
}
footer .footer-top-img{
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 30px;
}
footer .footer-bottom{
    background-color: #1f4e3d;
    padding: 20px 0px;
    margin-top: 75px;
    position: relative;
}
footer .footer-bottom .footer-bottom-img{
    position: absolute;
    top: -16px;
    left: 0;
    z-index: 2;
}
footer .footer-bottom span ,
footer .footer-bottom a{
    text-transform: capitalize;
    font-size: 18px;
    margin: 15px 0px;
    color: #fff;
    font-weight: 500;
}
footer .footer-bottom a{
    color: var(--alt-color);
}
@media only screen and (max-width : 992px) {
    footer .footer-top-img{
        top: -14px;
    }
    footer .footer-bottom{
        text-align: center;
    }
}


