.app-container {
  .offer-page {
    background-color: #191325;

    .offer-page__container {
      position: relative;
      z-index: 2;
      max-width: 1192px;
      padding: 0px 100px;
      width: 100%;
      margin: auto;
  
      @media (max-width: 1400px) {
        padding: 0px 50px;
      }
      @media (max-width: 1000px) {
        padding: 0px 16px;
   
      }
    }
    .offer-page__items {
      display: flex;
      gap:16px;
      flex-wrap: wrap;
    }
    .offer-page__item-icon {
      position: relative;
      z-index: 3;
      width: 96px;
      height: 96px;
      transition: 0.3s;
      img {
        width: 100%;

        height: 100%;
        object-fit: contain;
        border-radius: 4px;
      }
    }
    .offer-page__item {
      width: calc(33.33% - 11px);
      padding: 24px;
      padding-bottom: 80px;
      text-decoration: none;
      min-height: 400px;
      position: relative;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      @media (max-width:900px) {
        width: calc(50% - 8px);
      }
      @media (max-width:600px) {
        width: 100%;
        min-height: 0;
        gap: 48px;
      }
      &:hover {
        .offer-page__item-icon {
      height: 120px;
      width: 120px;
        }
        &::after {
          opacity: 1;
        }
        &::before {
          background-color: #191325;
        }
        svg {
          path {
            &:nth-child(2) {
              fill: #ff924f;
            }
          }
        }
      }
      &::after {
        content: "";
        background: linear-gradient(
          198deg,
          #c8ff50 0,
          #e5c64f 53%,
          #7b4fff 100%
        );
        position: absolute;
        left: -1px;
        top: -1px;
        width: calc(100% + 2px);
        height: calc(100% + 2px);
        z-index: 0;
        opacity: 0;
        transition: 0.4s;
      }
      &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #251f30;
        z-index: 1;
        transition: 0.4s;
      }
      .offer-page__item-text {
        z-index: 2;
      }
      p.title {
        color: #ffffff;
        font-weight: 600;
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    
        font-family: var(--mainfont);
        @media (max-width: 1000px) {
          font-size: 20px;
        }
      }
      p.desc {
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.75);
        position: relative;
        z-index: 1;
      }
      svg {
        position: absolute;
        right: 24px;
        bottom: 32px;
        z-index: 1;
        path {
          transition: 0.4s;
        }
      }
    }
  }
}
