.about-card {
  padding: 75px 0px;
}

.bottom-main {
  padding: 30px 0px;
}

.about-card-div,
.techniques-div,
.bottom-div {
  margin: auto;
}

/* About */
.about-card {
  background: var(--bg);
}

.about-card-div {
  display: grid;
  align-items: center;
  justify-content: space-between;
}

.about-card-div h4 {
  color: var(--orange);
  font-weight: var(--fw-md);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-card-div h3 {
  font-family: var(--fourth-font);
  color: var(--sub);
  font-weight: var(--fw-xl);
  margin-bottom: 15px;
}

.about-card-div h5 {
  font-family: var(--fourth-font);
  color: var(--text-primary);
  font-weight: var(--fw-lg);
  margin-bottom: 15px;
}

.about-card-div h6 {
  color: var(--text-secondary);
  font-weight: var(--fw-sm);
  margin-bottom: 15px;
}

/* About */
.about {
  background: var(--secondary);
  padding: 50px 0px;
}

.about-div {
  display: grid;
  align-items: start;
  justify-content: space-between;
  margin: auto;
}

.about-left h1 {
  color: var(--main);
  font-weight: var(--fw-xxxl);
  text-transform: uppercase;
}

.about-left h1 span {
  color: var(--text-primary);
}

.about-right h5 {
  color: var(--text-primary);
  font-weight: var(--fw-lg);
  margin-bottom: 10px;
}

.about-right h6 {
  color: var(--text-secondary);
  font-weight: var(--fw-md);
  margin-bottom: 10px;
}

/* Sponsor Card */
.sponsor {
  background: var(--main);
  padding: 50px 0px;
}

.sponsor-div {
  margin: auto;
}

.sponsor-group {
  display: grid;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
}

.sponsor-card {
  background: var(--secondary);
  border-radius: 10px;
  height: 100%;
  padding: 15px;
  transition: var(--transition);
}

.sponsor-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.sponsor-top h4 {
  color: var(--text-dark);
  font-weight: var(--fw-lg);
  margin-bottom: 0px;
}

.sponsor-bottom h6 {
  color: var(--text-secondary);
  font-weight: var(--fw-md);
  margin-bottom: 0px;
}

.sponsor-card:hover {
  background: var(--yellow);
}

.sponsor-card:hover .sponsor-top h4,
.sponsor-card:hover .sponsor-bottom h6 {
  color: var(--text-primary);
}

/* Bottom */
.bottom-div {
  position: relative;
  background: url("../images/Footer.webp") no-repeat center center / cover;
  border-radius: 20px;
}

.bottom-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.bottom-content h3 {
  color: var(--secondary);
  font-weight: var(--fw-xl);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bottom-content h6 {
  color: var(--secondary);
  font-weight: var(--fw-md);
  margin-bottom: 20px;
  line-height: 25px;
}

/* Techniques */
.techniques {
  width: 100%;
  background-color: var(--);
  padding: 50px 0px;
}

.techniques-card {
  display: grid;
  align-items: start;
  justify-content: space-between;
}

.techniques-head h3 {
  color: var(--text-primary);
  font-weight: var(--fw-xl);
  text-transform: capitalize;
  margin-bottom: 0px;
}

@media screen and (min-width: 1098px) {
  /* Banner */
  .about-card-div,
  .techniques-div,
  .bottom-div {
    width: 85%;
  }

  /* About */
  .about-card-div {
    grid-template-columns: 8% 40% 48%;
  }

  .about-card-div-2 {
    grid-template-columns: 48% 40% 8%;
  }

  .about-card-bg img {
    height: 500px;
  }

  .about-card-div h3 {
    font-size: 30px;
  }

  .about-card-div h4 {
    font-size: 14px;
  }

  .about-card-div h5 {
    font-size: 15px;
  }

  .about-card-div h6 {
    width: 80%;
    font-size: 16px;
    line-height: 30px;
  }

  /* About */
  .about-div {
    width: 85%;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-left h1 {
    font-size: 60px;
  }

  .about-right h5 {
    font-size: 18px;
  }

  .about-right h6 {
    font-size: 16px;
  }

  /* Sponsor Card */
  .sponsor-div {
    width: 85%;
  }

  .sponsor-group {
    grid-template-columns: repeat(4, 1fr);
  }

  .sponsor-top h4 {
    font-size: 18px;
  }

  .sponsor-bottom h6 {
    font-size: 16px;
  }

  /* Bottom */
  .bottom-div {
    height: 400px;
  }

  .bottom-content {
    top: 50%;
    left: 5%;
  }

  .bottom-content h3 {
    font-size: 28px;
  }

  .bottom-content h6 {
    font-size: 16px;
    width: 65%;
  }

  /* Techniques */
  .techniques-card {
    grid-template-columns: 58% 40%;
  }

  .techniques-head h3 {
    font-size: 30px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1098px) {
  /* Banner */
  .about-card-div,
  .techniques-div,
  .bottom-div {
    width: 90%;
  }

  /* About */
  .about-card-div {
    grid-template-columns: 10% 38% 48%;
  }


  .about-card-div-2 {
    grid-template-columns: 48% 38% 10%;
  }

  .about-card-bg img {
    height: 400px;
  }

  .about-card-div h3 {
    font-size: 20px;
    line-height: 35px;
  }

  .about-card-div h4 {
    font-size: 12px;
  }

  .about-card-div h6 {
    width: 95%;
    font-size: 16px;
    line-height: 25px;
  }

  /* About */
  .about-div {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-left h1 {
    font-size: 50px;
  }

  .about-right h5 {
    font-size: 16px;
  }

  .about-right h6 {
    font-size: 14px;
  }

  /* Sponsor Card */
  .sponsor-div {
    width: 90%;
  }

  .sponsor-group {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
  }

  .sponsor-top h4 {
    font-size: 16px;
  }

  .sponsor-bottom h6 {
    font-size: 14px;
  }

  /* Bottom */
  .bottom-div {
    height: 400px;
  }

  .bottom-content {
    top: 50%;
    left: 5%;
  }

  .bottom-content h3 {
    font-size: 28px;
  }

  .bottom-content h6 {
    font-size: 16px;
    width: 70%;
  }

  /* Techniques */
  .techniques-card {
    grid-template-columns: 60% 38%;
  }

  .techniques-head h3 {
    font-size: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* Banner */
  .about-card-div,
  .techniques-div,
  .bottom-div {
    width: 95%;
  }

  /* About */
  .about-card-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }

  .about-card-bg {
    display: none;
  }

  .about-card-right {
    text-align: left;
  }

  .about-card-div h3 {
    font-size: 25px;
  }

  .about-card-div h4 {
    font-size: 14px;
  }

  .about-card-div h6 {
    font-size: 14px;
    line-height: 20px;
  }

  /* About */
  .about-div {
    width: 95%;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }

  .about-left h1 {
    font-size: 40px;
  }

  .about-right h5 {
    font-size: 16px;
  }

  .about-right h6 {
    font-size: 14px;
  }

  /* Sponsor Card */
  .sponsor-div {
    width: 95%;
  }

  .sponsor-group {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 15px;
  }

  .sponsor-top h4 {
    font-size: 16px;
  }

  .sponsor-bottom h6 {
    font-size: 14px;
  }

  /* Bottom */
  .bottom-div {
    height: 400px;
  }

  .bottom-content {
    top: 50%;
    left: 5%;
  }

  .bottom-content h3 {
    font-size: 25px;
  }

  .bottom-content h6 {
    font-size: 14px;
    width: 80%;
  }

  /* Techniques */
  .techniques-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
  }

  .techniques-head h3 {
    font-size: 22px;
  }
}
