.our-projects{
	width: 80%;
	min-height: 700px;
	background-color: #F1F3F7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.our-projects-title{
	width: 100%;
	font-size: 32px;
	color: #5C5C5C;
}

.our-projects-slider__container{
	width: 100%;
}

.our-projects-slider__container {
    width: 100%;
    height: 100%;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
   	min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-image {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media(max-width: 1600px){
    .slide-image{
        width: 100%;
    }
}

.slide-title {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.slide-description {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 600px;
}


.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #4a6fa5;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: -15px;
}

.slider-btn.next {
    right: -15px;
}

/* Индикаторы (кружки) */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #4a6fa5;
    transform: scale(1.3);
}


@media (max-width: 992px) {
    .our-projects {
        width: 90%;
    }
    
    .slide-image {
        width: 100%;
        height: 380px;
    }
}

@media (max-width: 600px) {
    .our-projects {
        width: 100%;
        height: 450px;
        margin-bottom: 550px;
    }
    
    .slide-image {
        width: 100%;
        height: 340px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .slider-btn.prev {
        left: 20px;
    }
    
    .slider-btn.next {
        right: 20px;
    }
}