:root{
    --blue: #242175;
    --yellow: #FFD900;
}

body{
    animation: fadeIn .4s 1 ease-out forwards;
}

.container{
    max-width: 968px;
}

p.lead{
    font-weight: 400 !important;
}

#headline{
    width: 100%;
    min-height: 300px;
    background: url('../img/bgDevelopment.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00000066;
    background-blend-mode: darken;
    background-attachment: fixed;
    padding: 40px 0;
}

#headline img{
    margin: 0 auto;
}

a.cta{
    background: var(--yellow);
    border: 2px solid var(--yellow);
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 30px;
    font-weight: 600;
    transition: all, .4s ease-in-out;
}

#headline a.cta:hover{
    background: rgb(255 255 255 / 15%);
    color: #ffffff;
    border-color: #ffffff;
}

#offer{
    padding: 50px 0;
}

#offer h1{
    text-align: center;
    font-weight: 800;
    font-style: italic;
    font-size: 3.5rem;
    line-height: 100%;
    margin: 30px auto;
    color: var(--blue);
    font-size-adjust: 0.545;
}

#offer .row{
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    padding: 30px 0;
    transition: all, .4s ease-in-out;
}

#offer .row .card{
    min-width: 270px;
    max-width: calc(33.33% - 2rem);
    box-shadow: 3px 3px 10px rgb(0 0 0 / 15%);
    padding: 0;
    transition: all, .4s ease-in-out;
}

#offer .row .card .card-header{
    background: transparent;
    border-bottom: 0;
    padding: 0;
}

#offer .row .card:nth-child(2) .card-header .card-title{
    background: var(--blue);
    color: var(--bs-white);
}

#offer .row .card .card-header .card-icon{
    display: block;
    position: absolute;
    right: -15px;
    top: -15px;
    font-size: 2rem;
    color: var(--yellow);
}

#offer .card-title{
    font-weight: 600;
    font-size: 2.3rem;
    color: var(--blue);
}

#offer .card-subtitle{
    color: rgb(100 100 100);
    font-style: italic;
}

@media (max-width: 698px){
    #offer{
        padding: 50px 0;
    }
    #offer h1{
        font-size: 2rem;
        margin: 0 auto;
    }
    #offer .row .card{
        display: block;
        max-width: 90%;
        box-shadow: none;
    }
}

#garantee{
    padding: 50px 0;
    background: linear-gradient(to top, #dddddd, #ffffff);
}

#garantee .row{
    gap: 2rem;
}

#garantee img{
    max-width: 250px;
    max-height: 250px;
}

#garantee h1{
    color: var(--blue);
    font-weight: 600;
    text-align: justify;
}

#garantee .lead{
    line-height: 170%;
    text-align: justify;
    font-size: 1.3rem;
    color: var(--blue);
}

#informations{
    width: 100%;
    padding-top: 50px;
    background: var(--bs-white);
}

#informations h1{
    text-align: center;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
}

#informations h2{
    font-size: 1.6rem;
    text-align: center;
    color: #666666;
}

#informations .informations-figure{
    display: block;
    position: relative;
    padding: 1rem;
}

#informations img{
    display: block;
    position: relative;
    margin: 0 auto;
    transition: all, .4s ease-in-out;
}

#informations img:hover{
    transform: scale(1.1);
}

#informations .card-title{
    color: var(--blue);
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
    padding: 1rem 0;
}

#informations ol{
    list-style-type: none;
    font-size: 1.2rem;
    font-weight: 400;
}

#informations ol li{
    display: block;
    position: relative;
    width: auto;
    line-height: 150%;
    font-size: 1rem;
    color: rgb(100 100 100);
}

#informations ol li:before{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: 0.3rem;
    color: var(--yellow);
}

#footer{
    background: var(--blue);
    color: var(--bs-white);
}

#footer a.footer-link{
    text-decoration: none;
    color: var(--yellow);
}

#footer a.footer-link:after{
    content: "\2022";
    margin: 0 0.3rem;
}

#footer a.footer-link:last-child:after{
    content: "";
}

@media (max-width: 700px){
    #headline{
        padding-top: 20px;
    }
    #headlineTitle,#headlineSubTitle{
        line-height: 100%;
    }
    #headline img{
        margin: 10px auto;
        max-width: 300px;
    }
}


@keyframes fadeIn{
    0%{opacity: 0;}
    100%{opacity: 1;}
}