* {
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
}
body {
    margin: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: white;
    height: 80px;
    padding: 0 100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 10px 0px #0000001A;
}

.header img {
    height: 60px;
}

.header .contact {
    display:  flex;
    align-items: center;
}

.header .facebook {
    width: 30px;
    height: 30px;
    margin-left: 20px;
    margin-right: 6px;
}
.header .facebook-link {
    text-transform: uppercase;
    color: #0000FF;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: 0.06em;
}


/*********** H E R O   S E C T I O N  ************/
.hero-section h1 {
    font-size: 42px;
    line-height: 45px;
    font-weight: bold;
    margin-top: 15px;
}
.hero-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
}
.hero-section .illustrations {
    flex-basis: 60%;
    min-width: 460px;
}
.hero-section .aside {
    flex-basis: 40%;
}
.hero-section .subtext {
    color: #939393;
    font-weight: 700;
    line-height: 26px;
    font-size: 20px;
    letter-spacing: 0.01em;
    margin-bottom: 15px;
    margin-top: 30px;
}
.hero-section img {
    width: 100%;
}

/*********** A C T I O N   S E C T I O N ************/

.action-section .container {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.action-section .container h2 {
    text-align: center;
}
.action-section .actions {
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
}
.action-section .action {
    border-radius: 6px;
    background-color: white;
    box-shadow: 0px 0px 10px 0px #0000001A;
    display: flex;
    align-items: center;
    padding: 13px;
    flex-basis: 32%;
    margin-bottom: 20px;
}
.action-section .action .content {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}
.action-section .action svg {
    min-width: 25px;
    margin-right: 10px;
}


/*********** C A R D S   S E C T I O N ************/

.card-section {
    background-color: #F2F2F2;
    flex-direction: column;
    align-items: center;
    display: flex;
}

.card-section h2 {
    font-size: 26px;
    text-align: center;
}
.card-section .content {
    width: 60%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    margin-bottom: 20px;
}
.card-section button {
    margin-top: 10px;
}


/*********** C O N T A C T   S E C T I O N ************/

.contact-section .container {
    border: 1px solid #F2F2F2;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px;
}
.contact-section h2 {
    font-size: 26px;
    text-align: center;
}
.contact-section .content {
    width: 60%;
    color: #939393;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    font-size: 20px;
    margin-bottom: 20px;
}
.contact-section button {
    margin-top: 10px;
}

/*********** L E G A L   P A G E  ************/
.content-section {
    min-height: calc(100vh - 80px);
    padding-top: 120px;
}
.content-section .content {
    line-height: 26px;
    font-size: 16px;
}
.content-section h1 {
    font-size: 42px;
    line-height: 45px;
    font-weight: bold;
    margin-top: 15px;
}


/*********** F O O T E R  ************/

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
}
.footer img {
    width: 30px;
    margin-bottom: 14px;
}
.footer div {
    color: white;
    font-size: 14px;
}

.footer .logo-conseil-des-notaires {
    position: absolute;
    right: 100px;
    width: 20%;
    max-width: 150px;
}

.footer .footer-socials {
    position: absolute;
    font-weight: 500;
    top: 60px;
    left: 100px;
    width: 20%;
}

.footer .facebook-link, .footer .contact-us {
    display: flex;
    align-items: center;   
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.footer .facebook-link {
    margin-bottom: 16px;
}

.footer .facebook, .footer .contact {
    margin-bottom: 0;
    margin-right: 8px;
}

/*********** U T I L S ************/

section {
    padding: 40px 100px;
}

button {
    appearance: none;
    border: none;
    border-radius: 100px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    padding: 13px 16px;
    letter-spacing: 0.06em;
}
button.outline {
    background-color: white;
    border-width: 2px;
    border-style: solid;
    transition: .3s;
}
button.outline:hover {
    background-color: currentColor;  /* backgroundColor will inherit from the color property which is the notary one */
}
button.outline:hover a {
    filter: brightness(0) invert(1); /* in order to have a white text, we reduce the brightness to 0 and invert the color */
}
button.outline-black {
    border-color: black;
    color: black;
    background-color: transparent;
}
button.outline-white {
    border-color: white;
}
button.outline-white:hover {
    background-color: white !important;
    color: currentColor;
}
a {
    text-decoration: none;
    color: inherit;
}



@media screen and (max-width: 968px) {
    .hero-section .aside {
        padding-right: 0;
        flex-basis: 100%;
    }
    .hero-section .illustrations {
        flex-basis: 100%;
        margin-top: 20px;
        min-width: unset;
    }
    .action-section .actions .action {
        flex-basis: 48.84%;
    }
}
    
@media screen and (max-width: 768px) {
    .section, .header {
        padding: 20px;
    }
    .header img {
        height: 30px;
    }
    .header button {
        font-size: 12px;
    }
    .action-section .actions .action {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    .card-section .card-container .card {
        min-width: 400px;
    }
    .hero-section h1, .hero-section .subtext {
        text-align: center;
    }
    .hero-section .aside {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .header .facebook-link {
        display: none;
    }
    .footer .logo-conseil-des-notaires, .footer .footer-socials {
        position: static;   
        width: auto;
    }
    .footer .footer-socials {
        margin-bottom: 20px;
    }
    .footer .logo-conseil-des-notaires {
        margin-top: 20px;
    }
}