* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.search {
  padding: 50px 10%;
  /* width: 90%;
    margin: auto; */
}

.searchContent {
  display: flex;
  /* justify-content: space-between; */
  gap: 10%;
  align-items: start;
  margin-top: 20px;
}

.search h1 {
  font-size: 42px;
}

.search p {
  font-size: 20px;
}

.content {
  width: 70%;
}

.content p {
  padding-bottom: 15px;
}

/* .content p{
  } */
.execSide {
  width: 30%;
}

.process {
  border: solid 1px #7e4774;
  /* width: 30%; */
}

.process p {
  padding: 20px 24px;
  background-color: #7e4774;
  color: white;
  font-weight: 700;
}

.process h6 {
  padding: 24px;
  /* font-weight: 700; */
  font-size: 14px;
  color: #7e4774;
}

.products {
  padding: 50px 10% 100px 10%;

  background-color: rgba(194, 194, 194, 0.322);
}

.products h2 {
  text-align: center;
  font-size: 200%;
  padding: 50px 0;
}

.proCards {
  /* padding-top: 10px; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.card {
  padding: 10px 0;
  background-color: white;
  box-shadow: 5px 10px 18px #888888;
  border-radius: 10px;
  max-height: 400px;
  margin-bottom: 20px;
  transition: 0.5s;
  cursor: default;
}

.proCard {
  height: 100%;
}

.card:hover {
  background-color: var(--brand-color);
  box-shadow: 5px 10px 18px #888888;
  color: white;
  transition: 0.625s;
}

.card:hover a:hover {
  color: white;
  transition: 0.5s;
}

.card h3 {
  padding: 5px 0;
  /* color: white; */
  text-align: center;
  /* background-color: var(--brand-color); */
  border-radius: 10px 10px 0 0;
  /* border-bottom: 1px solid var(--brand-color); */
}

.card:hover h3 {
  color: white;
  /* border-bottom: 1px solid white; */
  transition: 0.625s;
}

.cardContent {
  padding: 15px 15px;
  /* text-align: center; */
}

.cardContent p {
  font-size: 16px;
  padding-bottom: 10px;
}

.cardContent a {
  color: black;
  /* background-color: var(--brand-color); */
  font-size: 13px;
  padding: 10px;
  border: 1px solid black;
  border-radius: 5px;
  transition: 0.5s;
}

.card:hover a {
  color: white;
  background-color: var(--brand-color);
  border: 1px solid white;
  transition: 0.5s;
}

.cardContent a:hover {
  background-color: var(--brand-color-dark);
  transition: 0.5s;
}

.cardContent p span {
  /* color: var(--brand-color); */
  font-weight: 600;
}

/* .card:hover span {
  color: white;
  transition: 2s;
} */


.testimonials {
  /* margin-top: 50px; */
  padding: 50px 10%;
  /* background: linear-gradient(0.25turn, #ffb4ff, #ebf8e1, #ffb4ff); */
  color: rgb(59, 59, 59);
  /* border-top: 5px solid #ffb4ff; */
}

.testimonials h1 {
  text-align: center;
  padding-bottom: 30px;
  font-size: 30px;
  color: rgb(0, 0, 0);
}

.testimonialsContent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
  font-size: 20px;
}

.contact {
  border: #7e4774 1px solid;
  background-color: var(--brand-color);
  font-size: 17px;
  font-weight: 200;
  color: rgb(255, 252, 252);
  padding: 10px;
  margin: 20px 0;
  width: fit-content;
  transition: 500ms;
  border-radius: 5px !important;
}

.contact:hover {
  background-color: var(--brand-color-dark);
  color: white;
  transition: 500ms;
}

.RFP {
  border: #7e4774 1px solid;
  background-color: white;
  font-size: 17px;
  font-weight: 200;
  color: var(--brand-color);
  padding: 10px;
  margin: 20px 0;
  width: fit-content;
  transition: 500ms;
}

.RFP:hover {
  background-color: var(--brand-color-dark);
  color: white;
  transition: 500ms;
}

.contactandRFP {
  display: flex;
  /* justify-content: start; */
  align-items: center;
  gap: 1%;
}

/* .color{
    background-size: cover;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.836),rgba(19, 1, 51, 0.836)),
    url("/assets/locations/jburg.webp");
    background: linear-gradient(0.25turn, #ffb4ff, #ebf8e1, #ffb4ff);
} */



/* for process css */

.processList {
  text-decoration: none;
  border: none;
  list-style: none;
  line-height: 50px;
  padding-top: 30px;
}

.plus {
  background-color: #7e4774;
  color: white;
  border-radius: 99999999px;
  padding: 0 7px;
  margin-left: 30px;
  cursor: pointer;
}

.minus {
  background-color: #7e4774;
  color: white;
  border-radius: 99999999px;
  padding: 0 9px;
  margin-left: 30px;
  cursor: pointer;
}

.hide {
  display: none;
}

.listContent p {
  line-height: 35px;
  font-size: 18px;
  transition: 5s;
  /* position: fixed;
    top: 0; */
}

.listContent {
  transition: 5000ms;
  /* position: relative; */
}

.collapse {
  height: 0;
  overflow: hidden;
  transition: 2000ms;
}

.expand {
  height: 150px;
  overflow: hidden;
  transition: 2000ms;
}

@media screen and (max-width:1095px) {
  .search {
    /* padding-top: 100px; */
  }

  .proCards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width:750px) {
  .searchContent {
    flex-direction: column-reverse;
  }

  .execSide {
    width: 90%;
    margin: auto;
  }

  .process {
    border: solid 1px;
    max-width: 350px;
    margin: 30px 0;
  }

  .content {
    width: 100%;
  }

  .testimonials {
    padding: 50px 5%;
    /* background: linear-gradient(to bottom right, #ffb4ff, #ebf8e1, #ffb4ff); */
    color: rgb(59, 59, 59);
    /* border-top: 5px solid #ffb4ff; */
  }

  .testimonialsContent {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    gap: 10%;
    font-size: 20px;
    padding-bottom: 70px;
  }

  .testimonials h1 {
    text-align: center;
    padding-bottom: 30px;
    font-size: 25px;
    color: rgb(0, 0, 0);
  }

  .proCards {
    grid-template-columns: repeat(1, 1fr);
  }

  .cardContent p {
    font-size: 18px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width:500px) {
  .search h1 {
    font-size: 25px;
  }

  .search p {
    font-size: 20px;
  }

  .cardContent a {
    color: black;
    /* background-color: var(--brand-color); */
    font-size: 13px;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
    transition: 0.5s;
  }

  .processList {
    font-size: 11px;
  }

  .plus {
    margin-left: 5px;
  }

  .minus {
    margin-left: 5px;
  }
}

@media screen and (max-width:390px) {

  .searchContent {
    margin-top: 10px;
  }

  .process h6 {
    padding: 20px;
    font-size: 10px;
  }

  .testimonialsContent {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    gap: 10%;
  }

  .products h2 {
    font-size: 150%;
  }
}