body {
    margin: 0;
    font-family: 'STIX Two Math', sans-serif;         
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1700px;
    margin: auto;
    background-color: #e9e9e9;
}

.container {
    background-color: #fff;
    min-height: 100vh;
    position: relative;
}

p {
    margin: 0;
}

.header {
    background-color: black;
    height: 100px;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

.header .logo {
    flex: 1 0 15%;
}

.logo img {
    max-height: 140px;
}

.header .actions {
    flex: 1 0 25%;
    text-align: end;
}

@media only screen and (hover: none) and (pointer: coarse),
screen and (max-width: 750px) {
    .header .actions {
        display: none;
    }

    .header {
        height: 100px;
    }

    .logo img {
        max-height: 120px;
    }
}

.title-content {
    position: relative;
}

.title-content img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 65vh;
}

.bn632-hover {
    font-size: 1rem;
    font-weight: 400;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #fff;
    cursor: pointer;
    height: 45px;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
}

.bn632-hover:hover {
    opacity: 70%;
}

.bn632-hover:focus {
    outline: none;
}

.bn632-hover.bn26 {
    background-color: #25aae1;
    font-weight: bold;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .bn632-hover {
        font-size: 2em;
        height: 5vh;
        width: 25vh;
    }
}

.quote {
    background-color: f6f6f6;
    padding: 50px;
    text-align: center;

}

.quote h1 {
    font-weight: 100;
    padding-top: 40px;
    padding-bottom: 40px;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .quote h1 {
        font-size: 3rem;
    }
}

.content {
    margin-bottom: 150px;
}

.content-home {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
    max-width: 1200px;
}

.content-picture-home,
.content-description-home {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
    margin-bottom: 50px;
}

.content-picture-home img {
    margin: auto;
    filter: saturate(0%);
}

@media only screen and (hover: none) and (pointer: coarse),
screen and (max-width: 750px) {
    .content-picture-home {
        display: none;
    }
}

.content-description-home h1 {
    margin-bottom: 3rem;
}

.content-description-home p {
    font-size: 1.5rem;
    line-height: 1.5;
}

@media only screen and (hover: none) and (pointer: coarse) {
    .content-description-home p {
        font-size: 2rem;
    }
}

.content-picture-home img {
    max-width: 60%;
    min-width: 40%;
    height: auto;
}

.videos {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.video {
    width: 580px;
    height: 320px;
}

@media only screen and (max-width: 1215px) {
    .video {
        width: 400px;
        height: 240px;
    }
}

@media only screen and (max-width: 850px) {
    .video {
        width: 350px;
        height: 225px;
    }
}

@media only screen and (hover: none) and (pointer: coarse),
screen and (max-width: 750px) {
    .video {
        width: 95%;
        height: 500px;
    }
}

.references {
    margin: auto;
    text-align: center;
    margin-top: 80px;
}


.references img {
    max-height: 70px;
    margin-right: 50px;
}