@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto:wght@400;700&display=swap');

:root {
    --container-width: 1100px;
    --yellow: #FACC15;
    --dark-yellow: #EAB308;
    --text-gray: #9CA3AF;
    --bg-gray: #f3f4f6;
}

::selection {
    background-color: var(--yellow);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    color: var(--text-gray);
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
}

input,
textarea {
    -webkit-text-size-adjust: 100%;
    box-sizing: inherit;
    font: inherit;
    margin: 0;
    overflow: visible;
    padding: 8px;
    display: block;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc!important;
    transition: all .3s ease-out;
}

input:focus,
textarea:focus {
    outline: none !important;
    border: 1px solid var(--dark-yellow) !important;
    box-shadow: 0 0 2px var(--yellow);
}

label {
    display: block;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: .5em;
}

ul:not(.list-style) {
    list-style-type: none;
}

li:not(:last-child) {
    margin-right: 1em;
}

nav,
ul.navbar,
.cols-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ml-2 {
    margin-left: 2em;
}

.underline {
    text-decoration: underline !important;
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    /* display: none; */
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    top: calc(100% + .75rem);
    line-height: 23px;
    border-radius: 5px;
    background-color: #f9f9f9;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    transform: translateY(-15px);
    transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
}

.dropdown-content a {
    display: block;
}

/* .dropdown-menu:hover .dropdown-content {
    display: block;
} */

.dropdown-menu.active > a {
    color: var(--yellow);
}

.dropdown-menu.active .dropdown-content {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.container {
    width: 100%;
    padding-left: calc((100% - var(--container-width)) / 2);
    padding-right: calc((100% - var(--container-width)) / 2);
}

.yellow {
    color: var(--yellow);
}

.w-full {
    width: 100%;
}

.logo {
    width: 40px;
}

.hero,
.services {
    padding-top: 4em;
    padding-bottom: 4em;
}

.hero-block {
    margin-right: 1em;
}

section img {
    width: 500px;
    border-radius: .4em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    margin-top: 1em;
    margin-bottom: 3em;
    color: var(--text-gray);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.button-container {
    margin-top: 1em;
}

.button-container > .btn-yellow {
    margin-right: 1em;
}

.btn {
    padding: 1.1em 1.6em;
    border: solid transparent 2px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: .4s ease-out;
}

.btn-yellow {
    background-color: var(--yellow);
    color: white;
}

.btn-yellow-outline {
    background-color: white;
    color: var(--yellow);
    border: solid var(--yellow) 1px;
}

.btn-yellow:hover {
    background-color: var(--dark-yellow);
}

.btn-yellow-outline:hover {
    color: white;
    background-color: var(--yellow);
}

.about {
    margin-top: 3em;
    margin-bottom: 3em;
}

.tab-link {
    display: inline-block;
    color: var(--text-gray);
    margin-top: .4em;
    margin-bottom: .4em;
    margin-right: .5em;
    font-weight: 700;
}

.tab-link.active {
    color: var(--yellow);
}

.tab-content.active {
    opacity: 1;
    z-index: 10;
}

.tab-content {
    opacity: 0;
    margin-right: -100%;
    width: 100%;
    transition: .3s opacity ease-out;
}

.tabs-container {
    display: flex;
}

.z-10 {
    z-index: 10;
}

.services h2,
.contact-title {
    text-align: center;
}

.services > p {
    margin-top: 2.3em;
    margin-bottom: 2.3em;
}

.cards-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card {
    display: flex;
    width: 33.3%;
    /* min-height: 460px; */
    background-color: #FFF;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    margin-right: 1em;
    padding: 2em .4em 2.6em .4em;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    border-bottom: solid 5px var(--yellow);
}

.card h3 {
    margin-bottom: 1em;
}

.margin-right {
    margin-right: 1em;
}

.contact-title {
    margin-top: 1.6em;
    margin-bottom: 1.6em;
}

.contact > form > input {
    margin-top: 1em;
    margin-bottom: 1em;
}

.contact .btn {
    margin: 0 auto;
    display: block;
    margin-bottom: 1em;
}

.informations-legales {
    margin-top: 1em;
    margin-bottom: 1em;
}

.informations-legales p {
    font-size: 12px;
    color: var(--text-gray);
}

.input-block {
    width: 100%;
    margin-bottom: 1em;
}

.mb-5 {
    margin-bottom: 1em;
}

blockquote {
    margin: 0;
}

blockquote p {
    padding: 15px;
    background: #eee;
    border-radius: 5px;
}

blockquote p::before {
    content: '\201C';
}

blockquote p::after {
    content: '\201D';
}

footer {
    font-size: 14px;
    margin-top: 2em;
    margin-bottom: 2em;
}