.cta_section .cta-wrapper {
  padding: 50px;
}

.what-we-offer .sol-title {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.what-we-offer img {
  width: 45px;
  height: 45px;
  margin-right: 20px;
}
.what-we-offer .single-solution {
  /* margin-bottom: 30px; */
  min-height: 160px;
}
.what-we-offer .single-solution p{
  padding-left: 70px;
}

.what-we-offer .single-solution ul{
  padding-left: 80px;
  min-height: 240px;
}
.what-we-offer .single-solution ul li{
  list-style: circle;
  margin: 8px 0;
}


.why-us .single-card {
  overflow: hidden;
  width: 90%;
  margin: auto;
  background: rgba(197, 196, 196, 0.666);
  height: 100%;
  border-radius: 15px;
  padding: 20px 15px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 250px;
  position: relative;
}
.why-us .single-card h4,
.why-us .single-card p {
  position: relative;
  z-index: 9;
  font-size: 16px !important;
}
.why-us .single-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.856) 20%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* 
=================================
css for the important section
================================== */

.card {
  position: relative;
  width: 95%;
  height: 350px;
  color: #2e2d31;
  background: #131313;
  overflow: hidden;
  border-radius: 20px;
  border: none;
  /* box-shadow: -1px 5px 15px -5px rgba(0,0,0,0.75); */
  /* box-shadow:0px 0px 3px -2px rgb(29, 28, 28); */
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
  margin: 0px auto 40px auto;
}

.temporary_text {
  font-weight: bold;
  width: 100%;
  height: 100%;
  color: #f8f8f8;
  position: relative;
}
.temporary_text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card_title {
  font-weight: bold;
  height: 50px;
  margin-bottom: 7px;
}

.card_content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background: #f2f2f2;
  border-top-left-radius: 20px;
  transform: translateY(75%);
  transition: transform 0.25s;
}

.card_content::before {
  content: "";
  position: absolute;
  top: -47px;
  right: -45px;
  width: 70px;
  height: 103px;
  transform: rotate(-175deg);
  border-radius: 50%;
  box-shadow: inset 48px 48px #f2f2f2;
}

.card_title {
  color: #131313;
  line-height: 25px;
}

.card_subtitle {
  display: block;
  /* font-size: 12px; */
  margin-bottom: 10px;
}

.card_description {
  /* font-size: 14px; */
  opacity: 0;
  transition: opacity 0.5s;
}

.card:hover .card_content {
  transform: translateY(20%);
}

.card:hover .card_description {
  opacity: 1;
  transition-delay: 0.25s;
}

/* =================================
  css for the faq section
  ==================================  */

.faq-container {
  overflow: hidden;
}

.faq-item {
  cursor: pointer;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: rgb(216, 216, 216);
  transition: all 0.3s ease-in-out;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px 12px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.faq-answer {
  padding: 0px 20px;
  max-height: 0;
  font-size: 15px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.5s ease-in-out;
  background: rgb(240, 239, 239);
  line-height: 1.5rem;
}

/* .faq-item.active {
    background: #333;
    color: white;
} */
.faq-item.active .faq-question {
  background: #333;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  /* padding: 10px 20px; */
  padding: 12px 20px;
  color: black;
}

/* css for the fire alaram system from here  */
.single-type ul {
  list-style-type: none;
}
.single-type ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 4px;
}
.single-type ul li:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  /* background:var(--primary-color); */
  background: red;
  border-radius: 50%;
  top: 6px;
  left: 0px;
}
.single-type img {
  width: 90%;
}

.components .component-card {
  background: rgb(234, 232, 232);
  height: 100%;
  /* padding:10px; */
  border-radius: 5px;
  padding-bottom: 10px;
}
.component-card h5 {
  margin: 10px 0px;
  padding: 0px 10px;
}
.component-card p {
  padding: 0px 10px;
}

.component-card img {
  border-radius: 5px;
}

.single-importance {
  text-align: center;
  border: 0.5px solid black;
  border-radius: 5px;
  padding: 10px;
  height: 100%;
}
.single-importance img {
  width: 60px;
  margin-bottom: 15px;
}

.content-list ul li {
  font-size: 16px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .single-type img {
    width: 100%;
    margin-bottom: 20px;
  }
  .cta_section .cta-wrapper {
    padding: 30px 20px;
  }
  .why-us .single-card {
    width: 100% !important;
  }
  .single-importance h5{
    font-size: 16px;
    font-weight: 400;
  }
  .what-we-offer .single-solution{
    margin-top: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
  .why-us .single-card {
    width: 100% !important;
  }
  .testimonial-card {
    padding: 20px 10px 20px 10px !important;
  }
  .single-importance h5{
    font-size: 16px;
    font-weight: 400;
  }
}
