* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

img {
    display: block;
    width: 100%;
}

.ly_max {
    max-width: 680px;
    width: 100%;
    margin: auto;
}

.ly_slice {
    width: 100%;
    margin: auto;
    max-width: 680px;
}

.ly_mid {
    width: 90%;
    margin: auto;
}

.bl_title {
    text-align: center;
    padding: 24px 0;
}

.bl_slice_list {
    position: relative;
}

.bl_slice_list .bl_block {
    position: relative;
    display: block;
    width: 100%;
}

.bl_block_title {
    position: absolute;
    top: 30%;
    bottom: 0;
    right: 5%;
    width: 14%;
    margin: auto;
    display: flex;
    align-items: center;
}
.foot_cont{
    background: #fff;
}
.main_cont.top_cont{
    background: url(../images/bg.jpg) top center no-repeat #fbf7f0;
}
.main_cont{
    background: #fbf7f0;
}

.bl_btn_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 24px 24px 48px;
}

.bl_btn_inner {
    transition: .3s;
}

.bl_btn_inner:hover {
    opacity: .8!important;
}

.bl_footer {
    text-align: center;
    padding: 40px 0;
    display: block;
}

.bl_footer_logo {
    max-width: 160px;
    width: 50%;
    margin: auto;
}

@media screen and (max-width:560px) {
    .bl_btn_list {
        grid-template-columns: repeat(2, 1fr);
    }
}