body{
    margin:0;
    padding: 0;
    background:#edf8f3;
    font-family: "Lexend Deca", sans-serif;
}
.main-wrapper{

}
.wrapper{
    max-width: 640px;
    margin:0 auto;
    padding: 0 24px;
}

.top-logo {
    padding: 20px 0 10px;
}

.text-header h1 {
    font-size: 26px;
    line-height: 1.4em;
    margin-bottom: 0;
}

.text-header h4 {
    font-weight: 400;
    margin-top: 8px;
    font-size: 14px;
}

.offer-wall {
    margin-bottom: 40px;
}

.offer-wall {
    margin-bottom: 40px;
}

.offer-item {
    display: block;
    text-decoration:none;
    color:#000;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 4px #0000002e;
    padding: 16px 10px;
    margin: 10px 0;
}

.offer-item-grid {
    grid-template-columns: 120px auto 140px;
    display: grid;
}

.offer-item-desc{
    grid-template-columns: 1fr 1fr;
    display: grid;
}

.offer-item-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-item-logo img {
    mix-blend-mode: darken;
}

.logo-but {
    line-height: 0;
}
.offer-item-amount {
    padding: 0 15px;
}

.offer-item-amount-h {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.offer-item-amount-w {
    font-size: 14px;
}
.but {
    background: #000;
    display: block;
    line-height: 40px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.but:hover {
    background: #7eeb83;
    color: #000;
    transition: all .2s;
}

.copy{
    font-size: 12px;
    color:#999;
}

.logo-but img {
    max-width: 95px;
    max-height: 60px;
}


@media all and (max-width: 468px){

    .but span{
        display: none;
    }

    .text-header h1 {
        font-size: 22px;
    }

    .logo-but img {
        max-width: 65px;
        max-height: 100%;
    }

    .offer-item-desc {
        grid-template-columns: 1fr;
    }

    .offer-item-grid {
        grid-template-columns: 90px auto 50px;
    }

    .offer-item {
        padding: 10px 8px;
    }

    .but{
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .but::after {
        content: '';
        display: block;
        width: 50px;
        height: 50px;
        background: url(../img/simple/arr.svg) no-repeat center;
    }

    .offer-item-button {
        display: flex;
        align-items: center;
    }

    .offer-item-amount {
        padding: 0 10px;
        margin-bottom: 5px;
    }

    .offer-item-amount-w {
        font-size: 12px;
    }

    .offer-item-amount-h {
        font-size: 10px;
    }

    .offer-item-logo {
        background: #f6f6f6;
        border-radius: 5px;
    }
}