
.project {
    position: relative;
    overflow: hidden;
    min-height:600px;
}
.project::after {
    position: absolute;
    content: "";
    background: rgba(45, 123, 116, 0.3019607843);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
}
.project__image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
}

.project__image::after {
    position: absolute;
    content: "";
    background: radial-gradient(122.74% 109.77% at 15.58% 100%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 3;
}
.project__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 24px 24px;
    min-height:600px;
    min-width:648px;
}
.project__tag {
    display: flex;
    height: 40px;
    align-items: center;
    border-radius: 50px;
    padding: 0 16px;
    white-space: nowrap;
    background: #F1F1F2;
    font-weight: 600;
}
.project__time {
    display: flex;
    align-items: center;
    color: #ffffff;
}
.project__name {
    color: #ffffff;
}
.project__name:hover {
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
}
.project__text {
    background: rgba(255, 255, 255, 0.8980392157);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 767px) {


    .project__content {
        min-width:0;
        min-height:0;

    }

    .project__tag {
        height: 24px;
        padding: 0 8px;
        font-size: 14px;
        font-weight: 500;
    }
    .project__content {
        position: relative;
        z-index: 5;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 8px 16px 16px;
    }
}
.slider__button {
    position: absolute;
    z-index: 5;
    height: 48px;
    width: 48px;
    cursor: pointer;
    transition: 0.3s;
    color: #2B7B73;
    background-color: #ffffff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider__button:hover:not(.swiper-button-disabled) {
    background-color: #2B7B73;
    color: #ffffff;
}
.slider__button_next {
    right: 0;
}
.slider__button_prev {
    left: 0;
}
.slider__button.swiper-button-disabled {
    opacity: 0;
    cursor: default;
}
.select .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #3A3B39;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0;
    flex-grow: 1;
    min-width: 0;
}