
.dk-section-slider {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

@media (max-width: 1279px) {
    .dk-section-slider {
        margin-top: 60px;
    }
}


.dk-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-color: #006a5c;
}

.dk-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dk-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.dk-slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1228px;
    color: white;
    padding: 0 80px;
}

@media (max-width: 1279px) {
    .dk-slide-content {
        padding: 0 20px;
    }
}

.dk-slide-title {
    font-size: 24px;
    font-weight: 600;
    max-width: 800px;
}

@media (min-width: 768px) {
    .dk-slide-title {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .dk-slide-title {
        font-size: 38px;
    }
}

@media (min-width: 1280px) {
    .dk-slide-title {
        font-size: 40px;
    }
}

.dk-slide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 32px;
}

@media (min-width: 1280px) {
    .dk-slide-grid {
        grid-template-columns: 10% 1fr;
    }
}

.dk-slide-decoration {
    display: none;
}

@media (min-width: 1280px) {
    .dk-slide-decoration {
        display: block;
        position: relative;
        height: 2px;
        background: white;
        width: 100%;
        margin: 12px 0;
    }
    
    .dk-slide-decoration::after {
        content: '';
        position: absolute;
        display: block;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: white;
        right: -6px;
        top: -5px;
    }
}

.dk-slide-text {
    font-size: 16px;
    max-width: 800px;
}

@media (min-width: 768px) {
    .dk-slide-text {
        font-size: 18px;
    }
}

@media (min-width: 1280px) {
    .dk-slide-text {
        font-size: 20px;
    }
}

.dk-slide-button {
    display: inline-block;
    margin-top: 32px;
    background: #fff;
    border: 1px solid #fff;
    color: #006a5c;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 32px 10px 32px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

.dk-slide-button:hover {
    background: #006a5c;
    color: white;
    text-decoration: none;
}

.dk-slider-nav {
    position: absolute;
    z-index: 40;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.dk-slider-nav:hover {
    opacity: 0.7;
}

.dk-slider-nav svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.dk-slider-nav-prev {
    left: 20px;
}

.dk-slider-nav-next {
    right: 20px;
}
