* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins';
  
  a:hover, a:focus, a:active {
    color: inherit;
    text-decoration: none;
  }
}

.header__bar {
  background: var(--degrade-card-2, linear-gradient(238deg, rgba(255, 254, 252, 0.30) -44.1%, rgba(255, 254, 252, 0.00) 101.7%), #4D1AA4);
  text-align: center;
  padding: 1.75rem 4rem;
}

.sf__svg {
  width: 11.60rem;
}

.main__content {
  background-color: #FBF8EC;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  height: calc(100vh - 6.25rem);
}

.img__main {
  width: 35.625rem;
}

.multi_benefits__section {
  & .on_hands {
    color: #4D1AA4;
    font-size: 32px;
    font-weight: 700;
    line-height: 2.75rem;
    letter-spacing: .02rem;
    margin-bottom: 1.5rem;
  }

  & .with_sf {
    color: #252525;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

.img__main__section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;

  & .img__legend {
    color: #9476C7;
    font-family: Poppins;
    font-size: .75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; 
  }

  & .img__legend__subline {
    color: #9476C7;
    font-family: Poppins;
    font-size: .625rem;
    font-style: normal;
    font-weight: 300;
    line-height: 160%;
  }
}

.app_store__section {
  display: flex;
  gap: 2rem;
}

.buttons__section {
  display: flex;
  width: 12.5rem;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 70% 70%, rgb(254, 204, 25) 0%, rgb(252, 227, 128) 100%);
  padding: 1rem;
  text-decoration: none;
  border-radius: .5rem;

  & .app__download__btn {
    margin-right: 1.5rem;
    ;
  }

  & .buttons__section__text {
    line-height: 100%;

    & .download_from_text {
      font-size: 12px;
      color: #252525;
    }

    & .store_text {
      color: #252525;
      font-family: "Red Hat Display";
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
    }
  }
}

@media screen and (max-width: 768px) {
  .header__bar {
    background: var(--degrade-card-2, linear-gradient(238deg, rgba(255, 254, 252, 0.30) -44.1%, rgba(255, 254, 252, 0.00) 101.7%), #4D1AA4);
    text-align: center;
    padding: .75rem 2rem;
    height: 3.5rem;
  }
  
  .sf__svg {
    height: 1.25rem;
    margin: 0 auto;
  }
  
  .main__content {
    background-color: #FBF8EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    padding: 2.5rem 1.5rem;
  }
  
  .img__main {
    width: 100%;
  }
  
  .multi_benefits__section {
    order: 2;
    
    width: 100%;

    & .multi_benefits__img  {
      width: 100%;
    }

    & .on_hands {
      color: #4D1AA4;
      font-size: 24px;
      font-weight: 700;
      line-height: 2.75rem;
      letter-spacing: .02rem;
      margin-bottom: 1.5rem;
    }
  
    & .with_sf {
      color: #252525;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.875rem;
      margin-bottom: 1.5rem;
    }
  }
  
  .img__main__section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  
    & .img__legend {
      color: #9476C7;
      font-family: Poppins;
      font-size: .75rem;
      font-style: normal;
      font-weight: 700;
      line-height: 160%; 
    }
  
    & .img__legend__subline {
      color: #9476C7;
      font-family: Poppins;
      font-size: .625rem;
      font-style: normal;
      font-weight: 300;
      line-height: 160%;
    }
  }
  
  .app_store__section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .buttons__section {
    display: flex;
    width: inherit;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 70% 70%, rgb(254, 204, 25) 0%, rgb(252, 227, 128) 100%);
    padding: 1rem;
    text-decoration: none;
    border-radius: .5rem;
  
    & .app__download__btn {
      margin-right: 1.5rem;
      ;
    }
  
    & .buttons__section__text {
      line-height: 100%;
  
      & .download_from_text {
        font-size: 12px;
        color: #252525;
      }
  
      & .store_text {
        color: #252525;
        font-family: "Red Hat Display";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
      }
    }
  }
}