@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap");
/* ======== Colors ========== */
:root {
  --default-color: #1e1e1e;
  --default-color2: #128954;
  --dark-color: #222;
  --dark-color-alt: #3c4858;
  --grey-color: #f9fafd;
  --grey-color-alt: #8492a6;
  --grey-color2: #f5f5f5;
  --yellow: #ffcc00;
  --white: #fff;
}

/* ======== Base ========== */

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  position: relative;
  /* font-family: "Dosis", sans-serif; */
  font-family: "Poppins", sans-serif;
  /* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.6;
  overflow-x: hidden;
  color: var(--dark-color);
  background-color: var(--white);
}
#all {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  z-index: 100;
  left: 50%;
  right: 50%;
  top: 65vh;
  transform: translate(50%, -50%);
}

#play-video {
  border: 4px solid;
  border-radius: 50%;
  padding: 4px 7px;
  background: transparent;
  font-size: 35px;
  color: var(--default-color2);
  border-color: var(--default-color2);
  height: 70px;
  width: 70px;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s ease !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  line-height: 1.5;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #play-video {
    padding: 5px 5px;
    font-size: 25px;
    height: 55px;
    width: 55px;
  }
  #all {
    top: 60vh;
  }
}
#play-video:hover {
  transform: scale(1.3);
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -o-transform: scale(1.3);
}
#play-video i {
  transition: all 0s ease !important;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  -o-transition: all 0s ease;
  line-height: 0;
}
#play-video:hover {
  transform: scale(1.3);
}
#close-video {
  border: 4px solid;
  border-radius: 50%;
  background: transparent;
  font-size: 26px;
  color: #8d908a;
  height: 56px;
  width: 56px;
  text-align: center;
}

.youtube-video .modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 14%;
  bottom: 0;
  margin: auto;
  width: 100%;
  padding: 0 15px;
  height: 100%;
  max-width: 1000px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#video-container {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
iframe#youtubevideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.youtube-video .modal-footer {
  border: none;
  text-align: center;
  display: block;
  padding: 0;
}
.youtube-video .modal-content {
  background: none !important;
  border: none;
}

a {
  text-decoration: none;
}
li,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

h2,
h3,
h4 {
  font-weight: 800;
}

.container {
  max-width: 135rem;
  padding: 0 1rem;
  margin: 0 auto;
}
.container2 {
  max-width: 155rem;
  padding: 0 1rem;
  margin: 0 auto;
}

/* @media only screen and (max-width: 992px) {
    .container {
      padding: 0 3rem;
    }
  } */

/* =========== Header ============ */

.header {
  /* min-height: 100vh; */
  /* background: linear-gradient(to top,
        rgba(56, 69, 85, 0.5),
        rgba(80, 72, 72, 0.6)),
      url("../images/header.jpg") center/cover no-repeat fixed; */
  position: fixed;
  width: 100%;
  z-index: 99999;
}

#header {
  min-height: 8vh;
}

/* .header::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  } */

/* =========== Header ============ */

.navigation {
  position: relative;
  padding: 1.5rem 0;
  background-color: var(--default-color);
  z-index: 100;
  opacity: 0.9;
  height: 15rem;
  transition: 0.7s;
}
#about {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  color: var(--white) !important;
  transition: 0.5s;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: -1;
}
.dropdown-content a {
  text-decoration: none;
}

#about:hover .dropdown-content {
  display: block;
}

.fix__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  height: 10rem;
  background-color: var(--default-color2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

.nav__center .nav__hamburger {
  display: none;
  cursor: pointer;
}

.nav__menu .menu__top {
  display: none;
}

/* .nav__center {
    display: grid;
    grid-template-columns: 4fr 3fr;
    align-items: center;
  } */

.nav__center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo img {
  width: 350px;
  height: 150px;
  transition: 0.7s;
}
.nav__logo2 img {
  width: 250px;
  height: 100px;
}
.nav__logo2 {
  margin-top: -20px;
  margin-left: -50px;
}
/* .nav__header .nav__logo h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
  }
  
  .fix__nav .nav__logo h1 {
    color: var(--dark-color);
  }
  
  .nav__header .nav__logo h1 span {
    color: var(--default-color2);
  } */
.nav__category {
  color: var(--white);
}

.nav__icons svg {
  width: 1.7rem;
  height: 1.7rem;
}

.nav__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__menu .nav__list {
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  margin-top: 7%;
}

.nav__list .nav__item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav__item .nav__link:link,
.nav__item .nav__link:visited {
  display: inline-block;
  padding: 1rem;
  color: var(--grey-color);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 1px;
  transition: all 500ms ease-in-out;
}
.fix__nav .nav__logo img {
  width: 180px;
  height: 80px;
}
.fix__nav .nav__link {
  font-size: medium;
}

element.style {
}
.fix__nav .nav__item .nav__link:link,
.fix__nav .nav__item .nav__link:visited {
  /* color: var(--dark-color); */
}
.fix__nav .nav__item .nav__link:link,
.nav__item .nav__link:visited {
  font-size: medium;
}

.fix__nav .nav__item .nav__link:link,
.fix__nav .nav__item .nav__link:visited {
  /* color: var(--dark-color); */
}
.fix__nav .nav__menu .nav__list {
  margin-top: 4%;
  transition: 0.7s;
}
.nav__item .nav__link:hover {
  color: var(--default-color2);
}

.fix__nav .nav__item .nav__link:hover {
  color: var(--default-color);
}

.fix__nav .nav__menu .nav__item:last-child .nav__link:hover {
  color: var(--default-color);
}

.nav__icons {
  display: flex;
  align-items: center;
}

.nav__icons .icon__item {
  color: var(--grey-color);
  padding: 1rem;
}

.nav__icons .icon__item svg {
  fill: var(--grey-color);
}

.fix__nav .nav__icons .icon__item svg {
  fill: var(--dark-color);
}
.fix__nav .active,
.dot:hover {
  border-bottom: 2px solid white;

  /* background-color: #717171; */
}
.fix__nav .nav__list .active {
  border-bottom: 2px solid white;
}
.nav__icons .icon__item:last-child {
  position: relative;
  background-color: var(--grey-color-alt);
  padding: 0.7rem 1rem;
  border-radius: 5rem;
}

.nav__icons .icon__item:last-child span {
  position: absolute;
  background-color: var(--default-color);
  display: inline-block;
  top: -0.6rem;
  right: -1rem;
  border-radius: 50%;
  padding: 0.1rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 800;
}

/* Map styling */
#map {
  height: 500px;
  width: 100%;
}
.map__content h1 {
  font-size: 50px;
  color: var(--default-color2);
}
.map__content {
  background: url("../images/mappin.gif") no-repeat center;
}
/* .map__content{
    
  } */
/* =========== Navigation Media Query ============ */

@media only screen and (max-width: 996px) {
  .nav__icons {
    display: none;
  }

  .nav__center {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .nav__center {
    grid-template-columns: 1fr;
  }

  .nav__center .nav__hamburger {
    display: block;
  }

  .nav__center .nav__hamburger svg {
    width: 3rem;
    height: 3rem;
    fill: white;
  }

  .nav__center .nav__logo h1 {
    color: var(--dark-color);
  }

  .nav__header .nav__logo h1 span {
    color: var(--default-color);
  }

  .nav__center .nav__hamburger span {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: -40rem;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    background-color: var(--dark-color);
    transition: all 0.3s ease-in-out;
  }

  .nav__menu .menu__top svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: var(--white);
  }

  .nav__menu .menu__top .close__toggle {
    cursor: pointer;
  }

  .nav__menu .menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
    width: 100%;
    background-color: var(--default-color);
  }

  .nav__menu .nav__list {
    background-color: var(--white);
    justify-content: start;
    flex-direction: column;
    width: 30rem;
    padding: 0;
  }

  .nav__menu .nav__list .nav__item {
    width: 100%;
    background-color: var(--dark-color);
    color: var(--white);
  }

  .nav__item .nav__link:link,
  .nav__item .nav__link:visited {
    width: 100%;
    display: block;
    font-size: 1.8rem;
    color: var(--white);
  }

  .nav__list .nav__item .nav__link:last-child:link,
  .nav__list .nav__item .nav__link:last-child:visited {
    display: inline-block;
    width: 50%;
  }

  .nav__list .nav__item .nav__link:last-child:hover {
    color: var(--default-color);
  }

  .nav__item .nav__link:hover {
    color: var(--default-color);
  }

  body.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 70;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 80vh;
  background-color: #ff8c00;
  padding: 0;
}
.slider-overlay {
  /* background:url("../images/pattern.png") rgba(0, 0, 0, .1); */
  background-color: black;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 80vh;
}

#heroCarousel {
  width: 100%;
}
.carousel-item {
  position: relative;
}
#hero .carousel-container {
  /* display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 9;
  /* height: 70vh; */
  left: 0%;
  top: 60%;
}
@media only screen and (max-width: 768px) {
  #hero .carousel-container {
    top: 55%;
  }
}
#hero img {
  height: 80vh;
}
#hero video {
  height: 80vh;
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-next {
  z-index: 100;
  right: 12% !important;
  width: 10%;
}
#hero .carousel-control-prev {
  z-index: 100;
  left: 9% !important;
  width: 10%;
}

#hero .carousel-control-next-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
  margin-left: 100px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background-color: var(--default-color2);
  /* border: 2px solid #ef6603; */
}

#hero .btn-get-started:hover {
  background: var(--default-color2);
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero .carousel-container {
    height: 90vh;
  }
  #hero h2 {
    font-size: 30px;
  }
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

/* ==========Show Slider============= */
.mySlides {
  display: none;
  transition: 0.5s;
}
.translateslide {
  transform: translateX(20px);
}

img {
  vertical-align: middle;
}
.home {
  position: relative;
  overflow: hidden;
  max-height: 70vh;
  font-family: "Raleway", sans-serif;
}
#home {
  width: 100%;
  height: 100%;
  color: #fff;
}

/* .slider-overlay {
 background-color: black;
 opacity: 0.3;
 position: absolute;
 left: 0;
 top: 0;
 right: 0;
 z-index: 2;
 width: 100%;
 height: 80vh;
} */

.home .slideshow-container {
  position: relative;
  /* overflow: hidden; */
}

.slideshow-container img,
video {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  object-fit: cover;
}

/* .flexslider .slides img {
   width: 100%;
   display: block;
   height:630px;
 }
  */
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  margin: 0 80px;
  color: white;
  font-weight: bold;
  z-index: 100;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: white;
  border-radius: 50%;

  display: inline-block;
  transition: background-color 0.6s ease;
}
.dots {
  position: absolute;
  top: 93%;
  left: 48%;
}
.dots .active {
  background-color: var(--default-color2);
}
.nav__list .active,
.dot:hover {
  border-bottom: 2px solid var(--default-color2);
  /* background-color: #717171; */
}

/* Fading animation */
/* .fade {
   -webkit-animation-name: fade;
   -webkit-animation-duration: 1.5s;
   animation-name: fade;
   animation-duration: 1.5s;
 }
 
 @-webkit-keyframes fade {
   from {opacity: .4} 
   to {opacity: 1}
 }
 
 @keyframes fade {
   from {opacity: .4} 
   to {opacity: 1}
 }
  */
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
@media only screen and (max-width: 567px) {
  .slideshow-container img {
    height: 100vh;
    width: 100%;
  }

  .prev,
  .next {
    margin: 0 10px;
  }
}

/* =============End Slider=============== */

/* =========== Hero ============ */
/* .hero {
  height: 100vh;
  position: relative;
  text-align: center;
} */

.hero__content {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: var(--grey-color);
  transition: 1s ease-in;
}
.hero__content1 h1 {
  margin-top: 20%;
  font-size: 6rem;
  font-family: "Poppins", sans-serif;
  /* margin-bottom: 5rem; */
}
.hero__content a {
  font-family: sans-serif;
}
#hero2 {
  top: 48% !important;
}
.hero__content1 h1 span {
  display: block;
  line-height: 1.2;
}
.hero__content1 p {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
}

.hero__content1 h1 span.color {
  display: inline-block;
  color: var(--default-color2);
}
.hero__content1 {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  text-align: center;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: var(--grey-color);
}

.navigation.fix__nav .hero .hero__content {
  top: 70%;
}

.hero__content h1 {
  margin-top: 13%;
  font-size: 6rem;
  /* margin-bottom: 5rem; */
}

.hero__content h1 span {
  display: block;
  line-height: 1.2;
}
.hero__content p {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
}

.hero__content h1 span.color {
  display: inline-block;
  color: var(--default-color2);
}

.btn-hero:link,
.btn-hero:visited {
  display: inline-block;
  color: var(--grey-color);
  padding: 1rem 4rem;
  border: 2px solid var(--default-color2);
  background-color: var(--default-color2);
  border-radius: 4rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 300ms ease-in-out;
  animation: bounce 2s linear infinite;
}

.btn-hero:hover {
  background-color: var(--default-color);
  border: none;
}

.goto__next {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translate(-50%, 0);
  background-color: var(--default-color);
  padding: 1rem;
  border-radius: 50%;
  animation: bounce 2s linear infinite;
}

.goto__next svg {
  height: 1.8rem;
  width: 1.8rem;
  fill: var(--white);
}

.goto__next span {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bounce {
  0% {
    bottom: 12%;
  }

  50% {
    bottom: 7%;
  }

  100% {
    bottom: 12%;
  }
}

@media only screen and (max-width: 768px) {
  .hero__content h1 {
    font-size: 4rem;
  }

  .hero__content h1 span {
    display: inline-block;
  }
}

@media only screen and (max-width: 567px) {
  .hero__content h1 {
    font-size: 3rem;
  }
  .btn-hero:link,
  .btn-hero:visited {
    padding: 0.5rem 3rem;
    font-size: 1rem;
    font-weight: 600;
  }
}

/* =================Mobile Section=============== */
.mobile__layout {
  display: flex;
  justify-content: center;
  height: 500px;
  margin-top: 4rem;
}
.mobile__logo {
  display: flex;
  width: 50%;
  border-radius: none;
  box-shadow: none;
  margin-top: 20px;
}
.mobile__logo img {
  box-shadow: none !important;
}

.mobile__text {
  padding: 1rem;
  margin-right: 300px;
}
.mobile__text h4 {
  font-size: 62px;
  text-align: center;
  font-weight: 900;
  color: var(--default-color2);
}
.mobile__text p {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
}
.mobile__image {
  padding: 1rem;
}
.mobile__image img {
  border-radius: 30px;
  width: auto;
  box-shadow: 0 2.8px 2.2px rgba(18, 137, 84, 0.234),
    0 6.7px 5.3px rgba(18, 137, 84, 0.248),
    0 12.5px 10px rgba(18, 137, 84, 0.206),
    0 22.3px 17.9px rgba(18, 137, 84, 0.272),
    0 41.8px 33.4px rgba(18, 137, 84, 0.286),
    0 100px 80px rgba(18, 137, 84, 0.212);
}
@media only screen and (max-width: 567px) {
  .mobile__layout {
    height: auto;
  }
  .mobile__image {
    padding: 1rem;
    margin-left: 0px;
  }
  .mobile__text {
    margin-right: 0px;
  }
  .mobile__text h4 {
    font-size: 30px;
    font-weight: 900;
    color: var(--default-color2);
  }
  .mobile__text p {
    font-size: 10px;
  }
  .contact__section {
    padding: 1rem 0;
  }
}
/* ================= icon bar ==================== */

.icon-bar {
  position: fixed;
  top: 45%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1000;
}
.icon-bar a {
  width: 200px;
  background: var(--default-color2);
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  /* justify-content: space-between; */
  /* transform: translateX(-90px); */
  transform: translateX(160px);

  /* -webkit-transform: translateX(-170px);
	-ms-transform: translateX(-170px); */
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
}
.icon-bar .contact_rotate {
  /* width: 50px; */
  width: auto;
  padding: 30px 10px;
  display: flex;
  justify-content: flex-start;
  background: var(--default-color2);
  color: var(--white);
  font-weight: 800;
  font-size: 1.8rem;
}
.icon-bar p {
  margin-left: 1rem;
}
.facebook {
  background: #3b5998;
}
.twitter {
  background-color: #00aced;
}

.instagram {
  background-color: #e4405f;
}

.contact_rotate {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.icon-bar a i {
  padding-left: 0.5rem;
  font-size: 3rem !important;
  animation: letszoom 3s linear alternate-reverse infinite;
}
@keyframes letszoom {
  from {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}
.icon-bar .contact_rotate:hover {
  transform: translateX(160px);
}
.icon-bar a:hover {
  transform: translateX(-0px);
  /* -webkit-transform: translateX(0);
	-ms-transform: translateX(0); */
}

@media only screen and (max-width: 567px) {
  .icon-bar a i {
    padding-left: 0.5rem;
    font-size: 2rem !important;
    animation: letszoom 3s linear alternate-reverse infinite;
  }
  .icon-bar a {
    transform: translateX(170px);
  }
  .icon-bar span {
    /* width: 50px; */
    padding: 10px 20px 10px 5px;
    font-size: 1rem;
    transform: translateX(170px);
  }
}
/* ====================End icon bar ================= */

/* =========== Cart Slide =========== */

.contact__section {
  padding: 10rem 0;
}

.contact__section__like {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  column-gap: 10rem;
  /* padding: 1.6rem 1rem; */
}

.image__holder {
  width: 100%;
  text-align: center;
}

.image__holder img {
  width: 60rem;
  height: 40rem;
}

.contact__section__details h1 {
  color: var(--default-color2);
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.contact__section__details p {
  font-size: 1.5rem;
  /* color: var(--grey-color-alt); */
  margin-bottom: 1.6rem;
}

.contact__section__details .btn__group button {
  display: inline-block;
  width: 15rem;
  padding: 1.3rem;
  border: 1px solid var(--grey-color-alt);
  border-radius: 0.3rem;
  color: white;
  font-weight: 600;
  font-size: 1.7rem;
  border-radius: 4rem;
  background-color: var(--default-color2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.contact__section__details a {
  color: var(--default-color);
}
.contact__section__details .btn__group button:focus {
  outline: none;
}

.contact__section__details .btn__group button:first-child:hover {
  border-color: var(--default-color);
  background-color: var(--default-color);
  color: var(--grey-color);
}

@media only screen and (max-width: 996px) {
  .contact__section {
    padding-bottom: 20rem;
  }

  .contact__section__like {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 0 1rem;
    padding: 1.6rem 1rem;
  }

  .image__holder img {
    width: 40rem;
    height: 45rem;
  }

  .contact__section__details .btn__group button {
    font-size: 1.4rem;
    width: 12rem;
  }
}

@media only screen and (max-width: 768px) {
  .contact__section__like {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
    padding: 1.6rem 1rem;
  }

  .image__holder img {
    width: 30rem;
    height: 35rem;
  }

  .contact__section__details h1 {
    font-size: 4rem;
  }

  .contact__section__details .btn__group button:not(:last-child) {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 567px) {
  .image__holder img {
    width: 60rem;
    height: 20rem;
  }
  .contact__section {
    padding: 3rem 0;
  }

  .contact__section__details h1 {
    font-size: 2.5rem;
  }

  .contact__section__details p {
    font-size: 1.3rem;
  }
  .contact__section__like {
    grid-template-columns: 1fr;
    gap: 2rem 0rem;
    padding: 1.6rem 1rem;
  }

  .contact__section__details .btn__group button {
    font-size: 1rem;
    width: 12rem;
  }
}

/* ============ New Arrival ============== */

.section {
  padding: 5rem 0;
}
.new__arrival {
  background-color: var(--default-color);
}
.arrivals {
  padding: 2rem 0;
}

.title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--white);
}

.primary__title {
  font-size: 4rem;
  display: inline-block;
  position: relative;
}

.new__arrival .primary__title::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  margin: 0 auto;
  height: 0.4rem;
  background-color: var(--default-color);
}

.arrival__center {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem 0;
}

@media only screen and (max-width: 996px) {
  .arrival__center {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .arrival__center {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== Product ========== */

.product {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 2rem 1rem;
  text-align: center;
}

.product:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.product .img__container {
  height: 30rem;
  overflow: hidden;
  border-radius: 50%;
}

.img__container img {
  transition: all 0.5s ease-in-out;
  border-radius: 50%;
  height: 35rem;
  width: 35rem;
  opacity: 0.7;
  cursor: pointer;
}

.product:hover .img__container img {
  transform: scale(1.05);
  opacity: 1;
}
.product:hover .product__bottom {
  transform: translateY(-20%) scale(1.05);
}

.rating svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--yellow);
}

/* .product__bottom {
  padding-top: 1.6rem;
} */

.product__bottom h3 {
  /* position: absolute; */
  margin-bottom: 10px;
  margin-left: 10px;
  color: var(--white);
}

.product__bottom a:link,
.product__bottom a:visited {
  display: inline-block;
  padding: 0.8rem 4rem;
  background-color: var(--default-color);
  color: var(--grey-color);
  text-transform: uppercase;
  font-weight: 500;
}

@media only screen and (max-width: 567px) {
  .product .img__container {
    height: 12rem;
  }

  .primary__title {
    font-size: 2.5rem;
  }

  .rating svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .product__bottom a:link,
  .product__bottom a:visited {
    display: inline-block;
    padding: 0.6rem 3rem;
    font-size: 1.4rem;
  }

  .product__bottom h3 {
    font-size: 1.6rem;
  }
}

/* ============ Seasonal fruits and vegetables ============== */

.section__seasonal {
  padding: 5rem 0;
}
.section__seasonal .title {
  color: var(--default-color2);
}
.section__seasonal .title p {
  color: var(--default-color);
}
@media only screen and (max-width: 996px) {
  .arrival__center {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 768px) {
  .arrival__center {
    grid-template-columns: 1fr 1fr;
  }
}

/* ========== Product seasonal fruits and vegetables ========== */

.section__seasonal .product .img__container {
  height: 30rem;
  overflow: hidden;
  border-radius: 0;
}

.section__seasonal .img__container img {
  transition: all 0.5s ease-in-out;
  height: 35rem;
  opacity: 0.9;
  cursor: pointer;
  border-radius: 0;
}
.section__seasonal .product__bottom h3 {
  color: white;
}
.section__seasonal .product__bottom {
  position: absolute;
  padding: 2rem;
  margin-top: 23rem;
  transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 567px) {
  .section__seasonal .product .img__container {
    height: 15rem;
    border-radius: 0;
  }
  .section__seasonal .img__container img {
    height: 15rem;
  }
  .section__seasonal .product__bottom h3 {
    font-size: 1rem;
  }
  .section__seasonal .product__bottom {
    margin-top: 10rem;
    text-align: center;
  }
}

/* =========== Special Offer ============ */
.special__offer {
  position: relative;
  height: 20rem;
  background-color: var(--default-color);
}

.special__offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.offer__container {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-align: center;
}
.offer__text {
  margin-left: -20rem;
}

.offer__container h1 {
  letter-spacing: 1.5px;
  font-size: 4rem;
}

.offer__container p {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.offer__container a {
  margin-top: 20px;
  margin-left: 160px;
  display: inline-block;
  padding: 1rem 3rem;
  height: 5rem;
  color: var(--grey-color);
  font-weight: 800;
  background-color: var(--default-color2);
  transition: all 0.3s ease-in-out;
  border-radius: 4rem;
}

.offer__container a:hover {
  background-color: var(--default-color);
}

@media only screen and (max-width: 996px) {
  .special__offer {
    height: 20rem;
  }
  .offer__text {
    margin-left: 2rem;
  }
  .offer__container {
    display: block;
  }

  .offer__container a {
    margin-left: 0;
  }
  .offer__container h1 {
    font-size: 5rem;
  }

  .offer__container p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 768px) {
  .special__offer {
    height: 20rem;
  }

  .offer__container h1 {
    font-size: 4rem;
  }

  .offer__container p {
    font-size: 1.5rem;
  }

  .offer__container a {
    padding: 0.8rem 2.7rem;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 567px) {
  .special__offer {
    height: 25rem;
  }

  .offer__container h1 {
    font-size: 2.5rem;
  }

  .offer__container p {
    font-size: 1.3rem;
  }

  .offer__container a {
    padding: 0.5rem 2.3rem;
  }
}
/* ======Number Chart============ */
.numbers {
  background: #ff8c00;
}
.chart {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 2fr;
  position: relative;
  grid-column-gap: 10rem;
  background: #ff8c00;
  justify-content: center;
  /* url("../images/truck.png") no-repeat 100% 20%; */
  /* height: 200px; */
  color: white;
  padding: 5rem;
  /* padding-top:4rem ;
 padding-left: 10rem;
 padding-right: 15rem; */
}

.center {
  font-size: 5rem;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.chart_text {
  font-family: "Dancing Script", cursive;
  font-size: 30px;
  padding: 1rem;
  padding-left: 4rem;
}
.chart_text p {
  margin-top: -1rem;
  font-size: 40px;
  color: #ffcc00;
}

.side__text {
  font-family: cursive;
  font-size: small;
  color: #ffcc00;
}
@media only screen and (max-width: 567px) {
  .center {
    font-size: 2.5rem;
  }
  .chart_text {
    font-size: 2.5rem;
  }
}

/* ======= Contact =========== */
.contact {
  position: relative;
  min-height: 100vh;
  padding: 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
      to top,
      rgba(46, 56, 68, 0.5),
      rgba(80, 72, 72, 0.6)
    ),
    url("https://live.staticflickr.com/3713/20108831388_28d9285cbf_b.jpg")
      no-repeat center/cover fixed;
}
.contact .content {
  max-width: 900px;
  text-align: center;
}
.contact .content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}
.contact .content p {
  font-weight: 300;
  color: #fff;
}
.contact .container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.contact .container .contactInfo {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.contact .container .contactInfo .box {
  position: relative;
  padding: 20px 0;
  display: flex;
}
.contact .container .contactInfo .box .icon {
  min-width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}
.contact .container .contactInfo .box .text {
  display: flex;
  margin-left: 40px;
  font-size: 16px;
  color: #fff;
  flex-direction: column;
  font-weight: 300;
}
.contact .container .contactInfo .box .text h3 {
  font-weight: 300;
  color: #00bcd4;
}
.contactForm {
  width: 55%;
  padding: 5rem;
  margin-left: 5rem;
  background: #fff;
  border-radius: 1%;
}
.contactForm h2 {
  font-size: 30px;
  color: #333;
  font-weight: 500;
}
.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
}
.contactForm .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
  color: green;
  font-size: 13px;
  transform: translateY(-20px);
}
.contactForm .inputBox input[type="submit"] {
  width: 100px;
  color: white;
  background: #00bcd4;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  transition: 0.5s;
}
.contactForm .inputBox input[type="submit"]:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .mapouter {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gmap_canvas iframe {
    width: 100%;
    height: 40rem;
  }
  .contact {
    padding: 50px;
  }
  .contact .container {
    flex-direction: column;
  }
  .container .contactInfo {
    margin-bottom: 40px;
    margin-right: 120px;
  }

  .container .contactForm {
    width: 110%;
  }
  .contact .container .contactInfo .box {
    margin-top: 80px;
  }
}

/* ==================FAQ================== */
.faq_section {
  background-color: var(--default-color2);
}
.faq_image {
  color: white;
  font-size: 10rem;
}
.faq_center {
  display: flex;
  justify-content: space-around;
  width: 70%;
  margin: 0 auto;
}
.faq {
  text-align: center;
  width: 25%;
}
.faq_center .faq_bottom {
  color: var(--white);
}

@media only screen and (max-width: 996px) {
  .section questions {
    width: 70%;
  }
}

/* ============ Footer ============ */
/*  */
.footer {
  background-color: var(--grey-color2);
  padding: 6rem 1rem;
  line-height: 3rem;
}
.footer-top__box h2 {
  color: var(--default-color2);
  font-weight: 900;
  margin-bottom: 10px;
}

.footer-top__box svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--default-color);
  margin: 4px;
  cursor: pointer;
}
.footer-top__box svg:hover {
  fill: var(--default-color2);
}

.footer-top__box span {
  margin-right: 1rem;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--dark-color);
}

.footer-top__box a:link,
.footer-top__box a:visited {
  display: block;
  color: var(--dark-color);
  font-size: 1.4rem;
  transition: 0.6s;
}

.footer-top__box a:hover {
  color: var(--default-color2);
}
.footer-top__box .nav__logo h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
}

.footer-top__box .nav__logo h1 span {
  color: var(--default-color2);
}

.footer-top__box div {
  color: var(--grey);
  font-size: 1.4rem;
}

.footer-top__box h3 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer__line {
  margin-top: 5rem;
  width: 100%;
  height: 0.51rem;
  background-color: var(--default-color2);
}
.copyright {
  margin-top: 3rem;
  text-align: center;
}
.upper__contact {
  background: url("https://media.istockphoto.com/vectors/aloe-vera-plant-vector-id1154797798?b=1&k=6&m=1154797798&s=612x612&w=0&h=hxZZOzaZ4kv4B1oVk8GR_vzx0QDR7FbgHnR0DwBhGio=")
    no-repeat -15% -150%;
}
@media only screen and (max-width: 998px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .chart {
    height: 30rem;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 0rem;
  }
  .chart_text {
    font-size: 1.8rem;
    margin-left: 30px;
    padding-left: 2rem;
    padding: 0rem;
  }
  #dis_id {
    margin-left: 30px;
  }
}
/* =========== Special Offer ============ */

.about {
  background: linear-gradient(to top, rgba(56, 69, 85, 0.2), rgba(7, 7, 7, 0.3)),
    url("../images/services.jpeg") center/cover no-repeat;
  background-position: center;
  position: relative;
  /* overflow: hidden; */
  height: 70vh;
  font-family: "Raleway", sans-serif;
}
#about {
  width: 100%;
  /* height: 100%; */
  color: #fff;
}

.about__section {
  position: relative;
  background-color: var(--grey-color2);
}

.about__section__container {
  text-align: center;
}

.about__section__info {
  margin: 4rem 5rem;
  /* border: 1px solid silver; */
  padding: 4rem;
}
.about__section .info {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.animation__video video {
  width: 60rem;
  height: 40rem;
}

.about__section__container h1 {
  letter-spacing: 1.5px;
  font-size: 3rem;
  color: var(--default-color);
  text-transform: uppercase;
  padding-bottom: 1.5rem;
}

.about__section__container p {
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--dark-color-alt);
  margin-bottom: 2rem;
}

.about__section__container a {
  display: inline-block;
  padding: 1rem 3rem;
  color: var(--grey-color);
  font-weight: 800;
  background-color: var(--default-color2);
}

@media only screen and (max-width: 996px) {
  .about__section__container h1 {
    font-size: 5rem;
  }

  .about__section__container p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 768px) {
  .about__section__container h1 {
    font-size: 4rem;
  }

  .about__section__container p {
    font-size: 1.5rem;
  }

  .about__section__container a {
    padding: 0.8rem 2.7rem;
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 567px) {
  .about__section__info {
    margin: 0;
    /* border: 1px solid silver; */
    padding: 3rem;
  }

  .about__section .info {
    width: 100%;
  }
  .animation__video video {
    width: 30rem;
    height: 30rem;
  }
  .about__section__container h1 {
    font-size: 2.5rem;
  }

  .about__section__container p {
    font-size: 1.3rem;
  }

  .about__section__container a {
    padding: 0.5rem 2.3rem;
  }
}

/* Our team  */

.team__section .team-subtitle {
  color: var(--default-color2);
  width: 50%;
  margin: 0 auto;
}
.team__section .team-title {
  color: var(--default-color);
  font-size: 3rem;
  padding: 1rem 0;
}
.team {
  background-color: var(--grey-color2);
  padding: 0 0 2rem 0;
}

.team__center {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  width: auto;
  padding: 3rem 0;
  flex-wrap: wrap;
  margin: 4rem 0;
}

.team__bottom {
  padding-top: 1.6rem;
  color: var(--dark-color-alt);
}

.team__section .img_team img {
  transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 35rem;
  width: 35rem;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 35rem;
}
.gmap_canvas iframe {
  width: 100%;
  height: 50rem;
}
.team:hover .img_team img {
  transform: scale(1.05);
  opacity: 1;
}

@media only screen and (max-width: 567px) {
  .team .img__container {
    height: 25rem;
  }
  .product__bottom a:link,
  .product__bottom a:visited {
    display: inline-block;
    padding: 0.6rem 3rem;
    font-size: 1.4rem;
  }
  .team__center .team {
    margin: 1rem 0;
  }

  .product__bottom h3 {
    font-size: 1.6rem;
  }
}

/* ========= Our customers ============ */

.customer__section {
  background-color: var(--grey-color2);
}
.customer_title {
  text-align: center;
}
customer-title {
  color: var(--default-color);
  font-size: 3rem;
  padding: 1rem 0;
}
.customer_title .customer-subtitle {
  color: var(--default-color2);
  width: 50%;
  margin: 0 auto;
}
.customer_list {
  margin: 3rem 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
}
.list {
  background-color: var(--default-color2);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  padding: 3rem 2rem;
  color: var(--white);
  transition: 0.5s ease;
}
.list i {
  font-size: 3rem;
  padding: 1rem;
}
.list:hover {
  transform: scale(1.1);
  background-color: rgb(76, 134, 76);
}
.flip-card {
  background-color: transparent;
  height: 170px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}

@media only screen and (max-width: 768px) {
  .customer_list {
    /* margin: 3rem 0;
    text-align: center;
    display: grid; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1rem;
    padding: 1rem;
  }
}

@media only screen and (max-width: 567px) {
  .customer_list {
    /* margin: 3rem 0;
    text-align: center;
    display: grid; */
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    padding: 1rem;
  }
}

/* ============= our customers end ============== */

/* ==============Our Growers =============== */
.growers__title {
  text-align: center;
  justify-content: center;
}
.growers__title h2 {
  color: var(--default-color2);
  font-size: 3.5rem;
}
.growers__title p {
}
.growers__div {
  justify-content: center;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.growers__text h2 {
  color: var(--default-color2);
  font-family: "Dancing Script";
}
.growers__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem;
}
.growers__image {
  padding: 1rem;
}
.growers__image img {
  border-radius: 2px;
  height: 250px;
  width: 250px;
}
@media (max-width: 567px) {
  .growers__div {
    display: block;
  }
}
/* ---Google Reviews--- */
#map-plug {
  display: none;
}

#google-reviews .btn__group {
  margin: 0 20px;
  display: inline-block;
  font-family: "Poppins";
  width: 20rem;
  padding: 1.3rem;
  border: 1px solid var(--grey-color-alt);
  border-radius: 0.3rem;
  color: white;
  font-weight: 600;
  font-size: 1.7rem;
  border-radius: 4rem;
  background-color: var(--default-color2);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#google-reviews .btn__group:hover {
  opacity: 0.9;
}

#google-reviews {
  text-align: center;
  background: linear-gradient(
      to top,
      rgba(56, 69, 85, 0.5),
      rgba(80, 72, 72, 0.6)
    ),
    url(../images/vegetable1.jpg) center/cover no-repeat fixed;
  border-radius: 5px;
  color: white;
  font-weight: 400;
  width: 100%;
  /* height: 550px; */
  /*display: grid;
grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/
}
#google-reviewss {
  color: black;
  font-family: Poppins, sans-serif;
  display: flex;
  padding: 4rem;
  border-radius: 10px;
  /* backdrop-filter: blur(15px); */
}
.review-card {
  background-color: var(--grey-color);
  padding: 2rem 3rem;
  border-radius: 5px;
  margin: 0rem 2rem;
  height: 200px;
  width: 350px;
  transition: 0.5s;
  text-align: left;
  overflow: auto;
}

#google-reviewss img {
  height: 60px;
  width: 60px;
}
#google-reviewss h3 {
  margin-top: 1rem;
}
.google-logo img {
  height: 5px !important;
  width: 5px !important;
  float: right;
}
.review__heading {
  font-size: 50px;
  font-family: "Zen Tokyo Zoo", cursive;
}
span.review-profile-image {
  float: left;
  padding: 0px 15px 0px 0px;
}
span.review-profile-image img {
  width: 40px;
}
.modal-backdrop.in {
  display: none;
}
.review-item {
  border-bottom: solid 1px rgba(190, 190, 190, 0.35);
  margin: 5px auto;
  display: block;
  width: 100%;
  padding: 15px 0px;
}
.head {
  display: flex;
}

@media (max-width: 1200px) {
  .review-item {
    flex: 1 1 40%;
  }
}

@media (max-width: 450px) {
  .review-item {
    flex: 1 1 90%;
  }
}

.review-meta,
.review-stars {
  text-align: left;
  font-size: 115%;
}
.review-author {
  text-transform: capitalize;
  font-weight: bold;
}
.review-date {
  opacity: 0.6;
  display: block;
}
.review-text {
  line-height: 1.55;
  text-align: left;
  max-width: 72em;
  margin: auto;
}

.review-stars ul {
  display: inline-block;
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.review-stars ul li {
  float: left;
  list-style: none !important;
  margin-right: 1px;
  line-height: 1;
}

.review-stars ul li i {
  color: #e4b248;
  font-size: 1.4em;
  font-style: normal;
}
.review-stars ul li i.inactive {
  color: #c6c6c6;
}
.star:after {
  content: "\2605";
}
/* Subhead */
.sub__head {
  display: flex;
  position: relative;
  width: 100%;
  padding: 3rem 0;
  /* text-align: center; */
  justify-content: center;
}
.sub__head .first__image {
  /* margin-top: -10vh; */
  position: absolute;
  top: 0px;
  left: -40px;
  z-index: -1;
  transform: rotate(20deg);
  opacity: 0.7;
  height: 100%;
}
.sub__head .second__image {
  position: absolute;
  top: 0px;
  right: -150px;
  z-index: -1;
  transform: rotate(-90deg);
  opacity: 0.7;
  height: 100%;
}
.heading {
  justify-content: center;
  padding: 1rem;
}
.heading h1 {
  font-family: "Dancing Script", cursive;
  color: var(--default-color2);
  font-size: 5rem;
}
.sub__head p {
  font-size: 2rem;
  /* text-align: center; */
}
/* Reports */

.services {
  background: linear-gradient(to top, rgba(56, 69, 85, 0.2), rgba(7, 7, 7, 0.3)),
    url("../images/apple.jpg") center/cover no-repeat;
  background-position: center;
  position: relative;
  /* overflow: hidden; */
  height: 50vh;
  font-family: "Raleway", sans-serif;
}
#services {
  width: 100%;
  height: 70vh;
  color: #fff;
}
.seasonHeader {
  display: flex;
  height: 9rem;
  background: var(--default-color2);
  color: white;
  justify-content: center;
  font-size: 2.5rem;
  margin-top: 6rem;
}
#firstHead {
  margin-top: 10px !important;
}
.seasonHeader h1 {
  margin-top: 8px;
}
.dash {
  background: white;
  width: 50%;
  height: 10px;
  margin-top: 40px;
  margin-right: 2rem;
}
.dash2 {
  background: white;
  width: 50%;
  height: 10px;
  margin-top: 40px;
  margin-left: 2rem;
}
.reportMonths {
  /* background:  url("../images/corns.png") no-repeat right; */

  display: grid;
  grid-template-columns: 1fr 0.05fr 1fr 0.05fr 1fr;
  text-align: center;
  justify-content: center;
}
.reportMonths h4 {
  font-size: 35px;
  color: var(--default-color2);
  font-weight: 600;
}

.fruitsVeggies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* justify-content: center; */
}
.fruitsVeggies h4 {
  font-size: 30px;
  font-weight: 600;
  color: orange !important
  ;
}
.fruitsVeggies li {
  font-size: 25px;
}
.reportLine {
  margin-top: 15rem;
  margin-left: 10px;
  height: 30rem;
  width: 0.41rem;
  background: var(--default-color2);
}
.reportHead {
  background: linear-gradient(to top, rgba(56, 69, 85, 0.2), rgba(7, 7, 7, 0.3)),
    url("../images/apple.jpg") center/cover no-repeat;
  background-position: center;
  position: relative;
  /* overflow: hidden; */
  height: 70vh;
  /* font-family: "Raleway", sans-serif; */
}
.reportHead h1 {
  margin-top: 13%;
  margin-bottom: 0 !important;
}
.reportHead p {
  font-family: "Dancing Script", cursive;
  font-size: 30px;
  font-weight: 600;
}

.report__content__bottom {
  display: flex;
  justify-content: flex-end;
  font-family: "Poppins" !important;
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 100%;
  /* transform: translate(-50%, -50%); */
  color: var(--grey-color);
  transition: 0.5s;
}
.slideshow-container .report__content__bottom {
  z-index: 1;
}
.report__content__bottom a {
  font-size: 2rem;
  font-weight: 900;
  padding: 4rem 5rem;
  transition: 0.5s;
  cursor: pointer;
}
.report__content__bottom a:hover {
  /* transform: translateY(-5px)!important; */
  transform: scale(1.09);
  opacity: 1;
}
.wholesale {
  background-color: rgb(18, 137, 84, 0.8);
}
.household {
  background-color: rgb(223, 150, 2, 0.8);
}
@media only screen and (max-width: 768px) {
  .report__content__bottom a {
    padding: 3rem 1rem;
    font-size: 1.6rem;
  }
}
#reportHead {
  width: 100%;
  /* height: 100%; */
  color: #fff;
}
#reports {
  padding: 6rem;
}
.reportHeader {
  display: grid;
  grid-template-columns: 3fr 9fr 3fr;
  position: relative;
  height: 20rem;
  margin-top: 20rem;
}
.reportFooter {
  display: grid;
  grid-template-columns: 3fr 9fr 3fr;
  position: relative;
  /* margin-top: 50px; */
}
.reportLogo {
  margin-top: -20px;
  height: 300px;
  width: 400px;
}
.reportLogo p {
  font-size: 2rem;
  margin-left: 30px;
  /* text-align: center; */
  color: var(--default-color2);
}
.reportInfo {
  margin-left: 200px;
  color: var(--default-color2);
  font-weight: 900;
}
/* SEASONAL AND MARKET Report */
#SMreports {
}

.reportBox {
  padding: 5rem;
  display: flex;
  column-gap: 3rem;
  justify-content: center;
  height: 800px;
}
.seasonalBox {
  width: 70rem;
  background: url("../images/carrotd.jpg") no-repeat;

  color: white;
  position: relative;
  vertical-align: text-bottom;
  cursor: pointer;
  transition: 0.5s;
}
.seasonalBox h4 {
  position: absolute;
  font-size: 40px;
  bottom: 0;
  margin-bottom: 20px;
  right: 3;
  padding-left: 2rem;
  font-weight: 800;
  transition: 0.5s;
}

.seasonalBox:hover h4 {
  transform: translateY(-40%);
}
.seasonalBox:hover {
  background: url("../images/carrotd.jpg") no-repeat 20% 0%;
}
.marketBox {
  position: relative;
  width: 70rem;
  padding-left: 3rem;
  background: url("../images//orangos.jpg") no-repeat;

  color: white;
  vertical-align: text-bottom;
  cursor: pointer;
  transition: 0.5s;
}
.marketBox h4 {
  position: absolute;
  font-size: 40px;
  bottom: 0;
  margin-bottom: 20px;
  padding-left: 2rem;
  font-weight: 800;
  transition: 0.5s;
}
.marketBox:hover h4 {
  transform: translateX(5%);
}
.marketBox:hover {
  background: url("../images/orangos.jpg") no-repeat 2%;
}
.downloadBox input[type="submit"] {
  position: fixed;
  top: 90%;
  right: 8%;
  width: 200px;
  color: white;
  background: var(--default-color2);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  transition: 0.5s;
}
.downloadBox input[type="submit"]:hover {
  opacity: 0.8;
}
@media (max-width: 567px) {
  .reportBox {
    display: grid;
    justify-content: normal;
  }
  .seasonalBox {
    width: 100%;
    background-size: cover;
  }
  .marketBox {
    width: 100%;
    background-size: cover;
  }
}

/* ===========Accordion============== */
.questions {
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  background: var(--default-color2);
}
.questions .title {
  color: var(--default-color);
  font-size: 50px;
  color: whitesmoke;
  font-family: "Zen Tokyo Zoo", cursive;
}
.accordion {
  background: none;
  cursor: pointer;
  color: white;
  padding: 18px;
  width: 60rem;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.5s;
}
@media only screen and (max-width: 996px) {
  .accordion {
    width: 100%;
  }
}

/* .questions .active, .accordion:hover {
  background-color: var(--grey-color2); 
} */

.accordion:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: left;
  margin-right: 10px;
}

/* .active:after {
  content: "\2212";
  margin-right: 10px;
} */
.accBox {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .accBox {
    display: block;
  }
}

.panel {
  padding: 5px;
  display: none;
  color: white;
  width: 400px;
  margin-left: 30px;
  /* background-color: white; */
  overflow: hidden;
  transition: 1s ease-out;
}

/* ========.to-top=============== */
.to-top {
  font-size: 1rem;
  font-weight: 999;
  position: fixed;
  bottom: 3rem;
  right: 9rem;
  text-align: right;
  padding: 1rem;
  background-color: var(--default-color2);
  color: white;
  cursor: pointer;
  transition: ease 0.5s;
}

.to-top:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/background/slider-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3ec1d5;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.owl-carousel .owl-nav.disabled {
  display: flex;
  width: 95%;
  top: 40%;
  position: absolute;
  justify-content: space-between;
}
/* .owl-nav .owl-prev{
  background-color: black !important;
  color: white !important;
  width: 30px;
  height: 30px;
} */
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  /* background-color:var(--default-color2) !important; */
  color: white;
  padding: 0.3rem 1rem;
  font-size: 5rem;
  font-weight: 500;
}
/* .owl-nav .owl-prev , .owl-nav .owl-next:hover{
  transform: scaleX(0.6);
  transition: 0.2s;
} */
.owl-dot {
  display: none !important;
}
.owl-nav .owl-next,
.owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.owl-nav .owl-next {
  right: 0;
  display: flex;
  margin-right: 2%;
  font-size: 25px !important;
}
.owl-nav .owl-prev {
  left: 0;
  display: flex;
  margin-left: 2%;
  font-size: 25px !important;
}

@media only screen and (max-width: 992px) {
  .owl-carousel .owl-nav,
  .owl-carousel .owl-dots {
    display: none;
  }
}
@media only screen and (max-width: 567px) {
  .owl-carousel .owl-nav,
  .owl-carousel .owl-dots {
    display: none;
  }
}
