.mm-columns-with-image-wrapper {
  padding: 30px 0 30px;

  img {
    width: 100%;
    height: auto;
  }

  .desktop-image {
    display: none;
  }

  .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .blocks-content {
    margin-bottom: 40px;
  }

  .heading {
    color: #151515;
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 0px;
    letter-spacing: -0.8px;
  }

  .description {
    color: #151515;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0.6px;
  }

  .blocks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;

    br {
      display: none;
    }
  }

  .video-wrapper{
    video{
      width: 100%;
    }
  }
  
  .faq--block{
    background: #0D0D0D;
    color: white;
    padding: 32px 24px;
    margin-top: 24px;
  }
  .detail--header{
      margin: 0 0 18px;
    .faq-title{
      font-size: 48px;
      font-style: normal;
      font-weight: 700;
      line-height: 110%;
      letter-spacing: -0.8px;
      text-transform: uppercase;
      color: #FFF;
      margin: 0;
      @media (max-width: 749px){
        font-size: 26px;
        max-width: 240px;
      }
    }
    .arrow--icon{
      line-height: 0;
      @media (min-width: 750px){
        display: none;
      }
    }
    @media (max-width: 749px){
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
  }
  .faq--item:not(:last-child){
    margin-bottom: 16px;
  }
  .faq--item--header{
    display: flex;
    gap: 8px;
    .numbering, .faq--item-title{
      color: #FAB20A;
      font-family: Assistant;
      font-size: 22px;
      font-style: normal;
      font-weight: 700;
      line-height: 120%;
      letter-spacing: 0.6px;
      margin: 0;
      @media (max-width: 749px){
        font-size: 18px;
      }
    }
  }
  .faq--item-description{
    color: #FFF;
    font-family: Assistant;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: 0.6px;
    margin: 12px 0 0;
    @media (max-width: 749px){
      font-size: 14px;
      margin: 8px 0 0;
    }
  }

  .faq--block {
    @media (max-width: 749px) {
      padding-bottom: 14px;
      .detail--body {
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    opacity 0.3s ease-in-out,
                    visibility 0.3s ease-in-out;
      }
  
      .detail--header {
        cursor: pointer;
        &:focus {
          outline: none;
        }
      }
  
      .arrow--icon {
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      }
  
      &.active {
        padding-bottom: 32px;
        .detail--body {
          max-height: 2000px;
          opacity: 1;
          visibility: visible;
        }
  
        .arrow--icon {
          transform: rotate(180deg);
        }
      }
    }
  }

  .block-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .block-icon {
    width: 40px;
  }

  .block-title {
    font-size: 18px;
    letter-spacing: 0.6px;
    font-weight: 600;
    line-height: 120%;
  }

  .col-img-inner {
    display: flex;
    flex-direction: column;
  }

  @media screen and (min-width: 992px) {
    .col-img-inner {
      flex-direction: row;
      gap: 50px;
    }

    .desktop-image {
      display: block;
    }

    .mobile-image {
      display: none;
    }

    .blocks-content-wrapper {
      max-width: 630px;
    }

    .heading {
      font-size: 36px;
    }

    .description {
      font-size: 16px;
    }

    .blocks-list {
      display: flex;
      flex-wrap: wrap;
      row-gap: 20px;
      justify-content: space-between;
      column-gap: 30px;
      align-items: flex-start;
    }

    .block-item {
      flex-direction: column;
      width: calc(100% / 3 - 20px);
      margin-bottom: 0;
      gap: 0;

      br {
        display: block;
      }
    }

    .block-title {
      text-align: center;
      margin: 0;
    }
  }

  @media screen and (min-width: 1200px) {
    padding-bottom: 70px;

    .block-icon {
      width: 50px;
    }

    .block-title {
      font-size: 18px;
    }

    .heading {
      font-size: 48px;
    }

    .description {
      font-size: 18px;
    }

    .image-wrapper {
      padding-top: 20px;
    }
  }
}