.default__about-1 {
    width: 100%;
  }
  .default__about-1-content {
    width: 100%;
  }
  .default__about-1-content > h2 {
    font-size: 22px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
  }
  .default__about-1-content > h3 {
    font-size: 22px;
    font-weight: bold;
    color: black;
    margin-bottom: 10px;
  }
  .default__about-1-content > p {
    color: black;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
  }
  .default__about-1-content > p a {
    color: black;
    position: relative;
    transition: all 300ms ease-in-out;
  }
  .default__about-1-content p a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ddd;
    transition: all 300ms ease-in-out;
  }
  .default__about-1-content p a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    opacity: 0;
    transition: all 300ms ease-in-out;
  }
  .default__about-1-content p a:hover {
    color: var(--secondary-color);
  }
  .default__about-1-content p a:hover::before {
    width: 0;
    opacity: 0;
  }
  .default__about-1-content p a:hover::after {
    width: 100%;
    opacity: 1;
    transition-delay: 200ms;
  }
  