header {
  margin-bottom: 200px;
  
  @media (max-width: 992px) {
    margin-bottom: 32px;
  }
}

.for-developers {
  margin-bottom: 200px;

  .container {
    display: flex;
    align-items: center;
    gap: 24px;

    @media (max-width: 992px) {
      flex-wrap: wrap;
    }

    .item-wrapper {
      width: 50%;
      height: 360px;
      border: 1px var(--light-gray-text) solid;
      background-color: #fff;
      border-radius: 12px;

      @media (max-width: 992px) {
        width: 100%;
        height: 400px;
      }

      .item {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 16px;
        background:
          linear-gradient(180deg, rgba(0, 115, 185, 0.12) 0%, rgba(255, 255, 255, 0.12) 64%);
        border-radius: 12px;
        border: 4px #fff solid;

        .main-img {
          margin-bottom: 26px;
        }

        h3 {
          margin-bottom: 12px;
          font-weight: 500;
          font-size: 16px;
          line-height: 24px;
        }

        .description {
          font-weight: 400;
          font-size: 14px;
          line-height: 20px;
        }

        button {
          margin-top: 80px;
        }

        .btn-wrapper {
          margin-top: auto;
          display: flex;
          flex-direction: column;
          gap: 16px;

          @media (max-width: 992px) {
            width: 100%;
          }

          .contact {
            margin: 0;
            padding: 12px 16px;
            background-color: #fff !important;
            border: 1px var(--light-gray-text) solid;
            transition: .4s all linear;

            @media (max-width: 992px) {
              justify-content: center;
            }

            span {
              color: black;
            }
          }

          .contact:hover {
            background-color: var(--hover-gray-text) !important;
            transition: .4s all linear;
          }
        }

        .contact-market {
          margin-top: auto;

          @media (max-width: 992px) {
            width: 100%;
            justify-content: center;
          }
        }
      }
    }
  }
}