* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 2500px;
    position: relative;
    margin: auto;  
  }
  .container img{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .slide {
    display: none;

  }
  .slider-button{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgb(243, 240, 240);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  .dots-container{
    position: absolute;
    left:  50%;
    transform: translateX(-50%);
    bottom: 1rem;
  }
  #prevBtn{
    left:0;
    
  }
  #nextBtn{
    right:0;
  }
  .slider-button:hover{
    background-color: rgba(0,0,0,0.8);
  }
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .dot:hover {
    background-color: #b75d5d;
  }
  .dots-container .activeDot{
    background-color: rgb(212, 102, 80);
  }

  /* Fading animation */
.slide {
    animation-name: slide;
    animation-duration: 1.5s;
  }
  
  @keyframes slide {
    from {opacity: .4}
    to {opacity: 1}
        

  }

  @media (max-width:650px) {
    .slide img{
        width: 100%;
        height: auto;
        object-fit: cover;
    
    
    }
}

.text-container{
    margin-bottom: 50px;
    max-width: 1754px;
    margin: 0 auto;
  }
  
 
  
  /* ข้อความ */
  .text-container .text{
    margin-left: 80px;
    margin-right: 80px;
    text-indent: 50px;
    margin-bottom: 20px;
    font-size: clamp(10px, 2.5vw, 21px);
    /* font-weight: bold; */
    font-family: 'IBM Plex Sans Thai', sans-serif;
  
  }


  .imagenortek{
    max-width: 1754px;
    margin: 1px auto;
    position: relative;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .imagenortek img{
    width: 80%;
  }

  .load{
    position: relative;
    max-width: 1754px;
    margin: 20px auto;
  }
  
  .down i{
    margin-left: 5px;
  }

  