.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 454px 720px;
  column-gap: 171px;
  align-items: start;
  height: 800px;
  padding-left: 95px;
  overflow: hidden;
  background: var(--color-navy-500);
}

.about-section__shape {
  position: absolute;
  width: 785px;
  height: 759px;
  top: 70px;
  left: 317px;
  z-index: 0;
  pointer-events: none;
}

.about-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 454px;
  margin-top: 285px;
  padding-bottom: 110px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.about-section h2 {
  width: 454px;
  height: 132px;
  color: var(--color-cyan-500);
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.about-section p {
  width: 454px;
  height: 108px;
  color: var(--color-navy-200);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.about-section__media {
  position: relative;
  z-index: 1;
  width: 720px;
  height: 480px;
  margin-top: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.about-section__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767px) {
  .about-section {
    display: flex;
    height: 653px;
    width: 100%;
    padding: 80px 0 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .about-section__shape {
    content: url('../../assets/icons/home/about-x-shape-vector-mobile.svg');
    width: 192.05px;
    height: 185.66px;
    top: 193px;
    left: 237.9531px;
  }

  .about-section__content {
    width: 388px;
    max-width: calc(100vw - 42px);
    margin-top: 0;
    padding-bottom: 0;
    gap: 16px;
  }

  .about-section h2 {
    width: 388px;
    max-width: 100%;
    height: 45px;
    font-size: 40px;
    white-space: nowrap;
  }

  .about-section p {
    width: 375px;
    max-width: 100%;
    height: 90px;
    font-size: 13px;
    overflow: hidden;
  }

  .about-section__media {
    width: 388px;
    max-width: calc(100vw - 42px);
    height: 278px;
    margin-top: 0;
    border-radius: 16px;
  }
}
