section#introduction {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    padding-top: 75px;
    position: relative;
    height: 100vh;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 var(--side-padding);
}
section#introduction .video-content {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 90vh;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    z-index: 10;
}
section#introduction video {
    position: absolute;
    left: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
    z-index: -1;
}
section#introduction div.espace {
    width: calc(30vh);
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 25px 25px;
    z-index: 100;
}
section#introduction div.espace h1 {
     font-family: 'Poppins', sans-serif;
     font-size: 1.75rem;
     line-height: 2.5rem;
     font-weight: 500;
     color: #fff;
     width: 100%;
     white-space: pre-line;
     margin: 0 0 15px;
     transition: .3s all ease-in-out;
 }
section#introduction div.espace div.icon {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 15px;
    align-items: center;
}
section#introduction div.espace div.icon img {
    width: 25px;
    height: auto;
    transition: .3s all ease-in-out;
}
section#introduction div.espace div.icon div.bar {
    height: 1px;
    width: calc(100% - 35px);
    background-color: #ffffff;
    transition: .3s all ease-in-out;
}
section#introduction div.text {
    width: calc(100% - 30vh);
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 25px 50px;
    background-color: #F5F5F5;
    z-index: 100;
}
section#introduction div.text p.title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 700;
    color: #231F20;
    width: 100%;
    white-space: pre-line;
    margin: 0;
}
section#introduction div.text span {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
    color: #231F20;
    width: 100%;
    white-space: pre-line;
    margin: 15px 0 0;
}
section#introduction div.text p {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #231F20;
    margin: 5px 0 0;
}
section#about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
section#about-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
}
section#about div.content {
    height: 75%;
    width: calc(45% - var(--side-padding));
    background-color: rgba(245, 245, 245, 0.95);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 50px;
    box-sizing: border-box;
}
section#about-2 div.content-big {
    height: auto;
    max-width: calc(100% - var(--side-padding)*2);
    width: auto;
    background-color: rgba(245, 245, 245, 0.95);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 50px;
    box-sizing: border-box;
}
section#about div.about-img {
    height: 75%;
    width: calc(55% - var(--side-padding));
    background-color: rgba(245, 245, 245, 0.95);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../../public/img/chien-piscine.jpg");
    background-size: cover;
    background-position: center;
}
div.content h2, div.content-big h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #231F20;
    width: 100%;
    text-align: center;
    white-space: pre-line;
    margin: 0 0 25px;
}

div.content p, div.content-big p {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 300;
    color: #231F20;
    width: 100%;
    text-align: left;
    white-space: pre-line;
    margin: 0 0 25px;
}
section#about div.content p b {
    font-weight: 500;
}
@media (max-width: 1200px) {
    section#introduction div.text p.title {
        font-size: .8rem;
        line-height: .8rem;
    }
    section#introduction div.text span {
        font-size: .8rem;
        line-height: .8rem;
        margin: 10px 0 0;
    }
    section#introduction div.text p {
        font-size: .8rem;
        line-height: 1rem;
    }
    section#about div.content h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.25rem;
        line-height: 1.25rem;
    }
    section#about div.content p {
        font-size: .8rem;
        line-height: 1.25rem;
    }
}
@media (max-width: 991px) {
    section#introduction {
        flex-wrap: wrap;
        height: auto;
        flex-direction: column;
        justify-content: flex-end;
    }
    section#introduction div.espace {
        width: 100%;
        margin-top: 60vh;
    }
    section#introduction div.text {
        width: 100%;
        height: auto;
    }
    section#introduction div.text p.title {
        font-size: 1rem;
        line-height: 1.5rem;
    }
    section#about {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    section#about div.content {
        height: auto;
        width: 100%;
        order: 2;
    }
    section#about div.about-img {
        height: 50vh;
        width: 100%;
        order: 1;
    }
}