.sliderDiv{
    width: 100%;
    position: relative;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: rgb(245, 245, 245);
    padding-bottom: 40px;
}

.slider{
    width: 1300px;
    max-width: 100vw;
    height: 700px;
    margin: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.358);
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    z-index: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.178);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
    backdrop-filter: blur(4px);
}
.slider .dots{
    z-index: 0;
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    z-index: 0;
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}

#next  {
    cursor: pointer;
}

#prev  {
    cursor: pointer;
    padding-left: 8px;
}

.material-symbols-outlined {
    transition: margin-left 0.3s ease;
}

.slider .item {
    position: relative;
}

.slider .item .title {
    z-index: 2;
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.555);
    transition: 0.5s;
}

.slider .item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-image: fill 0 linear-gradient(#0001, #000000a4);
    z-index: 0;
}

/* TYPING */
.typing {
    width: 100%;
    display: flex;
    height: 150px;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: rgb(245, 245, 245);
    transition: 0.5s;
}

.typingH {
    position: absolute;
    font-size: 50px;
    color: #0265bd;
    text-align: center;
    font-family: Lato, sans-serif;
    font-weight: 700;
    width: 100%;
    margin: 30px 20px;
    transition: 0.5s;
  }
  
  /* Typewriter effect 1 */
  @keyframes typing {
    0%, 28% { content: ""; }
    1%, 27% { content: "S"; }
    2%, 26% { content: "Sa"; }
    3%, 25% { content: "Sat"; }
    4%, 24% { content: "Sati"; }
    5%, 23% { content: "Satis"; }
    6%, 22% { content: "Satisf"; }
    7%, 21% { content: "Satisfa"; }
    8%, 20% { content: "Satisfac"; }
    9%, 19% { content: "Satisfact"; }
    10%, 18% { content: "Satisfacti"; }
    11%, 17% { content: "Satisfactio"; }
    12%, 16% { content: "Satisfaction"; }

    32%, 52% { content: ""; }
    33%, 51% { content: "S"; }
    34%, 50% { content: "Se"; }
    35%, 49% { content: "Sec"; }
    36%, 48% { content: "Secu"; }
    37%, 47% { content: "Secur"; }
    38%, 46% { content: "Securi"; }
    39%, 45% { content: "Securit"; }
    40%, 44% { content: "Security"; }

    56%, 79% { content: ""; }
    58%, 78% { content: "R"; }
    59%, 77% { content: "Re"; }
    60%, 76% { content: "Rep"; }
    61%, 75% { content: "Repu"; }
    62%, 74% { content: "Reput"; }
    63%, 73% { content: "Reputa"; }
    64%, 72% { content: "Reputat"; }
    65%, 71% { content: "Reputati"; }
    66%, 70% { content: "Reputation"; }

    84%, 96% { content: ""; }
    85%, 95% { content: "T"; }
    86%, 94% { content: "Tr"; }
    87%, 93% { content: "Tru"; }
    88%, 92% { content: "Trus"; }
    89%, 91% { content: "Trust"; }
}
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .typewriter {
    --caret: currentcolor;
  }
  
  .typewriter::before {
    content: "";
    animation: typing 12s infinite;
  }
  
  .typewriter::after {
    content: "";
    border-right: 1px solid var(--caret);
    animation: blink 0.5s linear infinite;
  }
  
  .typewriter.thick::after {
    border-right: 1ch solid var(--caret);
  }
  
  .typewriter.nocaret::after {
    border-right: 0;
  }
  
  
  @media (prefers-reduced-motion) {
    .typewriter::after {
      animation: none;
    }
    
    @media (prefers-reduced-motion) {
        @keyframes sequencePopup {
            0%, 100% { content: "satisfaction"; }
            25% { content: "professionalism"; }
            50% { content: "reputation"; }
            75% { content: "trust"; }
        }
    }
  
    .typewriter::before {
      content: "developer";
      animation: sequencePopup 12s linear infinite;
    }
  }
/* TYPING */


@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }

    .typing {
        max-width: 100%;
        height: 100px;
    }

    .typingH {
        font-size: 30px;
    }

    .slider .item .title {
    font-size: 26px;
    bottom: 25px;
    }
}