.about-section {
  /* padding-top: 100px;
  padding-bottom: 100px; */
  padding-bottom: 100px;
}

.about-section .round-top {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-section .round-top .text {
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
  background-color: var(--colorPrimary);
}

.about-section .round-top .text .header {
  color: white;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-section .round-top .text .sub-header {
  color: white;
  font-size: 30px;
  text-align: center;
}

.about-section .round-top .border {
  width: 100%;
  z-index: 20;
  height: 80px;
  border-bottom-left-radius: 70%;
  border-bottom-right-radius: 70%;
  position: relative;
  background-color: var(--colorPrimary);
  margin-top: -2px;
}

.about-section .wrapper {
  margin-top: 100px;
}

.about-section .row {
  justify-content: space-between;
}

.about-section .row .about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
}

.about-section .about-text p {
  margin: 20px 0;
}

.about-section .about-image-big {
  width: 40%;
  aspect-ratio: 4 / 3;
  background: #123526;
  background: linear-gradient(
    180deg,
    rgba(18, 53, 38, 1) 0%,
    rgba(13, 31, 26, 1) 100%
  );
  border-radius: 10px;
  position: relative;
}

.about-section .about-image-big img {
  position: absolute;
  bottom: 0px;
  right: 50px;
  height: 110%;
}

.about-section .about-image-small {
  width: 30%;
  aspect-ratio: 1 / 1;
  background: #123526;
  background: linear-gradient(
    180deg,
    rgba(18, 53, 38, 1) 0%,
    rgba(13, 31, 26, 1) 100%
  );
  border-radius: 10px;
  padding: 30px;
}

.about-section .about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-section .last-text {
  color: var(--textLight);
  width: 100%;
  margin-top: 150px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column;
  }

  .about-section .row .about-text {
    width: 100%;
  }

  .about-section .about-image-big {
    width: 100%;
  }

  .about-section .about-image-small {
    width: 100%;
    display: none;
  }

  .about-section .round-top .text .header {
    font-size: 30px;
    display: none;
  }

  .about-section .round-top .text {
    padding: 0 20px;
    padding-top: 50px;
  }

  .about-section .round-top .text .sub-header {
    font-size: unset;
  }
  .about-section .wrapper {
    margin-top: 30px;
  }

  .about-section .last-text {
    margin-top: 0px;
    text-align: left;
  }
}
