.page-top {
  width: 100%;
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.page-top__content {
  width: 90%;
  margin: 0 auto;
  height: 250px;
  position: relative;
}

.page-top__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 1rem;
}

.page-top__text {
  display: flex;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.page-top__text-container {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 0 2rem;
  letter-spacing: 2px;
}

.page-top__title {
  font-size: clamp(2rem, 3.5vw , 3.5rem);
  line-height: 1.0;
  color: white;
  margin: 0;
  display: flex;
  align-items: center;
}

.page-top__arrow-icon {
  width: 3rem;
  height: 3rem;
}

.page-top__subtitle {
  font-size: clamp(1.25rem, 2vw , 2rem);
  color: white;
  margin: 0;
}

.concept__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
}

.company-concept,
.action-concept {
    display: flex;
    align-items: center;
}

.company-concept {
    justify-content: flex-end;
}

.action-concept{
  justify-content: flex-start;
}

.company-concept__text,
.action-concept__text {
    background-color: var(--neutral-95);
    width: 60%;
    line-height: 2;
    font-weight: 500;
    display: flex;
    flex-direction: column;
}

.company-concept__text{
  border-radius: 1rem 0 0 1rem;
  padding: 70px 30px 70px 140px;
}

.action-concept__text{
  border-radius: 0 1rem 1rem 0;
  padding: 70px 140px 70px 30px; 
  justify-content: flex-end;
}

.company-concept__title,
.action-concept__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    max-width: 540px;
}


.company-concept__subtitle,
.action-concept__subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    max-width: 540px;
}

.company-concept__description,
.action-concept__description {
    max-width: 540px;
}

.company-concept__image,
.action-concept__image {
    width: 500px;
    height: 280px;
    position: relative;
    border-radius: 1rem;
    box-shadow: 16px 16px 12px 0px rgba(0, 0, 0, 0.20);
    z-index: 10;
}

.company-concept__image {
    margin-right: -100px;
}

.action-concept__image {
    margin-left: -100px;
}

@media screen and (max-width: 768px) {
  .page-top{
    padding: 0;
  }
  .page-top__content {
    width: 100%;
    height: 200px;
  }

  .page-top__image {
    border-radius: 0;
  }
  .company-concept{
    flex-direction: column; 
  }

  .action-concept {
    flex-direction: column-reverse;
  }

  .company-concept__image,
  .action-concept__image {
    width: 90%;
    height: 240px;
    object-fit: cover;
  }

  .company-concept__image,
  .action-concept__image {
    margin-right: auto;
    margin-left: -20px;
  }

  .company-concept__text,
  .action-concept__text {
    width: 90%;
    padding: 20px 30px;
  }

  .company-concept__text,
  .action-concept__text {
    margin-left: auto;
  }

  .action-concept__text {
    border-radius: 1rem 0 0 1rem;
  }

  .company-concept__title,
  .action-concept__title,
  .company-concept__subtitle,
  .action-concept__subtitle,
  .company-concept__description,
  .action-concept__description {
    width: 100%;
  }
}