.about-sec {
  padding: 100px 0 60px;
  background: #e4cfb5;
}

.common-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.common-heading p {
  font-size: 20px;
  margin-top: 10px;
}

.about-sec .row .col {
  width: 48%;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 30px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.about-sec .row .col:hover {
  transform: scale(1.1);
}

.about-sec .row .col .icon {
  color: #178ea3;
  font-size: 32px;
}

.about-sec .row .col .title {
  margin: 10px 0;
  font-size: 26px;
  font-weight: 700;
}

.about-sec .founder-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 850px;
  margin: 70px auto;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.about-sec .founder-box:hover {
  transform: scale(1.1);
}

.founder-icon {
  width: 60px;
  height: 60px;
  background-color: #1289a11a;
  border-radius: 50%;
  margin-right: 20px;
}

.founder-icon i {
  color: #1289a1;
  padding: 16px;
  font-size: 22px;
}

.about-sec .founder-box p,
.about-sec .founder-box h6 {
  margin-top: 15px;
}

.about-sec .founder-box h6 {
  font-size: 18px;
}

.why-choose-sec {
  background: #e4cfb5;
  padding-bottom: 70px;
}

.why-choose-sec .row .col {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.why-choose-sec .row .col:hover {
  transform: scale(1.1);
}

.why-choose-sec .row .col h4 {
  margin: 10px 0;
  font-weight: 600;
}

.why-choose-sec .row .col i {
  font-size: 32px;
  color: #1289a1;
}

@media(max-width:768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .common-heading {
    margin-bottom: 30px;
  }

  .common-heading p {
    font-size: 18px;
  }

  .about-sec {
    padding: 50px 0;
  }

  .about-sec .row {
    row-gap: 30px;
  }

  .about-sec .row .col {
    width: 100%;
  }

  .about-sec .founder-box {
    margin: 30px 0 0 0;
  }

  .about-sec .row .col .title {
    font-size: 18px;
  }

  .about-sec .row .col p {
    font-size: 15px;
  }
}

@media(max-width:420px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}