<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sc {
    counter-reset: item 4;

    padding: 175px 0 230px;
    max-width: 1364px;
    margin: auto;
}
.sc .section-title {
    text-align: center;
    margin-bottom: 160px;
}
.sc .section-title img {
    width: 475px;
}

.sc .list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.sc .item {
    display: flex;
}
.sc .item .img {
    width: 715px;
    margin-right: 50px;
}
.sc .item .img img {
    width: 100%;
}
.sc .item .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.sc .item .title {
    font-size: 32px;
    padding: 20px;
    line-height: 1em;
    color: white;
    background: #BF956D;
    margin-bottom: 27px;
    width: 100%;
    display: flex;
    align-items: center;
}
.sc .item .title::before {
    counter-increment: item -1;
    content: "0" counter(item) " ";
    font-size: 56px;
    margin-right: 10px;
}
.sc .item .text {
    font-size: 20px;
    text-align: justify;
    margin: 0 0 20px;
}
.sc .item .btn {
    display: inline-block;
    border: 2px solid black;
    border-radius: 50px;
    font-size: 27px;
    line-height: 1em;
    padding: 20px 80px;
    transition: .5s opacity;
}
.sc .item .btn:hover {
    opacity: .6;
}


@media (max-width: 1023px) {
    .sc {
        padding-left: 37.5px;
        padding-right: 37.5px;
        padding-bottom: 50px;
        padding-top: 93px;
    }
    .sc .section-title img {
        width: 47.4vw;
    }
    .sc .section-title {
        margin-bottom: 60px;
    }
    .sc .item {
        display: block;
    }
    .sc .item .img {
        width: 100%;
    }
    .sc .item .title {
        font-size: 16px;
        justify-content: center;
        margin-bottom: 15px;
    }
    .sc .item .title::before {
        font-size: 28px;
    }
    .sc .item .text {
        font-size: 10px;
    }
    .sc .item .btn {
        margin:0 auto;
        font-size: 13.5px;
        padding: 10px 40px;
    }
}
</pre></body></html>