.title {
  position: relative;
  padding: 60px 0;
  @media (max-width: 1680px) {
    padding: 54px 0;
  }
  @media (max-width: 1440px) {
    padding: 48px 0;
  }
  @media (max-width: 1366px) {
    padding: 42px 0;
  }
  @media (max-width: 1024px) {
    padding: 36px 0;
  }
  figure {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    &:before,
    &:after {
      display: block;
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      @media (max-width: 768px) {
        display: none;
      }
    }
    &:before {
      width: 200px;
      height: 100%;
      background-color: rgba(1, 145, 179, 0.8);
      clip-path: polygon(50% 0, 100% 100%, 100% 0);
      z-index: 2;
      @media (max-width: 1024px) {
        width: 180px;
      }
    }
    &:after {
      width: 330px;
      height: 100%;
      background-color: rgba(91, 192, 222, 0.64);
      clip-path: polygon(50% 100%, 100% 100%, 100% 0);
      z-index: 3;
      @media (max-width: 1024px) {
        width: 160px;
      }
    }
    img {
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      object-fit: cover;
      opacity: 0.1;
      z-index: 1;
    }
  }
  .container {
    position: relative;
    z-index: 2;
    h1 {
      margin: 0 0 10px;
    }
    .text {
      width: 50%;
      @media (max-width: 1024px) {
        width: auto;
      }
    }
    .additional-info {
      display: flex;
      align-items: flex-start;
      gap: 4px;
      margin-bottom: 20px;
      span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
      }
      strong {
        flex: 1;
        font-weight: 500;
        a {
          color: var(--c-gray-500);
          transition: color 0.3s ease-in-out;
          &:hover {
            color: var(--c-primary-200);
          }
        }
      }
    }
  }
}
