@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800;900&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300&family=Playfair+Display:wght@400;500;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,700;0,900;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

:root {
  --green: #9ad06f;
  --light-green: #f4f6f0;
  --button: #6a4cc9;
  --cardcolor: #fafafa;
  --white: #ffffff;
  --black: #000000;
}

/* Navbar section */
.navbar-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  padding-right: 100px;
  width: 100%;
  height: 100px;
  background-color: var(--white);
}
.logo-img {
  height: 150px;
  width: 150px;
  /*object-fit: cover;*/
}
.logo-img > img {
  height: 150px;
  width: 150px;
  cursor: pointer;
}
.menu-img > img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

/* Hero section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 100px;
  width: 100%;
  height: auto;
  background-color: var(--light-green);
  margin-top: 75px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 50px;
  margin-bottom: 50px;
  width: 60%;
  /* background-color: #6a4cc9; */
}
.hero-title > h1 {
  font-size: 65px;
  font-weight: 900;
  color: var(--black);
}
.hero-para {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.hero-para > li {
  display: flex;
  list-style: none;
  font-size: 20px;
}
.hero-para > li > span {
  color: var(--green);
  margin-right: 20px;
}
.hero-img {
  position: absolute;
  /*margin-top: 140px;*/
  right: 0px;
  width: 500px;
  height: 500px;
  border-radius: 30px 0px 0px 30px;
  /*object-fit: cover;*/
  margin-right: 35px;
  padding: 1.5%;
}
.hero-img > img {
  width: 100%;
  height: 100%;
}

.hero-section-mob {
  display: none;
}
.topicsMobile{
  display: none;
}
.retailer-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.visional-logo {
  width: 95%;
  /*object-fit: cover;*/
}
.visional-logo > img {
  width: 100%;
  height: 80%;
}
.retailer-para {
  width: 70%;
  text-align: center;
  margin-top: 0px;
}
.retailer-para > p {
  font-size: 35px;
}

.retailer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 40px;
  margin-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
  width: 100%;
}
.card {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  width: 420px;
  height: 500px;
  background-color: var(--cardcolor);
  cursor: pointer;
}

.card1 {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    width: 300px;
    height: 300px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 1px 2px 3px #eee;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.card-img {
  width: 200px;
  height: 200px;
  /*object-fit: cover;*/
}
.card-img > img {
  width: 200px;
  height: 200px;
  /*object-fit: cover;*/
}
.card-para > p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.card-cta > button {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  background-color: #95d657;
  color: var(--white);
  border-style: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

/* Responsive at 1440px */
@media screen and (max-width: 1440px) {
  .retailer-card {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* Responsive at 1024px */
@media screen and (max-width: 1024px) {
  .hero-section {
    display: none;
  }
  .toipicsNormal {
    display: none;
  }
  .topicsMobile {
    display: block;
  }
  .hero-section-mob {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 30px;
    padding-bottom: 50px;
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
  .hero-img-mob {
    width: 750px;
    height: 500px;
    /*object-fit: cover;*/
  }
  .hero-img-mob > img {
    width: 750px;
    height: 500px;
    
  }
  .hero-content-mob {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .hero-title-mob {
    width: 70%;
  }
  .hero-title-mob > h1 {
    font-size: 60px;
    font-weight: 900;
    text-align: center;
    line-height: 90px;
    color: var(--black);
  }
  .hero-para-mob {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .hero-para-mob > li {
    display: flex;
    list-style: none;
    font-size: 20px;
  }
  .hero-para-mob > li > span {
    color: var(--green);
    margin-right: 20px;
  }
}

/* Responsive at 912px */
@media screen and (max-width: 912px) {
  .retailer-card {
    justify-content: center;
  }
}

/* Responsive at 768px */
@media screen and (max-width: 768px) {
  .hero-img-mob {
    width: 700px;
    height: 500px;
    /*object-fit: cover;*/
    margin-top: 25px;
  }
  .hero-img-mob > img {
    width: 100%;
    height:  100%;
  }
  .retailer-para {
    width: 80%;
  }
}

/* Responsive at 500px */
@media screen and (max-width: 500px) {
  .navbar-section {
    padding-left: 50px;
    padding-right: 50px;
  }
  .hero-img-mob {
    width: 400px;
    height: 400px;
    /*object-fit: cover;*/
  }
  .hero-img-mob > img {
    width:  100%;
    height:  100%;
  }
  .hero-title-mob {
    width: 80%;
  }
  .hero-title-mob > h1 {
    font-size: 40px;
    line-height: 60px;
  }
  .retailer-section {
    margin-top: 0px;
  }
  .retailer-para {
    width: 80%;
  }
  .retailer-para > p {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Responsive at 425px */
@media screen and (max-width: 426px) {
  .hero-title-mob {
    width: 100%;
  }
}

/* Responsive at 390px */
@media screen and (max-width: 391px) {
  .navbar-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-img-mob {
    width: 350px;
    height: 250px;
    /*object-fit: cover;*/
  }
  .hero-img-mob > img {
    width:  100%;
    height:  100%;
  }
}

/* Responsive at 376px */
@media screen and (max-width: 376px) {
  .navbar-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-img-mob {
    width: 300px;
    height: 250px;
    /*object-fit: cover;*/
  }
  .hero-img-mob > img {
    width: 300px;
    height: 250px;
  }
  .hero-title-mob {
    width: 100%;
  }
  .hero-title-mob > h1 {
    font-size: 30px;
    line-height: 45px;
  }
  .hero-para-mob > li {
    font-size: 16px;
  }
}

/* Responsive at 325px */
@media screen and (max-width: 326px) {
  .card {
    width: 300px;
    height: 400px;
  }
  .card-img {
    width: 100px;
    height: 100px;
    /*object-fit: cover;*/
  }
  .card-img > img {
    width: 100px;
    height: 100px;
    /*object-fit: cover;*/
  }
  .card-para > p {
    font-size: 16px;
  }
  .card-cta > button {
    width: 200px;
    height: 60px;
    font-size: 16px;
  }
}
