/* About Section CSS */
section.about {
  margin-top: 40px;
}

@media (max-width: 480px) {
  section.about {
    margin-top: 25px;
  }
}

section.about .section_content .quoto {
  font-weight: 600;
  color: var(--textColor1);
  display: block;
  margin-top: 20px;
}

/* About Section CSS End*/

/* Why Choose Us Section CSS */
section.why_choose_us {
  margin: 40px 0;
  background-image: url('../images/about-page-banner.webp');
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  position: relative;
  background-attachment: fixed;
  z-index: 111;
}

@media (max-width: 480px) {
  section.why_choose_us {
    margin: 25px 0;
  }
}

section.why_choose_us::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 222;
}

section.why_choose_us .container {
  position: relative;
  z-index: 777;
}

section.why_choose_us .section_header h2 {
  color: white;
}

section.why_choose_us .section_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
}

section.why_choose_us .card {
  padding: 25px;
  padding-bottom: 15px;
  box-sizing: border-box;
  background: var(--bgColor1);
  border-radius: 15px;
}

section.why_choose_us .card .icon {
  width: 60px;
}

section.why_choose_us .card .icon img {
  width: 100%;
}

section.why_choose_us .card .name {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fontFamily1);
  color: var(--txtColor1);
  text-align: left;
  width: 100%;
  margin-top: 15px;
}

section.why_choose_us .card p {
  margin-top: 15px;
  color: var(--textColor2);
}

/* Why Choose Us Section CSS End*/

/* Testimonials Section CSS */
/* Testimonials Section CSS */

.statistics {
  padding: 40px 0;
  background: var(--bgColor2);
}

.statistics .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.statistics .item {}

.statistics .item .count {
  font-size: 35px;
  font-weight: 700;
  font-family: var(--fontFamily1);
  color: var(--brandingColor);
  text-align: left;
  width: 100%;
}

.statistics .item .count span {
  font-size: 22px;
}

.statistics .item p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily1);
  color: var(--txtColor3);
  text-align: left;
  width: 100%;
  margin-top: 10px;
}

@media (max-width: 350px) {
  .statistics .item {
    width: 100%;
  }

  .statistics .item .count {
    text-align: center;
  }

  .statistics .item p {
    text-align: center;
  }
}