.create-fotobook {
    background: #faf6f3;
    border-radius: 18px;
    padding: 25px 30px;
    display: flex;
}
.create-fotobook img {
    border-radius: 20px;
    margin-right: 55px;
    width: 160px;
}
.create-fotobook .lead-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.create-fotobook .lead-btn h3 {
    padding: 23px 0;
    font-size: 32px;
    font-weight: 300;
}
.create-fotobook .lead-btn .lead {
    font-size: 18px;
    margin-top: 0;
}
.create-fotobook .lead-btn .btn-price {
    margin-right: 10px;
}
.create-fotobook .lead-btn .btn {
    display: inline-block;
    line-height: 48px;
    height: 48px;
    background: #fe5646;
    color: #fff;
    font-size: 18px;
    border-radius: 37px;
    padding: 0 20px;
    margin-top: 45px;
    text-align: center;
}
.create-fotobook .lead-btn .price {
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
}

.create-fotobook .lead-btn .new-price {
    color: #DB0032;
    margin-right: 8px;
}

.create-fotobook .lead-btn .old-price {
    text-decoration: line-through;
    color: grey;
}

@media (max-width: 800px){
    .create-fotobook {
        flex-direction: column;
    }
    .create-fotobook img {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }
    .create-fotobook .lead-btn {
        flex-direction: column;
    }
}