body {background-color: black ; margin:0;width: 100%;  height: 100vh;}



.container{
  display:flex;
  justify-content: space-between;
  width:100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 1%;
}
.texts {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: flex-start;
  position: sticky;
  padding: 1%;
}


.sx{
    width: 50%;
    color: white;
    text-decoration: none;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    font-size: smaller;
    font-style: normal; 
    text-align: left;
    margin: 0%;
}
.dx {
    width: 50%;
    color: white;
    text-decoration: none;
    font-family: "neue-haas-grotesk-text", sans-serif;
    font-weight: 400;
    font-size: smaller;
    font-style: normal; 
    text-align: right;
    margin: 0%;
}



.scrollv {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  -ms-overflow-style: none;
}

.scrollv::-webkit-scrollbar {
    display: none;
}

img {
    width: 80vh;
    height: clamp(45vh,100vh, 96vh);
    object-fit: contain;
    flex-shrink: 0;
    margin: 0%;
}

.scrollo {
    width: 100%;
    display: flex;
    padding: 0%;
    align-items: flex-start;
    justify-content: space-between;
    overflow-x: scroll;
    min-height: 100vh;
    box-decoration:none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollo::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 768px) {

  .container {
    flex-direction: column;
    height: 100vh;
    padding: 2%;
  }

  .texts {
    width: 100%;
    height: 28vh;
    position: relative;
    padding: 0;
  }

  .scrollv {
    width: 100%;
    height: 72vh;
  }

  .scrollo {
    width: 100%;
    min-height: 72vh;
    justify-content: flex-start;
  }

  img {
    width: auto;
    height: 70vh;
    padding: 1%;
  }

  .sx,
  .dx {
    font-size: 11px;
  }
}