@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
  font-family: "Nunito Sans", sans-serif;
  color: #222;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  font-size: var(--font-md);
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ4MCIgaGVpZ2h0PSI2NTAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+ICAgIDxwYXRoIGQ9Ik03MzEuMjA3IDY0OS44MDJDOTM1LjQ4NCA2NDIuMTQgMTQ4MCAzMzcuMzI1IDE0ODAgMTgwLjg4OGMwLTE1Ni40MzgtMzA5Ljc0NC0zNi4wNTUtNzIwLTM2LjA1NVMwLTE3NC40ODMgMCAxMzUuMTQ0YzAgMzA5LjYyNyA1MjYuOTMgNTIyLjMyIDczMS4yMDcgNTE0LjY1OHoiIGZpbGw9IiNGNkY4RkEiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
  background-size: cover;
  background-position-x: 20vw;
  background-position-y: -10vh;
  background-repeat: no-repeat;
  line-height: 1.4;
  margin: 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.hero {
  display: flex;
  gap: 10px;
  padding: 30px;
  align-items: center;
}

.hero-logo {
  width: 300px;
  /* height: 220px; */
}
.hero-content h3 {
  max-width: 600px;
  font-weight: normal;
}
.hero-buttons {
  display: flex;
  gap: 10px;
}
.hero-button {
  background-color: black;
  border-radius: 5px;
  color: white;
  width: 140px;
  height: 44px;
  text-align: center;
  display: flex;
  padding: 0 10px;
  align-items: center;
  gap: 4px;
}

.hero-button img {
  width: 30px;
  height: 30px;
}

.splide {
  max-width: 650px;
}

.splide__toggle {
  display: none;
}

.splide__slide {
  padding: 0 50px 50px 50px;
}

.hero-button span {
  font-size: 10px;
}
.hero-button p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  /* padding-bottom: 5px; */
}

.top-1 {
  /* position: absolute;
    
    top: -10px;
    left : 30px; */
}

.text-left {
  text-align: left;
  line-height: 16px;
  align-self: start;
}

a {
  text-decoration: none;
  position: relative;
}

.soon {
  position: absolute;
  bottom: -19px;
  color: red;
  right: 0;
  font-size: 12px;
  font-weight: 500;
}

.rtl {
  direction: rtl;
}

.text-end {
  text-align: end;
}

.text-right {
  text-align: right;
}

.row-reverse {
  flex-direction: row-reverse;
}



.fixed-img img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
}

@media screen and (max-width:920px) {
  .hero {

    flex-direction: column;

  }
}

@media screen and (max-width: 624px) {
  /* .splide {
    max-width: 300px;
  } */
  .hero {
    display: flex;
    gap: 10px;
    flex-direction: column;
    /* text-align: center; */
    padding: 0px;
    /* align-items: center; */
  }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .splide {
    max-width: 350px;
  }

  .splide__slide {
    width: calc(100%);
  }

  .splide__arrow {
    top: 35px;
  }
}
@media screen and (max-width: 350px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}
