@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap');

:root {
  --background1: #004B23;
   --background2: #007200;
   --primary: #004B23;
   --secondary: #006400;
   --tertiary: #e0e1dd;
}

* {
  font-family: Montserrat;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}

h1 {
  margin: 0;
}

p {
  font-weight: 300;
}

header {
  position: fixed;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
  width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--primary);
  font-weight: 300;
  padding: 15px 40px;
  color: var(--tertiary);
  z-index:1000;
}

header h1 {
  border-right: 1px solid var(--secondary);
  padding-right: 40px;
  margin: 0;
  z-index:1000;
}

header ul {
  display: flex;
  gap: 40px;
  list-style-type: none;
  margin-left: 40px;
  z-index:1000;
}

header li a {
  text-decoration: none;
  color: var(--tertiary);
  font-size: 1.2rem;
  z-index:1000;
}

header li {
  align-self: center;
  text-decoration: none;
  z-index:1000;
}

header li :hover {
  text-decoration: underline;
  color: var(--background2);
  z-index:1000;
}

.content {
  padding: 74px 50px;
  background-color: var(--background1);
  display: block;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 90px;
}

button {
  width: 50%;
  background-color: var(--background1);
  color: var(--tertiary);
  padding: 12px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

body {
  background-color: var(--background1);
  font-family: 'Montserrat';
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  color: var(--tertiary)
}

* {
  margin: 0;
  padding: 0;
}

.crop {
  display: grid;
  height: 100%;
}

.crop1 {
  max-width: 100%;
  max-height: 100vh;
  margin: auto;
}

.crop img {
   max-width: 100%;
   height: auto;
   margin: 0 auto;
}


footer {
  background-color: var(--secondary);
  color: var(--tertiary);
  text-align: center;
  padding: 15px;
}

footer a {
  color: var(--tertiary);
}

footer div {
  margin: 20px;
}


@media screen and (max-width: 800px) {
  footer {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 750px) {
  footer {
    grid-template-columns: 1fr;
  }

  header {
   position: fixed;
   box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
   width: 100%;
   display: flex;
   align-items: center;
   background-color: var(--primary);
   font-weight: 300;
   padding: 15px 40px;
   color: var(--tertiary);
  z-index:1000;
}

header h1 {
   border-right: 1px solid var(--secondary);
   padding-right: 40px;
   margin: 0;
  z-index:1000;
}

header ul {
   display: flex;
   gap: 40px;
   list-style-type: none;
   margin-left: 40px;
  z-index:1000;
}

header li a {
   text-decoration: none;
   color: var(--tertiary);
   font-size: 1.2rem;
  z-index:1000;
}

header li {
   align-self: center;
   text-decoration: none;
  z-index:1000;
}

header li :hover {
   text-decoration: underline;
   color: var(--background2);
  z-index:1000;
}

  .content {
  padding: 74px 50px;
  background-color: var(--background1);
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 90px;
  color: var(--tertiary)
}

  #homepage_fruit {
    margin-top: 100px;
  }

  .info {
    margin-top: 100px;
  }

  .business_information {
    grid-row: 3;
  }
}

h5 {text-align: center;
    font-size: 69;
   }

.iframe-embed {
    position: absolute;
    top: 0;
    left: 10%;
    bottom: 0;
    height: 80%;
    width: 80%;
    border: 0;
}
.iframe-embed-wrapper {
    position: relative;
    display: inline-block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.iframe-embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

/* Slideshow container */
  .slideshow-container {
      max-width: 1000px;
       /* position: relative;  */
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
    
    /* Hide the images by default */
    .mySlides {
       display: none;
    margin-left: auto;
    margin-right: auto;
    }
  
    /* .mySlides img {
      margin-top: 50px;
      max-width: 395px;
      max-height: 395px;
    } */
    
    /* The dots/bullets/indicators */
    .dot {
      cursor: pointer;
      height: 15px;
      width: 15px;
      margin: 0 auto;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
    }
    
    .active, .dot:hover {
      background-color: #717171;
    }