@media screen and (min-width: 0px) {
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px;
  }

  .card {
    width: 320px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
  }

  .card img {
    width: 100%;
    height: 45%;
    object-fit: cover;
    display: block;
  }

  .card-contentO {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #e6a545;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
    height: 55%;
  }

  .card-contentR {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #e76c68;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
    height: 55%;
  }

  .card-contentB {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: #579ac1;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
    height: 55%;
  }

  .card:hover .card-contentO, .card:hover .card-contentR, .card:hover .card-contentB {
    height: 100%;
    bottom: 0;
  }

  .card-content .default-text,
  .card-content .hover-text {
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
    left: 0;
  }

  .card-content .default-text {
    opacity: 1;
    top: 8%;
   padding-left: 60px;
   padding-right: 60px;
  }

  .card:hover .default-text {
    opacity: 0;
  }

  .card-content .hover-text {
    opacity: 0;
    top: 5%;
   padding-left: 20px;
   padding-right: 20px;
  }

  .card:hover .hover-text {
    opacity: 1;
  }

  .card h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .card a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
  }

  .orangeBkg { background-color: #e6a545; }
  .blueBkg { background-color: #579ac1; }
  .redBkg { background-color: #e76c68;}

  .mobileCardSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mobileCard {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.mobileCard img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cardContent {
  padding: 20px;
  color: white;
}

.orange { background-color: #de9b4b; }
.salmon { background-color: #e47161; }
.blue { background-color: #539fc9; }

.cardContent h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.cardContent p {
  font-size: 14px;
  margin-bottom: 15px;
}

.cardContent a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: white;
  opacity: 0.5;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  opacity: 1;
}

.learnMore {
  text-align: center;
  width: 100%;
  margin-bottom: 25px;
}


  * {
    box-sizing: border-box;
  }
  
    .fullContainer {
        grid-column: col-start 1 / span 10;
    }

    .imgInnovation {
        width: 100%;
    }

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .infoCarousel {
        display: flex;
        height: auto;
        position: relative;
        color: white;
        text-align: center;
        max-height: 612px;
    }

    .nav-arrow {
        position: absolute;
        top: 63%;
        transform: translateY(-50%);
        font-size: 2em;
        cursor: pointer;
        color: white;
        user-select: none;
    }

    .prev {
        left: 5%;
        display: none; /* Initially hidden */
    }

    .next {
        right: 5%;
    }

    .dots {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 20px;
        margin-bottom: 15px;
        margin-top: 20px;
    }

    .dot {
        height: 13px;
        width: 13px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
    }

    .active {
        background-color: white;
    }
    .square {
        width: 100%;
        padding: 20px 10px;
        text-align: center;
    }

    .carouselImg {
        width: 100%;
        height: auto;
        transition: opacity 0.3s ease, visibility 0.3s ease, margin 0.3s ease;
        display: block;
    }

    .carouselTitle {
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 15%;
        margin-right: 15%;
        font-size: 1.6em;
        line-height: 1.2em;
    }
    .carouselP {
        margin-left: 12%;
        margin-right: 12%;
    }

    .carouselInfo {
        margin-top: 60px;
        width: 100%;
    }
    .innVideo {
      margin-left: 15px;
      margin-right: 15px;
    }
    .spacing-inno {
      margin-top: 25px;
    }
}
@media only screen and (min-width: 300px) {

}

@media only screen and (min-width: 320px) {

}

@media only screen and (min-width: 350px) {
    .carouselP {
        margin-left: 15%;
        margin-right: 15%;
    }
}

@media only screen and (min-width: 375px) {
    .carouselP {
        margin-left: 18%;
        margin-right: 18%;
    }
    .prev {
        left: 8%;
        display: none; /* Initially hidden */
    }

    .next {
        right: 8%;
    }
}

@media only screen and (min-width: 400px) {
    .carouselInfo {
        margin-top: 70px;
    }
}

@media only screen and (min-width: 450px) {
    .carouselP {
        margin-left: 10%;
        margin-right: 10%;
    }
    .prev {
        left: 10%;
        display: none; /* Initially hidden */
    }

    .next {
        right: 10%;
    }
}

@media only screen and (min-width: 470px) {

}
@media only screen and (min-width: 540px) {
    .carouselImg {
        width: 100%;
        height: auto;
    }
    
    .carouselP {
        margin-left: 25%;
        margin-right: 25%;
    }
    .carouselInfo {
        margin-top: 60px;
    }
    .fullContainer {
      grid-column: col-start 2 / span 8;
    }
    .spacing-inno {
      margin-top: 50px;
    }
}

@media only screen and (min-width: 601px) {
    .carouselInfo {
        margin-top: 70px;
    }
}

@media only screen and (min-width: 680px) {
  .innVideo {
      margin:auto;
    }
}

@media only screen and (min-width: 768px) {

}

@media screen and (min-width: 800px) {

}

@media screen and (min-width: 850px) {

}
@media only screen and (max-width: 950px) {

}
@media only screen and (min-width: 950px) {
    
}
@media only screen and (min-width: 1100px) {
    .fullContainer {
        grid-column: col-start 1 / span 14;
    }
    .mobile {
        display: none;
    }
    .desktop {
        display: block;
    }
    .square {
        width: 265px;
        margin-right: 50px;
        margin-left: 50px;
        padding: 35px 10px;
    }
    .flexContainer {
        display: flex;
        justify-content: center;
    }
    .spacing-inno {
      margin-top: 75px;
    }
}

@media only screen and (min-width: 1200px) {
  
}

@media only screen and (min-width: 1290px) {
   
}

@media only screen and (min-width: 1400px) {
    
}

@media only screen and (min-width: 1400px) {

}

@media only screen and (min-width: 1900px) {

}

