.guide-cta {
  background-color: rgba(24, 24, 24, 1);
  padding: 320px 0;

  @media (max-width: 1024px) {
    padding: 40px 0 60px 0;
  }

  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;

    @media (max-width: 1024px) {
      grid-template-columns: 1fr;
      gap: 80px;
    }

    .gant_swiper_text {
      display: flex;
      flex-direction: column;
      gap: 20px;

      @media (max-width: 1024px) {
        order: 0 !important;
      }

      h2 {
        margin: 0;
        color: #fffaee;
        font-size: 100px;
        font-style: normal;
        font-weight: 700;
        line-height: 104%;
        letter-spacing: -2px;
        font-size: var(--fs-5xl);

        @media (max-width: 1024px) {
          padding-inline: 20px;
          display: block !important;
        }
      }

      .text,
      p {
        margin: 0;
        color: #fffaee;
        font-family: var(--ff-Inter);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        letter-spacing: -0.36px;
        margin-bottom: 50px;
        @media (max-width: 1024px) {
          margin-bottom: 0px;
          padding-inline: 10px;
        }
      }
      .cta {
        @media (max-width: 1024px) {
          display: none;
        }
        a {
          padding: 16px 32px;
          background-color: #fffaee;
          color: #181818;
          font-size: 18px;
          font-style: normal;
          font-weight: 600;
          font-family: var(--ff-secondary);
          border: 1px solid transparent;
          border-radius: 8px;
          text-decoration: none;
          transition: background-color 0.3s ease;
          &:hover {
            color: #fffaee;
            background-color: transparent;
            border-color: #fffaee;
          }
        }
      }
    }

    .pic_holder {
      position: relative;

      @media (max-width: 1024px) {
        height: 560px;
      }
      @media (max-width: 768px) {
        height: 240px;
        width: 332px;
        margin: 0 auto;
      }
      figure {
        width: 500px;
        height: 280px;
        border-radius: 20px;
        overflow: hidden;
        @media (max-width: 768px) {
          width: 244px;
          height: 136px;
        }
        img,
        video {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
        &.back {
          position: absolute;
          top: 0;
          right: -100px;
          @media (max-width: 1680px) {
            right: -40px;
          }
          @media (max-width: 1024px) {
            right: 0;
          }
        }
        &.front {
          position: absolute;
          top: 230px;
          left: 0;
          z-index: 1;
          @media (max-width: 768px) {
            top: 112px;
          }
        }
      }
    }
  }
}
