/* home page */
.main-achievement {
    list-style: none;
    padding: 0;
    justify-content: center;
}
.main-achievement > * {
    position: relative;
    max-width: 370px;
    border-left: 1px solid  #000;
    padding: 10px 20px 20px;
    margin-top: 20px;
    left: 20px;
}
.main-achievement > *:before {
    content: "";
    display: block;
    position: absolute;
    left: -5px; top: 0;
    width: 9px; height: 15px;
    background: #fff var(--ico-circle) no-repeat top center;
}

.main-carousel {
    max-height: 612px;
    overflow: hidden;
    background: #D9D9D9;
}
.main-carousel .swiper-slide {
    text-align: center;
}
.main-carousel .swiper-slide img {
    max-width: 100%;
    width: auto;
    /*max-height: 612px;*/
    height: auto;
}
.main-carousel .swiper-button-prev {
    margin-left: 30px;
}
.main-carousel .swiper-button-next {
    margin-right: 30px;
}
.main-carousel .swiper-buttons {
    display: none;
}
.main-carousel:hover .swiper-buttons {
    display: block;
}

@media (max-width: 575.98px) {
    .p-card-title {
        font-size: 11px;
        line-height: 1.2;
        font-weight: 500;
        margin-top: 0;
    }
    .p-card-author {
        font-size: 9px;
        line-height: 1;
    }
    .h1 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .main-achievement {
        padding: 0 0 0 20px;
    }
    .main-achievement > * {
        left: 0;
    }
}