/* DESCRIPTION */
.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.description_content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}

.description_content h1 {
    font-size: 40px;
    color: var(--color-mainGreen);
    text-align: center;
}

.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 a {
    text-decoration: none;
    color: black;
}
.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;
}

.last_description {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.last_description p {
  font-family: 'Rancho', cursive;
  font-size: 20px;
  color: var(--color-mainGreen);
}
@media only screen and (max-width: 768px) {
    .description_content h1 {
        font-size: 30px;
    }
    .description_content p {
        padding-left: 20px;
        padding-right: 20px;
    }
    .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;
    }
}
/* END DESCRIPTION */

/* 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 */