/** Général **/
.page-pap h2, h3, p {
    font-family: var(--futura);
	color: var(--font-color);
}
.page-pap p {
    font-family: var(--futura);
    font-weight: var(--font-light);
    font-size: 18px;
}
/*********************************/

/** Titres **/
.pap-title-left {
    font-size: 28px;
    font-weight: 100;
}
.pap-title-right {
    font-size: 28px;
    font-weight: var(--font-medium);
    max-width: 500px;
}
.pap-col-title {
    font-weight: var(--font-light);
    margin-bottom: 30px;
}
/*********************************/

/** Textes **/
.text-content {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.pap-first-bloc {
    font-weight: var(--font-book) !important;
}
.align-center {
    align-items: center;
}
.floating-img {
    position: absolute;
    right: 0;
}
.left {
    left: 0;
}
.col-text span {
	font-weight: var(--font-medium);
}

.centered-text p {
    text-align: center;
    margin-left: 25px; 
    margin-right: 25px;
}
/*********************************/

/** Media queries **/
@media (max-width: 768px) {
    .centered-text {
        text-align: center;
        flex-direction: column;
    }
    .petal {
        height: 30px;
    }
    .pap-title-right, .page-pap h2 {
        font-size: 18px;
    }
    .col-text {
        padding-top: 0 !important;
    }
    .mobile-padding {
        padding-bottom: 20px;
    }
}
@media (min-width: 768px) {
    .special-height {
        max-height: 250px;
    }
    .justify-center {
		justify-content: end !important;
	}
}
/*********************************/