/* background: #0e1014; */

.projects-slider-wrapper {
    padding: 120px 0 75px;
    margin: 0 auto;
    z-index: 1;
}

.project-card,
.project-card *,
.project-card *::before,
.project-card *::after {
    box-sizing: border-box;
}

.project-card {
    min-width: 100%;
    padding: 60px 40px 78px 70px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(100px);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.project-card__first-child {
    margin-top: 40px;
}

.project-cards__hashtag {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #dad8e4;
}

.project-card__info {
    max-width: 430px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-card__title {
    font-weight: 800;
    font-size: 28px;
    line-height: 128%;

    color: #ffffff;
    margin-bottom: 16px;
}

.project-card__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;

    color: #a4a1b1;
    margin-bottom: 32px;
}

.project-card__abilities {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #dad8e4;
}

.project-card__abilities p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.project-card__abilities p:last-child {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0;
}

.project-card__abilities svg {
    margin-right: 8px;
    max-height: 24px;
    max-width: 24px;
    width: 100%;
    height: 100%;
}

.project-card__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-card__buttons .bttn {
    border: none;
}

.project-card__buttons .bttn:first-child {
    margin-right: 20px;
    color: #ffffff;
}

.bttn.bttn-background-opacity {
    background: none;
    border: 1px solid #665964;
    color: #dad8e4;
}

/* project-detail */

.project-detail {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 596px;
    width: 100%;
}

.project-detail__arrow {
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 5px;
}

.project-detail__arrow svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #817482;
    transition: all 0.1s linear;
}

.project-detail__arrow:hover svg {
    stroke: #a4a1b1;
}

.project-detail__arrow.project-detail__arrow-right {
    transform: rotate(180deg);
}

.project-slider {
    overflow: hidden;
}

.project-slider__content {
    display: flex;
    flex-wrap: nowrap;
}

.project-detail__content {
    display: flex;
    flex-direction: column;
    padding: 31px 44px;
    background: rgba(103, 37, 133, 0.2);
    border-radius: 12px;
    width: 100%;
    margin-right: 20px;
    margin-left: 20px;
    position: relative;
}

.project-detail__images {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.project-detail__images img {
    max-width: 186px;
    max-height: 376px;
    width: 100%;
    height: 100%;
}

.project-detail__images img:first-child {
    margin-right: 20px;
}

.project-detail__images img:last-child {
    margin-left: 20px;
}

.project-detail__dots-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -38px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.project-detail__dot {
    width: 6px;
    height: 6px;
    background: #403445;
    border-radius: 50%;
    margin: 0 4px;
}

.project-detail__dot.project-detail__dot-active {
    background: #a4a1b1;
}

.project-detail__header {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #403445;
    margin-bottom: 24px;
}

.project-detail__name {
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;

    color: #ffffff;
}

.project-detail__rectangle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 20px;
    overflow: hidden;
}

.project-detail__rectangle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail__body {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
}

.project-detail__info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-detail__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;

    color: #ffffff;
}

.project-detail__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #a4a1b1;
}

.project-detail__item {
    margin-bottom: 24px;
}

.project-detail__item:last-child {
    margin-bottom: 0;
}

.project-detail__item-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #a4a1b1;
}

.project-detail__item-info {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #ffffff;
}

.project-detail__image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 186px;
    max-height: 376px;
}

.project-detail__image img {
    width: 100%;
    height: 100%;
}

.project-card__laptop-width {
    display: none;
}

@media only screen and (max-width: 1279px) {
    .project-card {
        flex-wrap: wrap;
        padding: 48px 60px;
    }

    .project-card__info {
        max-width: 100%;
    }

    .project-detail {
        max-width: 100%;
        background: rgba(103, 37, 133, 0.2);
        border-radius: 12px;
        padding: 0 35px;
    }

    .project-detail__image {
        max-width: 144px;
        max-height: 290px;
        margin-right: 60px;
    }

    .project-detail__images img {
        max-width: 150px;
        max-height: 288px;
    }

    .project-detail__content {
        background: none;
        margin-left: 0;
        margin-right: 0;
        padding: 40px 25px;
    }

    .project-detail__dots-wrapper {
        bottom: -30px;
    }

    .project-card__laptop-width {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        margin-top: 54px;
    }

    .laptop-hide {
        display: none;
    }

    .project-card__buttons {
        width: 100%;
        margin-top: 48px;
    }

    .project-card__abilities {
        width: 100%;
    }

    .project-card__buttons .bttn {
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .project-card {
        padding: 32px 40px;
    }

    .project-card__first-child {
        margin-top: 32px;
    }

    .project-detail {
        padding: 0 20px;
    }

    .project-detail__image {
        margin-right: 0;
    }

    .project-detail__content {
        padding: 35px 20px;
    }

    .project-card__buttons {
        margin-top: 32px;
    }

    .project-card__laptop-width {
        margin-top: 62px;
    }

    .project-card__abilities p {
        margin-bottom: 12px;
    }
}

@media only screen and (max-width: 768px) {
    .project-detail {
        padding: 0 15px;
    }
    .project-detail__content {
        padding: 35px 15px;
    }

    .project-detail__images img {
        max-width: 144px;
    }
}

@media only screen and (min-width: 577px) {
    .mobile-show {
        display: none;
    }
}

@media only screen and (max-width: 576px) {
    .mobile-hide {
        display: none;
    }

    .project-card {
        padding: 24px;
    }

    .project-card__title {
        font-size: 18px;
    }

    .project-card__buttons.laptop-hide {
        display: none;
    }

    .project-card__buttons {
        display: flex;
        flex-wrap: wrap;
    }

    .project-card__buttons .bttn:first-child {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .project-detail {
        padding: 24px;
    }

    .project-detail__body {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-detail__info {
        width: 100%;
    }

    .project-detail__image {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        margin: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .project-detail__content {
        padding: 0;
    }

    .project-detail__item {
        margin-bottom: 16px;
    }

    .project-detail__image img {
        margin: 0 20px;
    }

    .project-detail__mobile-slider {
        max-width: 150px;
        max-height: 290px;
        overflow: hidden;
    }

    .project-detail__mobile-slider-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .project-detail__mobile-slider-content img {
        min-width: 100%;
        height: 100%;
        margin: 0;
        padding: 0 5px;
    }
}
