/* DESCRIPTION */
.description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.description li {
  font-family: 'Roboto Condensed', sans-serif;
}

.description_content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.description_content h1 {
  font-size: 40px;
  color: var(--color-mainGreen);
  text-align: center;
}

.description_content strong {
  font-size: 20px;
}
.description_content p {
  margin-top: 20px;
}

.side_description {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.side_description img {
  width: 600px;
  height: 400px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.trobareu {
  display: flex;
  align-items: center;
  gap: 25px;
}
.trobareu_content ul {
  padding-left: 200px;
}
.trobareu_content a {
  text-decoration: none;
  color: black;
}
.trobareu_content li {
  font-family: 'Roboto Condensed', sans-serif;
}
.trobareu_content img {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  box-shadow: none;
  filter: invert(44%) sepia(100%) saturate(270%) hue-rotate(93deg) brightness(100%) contrast(95%);
}
.trobareu_dia {
  width: fit-content;
  border-bottom: 2px solid black;
  color: var(--color-mainGreen);
  font-weight: bold;
}
.podenSer {
  font-size: 20px;
}
.greenRancho {
  font-family: 'Rancho', cursive;
  color: var(--color-mainGreen);
  font-size: 20px;
}
.last_description {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: var(--color-mainGreen);
}
.last_description p {
  font-family: 'Rancho', cursive;
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  .description ul {
    list-style-type: disc;
    list-style-position: inside; 
    padding-left: 20px;
  }
  .description_content h1 {
      font-size: 30px;
  }
  .description_content strong {
    padding-left: 10px;
    padding-right: 10px;
  }
  .description_content p {
      padding-left: 10px;
      padding-right: 10px;
  }
  .side_description img {
      width: 350px;
      height: 250px;
  }
  .trobareu {
      flex-direction: column;
  }
  .trobareu_content {
      padding-left: 25px;
      padding-right: 25px;
  }
  .trobareu_content img {
      width: 20px;
      height: 20px;
  }
  .last_description p {
    padding-left: 20px;
  }
}
/* END DESCRIPTION */

/* PRODUCTS */
.products_content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
}

.product {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #ccc; */
  padding: 10px;
}

.product_img {
  width: 600px;
  height: 400px;
}

@media only screen and (max-width: 768px) {
  .product_img {
      width: 150px;
      height: 100px;
  }
}
/* END PRODUCTS */

/* CONTACT US */
.contactUs {
  display: flex;
  justify-content: center;
}
.contactUs_content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--color-mainGreen);
  /* color: var(--color-white); */
  /* background-color: var(--color-mainGreen); */
  padding: 25px;
  border-radius: 25px;
  align-items: center;
}

.contactUs_content span {
  display: flex;
}


.contactUs_content a img {
  margin-left: 15px;
  width: 35px;
  height: 35px;
  filter: invert(56%) sepia(21%) saturate(1224%) hue-rotate(93deg) brightness(92%) contrast(87%);
  animation: jump-shaking 1.5s infinite;
}

@keyframes jump-shaking {
  0% { transform: translateX(0) }
  25% { transform: translateY(-9px) }
  35% { transform: translateY(-9px) rotate(17deg) }
  55% { transform: translateY(-9px) rotate(-17deg) }
  65% { transform: translateY(-9px) rotate(17deg) }
  75% { transform: translateY(-9px) rotate(-17deg) }
  100% { transform: translateY(0) rotate(0) }
}

/* END CONTACT US */
/* PRODUCTS */  
.products {
  display: flex;
  flex-direction: column;    
}
.activity {
  /* background-color: rgb(248, 123, 123); */
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 40px;
}
.activity_grid {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 20px;
}


.activity_slider_container {
  overflow: hidden;
  display: block;
  text-align: center;
}
.activity_slider_container figure img {
  width: 20%;
  float: left;
  height: auto;
  object-fit: cover;
}
.activity_slider_container figure {
  height: auto;
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 30s slidy infinite;
}

@media only screen and (max-width: 768px) { 
  .activity {
    margin-left: 20px;
    margin-right: 20px;
  }
  .activity ul {
    list-style-type: disc;
    list-style-position: inside; 
    padding-left: 20px;
  }
  .activity_grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 960px) { 
  .activity-image {
    margin-top: 50%;
  }
}
/* END PRODUCTS */