body {
  font-family: Inter;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 320px;
  min-height: 100vh;
  background-color: white;
}

.to-left {
  margin: 0 auto 0 0;
}

.to-right {
  margin: 0 0 0 auto;
}

.flex {
  display: flex;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ----- MODAL START ----- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #39527385;
  backdrop-filter: blur(3px);
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
}

.modal .container {
  width: 800px;
  background-color: white;
  margin-top: 80px;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.modal .container h2 {
  font-family: Inter;
  font-weight: 700;
  line-height: 28px;
  font-size: 20px;
}

.modal .container img.close {
  width: 30px;
  aspect-ratio: 1;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* ----- MODAL END ----- */

input::placeholder {
  color: #9ca3af;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #9ca3af;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  height: 66px;
  padding-left: 2rem;
  padding-right: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 500px) {
  header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

header img {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  width: auto;
}

header section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex: 1 1 0%;
  justify-content: end;
  height: 100%;
}

@media not all and (min-width: 1024px) {
  header section {
    display: none;
  }
}

header section nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header section nav a {
  height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

header section nav .active {
  position: relative;
  color: #cc6f02;
}

header section nav .active div {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #cc6f02;
  padding: auto;
  margin: auto;
  height: 0.5rem;
  width: 80%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

header section div.select {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: auto 10px;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-inline-start: 2rem;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

header section div.select img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}

header div.select div.values {
  position: absolute;
  top: 90%;
  background-color: white;
  border: 1px solid var(--gray_l);
  border-radius: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  display: none;
}

header div.select div.values p,
header div.select div.values a {
  text-align: center;
  border-bottom: 1px solid var(--gray_l);
  color: black;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;

}

header section div.select div.values p:last-child {
  border-bottom: 0 !important;
}

header section div.select div.values a:last-child {
  border-bottom: 0 !important;
}

header section select {
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-inline-start: 2rem;
  fill: #f87171;
}

header button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  cursor: pointer;
  background-color: #e5e7eb;
  border: 2px solid #e5e7eb;
  height: 100%;
  border-radius: 0.75rem;
}

header div.actions {
  display: flex;
  height: 75%;
  /* background-color: green; */
}

@media (min-width: 1024px) {
  header div.actions {
    display: none;
  }
}

header div.actions div.select {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-right: 10px;
  margin-inline-start: 10px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  /* background-color: red; */
}

header div.actions div.select p {
  margin: 0;
}

header div.actions div.select img {
  width: 30px;
  transition: all 0.3s ease-in-out;
}


div.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #0000003d;
  backdrop-filter: blur(3px);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  align-items: flex-end;
}

div.sidenav nav.sidebar-links {
  height: 100%;
  width: 300px;
  transition: 1s;
  background-color: #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

div.sidenav nav.sidebar-links div {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 2.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

div.sidenav nav.sidebar-links a {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

div.sidenav nav.sidebar-links a.active {
  color: #cc6f02;
}

main section.hero {
  /* background-color: red; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  height: auto;
  margin: 100px auto;
}

@media screen and (max-width: 1000px) {
  main section.hero {
    flex-direction: column-reverse;
  }
}

main section.hero div.messages,
main section.hero div.images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  /* height: 90%; */
}

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

  main section.hero div.messages,
  main section.hero div.images {
    width: 100%;
    margin-bottom: 25px;

  }
}

main section.hero div.messages {
  align-items: flex-start;
  padding-right: 30px;
}


main section.hero div.messages h1 {
  font-family: Inter;
  font-weight: 700;
  font-size: 50px;
  line-height: 71.3px;
  margin: 0;
}

main section.hero div.messages p {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  color: #4B5563;
  margin-top: 15px;
}

main section.hero div.messages div.search-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: 1rem;
  gap: 10px;
}

main section.hero div.images img {
  max-width: 100%;
  /* position: relative; */
  /* height: 80%; */
  /* width="620px" height="419px" */
}


@media screen and (min-width: 901px) and (max-width: 990px) {
  main section.hero div.images {
    height: 60%;
  }
}


@media (max-width: 990px) {
  main section.hero div.images img {
    max-width: 100%;
  }
}

main section.hero div.images img:nth-child(1) {
  top: 0;
  left: 0;
  border-top-left-radius: 100px;
}

main section.hero div.images img:nth-child(2) {
  bottom: 10px;
  right: 0;
  border-top-right-radius: 100px;
}

main section.popular-listing {
  width: 85%;
  margin: 100px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 1150px) {
  main section.popular-listing {
    height: auto;
  }
}

main section.popular-listing h2 {
  font-family: Inter;
  font-weight: 700;
  font-size: 35px;
  line-height: 48.3px;
}

main section.popular-listing div.items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
}

main section.popular-listing div.items div.item {
  width: 300px;
  height: 287px;
  border: 1px solid #e5e7eb;
  border-radius: 15px;
  margin: 0.5rem;
}

@media screen and (width <=750px) {
  main section.popular-listing div.items div.item {
    width: 100%;
  }
}

main section.popular-listing div.items div.item div.caroussel {
  position: relative;
  border-radius: 15px;
}

main section.popular-listing div.items div.item div.caroussel img {
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.5s ease-in-out;
}

main section.popular-listing div.items div.item div.caroussel div.indicators {
  position: absolute;
  display: flex;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.505); */
  padding: 0.125rem;
  border-radius: 10px;
}

main section.popular-listing div.items div.item div.caroussel div.indicators span {
  display: block;
  height: 7.5px;
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.772);
  cursor: pointer;
  border-radius: 9999px;
  margin: auto 2px;
}

main section.popular-listing div.items div.item div.caroussel div.indicators span.active {
  height: 10px;
  background-color: white;
}

main section.popular-listing div.items div.item div.desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 1rem;
}

main section.popular-listing div.items div.item div.desc div.texts p {
  margin: 0.125rem 0;
  font-family: Inter;
  font-size: 14px;
}

main section.popular-listing div.items div.item div.desc div.texts p:nth-child(1) {
  line-height: 21px;
  font-weight: 700;
  color: #cc6f02;
}

main section.popular-listing div.items div.item div.desc div.texts p:nth-child(2) {
  line-height: 18.2px;
  font-weight: 400;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons {
  display: flex;
  justify-content: flex-start;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0.125rem 0.325rem;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon:nth-child(1) {
  margin: 0.125rem 0.325rem 0.125rem 0;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon img {
  border-radius: 0;
  width: 17.5px;
}

main section.popular-listing div.items div.item div.desc div.texts div.icons div.icon span {
  font-size: 0.825rem;
  color: black;
}

main section.popular-listing div.items div.item div.desc button {
  background-color: white;
  border: 1px solid #9ca3af;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}

main section.popular-listing button.show-all {
  margin-top: 1rem;
}


main section.partners {
  margin: 100px 0;
}

main section.partners div.marquee {
  --gap: 1rem;
  margin: 1rem 0;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

main section.partners div.marquee:hover .marquee-content {
  animation-play-state: paused;
}

main section.partners div.marquee .marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 30s linear infinite;
}

main section.partners div.marquee .marquee-content>* {
  flex: 0 0 auto;
  margin: 2px;
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  text-align: center;
  font-weight: 900;
  font-size: 60px;
  line-height: 69px;
}

main section.downloap-app {
  margin: 100px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

main section.downloap-app div.container {
  height: auto;
  width: 70%;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  main section.downloap-app div.container {
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  main section.downloap-app div.container {
    width: 90%;
  }
}

@media screen and (min-width: 701px) and (max-width: 990px) {
  main section.downloap-app div.container {
    width: 80%;
  }
}

main section.downloap-app div.container img {
  width: 300px;
  aspect-ratio: 1;
  object-fit: cover;
  border-top-right-radius: 100px;
}

main section.downloap-app div.container div.actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  width: calc(100% - 350px);
}

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

  main section.downloap-app div.container img,
  main section.downloap-app div.container div.actions {
    width: 100%;
    height: 100%;
    padding-bottom: 25px;
  }
}

main section.downloap-app div.container div.actions h3 {
  font-family: Inter;
  font-weight: 700;
  line-height: 48.3px;
  font-size: 42px;
  margin: 0;
}

@media screen and (max-width: 400px) {
  main section.downloap-app div.container div.actions h3 {
    font-size: 24px;
    line-height: 28.3px;
    font-weight: 800;
  }
}

@media screen and (min-width: 401px) and (max-width: 990px) {
  main section.downloap-app div.container div.actions h3 {
    font-size: 32px;
    line-height: 38.3px;
    font-weight: 800;
  }
}

main section.downloap-app div.container div.actions p {
  font-family: Inter;
  font-weight: 500;
  line-height: 20.8px;
  font-size: 16px;
  margin-top: 15px;
}

main section.downloap-app div.container div.actions div.platforms {
  display: flex;
  width: 100%;
}

main section.downloap-app div.container div.actions div.platforms div.platform {
  width: 170px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

main section.downloap-app div.container div.actions div.platforms div.platform:nth-child(2) {
  margin-left: 1rem;
}

main section.downloap-app div.container div.actions div.platforms div.platform:hover {
  transform: scale(1.1);
}

main section.downloap-app div.container div.actions div.platforms div.platform img {
  display: block;
  border-radius: 0;
  width: 100%;
  height: 50px;
  object-fit: contain;
  object-position: left;
}


footer {
  border-top: 1px solid #e5e7eb;
  /* margin-top: 2rem; */
}

footer section.arrangements {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

footer section.arrangements aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  margin: 3rem 0;
  padding: 1rem 2rem;
}

footer section.arrangements aside a {
  margin: 0.5rem 0;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 20.8px;
  color: #395273;
}

header section p {
  margin: initial;
}

header section a:hover,
footer section.arrangements aside a:hover {
  color: #1B2838;
  text-decoration: none;
}

footer section.arrangements aside.company img {
  margin: 1rem 0;
}

footer section.arrangements aside.company p {
  margin: 0.25rem 0;
}

footer p.copyright {
  text-align: center;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 18.2px;
  margin: 1rem 0;
  padding: 1rem 2rem;
}

footer p.copyright a {
  text-decoration: underline;
  color: var(--primary_color);
  font-weight: bold;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}