*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

html{
    scroll-behavior: smooth;

}

:root{
    --primary: #fc5400;
    --secondary: #80a3ff;
}

::-webkit-scrollbar {
    display: none;
}

li{
    list-style: none;
    
}

a{
    text-decoration: none;
    color: white;
}

h4{ font-size: 5rem;
    font-weight: bold;

}

h1{
    font-size: 3.5rem;
    font-weight: bold;
}
h2{
    font-size: 2rem;
    font-weight: bold;
}
h3{
    font-size: 1rem;
    font-weight: bold;
}

p{
    font-size: 1.5rem;
    font-weight: 400;
}

.captions{
    font-size: 1rem;
    font-weight: 400;
}


.nav-scrolled{
    --text-inverse: white;
    --background: #fc5400;

}

.hero-title{
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.para-title{
    font-weight: 800;
    padding-bottom: 0.6rem;
}

.contract-link{
    color: black;
    border-bottom: solid 1px;
}

.no-pd h1{
    padding-top: 0rem;
}

.tarifs-title{
    font-weight: 800;
    font-size: 3.5rem;

}

.mail-btn{
    display: block;
    max-width: 250px;
    border: none;
    margin: 2rem 0rem;
    padding: 14px 28px;
    font-size: 1.4rem;
    border-radius: 50px;
    cursor: pointer;
    color: white;
    background-image: linear-gradient(120deg, #fc5400 25%, #ff623e 100%);
    text-align: center;
    transition: 3ms;
}


.mail-btn:hover{
    background-image: linear-gradient(120deg, #fc5400 25%,#ff971b 100%);
    
}

