p {
  font-family: InriaSans-Regular, sans-serif;
}

p {
  text-align: center;
}

h1 {
  font-family: Adoretta-Holland-Serif, sans-serif;
}

h2 {
  font-family: InriaSans-Regular, sans-serif;
}

.lets-talk-hero {
  background-image: url("../assets/images/lets-talk-bg.webp");
  background-color: lightgray;
  background-position: 50%; /* shorthand for center */
  background-size: cover;
  background-repeat: no-repeat;
}

.meet-founders {
  background-image: url("../assets/images/meet-founders.webp");
  background-position: 50%; /* shorthand for center */
  background-size: cover;
  background-repeat: no-repeat;
}

.lets-talk-card-cont {
  display: flex;
  flex-direction: column;
  row-gap: 33px;
}
.lets-talk-card {
  width: 304px;
  height: 350px;
  background-color: #c09473;
  border-radius: 10px;
}
.lets-talk-details-cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 35px;
  padding: 10px;
}
.visionary-leaders {
  background-image: url("../assets/images/visionary-leaders.webp");
  background-position: 50%; /* shorthand for center */
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.creators {
  background-image: url("../assets/images/creators.webp");
  background-position: 50%; /* shorthand for center */
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.insights {
  background-image: url("../assets/images/insights-bg.webp");
  background-position: 50%; /* shorthand for center */
  background-size: cover;
  background-repeat: no-repeat;
}

button {
  display: flex;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  background: #c09473;
  font-size: 16px;
  font-weight: 700;
  color: white;
  font-family: InriaSans-Regular, sans-serif;
}

.recent-insights-card-cont {
  display: flex;
  flex-direction: column;
  row-gap: 33px;
  width: 304px;
  cursor: pointer;
  transition: all 0.8s ease-in-out;
}

.recent-insights-card-cont:hover {
  transform: scale(1.05);
}
.recent-insights-card {
  width: 304px;
  height: 350px;
  /* background-color: #c09473; */
  border-radius: 10px;
}
.recent-insights-card-cont a {
  text-decoration: underline;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
}

.swiper {
  width: 100%;
  height: fit-content;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  width: 469px;
  height: auto;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: all 0.8s ease-in-out;
}

.swiper-button-next,
.swiper-button-prev {
  padding: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  height: 40px;
}
