@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&display=swap");

.about-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
}

.about-img {
  width: 80%;
}

.about-img-section {
  position: relative;
}

.about {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
  background-image: linear-gradient(90deg, hsla(0, 0%, 0%, 0.61), hsla(0, 0%, 0%, 0.678)), url(../img/about-image.jpeg);
  background-repeat: repeat, no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0%;
  padding: 4% 0%;
}

.about-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: "Noto Sans", sans-serif;
}

.about-details {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin: 20px auto;
  color: var(--primary-color);
}

.contact-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--btn-bg-color);
  color: var(--text-color-inverse);
  border: none;
  font-size: 1.3rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 6.123233995736766e-17px -1px 6px 0 var(--primary-color);
  width: auto;
  height: auto;
  padding: 0.5% 4%;
}

.contact-btn img{
  height: 4vh;
  width: auto;
  margin-right: 1vw;
}

.about-btn:hover {
  filter: brightness(130%);
}

@media (min-width: 950px) {
  .about-info {
    display: flex;
    margin-bottom: 0px;
    width: 40%;
  }

  .about-img {
    width: 100%;
    transform: scaleX(-1);
  }

  .about {
    text-align: left;
    display: flex;
    justify-content: flex-end;
    margin: 0%;
    padding: 4% 0%;
    align-items: center;
    background-image: linear-gradient(90deg, hsla(0, 0%, 29%, 0.212), hsl(0, 0%, 0%)), url(../img/about-image.jpeg
    );
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-details {
    font-size: 25px;
    margin: 30px 0;
  }

  .contact-btn {
    font-size: 1.5rem;
    width: auto;
  }
}