.about {
  margin-bottom: 0rem;
  padding-top: 3rem;
  small {
    text-align: center;
    color: #818181;
  }

  img {
    width: 100%;
  }

  .btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 120px;
    color: #fff;
    padding: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 0.75rem;
    background: var(--text-color);
    box-shadow: 4px 5px 4.9px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    &:hover {
      color: var(--background-color);
      background: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 4px 7px 6px rgba(0, 0, 0, 0.3);
      text-decoration: none;
    }
    svg {
      width: 16px;
    }
  }

  ul {
    li {
      margin-top: 1rem;
    }
  }
}

.about-breaker {
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: -105px;
  @media (max-width: 600px) {
    top: 0px;
  }
  right: 0px;
  img {
    width: 75%;
  }
}
