@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --purple1: #2e073f;
  --purple2: #7a1cac;
  --purple3: #ad49e1;
  --purple4: #ebd3f8;
  --purple5: #c5cae9;
  --default-size: 20px;
  --background-color: #ececec;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: var(--default-size);
  background-color: var(--background-color);
}

* {
  padding: 0;
  margin: 0;
  /*outline: 1px solid red; */
}

.hide {
    display: none;
}

.text-purple1 {
  color: var(--purple1);
}

.text-purple2 {
  color: var(--purple2);
}

.text-purple3 {
  color: var(--purple3);
}

.text-purple4 {
  color: var(--purple4);
}

.primary-btn {
  background-color: var(--purple2);
  padding: 10px 15px;
  color: white;
  font-size: large;
  border-radius: 7px;
  border: none;
}

.primary-btn:hover {
  background-color: black;
}

.nav {
  width: 100%;
  background-color: black;
  align-content: center;
  padding: 1rem;
  position: fixed;
  top: 0;
  z-index: 10;
}

.nav-content {
  width: 100%;
}

.nav-div {
    z-index: 10;
}

.my-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.txt-shadow {
  text-shadow: 1px 1px 10px white;
}

.hero-section {
  background-image: url("./../images/one.avif");
  display: grid;
  place-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  position: relative;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.hero-section::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.hero-content {
  color: white;
  z-index: 1;
  text-align: center;
}

.hero-content > h1 {
  font-size: 70px;
  font-weight: 700;
}

.hero-content > p {
  font-size: var(--default-size);
}

.hero-cta-container {
  margin-top: 3rem;
  display: flex;
}

.hero-cta-container > button {
  margin-right: 15px;
}

.secondary-heading {
  color: var(--purple2);
  font-weight: bold;
  border-bottom: 5px solid var(--purple2);
  width: fit-content;
}

#our-services {
  background-color: var(--purple5);
  width: 100%;
}

.our-services-card {
  color: white;
  background-image: url("./../images/our-services-card.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 15px;
}

#testimonials {
  padding: 4rem 0;
}

.testimonial-head {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.testimonial-head > img {
  border-radius: 50%;
  height: 50px;
  width: 50px;
}

.testimonial-card-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.testimonial-card {
  background-color: var(--purple5);
  margin: 10px;
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.how-it-works-container {
  background-image: url("./../images/how-it-works.webp");
  padding: 25px 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hiwtc {
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.hiwn {
  font-size: 10rem;
  font-weight: bold;
  color: var(--purple3);
}

.hiwt {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--purple4);
}

.contact-us-container {
  background-image: url("./../images/contact-us.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact-us-card-one {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 15px 2px silver;
}

footer {
  background: black;
}

@media screen and (max-width: 414px) {

  .hero-section {
    background-image: url("./../images/one.avif");
    display: grid;
    place-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max-content;
    position: relative;
    padding: 5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    width: 100dvw;
  }

  .testimonial-card-container {
    display: block;
  }

  .testimonial-card {
    margin: 0;
  }
}
