.poppins-thin {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .poppins-extralight {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-regular {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-medium {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: normal;
  }
  
  .poppins-bold {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .poppins-extrabold {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: normal;
  }
  
  .poppins-black {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .poppins-thin-italic {
    font-family: "Poppins", serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .poppins-extralight-italic {
    font-family: "Poppins", serif;
    font-weight: 200;
    font-style: italic;
  }
  
  .poppins-light-italic {
    font-family: "Poppins", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .poppins-regular-italic {
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .poppins-medium-italic {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .poppins-semibold-italic {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-style: italic;
  }
  
  .poppins-bold-italic {
    font-family: "Poppins", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .poppins-extrabold-italic {
    font-family: "Poppins", serif;
    font-weight: 800;
    font-style: italic;
  }
  
  .poppins-black-italic {
    font-family: "Poppins", serif;
    font-weight: 900;
    font-style: italic;
  }
  
/* global.css */
body {
    color: rgb(119,119,119);
}

.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
    color: rgb(51,51,51);
}

.container {
  max-width: 1280px!important;
}

.header-container {
    background-image: url('./../images/landing-page_resize.png'); /* replace 'your-image.jpg' with the actual image filename */
    background-size: cover;
    background-position: center; /* centers the background image */
    height: 500px;
    width: 100vw; /* makes the container full width */
    margin: 0 auto;
    display: flex;
    justify-content: center; /* centers the content horizontally */
    align-items: center; /* centers the content vertically */
}

.main-menu,
footer {
    background: #7fb401;
}

.main-menu nav {
    height: 70px;
}

.main-menu nav ul {
    display: inline-block;
}

.main-menu nav ul > li {
    float: left;
}

.main-menu nav ul > li > a {
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
    padding: 0 21px;
    font-size: 15px;
    color: #fff;
    line-height: 66px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.main-menu nav ul > li:hover > a,
.main-menu nav ul > li.active > a {
    background: #75a501;
    border-color: #699401;
}

.btn {
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
    padding: 0 21px;
    font-size: 15px;
    color: #fff;
    line-height: 66px;
    display: inline-block;
    background: #7fb401;
}

.btn:hover {
    background: #75a501;
    border-color: #699401;
}

main p {
    margin-top: 15px;
    margin-bottom: 15px;
}

.prod-container {
    padding-bottom: 24px;
    padding-top: 24px;
    border-bottom: 2px solid #7fb401;
}

.prod-container:last-child{
    padding-bottom: 0;
    border-bottom: none;
}

.prod-container .image-container {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: rgb(127 180 1 / 20%);
}

footer {
    padding: 20px;
    color: #fff;
}

#mobile-menu {
    transition: transform 0.5s ease-in-out;
    transform: scaleY(0);
    border-top: 4px solid #75a501;
    background-color: #7fb401;
    color: #fff;
}

#mobile-menu ul > li > a {
    text-transform: uppercase;
    border-bottom: 4px solid transparent;
    padding: 4px 18px;
    font-size: 15px;
    color: #fff;
    line-height: 32px;
    display: block;
    text-decoration: none;
}

#mobile-menu ul > li.active > a {
    background: #75a501;
    border-color: #699401;
}

#mobile-menu.show {
    transform: scaleY(1);
}

#mobile-menu-button {
    background-color: #A6C724;
    color: #fff;
    padding-top: 5px;
}

.aspect-ratio-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
  }
  
  .aspect-ratio-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
