.section{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.media-object{
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 70px;
    padding: 150px 150px;
}

.mo-img{
    width: 350px;
    height: auto;
    box-shadow: 0 10px 15px rgb(0, 0, 0, 0.3);
    border-radius: 2px;
}

.mo-text{
    width: 800px;
    height: auto;
    font-weight: 400;
    font-size: 18px;
    text-align: left;
    text-indent: 5px;
    white-space: pre-line;
    line-height: 1.3;
}

.mo-text-container{
    gap: 100px;
}

.mo-text-container h2{
    color: #0D1B2A;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 37px;
}

.section-urunler{
  overflow: hidden;
  width: 100%;
  padding: 50px 0 150px 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.section-urunler h2{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0D1B2A;
    font-size: 40px;
    text-align: center;
    font-family: "Quicksand", sans-serif;
}

.slider-track {
  display: flex;
  gap: 60px;
  animation: scroll 15s linear infinite;
  align-items: center;
}

.urun {
    min-width: 650px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgb(0, 0, 0, 0.5);
    height: 450px;
    overflow: hidden;
    border-radius: 5px;
}

.urun img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}