.header {
    height: 500px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
    position: relative;

    & .header-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        object-fit: cover;
        border-radius: 20px;
    }
    & .header__overlay {
        height: 100%;
        width: 100%;
        background-color: #0006;
        position: absolute;
        z-index: 1;
        border-radius: 20px;
    }
    & .header__item-conteiner {
        z-index: 2;
        position: relative;
        margin: auto;
        max-width: 900px;

        & .hero__title {
            text-transform: uppercase;
            color: #fff;
            font-weight: bold;
            font-size: var(--size-h1);
            padding: 0 10px;
        }
        .hero__button {
            color: #FFF;
            background-color: var(--gold);
            font-weight: bold;
            font-size: 18px;
            padding: 15px 30px;
            border-radius: 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            max-width: 90px;
            transition-property: background-color;
            transition-duration: 200ms;
            position: absolute;
            
            & .hero__icon {
                height: 15px;
            }
            &:hover {
                background-color: #000;
            }
            
            @media (width <= 600px) {
                font-size: 14px;
                padding: 10px 25px 10px 15px;
                align-items: center;
                max-width: 60px;
                transition-property: background-color;
                transition-duration: 0.5s;
                margin-top: 20px;
                margin-left: 50px;
            }
        }
    }

    @media (width <= 600px) {
        max-height: 350px;
        margin: 10px;
        text-align: center;
    }
}
.shedule-location {
    color: #FFF;
    background-color: #000;
    padding: 50px;
    padding-top: 90px;

    & .shedule-location__title {
        text-align: center;
        font-size: var(--size-h2);
        margin: 20px;
    }
    & .shedule-location__conteiner{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;

        & .shedule__title {
            font-size: var(--size-h3);
        }
        & .shedule__subtitle{
            font-size: var(--size-h4);
        }
        & .location{
            margin: 20px;
        }
        & .location__title{
            font-size: var(--size-h3);
        }
        & .shedule__div {
            margin-top: 20px;
            background-color: #7b7877;
            display: inline;
            height: 220px;
            min-width: 1.5px;
            border-radius: 10%;
            margin-left: 30px;
            @media screen and (width <= 600px) {display: none;}
        }
        & .location__map {
            max-width: 300px;
            max-height: 200px;
        }

    }
}

.client-testimonials {
    display: flex;
    margin: 20px;
    margin-top: 100px;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;

    & .div__title {
        width: 100%;

        & .client-testimonials__title {
            font-size: var(--size-h2);
        }
    }
    & .client-testimonials__conteiner {
        max-width: 250px;
        border: 1px solid #0005;
        margin: 20px;
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 5px 9px 0 #0008;
        transition: box-shadow 0.3s;
    
        & .client-testimonials__paragraph {
            text-wrap: pretty;
        }
        &:hover {
            box-shadow: 0 5px 9px 0 var(--gold-weak);
        }
    }
}
.section__service {
    padding-top: 60px;
    margin-top: 200px;
    margin-bottom: 50px;

    & .service__title {
        text-transform: uppercase;
        text-align: center;
        font-size: var(--size-h2);
    }
    & .service__conteiner {
        display: flex;
        flex-direction: column; 
        background-color: #000;
        color: #fff;
        padding: 50px 0;
        background-image:url(../img/bg/bg1.webp) ;
        background-position-x: center;
        width: 100%;

        & .service__paragraph {
            text-align: center;
            font-size: var(--size-p);
            font-weight: bold;
            width: 40%;
            margin: 10px;
            margin-left: min(50px, 8%);
            padding: 10px;
            background-color: #000b;
            border-radius: 20px;
            box-shadow: 2px 2px 10px 2px #000;
            transition: color 0.5s;
            
            @media (width <= 700px) { width: 70%; }
            
            &:hover {
                color: var(--gold-weak);
            }

        }
    }
}