a{
    cursor: pointer;
}
header .nav-list {
    background-color: #FFFFFF;
    color: var(--main-color);
}
.hero{
    background-color: #FFFFFF;
    padding-top: 8vh;
    display: flex;
}
.hero h1{
    font-family: 'Inter';
    font-weight: 900;
    font-size: max(35px, 6.8vw);
    color: var(--main-color);
    width: min-content;
    margin-top: 8vh;
    margin-left: 6%;
    letter-spacing: 0.2vw;
    line-height: 90%;
}
.hero-illustration{
    margin-left: auto;
    overflow: hidden;
    width: 40vw;
    margin-bottom: -10%;
}
.hero-illustration img{
    transform: translateX(50%);
    width: 100%;
}
.service{
    width: 100%;
    padding: 5vh 5vw;
}
.service-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-top{
    display: flex;
    align-items: center;
    width: 100%;
}
.service-title{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-title h2{
    font-family: 'Inter';
    font-weight: 900;
    font-size: max(25px, 6vw);
    max-width: 40vw;
}
.service-title h3{
    font-family: 'Grumpy';
    font-size: max(18px, 4.5vw);
    max-width: 40vw;
    text-align: center;
}
.service-image{
    width: auto;
    height: auto;
    max-width: 12vw;
    max-height: 10vh;
}
.service-image img{
    width: auto;
    height: 15vh;
    max-width: 100%;
    max-height: 100%;
}
.service--light{
    background-color: #FFFFFF;
    h2, h3{color: var(--main-color);};
    .btn{margin-left: auto;};
    .service-image{margin-left: 7vw;};
}
.service--dark{
    background-color: var(--main-color);
    h2, h3{color: #FFFFFF;};
    .btn{margin-right: auto;};
    .service-image{margin-right: 7vw;};
    .service-top{flex-direction: row-reverse;}
    .service-description{    color: #FFFFFF;}
}
.service-description{
    margin-top: 3vw;
    font-family: 'Inter';
    font-weight: 200;
    font-size: max(12px, 1.2vw);
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: max(1.3vw, 2vh);
}
.service-description ul{
    list-style: "-";
    padding-left: 5%;
}
    
.service-description p:nth-of-type(1){
    font-weight: 700;
}
.service-mention-comp{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.service-mention{
    width: 50%;
    margin-top: 3vw;
    padding: 0 2%;
    font-family: 'Inter';
    font-weight: 200;
    font-size: max(12px, 1.2vw);
    text-align: justify;
    p:nth-of-type(1){margin-top: 12vw;}
    p:nth-of-type(2){margin-top: 2vw;}
    p, ul, li{text-align: center;}
    ul{
        list-style-position: inside;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
}
.service-mention .service-title h3{
    text-align: start;
    max-height: 0;
    overflow: visible;
}
.btn-secondary{
    font-size: max(12px, 1.1vw);
}
.btn-secondary.active{
    background: var(--main-color);
}
footer{
    margin-top: 3%;
}
