.projects {
    padding-bottom: 40px;
}
.projects__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.projects__title {
    margin-bottom: 60px;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .projects__title {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 600px) {
    .projects__title {
        margin-bottom: 10px;
    }
}
.projects__slider {
    width: 100%;
}
@media (max-width: 1120px) {
    .projects__slider {
        margin-bottom: 20px;
    }
}
.projects__list {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(346px, 1fr));
    gap: 60px 30px;
    /* stylelint-disable-next-line order/order */
    /* stylelint-disable-next-line order/order */
}
.projects__list:not(:last-child) {
    margin-bottom: 40px;
}
@media (max-width: 1120px) {
    .projects__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0;
    }
}
@media (max-width: 576px) {
    .projects__list:not(:last-child) {
        margin-bottom: 20px;
    }
}
.projects__item {
    height: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.projects__item._hide {
    display: none;
}
.projects__slider-conrols {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    /* stylelint-disable-next-line order/order */
}
.projects__slider-conrols .swiper-pagination-bullet {
    background: #dbdbdb;
}
.projects__slider-conrols .swiper-pagination-bullet-active {
    background: var(--blue-color);
}
@media (max-width: 1120px) {
    .projects__slider-conrols {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.projects__link {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #000;
}
@media (max-width: 576px) {
    .projects__link {
        font-size: 14px;
        text-decoration: underline;
        color: var(--blue-color);
    }
}

/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable */
.case {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.case__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 10px;
}
.case__tag {
    display: inline-block;
    padding: 5px 15px;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--white-color);
    background: var(--blue-color);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
@media (max-width: 781px) {
    .case__tag {
        padding: 2px 10px;
        font-size: 14px;
        line-height: unset;
    }
}
.case__name {
    margin-bottom: 40px;
    font-family: var(--main-font);
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    color: var(--text-color);
}
@media (max-width: 781px) {
    .case__name {
        margin-bottom: 20px;
        font-size: 14px;
    }
}
.case__period {
    margin-top: auto;
    margin-bottom: 10px;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--text-color);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
@media (max-width: 781px) {
    .case__period {
        font-size: 14px;
    }
}
.case__site {
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: var(--blue-color);
    -webkit-transition: color 0.3s ease, font-weight 0.3s ease;
    transition: color 0.3s ease, font-weight 0.3s ease;
}
@media (max-width: 781px) {
    .case__site {
        font-size: 14px;
    }
}
@media (any-hover: hover) {
    .case:hover {
        background: var(--blue-color);
    }
    .case:hover .case__tag {
        background: var(--text-color);
    }
    .case:hover .case__period {
        color: var(--white-color);
    }
    .case:hover .case__site {
        color: var(--white-color);
    }
}
@media (any-hover: hover) and (any-hover: hover) {
    .case:hover .case__site:hover {
        color: var(--brand-color);
    }
}
@media (max-width: 781px) {
    .case {
        padding: 10px;
    }
}