/* colors */
/* :root {
    --main-color: #664111;
} */

.hssection1 {
    padding: 10px 5%;
}

.hssection1 h1 {
    background-color: var(--main-color);
    color: white;
    padding: 30px;
    text-align: center;
    font-family: 'FuturaBold',  sans-serif;
    font-size: 3rem;
}

.hssection1 p {
    padding: 30px;
    color: var(--main-color);
    text-align: center;
    font-size: 1.2rem;
}

.band {
    width: 100%;
    height: 15px;
    background-color: var(--main-color);
}

.hsgallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 5%;
}

.hsgallery div:nth-of-type(1){
    order: 1;
}

.hsgallery div:nth-of-type(2){
    order: 2;
}

.hsgallery__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.hsgallery__info p{
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--main-color);
}

.hsgallery__btn {
    background-color: var(--main-color);
    color: white;
    text-decoration: none;
    padding: 10px;
    font-family: 'FuturaBold',  sans-serif;
    font-size: 2rem;
    border: 2px solid var(--main-color);
}

.hsgallery__btn:hover {
    color: var(--main-color);
    background-color: white;
    border: 2px solid var(--main-color);
}

.hsservices {
    width: 100%;
    margin: 30px 0;
}

.hsservices h2 {
    text-align: center;
    color: white;
    background-color: var(--main-color);
    padding: 20px;
    font-size: 2.5rem;
    font-family: 'FuturaBold',  sans-serif;
}

.hsservices__container {
    padding: 30px 5%;
}

.hsservices__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 180px;
}

.hsservices__info div p {
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: 'Futura', sans-serif;

}

.hsservices__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    padding-top: 30px;
}

.hsservices__gallery img {
    width: 100%;
}

.hsservices-mobil__gallery {
    display: none;
}

@media only screen and (max-width:600px){

    .hsservices__gallery {
        display: none;
    }

    .hsservices__info {
        display: none;
    }

    .hsservices-mobil__gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 20px;
        padding-top: 30px;
        width: 100%;
    }

    .hsservices-card__gallery img {
        width: 100%;
    }

    .hsservices-card__gallery p {
        text-align: center;
        color: white;
        background-color: var(--main-color);
    }

    .hsgallery {
        grid-template-columns: 1fr;
    }

    .hsgallery__info {
        margin-top: 20px;
    }

    .hsgallery div:nth-of-type(1){
        order: 2;
    }
    
    .hsgallery div:nth-of-type(2){
        order: 1;
    }
}