﻿.hero-slider {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-bottom: 120px;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

    .slide.active {
        opacity:1;
        z-index: 1;
    }

.slide-1 {
    background-image: url('/img/backgrounds/slide-1.png');
}

.slide-2 {
    background-image: url('/img/backgrounds/slide-2.png');
}

.slide-3 {
    background-image: url('/img/backgrounds/slide-3.png');
}

.slide-4 {
    background-image: url('/img/backgrounds/slide-4.png');
}

.slide-5{
    background-image: url('/img/backgrounds/slide-5.png');
}

.slide-content {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 700px;
    z-index: 2;
}

    .slide-content h1 {
        font-size: 52px;
        line-height: 1.2;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
        text-shadow: 8px 7px 5px rgba(0,0,0,.25);
    }

    .slide-content p {
        font-size: 20px;
        opacity: .95;
    }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

    .slider-dots span {
        width: 12px;
        height: 12px;
        background: rgba(255,255,255,.4);
        border-radius: 50%;
        cursor: pointer;
        transition: .3s;
    }

        .slider-dots span.active {
            background: orange;
            transform: scale(1.3);
        }

@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

        .slide-content h1 {
            font-size: 34px;
        }
}

.hero-title {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

    .hero-title span {
        display: block;
        font-size: 26px;
        font-weight: 500;
        margin-top: 8px;
        opacity: 0.9;
        text-transform: none;
    }

.hero h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

.hero h2 {
    font-weight: 400;
    opacity: .8;
    margin-bottom: 40px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: orange;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.55), rgba(0,0,0,.35) );
}

.growth-list {
    max-width: 720px;
    margin: 0 auto;
    color: black;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }
}

