html {
  font-family: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  text-align: center;
}

#container {
  position: relative;
}

section.section_container {
  margin-bottom: 80px;
}

.section_body {
  margin: 40px 0;
}

a {
  text-decoration: none;
  color: hsl(142, 76%, 36%);
}
a:hover {
  color: hsl(9, 100%, 64%);
}

h2 {
  font-size: 3rem;
}

.inline_block {
  display: inline-block;
}

.subtitle {
  font-size: 1.8rem;
}

header {
  width: 100%;
  height: 92px;
  padding: 0 7.8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid hsl(9, 100%, 64%);
}
@media screen and (max-width: 700px) {
  header {
    padding: 0;
    flex-direction: column;
  }
}
header h1 {
  font-size: 2.3rem;
}
header nav {
  font-size: clamp(1.1rem, 1.2vw, 1.5rem);
}
header nav ul {
  display: flex;
  justify-content: end;
  gap: 2vw;
}
@media screen and (max-width: 700px) {
  header nav ul {
    justify-content: center;
    padding-bottom: 10px;
  }
}
header nav ul li {
  list-style: none;
  white-space: nowrap;
}

main {
  width: 100%;
}

#home {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: hsl(0, 0%, 98%);
  line-height: 1.1;
  text-shadow: 0 0 4px hsl(0, 0%, 50%);
}
#home div .from_tomosan_farm {
  font-size: clamp(3rem, 20vw, 6rem);
  font-weight: 800;
}
#home div .to_family {
  font-size: clamp(1rem, 9vw, 2.5rem);
  font-weight: 600;
}
#home div .green {
  color: hsl(142, 69%, 58%);
}

#news .news_body {
  height: 200px;
  overflow-y: scroll;
}
#news table {
  margin: 0 auto;
  border-spacing: 20px;
}

#products {
  width: 100%;
}
#products .green_title {
  color: hsl(142, 76%, 36%);
}

#product_cards {
  display: flex;
  gap: 2%;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1039px) {
  #product_cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vh;
  }
}
#product_cards .card {
  width: min(30vw, 500px);
  display: flex;
  flex-direction: column;
  border-radius: 0.9rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2), -2px -2px 12px -3px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1038px) {
  #product_cards .card {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1039px) {
  #product_cards .card {
    margin: 2vh auto;
    width: 80%;
    aspect-ratio: 1/0.3;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  #product_cards .card {
    width: 90%;
    aspect-ratio: 1/0.4;
  }
}
#product_cards .card .image_photo {
  height: 50%;
  width: 100%;
  border-radius: 0.9rem 0.9rem 0 0;
  overflow: hidden;
}
#product_cards .card .image_photo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1039px) {
  #product_cards .card .image_photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1039px) {
  #product_cards .card .image_photo {
    height: 100%;
    width: 30%;
    border-radius: 0.9rem 0 0 0.9rem;
  }
}
#product_cards .card .product_features {
  height: 50%;
  padding: clamp(0px, 1.2vw, 1.2rem) clamp(20px, 1.2vw, 1.2rem);
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 1039px) {
  #product_cards .card .product_features {
    height: 100%;
    width: 70%;
  }
}
#product_cards .card .product_features h3 {
  font-size: clamp(1.2rem, 1.5vw, 2rem);
}
@media screen and (max-width: 1039px) {
  #product_cards .card .product_features h3 {
    font-size: clamp(1.2rem, 3vw, 2.3rem);
  }
}
#product_cards .card .product_features p {
  flex-grow: 2;
  margin-bottom: auto;
  font-size: clamp(1rem, 1.1vw, 1.5rem);
}
@media screen and (max-width: 1039px) {
  #product_cards .card .product_features p {
    margin: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  #product_cards .card .product_features p {
    margin: 0;
  }
}
#product_cards .card .product_features .buy_product {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#product_cards .card .product_features .buy_product .price {
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  font-weight: 600;
  color: hsl(142, 76%, 36%);
}
@media screen and (max-width: 1039px) {
  #product_cards .card .product_features .buy_product .price {
    font-size: clamp(1rem, 2.5vw, 2rem);
  }
}
#product_cards .card .product_features .buy_product .buy {
  display: block;
  padding: 0.5vw 1.5vw;
  background-color: hsl(142, 76%, 36%);
  border-radius: 0.3rem;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  font-weight: 600;
  color: hsl(0, 0%, 98%);
}
@media screen and (max-width: 1039px) {
  #product_cards .card .product_features .buy_product .buy {
    font-size: clamp(1rem, 2.3vw, 1.5rem);
  }
}

#video .video_container h2 {
  font-size: 1.5rem;
}

#main-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.9rem;
}

#footer {
  position: relative;
  margin: 0;
  padding: 0;
  padding-bottom: 40px;
  padding-top: 10px;
  background-color: hsl(36, 45%, 61%);
  border-top: hsl(142, 76%, 36%) 5px solid;
}
#footer img {
  position: absolute;
  top: -65px;
  right: 0;
  left: 0;
  margin: auto;
  width: 60px;
  height: 60px;
}
#footer small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#footer small .table {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#footer small .table .table_row {
  display: flex;
}
#footer small .table .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#footer small .table .table_title {
  text-align: center;
}
#footer small .table .table_title h2 {
  font-size: 2rem;
}
#footer small .table .th {
  text-align: right;
  margin: 0;
  padding: 2px 3px;
}
#footer small .table .td {
  text-align: left;
  padding: 2px 3px;
}/*# sourceMappingURL=style.css.map */