.home-about-left-img img {
  width: 100%;
}
.home-about-inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.home-about-buttons {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.home-about-right {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.home-about-right p {
  margin: 0;
}
.arrow-btn {
  width: 40px;
  height: 40px;
  background: var(--color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: .3s ease-in-out;
  transform: rotate(-40deg);
}
.arrow-btn:hover {
  background: var(--color-4);
  transition: .3s ease-in-out;
}
.home-about-right h4 {
  font-size: 28px;
  color: var(--color-3);
  font-weight: 600;
  margin: 0;
}

.team-strength-icon img {
  width: 100%;
}
.team-strength-inner {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.team-strength-icon img {
  max-width: 100px;
}
.team-strength-wapper {
  background: #fff;
  border: 1px solid var(--color-3);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0px 0px 2px 0px var(--color-3);
}
.team-strength-wapper-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-3);
}
.home-about-left-img {
  margin-left: -90px;
}

.about-btn.btn-main {
  border: 0;
  padding: 7px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  background-color: var(--color-4);
}
.about-btn.btn-main:hover {
  background: var(--color-3);
}
@media(max-width:767px){
  .home-about-bottom .row {
  row-gap: 20px;
}
}