@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700|Inter:300,500,400,700,italic|Poppins:400");

* {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
} */

a {
  text-decoration: none;
  color: inherit;
}
.ELMNT-LP-desktop {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #ffffff;
  overflow: hidden;
}

body::-webkit-scrollbar {
  display: none;
}
/* --------- */
.vertical-scroll-wrapper {
  height: 100%;
  overflow: hidden;
  display: flex;
  gap: 20px;
  position: relative;
  width: 100%;
}
.vertical-scroll-track {
  width: 50%;
  display: flex;
  flex-direction: column;
  animation: scroll-up 30s linear infinite;
}
.vertical-scroll-track2 img,
.vertical-scroll-track img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}
.vertical-scroll-track2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  animation: scroll-down 30s linear infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.mobileSliderHero {
  display: none;
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%); /* scroll half way to loop cleanly */
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1080px) {
  .vertical-scroll-wrapper {
    gap: 10px;
  }
  .vertical-scroll-track img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 990px) {
  .webSliderHero {
    display: none;
  }
  .mobileSliderHero {
    display: flex;
  }
  .vertical-scroll-wrapper {
    flex-direction: column;
  }
  .vertical-scroll-track {
    width: 100%;
    flex-direction: row;
    gap: 10px;
    animation: scroll-left 20s linear infinite;
  }
  
  .vertical-scroll-track .fullImg {
    width: 260px;
    height: 320px;
    object-fit: cover;
    margin-bottom: 0;
  }
  .vertical-scroll-track .halfImg {
    height: 150px;
    width: 260px;
    object-fit: cover;
  }
}
@media screen and (max-width: 600px) {
  .vertical-scroll-track .fullImg {
    width: 250px;
    height: 275px;
    object-fit: cover;
    margin-bottom: 0;
  }
  .vertical-scroll-track .halfImg {
    height: 130px;
    width: 250px;
    object-fit: cover;
  }
}
@media screen and (max-width: 450px){
   .vertical-scroll-track .fullImg {
    width: 150px;
    height: 215px;
  }
  .vertical-scroll-track .halfImg {
    height: 100px;
    width: 150px;
    object-fit: cover;
  }
}