.section-6 {
    position: relative;
    max-width: 2000px;
    margin: 50px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .section-6 .container{
    padding: 50px 0px;
    background: #00B3D5;
    overflow: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
  
  .section-6 .header {
    position: relative;
    margin-top: -50px;
    transition: all 0.5s ease;
  }
  .section-6 .header h1{
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
  }
  .section-6 .header p{
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    width: 500px;
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
  }
  .section-6 .carousel-container .carousel {
    position: relative;
    width: 60em;
    height: 30rem;
    perspective: 1000px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container .card-container {
    position: absolute;
    transform: rotateY(calc(var(--offset) * 50deg))      scaleY(calc(1 + var(--abs-offset) * -0.4))      translateZ(calc(var(--abs-offset) * -30rem))      translateX(calc(var(--direction) * -5rem));
    filter: blur(calc(var(--abs-offset) * 1rem));
    transition: all 0.5s ease-out;
    opacity: var(--opacity);
}
  
  .section-6 .carousel-container .card {
    position: relative;
    text-align: justify;
    background: transparent;
    border: none;
    transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
}
  .section-6 .carousel-container .card img{
    position: relative;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container .nav {
    color: #FF6F00;
    font-size: 3rem;
    position: relative;
    top: calc(55% - 1.5rem);
    z-index: 2;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container .nav.left {
    right: 2rem;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container .nav.right {
    left: 3rem;
    transition: all 0.5s ease;
  }
  
  /* Navigation dots */
  .section-6 .carousel-container .nav-dots {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 30rem;
    transition: all 0.5s ease;
  }
  
  .section-6 .carousel-container .dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #FF6F00;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.4s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.4s ease;
    -moz-transition: opacity 0.5s ease, transform 0.4s ease;
    -ms-transition: opacity 0.5s ease, transform 0.4s ease;
    -o-transition: opacity 0.5s ease, transform 0.4s ease;
}
  
  .section-6 .carousel-container .dot:hover {
    opacity: 0.8;
  }
  
  .section-6 .carousel-container .dot.active-dot {
    opacity: 1;
    transform: scale(1.2);
    transition: all 0.5s ease;
  }
  

/* 320px */
@media screen and (min-width: 320px) {
    .section-6 .header h1{
        font-size: 2rem;
    }

    .section-6 .header p{
      width: 300px;
      font-size: 1.1rem;
    }

    .section-6 .carousel-container{
        padding: 20px;
    }

    .section-6 .carousel-container .carousel{
        margin: -120px auto;
    }

    .section-6 .carousel-container .nav {
        top: calc(30% - 1.5rem);
    }
    .section-6 .carousel-container .nav-dots {
        margin-top: 15rem;
    }     
}
/* 375px */
@media screen and (min-width: 375px) {
    .section-6 .header h1{
        font-size: 2.2rem;
    }

    .section-6 .header p{
      width: 350px;
      font-size: 1.1rem;
    }

    .section-6 .carousel-container .carousel{
        margin: -120px auto;
    }

    .section-6 .carousel-container .nav {
        top: calc(33% - 1.5rem);
    }
    .section-6 .carousel-container .nav-dots {
        margin-top: 17rem;
    }     
}
/* 425px */
@media screen and (min-width: 425px) {
    .section-6 .header h1{
        font-size: 2.4rem;
    }

    .section-6 .header p{
      width: 400px;
      font-size: 1.1rem;
    }

    .section-6 .carousel-container .carousel{
        margin: -120px auto;
    }

    .section-6 .carousel-container .nav {
        top: calc(33% - 1.5rem);
    }
    .section-6 .carousel-container .nav-dots {
        margin-top: 17rem;
    }     
}
/* 768px */
@media screen and (min-width: 768px) {
    .section-6 .header h1{
        font-size: 3rem;
    }

    .section-6 .header p{
      width: 500px;
      font-size: 1.3rem;
    }

    .section-6 .carousel-container .carousel{
        margin: 0px auto;
    }

    .section-6 .carousel-container .nav {
        top: calc(54% - 1.5rem);
    }
    .section-6 .carousel-container .nav-dots {
        margin-top: 30rem;
    }     
}
/* 955px */
@media screen and (min-width: 955px) {
  .section-6 .carousel-container .nav {
    top: calc(61% - 1.5rem);
  }
  .section-6 .carousel-container .nav-dots {
    margin-top: 34rem;
  } 
}

/*=== Good Innovation ==*/
.section-6 .good-innovation{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 70px auto 0;
  padding: 10px;
  transition: all 0.5s ease;
}

.section-6 .good-innovation h1{
    margin: 0 auto;
    font-size: 3rem;
    text-align: center;
    color: #003E65;
    font-family: "Monserrat", sans-serif;
    transition: all 0.5s ease;
}
.section-6 .good-innovation p{
  font-size: 1.1rem;
  color: #F36F2A;
  transition: all 0.5s ease;
  
}

/* Centered Button */
.innovation-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff6a00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 2rem;
  transition: background-color 0.3s ease;
}

.innovation-button:hover {
  background-color: #e55b00;
}

.section-6 .good-innovation video{
  position: relative;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease;
}

/* 320px */
@media screen and (max-width: 425px) {
    .section-6 .good-innovation h1{
        font-size: 2rem;
    } 
    .section-6 .good-innovation p{
      font-size: 1rem;
    }
}



