/* New-year gift */
.newyear-gift {
    width: 100%;
    height: auto;
    background: linear-gradient(96.32deg, rgba(90, 176, 255, 0.8) 0.25%, rgba(49, 194, 167, 0.8) 64.8%), 
      radial-gradient(63.67% 123.21% at 66.11% 100%, #1D6A64 0%, #21BA72 100%), #FFFFFF;
  }
  
  .newyear-gift__container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
  
  .newyear-gift__column_right {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  .newyear-gift__img {
    display: block;
    width: 100%;
    height: 406px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .newyear-gift__column_left {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .newyear-gift__column_text {
    width: 504px;
  }
  
  .newyear-gift__button {
    margin-top: 32px;
    background: #ffffff;
    box-sizing: border-box;
    padding: 13px 36px;
    box-shadow: 0px 2px 4px rgba(52, 64, 75, 0.06);
    border-radius: 32px;
    cursor: pointer;
  }

  .newyear-gift__button:hover {
    color: #209f6d;
  }
  
  @media screen and (max-width: 1440px) {
  
    .newyear-gift__column_text {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 1199px) {
    .newyear-gift {
      box-sizing: border-box;
      padding: 0;
    }
  
    .newyear-gift__column_text {
      font-size: 24px;
      line-height: 32px;
    }
  
    .newyear-gift__img {
      height: 300px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .newyear-gift {
      padding: 0;
    }
  
    .newyear-gift__container {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column-reverse;
      box-sizing: border-box;
      padding: 0;
      padding-bottom: 48px;
    }
  
    .newyear-gift__column_text {
      margin-top: 16px;
      font-size: 24px;
      line-height: 30px;
    }
  
    .newyear-gift__img {
      height: 220px;
    }
  
    .newyear-gift__button {
      margin-top: 24px;
      padding: 9px 32px;
    }
  }