*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
}

:root{
  --primary : #0D6B29;
  --second : #005963;
  --third : #BDECEE;
  --fourth : #DBE4E4;
  --fifth : #F1F1F1;
}

body{
background: white;
overflow-x: hidden;
-ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;
}

body::-webkit-scrollbar{
  display: none;
}


.btn{
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 300;
  margin: 0 10px;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
}

.primary-btn{
  background-color: var(--primary);
  color: var(--third);
  transition: .5s;
}

.primary-btn:hover{
  background-color: var(--fourth);
  color: var(--primary);
}

.secondary-btn{
  background-color: var(--third);
  color: var(--primary);
  transition: .5s;
}

.secondary-btn:hover{
  background-color: var(--second);
  color: var(--third);
}



.main-outer{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.main-inner{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}





/*--------------------- HEADER ------------------------ */

nav{
  width: 100vw;
  height: 100px;
  border: none;
  background-color: white;
}

nav .header{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

nav .flex-header{
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  position: fixed;
  background-color: var(--primary);
  animation:fade-in .5s;
  opacity: 1;
  z-index: 999999;
}

@keyframes fade-in {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

nav .mobile-header{
  display: none;
}

nav .header .header-inner{
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

nav .arabic .header-inner{
  flex-direction: row-reverse;
}


nav .header .header-inner .header-logo{
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
nav .header .header-inner .header-logo h3{
  color: var(--primary);
  font-size: 22px;
  font-weight: bold;
  padding-left: 10px;
}

nav .flex-header .header-inner .header-logo h3{
  color: white;
 
}
nav .arabic .header-inner .header-logo{
  width: 40%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;
}

nav .arabic .header-inner .header-logo h3{
  padding-left: 0;
  padding-right: 10px;
  font-size: 25px;
}

nav .header .header-inner .header-logo img{
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  object-fit: contain;
}

nav .header .header-inner .header-menu{
  width: 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

nav .header .header-inner .header-menu ul{
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}

nav .arabic .header-inner .header-menu ul{
  flex-direction: row-reverse;
  justify-content: flex-end;
}

nav .header .header-inner .header-menu ul a{
  text-decoration: none;
  padding: 20px;
  text-align: center;
  color: var(--primary);
  cursor: pointer;
  transition: .5s;
}

nav .flex-header .header-inner .header-menu ul a{
  color: var(--fifth);

}


nav .header .header-inner .header-menu ul a:hover{
  color: var(--second);
}

nav .flex-header .header-inner .header-menu ul a:hover{
  color: var(--third);
}

nav .header .header-inner .header-menu ul li{
  width: 100%;
  font-size: 14px;
}


nav .header .header-inner .header-search{
  width: 5%;
  transition: .5s;
}

nav .arabic .header-inner .header-search{
display: flex;
flex-direction: column;
align-items: flex-end;
}

nav .header .header-inner .language{
  position: absolute;
  right: 40px;
  color: white;
  background-color: var(--primary);
  padding: 5px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: .5s;
}

nav .arabic .header-inner .language{
  right: auto;
  left: 40px;
}

nav .header .header-inner .language:hover{
  transform: scale(1.05);
}

nav .header .header-inner .language a{
  text-decoration: none;
  color: white;
}

nav .header .header-inner .header-search:hover{
  transform: scale(1.05);
}

nav .header .header-inner .header-search img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  cursor: pointer;
  filter: contrast(175%) brightness(3%);
}

nav .header .header-inner .header-mobile-menu{
  display: none;
}



.search-window{
  width: 100% ;
  height: 100% ;
  z-index: 99999999;
  background-color: #064e1cf9;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  transform: scale(0);
}

.search-window .close-btn{
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: fixed;
  right: 1.5%;
  top: 1.5%;
  cursor: pointer;
  background-color: rgb(147, 194, 174);
  border-radius: 50%;

}
.search-window-show{
  animation: scale-in .25s;
  transform: scale(1);
}

.search-window-inner{
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.arabic .search-window-inner
{
  width: 80%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.search-window-inner input{
  width: 80%;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid white;
  color: white;
  font-size: 20px;
  padding: 10px;
}

.arabic .search-window-inner input{
  text-align: right;
}

.search-window-inner input:focus{
  outline: none;
}

.search-window-inner button{
  border: none;
  background-color: transparent;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
}


@media only screen and (max-width: 1280px) {
  nav .header .header-inner{
      width: 90%;
      justify-content: space-between;
  }

  nav .header .header-inner .header-logo{
      width: 90%;
  }
  nav .header .header-inner .header-menu{
      display: none;
  }

  nav .header .header-inner .show-header-menu{
      position: fixed;
      top: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: var(--primary);
      height: 100vh;
      width: 250px;
      z-index: 9999999999;
  }

  nav .arabic .header-inner .show-header-menu{
    left: 0;
  }

  nav .header .header-inner .show-header-menu ul{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 12px;
  }

  nav .header .header-inner .show-header-menu ul a{
      padding: 10px;
      color: white;
  }

  nav .header .header-inner .header-search{
      width: 30px;
      margin: 0 5px;
      z-index: 999999999999;
  }

  nav .header .header-inner .header-mobile-menu{
      display: flex;
      z-index: 999999999999;
      filter: contrast(175%) brightness(3%);
  }

  
nav .header .header-inner .language{
  right: 180px;
}

nav .arabic .header-inner .language{
  right: auto;
  left: 180px;
}
}

@media only screen and (max-width: 900px) {
  nav .header .header-inner .language{
    right: 120px;
  }

  nav .header .header-inner .header-logo h3{
    font-size: 14px;
    width: 50%;
    line-height: 16px;
  }

  nav .arabic .header-inner .header-logo h3{
    font-size: 14px;
    width: 50%;
    text-align: right;
    line-height: 16px;
  }

  nav .arabic .header-inner .language{
    right: auto;
    left: 120px;
  }
}

/*--------------------- END HEADER ------------------------ */

/*--------------- COMING SOON ----------------- */

.coming-soon{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-image: url('../asset/img/home/nehad-agronomy-home-carousel.jpg') ;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.coming-soon .coming-soon-inner{
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

}

.coming-soon .coming-soon-inner h3{
  font-size: 22px;
  color: var(--primary);
  line-height: 22px;
  font-weight: 500;
}

.coming-soon .coming-soon-inner h2{
  font-size: 60px;
  width: 60%;
  color: var(--primary);
  line-height: 60px;
}

.coming-soon .coming-soon-inner p{
  font-size: 40px;
  line-height: 60px;
  font-weight: 200;
}

@media only screen and (max-width: 900px) {
  .coming-soon{
    background-image: linear-gradient(rgba(239, 216, 166, 0.9),rgba(239, 216, 166, 0.95)), url('../asset/img/home/nehad-agronomy-home-carousel.jpg') ;
    background-position: center;
  }
  
  .coming-soon .coming-soon-inner{
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
  }
  
  .coming-soon .coming-soon-inner h3{
    font-size: 14px;
    line-height: 14px;
    text-align: center;
  }
  
  .coming-soon .coming-soon-inner h2{
    font-size: 30px;
    width: 100%;
    line-height: 30px;
    text-align: center;
  }
  
  .coming-soon .coming-soon-inner p{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
}
/*--------------- END COMING SOON ----------------- */

/*--------------- CAROUSEL ----------------- */


.carousel{
  width: 100%;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: white;
}
.arabic{
  align-items: flex-end;
}

.carousel-inner{
  width: 96%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 250px 250px 0;
  overflow: hidden;
}

.arabic .carousel-inner{
  border-radius: 250px 0 0 250px;
}

.carousel-inner .carousel-item{
  width: 100%;
  height: 800px;
  transform: translateX(100vw);
  opacity: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 0;
}

.carousel-inner .carousel-active{
  animation: slide-in .5s;
  transform: translateX(0);
  opacity: 1;
  transition: .5s;
  position: relative;
}

.carousel-inner .carousel-hide{
  animation: slide-out 3s;
  transform: translateX(100vw);
  opacity: 0;
  transition: .5s;
}


.carousel-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(82, 103, 73), rgb(164, 168, 162));
  mix-blend-mode: multiply;
}

@keyframes slide-in {
  0%{
    transform: translateX(100vw);
    opacity: 0;
  }
  100%{
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-out {
  0%{
    transform: translateX(0);
    opacity: 1;
  }
  100%{
    transform: translateX(100vw);
    opacity: 0;
  }
}


.carousel-inner .carousel-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arabic .carousel-inner .carousel-item img{
  transform: scaleX(-1);

}

.carousel-contents{
  position: absolute;
  top: 0;
  z-index: 1;
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 999999;
}

.arabic .carousel-contents{
  width: 80%;
  align-items: flex-end;
}

.content-right{
  align-items: flex-end;
}

.carousel-contents h3{
  width: 60%;
  font-size: 20px;
  line-height: 20px;
  color: var(--primary);
}



.carousel-contents p{
  width: 50%;
  font-size: 14px;
  margin-top: 10px;
  color: var(--primary);
}

.arabic .carousel-contents h3,.arabic .carousel-contents p{
  text-align: right;
}

.carousel-contents a{
  margin: 0;
  margin-top: 10px;
}


@media only screen and (max-width: 768px){

  .carousel-inner{
    width: 98%;
    height: 400px;
    border-radius: 0 100px 100px 0;
  }

  

  .carousel-contents h3{
    width: 100%;
    font-size: 25px;
    line-height: 26px;
  }
  
  .carousel-contents p{
    width: 60%;
    font-size: 12px;
  }
  
}


/*--------------- END CAROUSEL ----------------- */




/*--------------- SECTION ----------------- */


.section{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 50px 0;
  position: relative;
}

.section .backgroundBg{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}



.section .backgroundBg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arabic .backgroundBg img{
  transform: scaleX(-1);
}

.section-inner{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}



.section-inner .section-heading{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.section-inner .section-heading h3{
  font-size: 40px;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 10px;
  color: var(--primary);
  text-align: center;
}


.section-inner .section-heading .quote{
  font-size: 35px;
  color: var(--primary);
  font-weight: 400;
  opacity: .3;
  position: relative;
  padding: 0 10px;
  text-align: center;
}

.section-inner .section-heading .quote::before{
  content: '"';
  font-size: 90px;
  position: absolute;
  line-height:60px;
  top: 0;
  left: -30px;
}

.section-inner .section-heading .quote::after{
  content: '"';
  font-size: 90px;
  position: absolute;
  line-height:60px;
  top: 0;
  right: -30px;
}

.section-inner .section-heading p{
  font-size: 14px;
  line-height: 14px;
  color: var(--primary);
  text-align: center;
}


.section-content{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.about-us-section-content{
  padding: 30px 0;
}

.about-us-section-content p{
text-align: justify;

}

.arabic .about-us-section-content p{
  text-align: right !important;
}
.section-content .content-row{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
 
}



.section-content .section-content-item img{
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 20px;
  transition: .5s;
}

.section-content .section-content-item img:hover{
  transform: scale(1.03);
}

.section-content .content-row img{
  width: 50%;
  padding: 5px;
  object-fit: cover;
}

.section-content .content-row img:nth-child(1)
{
  margin-top: -25px;
}
.section-content .content-row img:nth-child(2)
{
  margin-top: 25px;
}

.section-content-item{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
}

.arabic .section-content-item{
  align-items: flex-end;
}

.section-content-item .top-heading{
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 5px 0;
  text-align: left;
  color: var(--primary);
}

.section-content-item .main-heading{
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
  text-align: left;
  padding: 5px 0;

}

.section-content-item .section-paragraph{
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  padding: 5px 0;
  opacity: .8;
}

.section-content-item a{
  margin: 0;
  margin-top: 5px;
}

.arabic .section-content-item .top-heading,.arabic .section-content-item .main-heading, .arabic .section-content-item .section-paragraph{
text-align: right;
}


.products-tab-outer{
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}


.products-tab-outer .products-tab-inner{
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.arabic .products-tab-inner{
  flex-direction: row-reverse;
}

.products-tab-outer .products-tab-inner .products-tab{
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #bdeece;
  margin: 0 10px;
  cursor: pointer;
  transition: .5s;
}

.products-tab-outer .products-tab-inner .products-tab-active{
  background-color: var(--second);
  color: white;
}
.products-tab-outer .products-tab-inner .products-tab:hover{
  background-color: var(--primary);
  color: white;
}

.products-tab-outer .products-tab-inner .products-tab h3{
  font-size: 22px;
  font-weight: 400;
}

.product-grid{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  overflow-x: scroll;
  padding-left: 100px;
  padding-bottom: 20px;
}

.arabic .product-grid{
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 100px;
}

.product-grid::-webkit-scrollbar{
  height: 3px;
  cursor: pointer;

}

.product-page{
  width: 90%;
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
  padding-left: 0;
  overflow: auto;
  justify-content: center;
}




.product-grid::-webkit-scrollbar-thumb {
background-color:var(--fourth);;
border-radius: 20px;
opacity: .5;
transition: .5s;
}

.product-grid::-webkit-scrollbar-thumbL:hover{
  opacity: 1;
}

.product-grid::-webkit-scrollbar-track {
  background-color: var(--second);
}

.product-grid .product{
  width: 250px;
  min-width: 250px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #E4F9D7;
  padding: 5px;
  border-radius: 20px;
  margin: 5px;
  cursor: pointer;
}

.product-grid .product img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 5px;
  border-radius: 20px;
transition: .5s;
}

.product-grid .product .production-period{
  width: 100%;
  padding: 0;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-grid .product .production-period h3{
  font-size: 12px;
  background-color: transparent;
  color: var(--primary);
  opacity: .8;
  padding: 0 10px;
  position: relative;
  border-radius: 0;
  height: 100%;
}

.product-grid .product .production-period img{
  width: 20px;
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.arabic .product-grid .product .production-period img{
transform: scaleX(-1)
}


.product-grid .product img:hover{
  transform: scale(1.05);
}

.product-grid .product h3{
  font-size: 18px;
  font-weight: 600;
  padding: 0;
  color: var(--primary );
  text-align: center;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-grid .product h3 span{
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.product-grid .product h4{
  font-size: 16px;
  font-weight: 600;
  margin: 3px;
  color: var(--primary );
  text-align: center;
}

.product-grid .product p{
  width: 80%;
  font-size: 12px;
  font-weight: 300;
  padding: 3px;
  line-height: 16px;
  text-align: center;
  color: var(--primary );
}

.location-map{
  width: 100%;
  height: 400px;
}

.location-map iframe{
  height: 400px;
}

.error-text{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;

}

.error-text p{
  text-align: center;
  font-size: 14px;
}

.error-text a{
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  margin-left: 5px;
}

@media only screen and (max-width: 1760px){
  .product-page{
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-evenly;
  }

  .product-page .product{
    width: 90%;
  }
}


@media only screen and (max-width: 1466px){
  .product-page{
    grid-template-columns: auto auto auto auto;
  }
}

@media only screen and (max-width: 1266px){
  .product-page{
    grid-template-columns: auto auto auto;
  }
}

@media only screen and (max-width: 968px){
  .product-page{
    grid-template-columns: auto auto;
  }
  
.products-tab-outer{
  padding: 10px;
}


.products-tab-outer .products-tab-inner{
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
}

.products-tab-outer .products-tab-inner .products-tab{
  margin: 3px;
  border-radius: 10px;
  
}


.products-tab-outer .products-tab-inner .products-tab h3{
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
}



@media only screen and (max-width: 768px){

  .section-inner{
    width: 90%;
  }

  .section-inner .section-heading h3{
    font-size: 30px;
  }

  .section-inner .section-heading .quote{
    width: 80%;
    font-size: 25px;
  }

  .section-inner .section-heading .quote::before{
    font-size: 60px;
    left: -10px;
  }

  .section-inner .section-heading .quote::after{
    font-size: 60px;
    right: -10px;
  }

  .section-content .section-content-item img{
    height: 200px;
  }

  .section-content-item .main-heading{
    font-size: 25px;
  }
  

  .section-content{
    flex-direction: column;
  }

  .section-content-item{
    width: 100%;
  }

  .product-grid{
    padding-left: 10px;
  }

  .product-page{
    grid-template-columns: auto;
  }

  


}



/*--------------- END SECTION ----------------- */






/*--------------- NEWSLETTER ----------------- */


.newsletter{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.newsletter input{
  width: 300px;
  padding: 10px;
  border: none;
  border: 1px solid var(--third);
  border-radius: 10px;
}

.newsletter button{
  border: none;
  padding: 10px;
  background-color: var(--third);
  color: var(--primary);
  width: 150px;
  margin-left: -75px;
  border: 1px solid var(--third);
  border-radius: 10px;
  cursor: pointer;
  transition: .5s;
}

.newsletter button:hover{
  background-color: var(--second);
}

.newsletter .errortext{
  position: absolute;
  bottom: -35px;
  color: red;
  font-size: 14px;
}


/*--------------- END NEWSLETTER ----------------- */

/*--------------- FOOTER ----------------- */

.footer{
  width: 100%;
  padding: 50px 0;
  padding-bottom: 100px;
  background-image: linear-gradient(rgb(0, 22, 0), rgb(0, 66, 0)), url('../asset/img/home/stefan-riedl-VESKKS5YOPg-unsplash.jpg');
  background-position: 20% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-inner{
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

.arabic .footer-inner{
  flex-direction: row-reverse;
}

.footer-inner .footer-logo{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}


.arabic .footer-inner .footer-logo{
  align-items: flex-end;
  justify-content: flex-end;
}

.footer-inner .footer-logo img{
  width: 120px;
  height: 120px;
  object-fit: contain;
  background-color: white;
  border-radius: 50%;
}

.footer-inner .footer-logo h3{
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
  color: var(--fifth);
}

.arabic .footer-inner .footer-logo h3{
  font-size: 24px;
  }

.footer-inner .footer-logo .address-section{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 0;
}

.arabic .footer-inner .footer-logo .address-section{
  justify-content: flex-end;
}

.footer-inner .footer-logo .address-section span{
  font-size: 14px;
  color: var(--fifth);
}

.arabic .footer-inner .footer-logo .address-section span{
  text-align: right;
}

.footer-inner .footer-logo .address-section img{
  width: 25px;
  height: 25px;
  background-color: transparent;
  object-fit: contain;
  margin-right: 10px;
  border-radius: 0;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(245deg) brightness(104%) contrast(101%);
}

.footer-inner .footer-logo p{
  width: 80%;
  font-size: 12px;
  line-height: 14px;
  font-weight: 200;
  color: var(--third);
  padding: 20px 0;
}
.footer-inner .footer-logo .social-icons{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;  

}
.arabic .footer-inner .footer-logo .social-icons{
  justify-content: flex-end !important;
}

.footer-inner .footer-logo .social-icons img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 5px;
  border-radius: 0;
  background-color: transparent;
  transition: .5s;
}

.footer-inner .footer-logo .social-icons img:hover{
  transform: scale(1.05);
}

.footer-inner .footer-section{
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-inner .footer-map{
  width: 30%;
  
}

.footer-inner .footer-map iframe{
  border-radius: 20px;
  height: 300px;
}

.arabic .footer-inner .footer-section{
  align-items: flex-end;
}

.footer-inner .footer-section h3{
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  text-align: left;
}

.arabic .footer-inner .footer-section h3{
  text-align: right;
}

.footer-inner .footer-section ul{
  list-style: none;
}


.footer-inner .footer-section ul a{
  text-decoration: none;
}

.footer-inner .footer-section ul a li{
  padding: 5px 0;
  color: var(--fourth);
  transition: .5s;
}

.arabic .footer-inner .footer-section ul a li{
  text-align: right;
}

.footer-inner .footer-section ul a li:hover{
  color: var(--second);
}

.copyright{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}

.copyright-inner{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;

}

.copyright-inner span{
  font-size: 12px;
  line-height: 14px;
  font-weight: 200;
  color: var(--fourth);
  text-align: center;
}

.copyright-inner span a{
  text-decoration: none;
  font-weight: 400;
  color: var(--fourth);
}

@media only screen and (max-width: 768px){
  .footer-inner{
    width: 80%;
    flex-direction: column !important;
  }

  .footer-inner .footer-logo, .footer-inner .footer-section{
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-inner .footer-logo p{
    width: 100%;
  }

  .copyright-inner span{
    font-size: 10px;
  }
  .footer-inner .footer-section{
    align-items: flex-start;
  }
  .footer-inner .footer-map{
    width: 100%;
    
  }
}


/*--------------- END FOOTER ----------------- */



.breadcrump{
  width: 100%;
  height: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#aboutUs{
  background: linear-gradient(rgba(5, 100, 52, 0.8), rgb(0, 67, 18)), url('../asset/img/breadcrump/about-us-breadcrump.jpg');
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrump-inner{
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.breadcrump-inner h3{
  font-size: 30px;
  font-weight: 600;
  color: var(--fifth);
}


/*--------------- CONTACT FORM ----------------- */


.contact-form{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.contact-form-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

.contact-form-inner p{
  width: 100%;
  text-align: left;
  font-size: 14px;
  margin-bottom: 30px;
}

.arabic .contact-form-inner p{
  text-align: right !important; 
}

.contact-form-inner .row{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

.contact-form-inner .column{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
}

.contact-form-inner .caption{
  font-size: 14px;
  color: #c4c4c4;
  margin-bottom: 5px;
  text-align: left;
}

.contact-form-inner input,.contact-form-inner textarea{
  width: 100%;
  border: none;
  border: 1px solid var(--primary);
  padding: 10px;
  border-radius: 10px;
}

.arabic .contact-form-inner input,.arabic .contact-form-inner textarea{
  text-align: right;
}

.contact-form-inner iframe{
  width: 90%;
  height: 350px !important;
  border-radius: 10px;
}

.align-start{
  align-items: flex-start !important;
}

.arabic .align-start{
  align-items: flex-end !important;
}

.align-end{
  align-items: flex-end !important;
}

.justify-start{
  justify-content: flex-start !important;
  
}

.arabic .justify-start{
  justify-content: flex-end !important;
}


.justify-end{
  justify-content: flex-end !important;
}

@media only screen and (max-width: 768px){
  .contact-form-inner .row{
    flex-direction: column;
  }

  .contact-form-inner iframe{
    width: 100%;
    margin-top: 10px;
  }

  .arabic .contact-content{
    flex-direction: column-reverse;
  }
  
  
}


/*--------------- END CONTACT FORM ----------------- */


/*--------------- GALLERY ----------------- */

.gallery{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-grid{
  padding: 50px;
}

.gallery-grid img{
  height: 300px;
  max-width: 500px;
  margin: 3px;
  border-radius: 10px;
  cursor: pointer;
  transition: .5s;
  object-fit: cover;
}


.gallery-grid img:hover{
  transform: scale(1.05);
}


.gallery-popup{
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(2, 44, 9, 0.95);
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  transform: scale(0);
}

.showPopup{
  transform: scale(1);
  animation: scale-in .25s;
  opacity: 1;
}

@keyframes scale-in {
  0%{
    transform: scale(0);
    opacity: 0;
  }
  100%{
    transform: scale(1);
    opacity: 1;
  }
}

.gallery-popup .gallery-popup-inner{
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-popup .gallery-popup-inner img{
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.gallery-popup .gallery-popup-inner .close-btn{
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: fixed;
  right: 1.5%;
  top: 1.5%;
  cursor: pointer;
  background-color: rgb(147, 194, 174);
  border-radius: 50%;
}

.popupmove{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; 
  position: fixed;
}

.popupmove .right-arrow, .popupmove .left-arrow{
  width: 50px !important;
  height: 50px !important;
  object-fit: contain !important;
  background-color: rgba(8, 81, 44, 0.505);
  transition: .5s;
  opacity: .6;
  cursor: pointer;
}
.popupmove .right-arrow:hover{
  opacity: 1;
  transform: scale(1.05);
}

.popupmove .left-arrow{
  transform: scale(-1);
}

.popupmove .left-arrow:hover{
  opacity: 1;
  transform: scale(-1.05);
}


@media only screen and (max-width: 768px){
  .gallery-grid{
    padding: 50px 10px;
  }

  .gallery-grid img{
    max-width: 90vw;
  }
  
}

/*--------------- END GALLERY ----------------- */




/*--------------- GALLERY IMAGES ----------------- */

.masonry {
  margin: 1.5em 0;
  padding: 0;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: .85em;
}

.item {
  display: inline-block;
  background: #666;
  padding: 0em;
  margin: 0 0 1.5em;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  cursor: pointer;
}
.item img {
max-width: 100%;  
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
.item:hover img {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
transform: scale(1.05);
}
@media only screen and (min-width: 400px) {
  .masonry {
      -moz-column-count: 2;
      -webkit-column-count: 2;
      column-count: 2;
  }
}

@media only screen and (min-width: 700px) {
  .masonry {
      -moz-column-count: 3;
      -webkit-column-count: 3;
      column-count: 3;
  }
}

@media only screen and (min-width: 900px) {
  .masonry {
      -moz-column-count: 4;
      -webkit-column-count: 4;
      column-count: 4;
  }
}

@media only screen and (min-width: 1100px) {
  .masonry {
      -moz-column-count: 5;
      -webkit-column-count: 5;
      column-count: 5;
  }
}

@media only screen and (min-width: 1280px) {
  .wrapper {
      width: 1260px;
  }
}

/*--------------- END GALLERY IMAGES ----------------- */


