* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: #ffffff; /* color of the track */
}
::-webkit-scrollbar-thumb {
  background: rgb(97, 180, 205);
  background: radial-gradient(
    circle,
    rgba(68, 7, 33, 1) 0%,
    rgba(73, 16, 87, 1) 100%
  ); /* color of the thumb */
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(68, 7, 33);
  background: radial-gradient(
    circle,
    rgba(68, 7, 33, 1) 0%,
    rgba(73, 16, 87, 1) 100%
  ); /* color of the thumb on hover */
}

.container {
  width: 100%;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
}

/* First Section  */
.pt1 {
  width: 100%;
  height: 377px;
  flex-shrink: 0;
  background: url("images/FAQs/Rectangle%20205.png") no-repeat,
    lightgray -209298725540638700px -8454270656755574000px /
      5232468379126066000% 1633123864057708300% no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h1-wrapper h1 {
  display: flex;
  height: 164px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Med";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.h1-wrapper h1 span {
  height: 27px;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}
.ContactForm {
  height: 27px;
  flex-shrink: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
}

.input-wrapper {
  width: 526px;
  height: 53px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #fff;
  display: flex;
  padding-right: 50px;
}

.search-img {
  width: 67px;
  height: 53px;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-img img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.input-wrapper input {
  height: 53px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  color: #000;
  font-family: "Azo Sans Reg";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: transparent;
  outline: none;
}

/* Second Section faqs */
.pt2 {
  width: 100%;
  padding: 48px 30px;
  display: grid;
  /*grid-template-columns: 1fr 1fr 1fr;*/
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 14px;
}

.card {
  width: 100%;
  height: 300px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 23px 0px rgba(0, 0, 0, 0.25);
  padding: 30px 40px 0px 27px;
}

.card h2 {
  flex-shrink: 0;
  color: #000;
  font-family: "Azo Sans Med";
  font-size: 18px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  margin-bottom: 15px;
}

.card h3 {
  margin-top: 20px;
  flex-shrink: 0;
  color: #000;
  font-family: "Azo Sans Reg";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* Style for the unordered list in the FAQ section */
.card ul {
    padding-left: 40px; /* Adjust the left padding for indentation */
    list-style-type: disc; /* Use disc bullets for the list items */
}

/* Optional: Style for list items */
.card ul li {
    margin-bottom: 5px; /* Add some space between list items */
}

/* Media queries */

@media (max-width: 1500px) {
  .pt1 {
    height: 350px;
    padding-left: 50px;
  }

  .card {
    height: auto;
    padding-bottom: 40px;
  }

  .pt2 {
    padding: 36px 20px;
    /*grid-template-columns: 1fr 1fr;*/
  }

  .h1-wrapper h1 {
    font-size: 45px;
  }

  .input-wrapper {
    width: 480px;
  }
}

@media (max-width: 1200px) {
  .pt1 {
    height: 350px;
    padding-left: 50px;
  }

  .card {
    height: 350px;
    padding-bottom: 40px;
  }

  .pt2 {
    padding: 36px 20px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /*grid-template-columns: 1fr 1fr;*/
  }

  .h1-wrapper h1 {
    font-size: 45px;
  }

  .input-wrapper {
    width: 480px;
  }
}

@media (max-width: 980px) {
  .pt1 {
    height: 350px;
    padding-left: 50px;
  }

  .card {
    height: auto;
    padding-bottom: 40px;
  }

  .pt2 {
    padding: 36px 20px;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /*grid-template-columns: 1fr 1fr;*/
  }

  .h1-wrapper h1 {
    font-size: 45px;
  }

  .input-wrapper {
    width: 480px;
  }
}

@media (max-width: 730px) {
  .pt2 {
    /*grid-template-columns: 1fr;*/
  }

  .h1-wrapper h1 {
    font-size: 38px;
    height: 140px;
  }

  .search-img {
    width: 55px;
  }

  .input-wrapper {
    width: 420px;
    padding-right: 40px;
  }

  .pt1 {
    height: 350px;
    padding-left: 30px;
  }
}

@media (max-width: 650px) {
  .h1-wrapper h1 {
    font-size: 30px;
    height: 124px;
  }

  .input-wrapper {
    width: 330px;
    padding-right: 30px;
  }

  .search-img {
    width: 50px;
  }
}

@media (max-width: 500px) {
  .pt1 {
    height: 320px;
    padding-left: 26px;
  }

  .h1-wrapper h1 {
    font-size: 25px;
    height: auto;
    margin-bottom: 11px;
  }

  .h1-wrapper h1 span {
    font-size: 16px;
  }

  .input-wrapper {
    width: 270px;
  }
}

@media (max-width: 400px) {
  .pt1 {
    height: 320px;
    padding-left: 10px;
  }

  .input-wrapper input {
    font-size: 14px;
    width: 80%;
  }

  .input-wrapper {
    width: 95%;
  }

  .pt2 {
    padding: 30px 14px;
  }
}