.about {  
  & h2 {
    font-family: var(--title-font-family);
    font-size: var(--step-6);
  }
  
  .figure {
    display: flex;
    flex-direction: column;
    gap: 30px;
  
    .scroll-down {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 10px;
  
      > svg {
        fill: var(--color-light);

        & path {
          animation: arrowDown 3s infinite normal;
        }
      }
    }
  
    .principal-img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      border-radius: var(--border-radius);
    }
  }
  
  .text-section {
    display: flex;
    flex-direction: column;

    .text-image {
      display: flex;
      justify-content: space-between;
      gap: 50px;

      .first-text-section {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 50px;
          width: 50%;
          justify-content: center;
      
          & h2 {
            line-height: normal;
          }
      
          & p {
            font-size: var(--step-0);
            max-width: 80%;
          }
      }

      .image-section-one {
        display: flex;
        align-items: center;
      }
    }
  
    .main-text {
      display: flex;
      flex-direction: column;
      gap: 50px;
  
      & h2 {
        line-height: normal;
        max-width: 80%;
      }
  
      & p {
        font-size: var(--step-0);
        max-width: 45%;
      }
    }
  }
  
  .text-section.middle {
    .main-text {
      align-items: center;
    }
  }
  
  .text-section.right {
    .main-text {
      align-items: end;
    }
  }
  
  .image-section-two {
    display: flex;
    justify-content: space-between;
    gap: 100px;
  
    .square-image-container {
      width: 30%;
      display: flex;
      align-items: center;
  
      .square-image {
        height: 40%;
        object-fit: cover;
        border-radius: var(--border-radius);
        aspect-ratio: 1/1;
      }
    }
  
    .vertical-image-container {
      width: 50%;
      overflow: hidden;
      border-radius: var(--border-radius);
  
      .vertical-image {
        object-fit: cover;
        border-radius: var(--border-radius);
      }
    }
  }
}

@keyframes arrowDown {
  0% { 
    transform: translateY(-150%);
   }
  30%, 70% { 
    transform: translateY(0);
   }
  100% { 
    transform: translateY(150%);
   }
}

/* RESPONSIVE */

@media screen and (width < 1024px) {
  .about {
    .figure {
      .principal-img {
        height: unset;
      }
    }
  }
}

@media screen and (width <= 1024px) {
  .about {
    .text-section {

        .text-image {
        flex-direction: column;

        .first-text-section {
          width: unset;
        
        }

        .image-section-one {
          justify-content: center;
        }
      }
    }
  }
}

@media screen and (width <= 768px) {
  .about {
    .text-section {

        .text-image {

        .first-text-section {

          & p {
            max-width: unset;
          }
        }
      }

      .main-text {
        gap: 50px;

        & h2, p {
          max-width: unset;
        }
      }
    }

    .image-section-two {
      flex-direction: column;
      gap: 50px;
      
      .square-image-container {
        width: 100%;
        justify-content: center;
      }

      .vertical-image-container {
        width: 100%;
      }
    }
  }
}