.how-section {
    background-color: #EEEEEE;
    margin-top: 5vh;
    padding-bottom: 5vh;
    position: relative;
}
.how-section .flex-center {
    gap: 5vw;
}
.how-step {
    display: flex;
    gap: 1em;
    max-width: 600px;
    padding: 16px;
}
.how-step span {
    align-items: center;
    background-color: var(--primary);
    border: 4px solid var(--secondary);
    border-radius: 50%;
    color: var(--background);
    display: flex;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    height: 1em;
    justify-content: center;
    line-height: 1;
    padding: 8px;
    -webkit-text-stroke: 2px var(--highlight);
    width: 1em;
}
.how-step h3 {
    font-size: 1.5em;
    margin: 0;
}
.how-step p {
    text-align: justify;
}

.services-section {
    padding-bottom: 10vh;
    position: relative;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
    list-style: none;
    padding: 0;
}
.service-cards li {
    background-color: #EEEEEE;
    position: relative;
    transition: all 0.2s ease-in-out;
    width: clamp(300px, 15vw, 600px);
}
.service-cards li > a {
    text-decoration: none;
}
.service-cards li > a > div {
    padding: 1em;
}
.service-cards li div > img {
    margin: 12px;
    transition: all 0.2s ease-in-out;
    width: 20%;
}
.service-cards li picture img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -10;
}
.service-cards a h3 {
    font-size: calc(1.25em + 0.3vw);
    transition: all 0.2s ease-in-out;
}
.service-cards a p {
    transition: all 0.2s ease-in-out;
}
.service-cards li:hover {
    background-color: #3F9ED5DD;
}
.service-cards a:hover > div > img {
    filter: brightness(5);
}
.service-cards a:hover h3 {
    color: var(--background);
}
.service-cards a:hover p {
    color: var(--background);
}


.personal-section {
    padding-bottom: 10vh;
}
.personal-section .flex-responsive {
    justify-content: space-evenly;
}

.gallery-section {
    padding-bottom: 10vh;
}
.gallery-section picture {
    box-shadow: 0px 24px 54px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--text);
    border-left-color: var(--primary);
    border-bottom-color: var(--primary);
}

.reviews-section {
    background-color: #EEEEEE;
    padding-bottom: 10vh;
}




@media screen and (max-width: 960px){
    .how-step p {
        text-align: left;
    }
}