.about-sec {
  width: 100%;
  height: 100vh;
  background-color: #262626;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

.about-left {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 2px solid red; */
}

.about-left img {
  width: 350px;
  height: 350%;
  background-color: #57b0e3;
  border: 1px solid #fff;
  border-radius: 50%;
}

.about-right {
  width: 50%;
  display: flex;
  text-align: left;
  justify-content: left;
  flex-direction: column;
}

.about-right h2 {
  font-size: 35px;
  font-weight: 900;
  color: #57b0e3;
  padding: 20px 0px;
}

.about-right h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
}

.about-right p {
  font-size: 17px;
  color: #fff;
  padding: 20px 0px;
  line-height: 20px;
}

.btn-cv a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 8px 25px;
  background-color: #262626;
  border: 3px solid #fff;
  border-radius: 5px;
  transition: all 0.5s;
}

.btn-cv a:hover {
  background-color: ;
  border: 3px solid #57b0e3;
  color: #57b0e3;
  border-radius: 13px;
  transition: all 0.5s;
}