.our-projects {
    max-width: 1636px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.our-projects__slider {
    padding: 0 12px;
    margin: 0 -20px;
}

.our-projects__slider .swiper-wrapper {
    padding-bottom: 20px;
}

.swiper-slide {
    height: auto;
}

.our-projects__navigation {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.our-projects__button {
    width: 70px;
    height: 70px;
    background: #AF0013;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: opacity 0.3s ease;
}

.our-projects__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.our-projects__button-icon {
    color: #fff;
    width: 35px;
    height: 35px;
}

.our-projects__button--prev {
    margin-left: -49px;
}

.our-projects__button--next {
    margin-right: -49px;
}


.our-projects__pagination {
    display: none;
    margin-top: 20px;
    text-align: center;
    position: static;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ddd;
    opacity: 1;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    border: 2px solid #AF0013;
    background: transparent;
}

.project {
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.12);
}

.project__image {
    margin-bottom: 20px;
}

.project__name {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    margin-bottom: 15px;
}

.project__achievements {
    padding: 0 45px 48px;
}

.project__achievement {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    min-height: 53px;
}

.project__achievement-icon {
    margin-right: 6px;
    padding: 5px 0;
    border-right: 1px dashed #8e8e8e;
    flex-shrink: 0;
}

.project__achievement-text {
    font-size: 18px;
}

.our-projects__show-all {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.our-projects__show-all a {
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
    background-color: #AF0013;
    padding: 18px 34px;
}

@media (max-width: 1615px) {
    .our-projects__navigation {
        display: none;
    }

    .our-projects__pagination {
        display: block;
    }
}

@media (min-width: 600px) and (max-width: 1024px) {
    .project {
        flex-direction: row;
    }

    .project__image {
        margin: 0;
        height: 100% !important;
        object-fit: cover;
    }

    .project__achievements {
        padding: 0;
    }

    .project__content {
        padding: 40px 25px;
    }
}

@media (max-width: 425px) {
    .our-projects {
        padding: 0 15px;
    }

    .our-projects__pagination,
    .our-projects__show-all {
        margin-top: 15px;
    }
}
.project__image {
	aspect-ratio: 16 / 10;
}
