    .gpress-section {
      display: flex;
      flex-flow: row nowrap;
      justify-content: space-between;
      align-items: center;
      padding: 10px 30px;
      background-color: #3b394d
    }
    
    @media (max-width:1024px) {
      .gpress-section {
        padding: 10px 15px
      }
    }
    
    .gpress-section__logo {
      width: 190px
    }
    
    @media (max-width:1024px) {
      .gpress-section__logo {
        width: 160px
      }
    }
    
    .gpress-section__btn {
      display: inline-block;
      padding: 12px 20px;
      background-color: #34b75c;
      color: #fff;
      text-decoration: none;
      text-align: center;
      font-size: 15px;
      line-height: 1;
      font-weight: 500;
      border-radius: 6px;
      transition: all 0.4s;
    }
    
    @media (max-width:1024px) {
      .gpress-section__btn {
        padding: 10px 16px;
        font-size: 14px
      }
    }
    
    .gpress-section__btn:hover {
      background-color: #2e9e4f;
      color: #fff;
      text-decoration: none;
      transition: all 0.4s;
    }
