2023-12-06 17:06:45 +01:00
|
|
|
.home_introduction {
|
2024-10-31 20:08:58 +01:00
|
|
|
background-color: white;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 4rem 1rem;
|
|
|
|
h2 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
> .logo {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-12-06 17:06:45 +01:00
|
|
|
width: 100%;
|
2024-10-31 20:08:58 +01:00
|
|
|
margin-bottom: 2rem;
|
|
|
|
img {
|
|
|
|
width: 50%;
|
|
|
|
height: auto;
|
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint_desktop) {
|
|
|
|
//width: 18vw;
|
|
|
|
}
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
2024-10-31 20:08:58 +01:00
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
width: 170%;
|
|
|
|
margin: 0 3rem;
|
2023-12-15 20:04:59 +01:00
|
|
|
}
|
2024-10-31 20:08:58 +01:00
|
|
|
}
|
|
|
|
article > div {
|
|
|
|
height: unset !important;
|
|
|
|
min-height: 100%;
|
|
|
|
p {
|
|
|
|
@include main_text_content();
|
|
|
|
width: 100%;
|
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding-right: 3rem;
|
|
|
|
}
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
2024-10-31 20:08:58 +01:00
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding: 0 !important;
|
2023-12-15 20:04:59 +01:00
|
|
|
}
|
2024-10-31 20:08:58 +01:00
|
|
|
}
|
|
|
|
div.more-link {
|
|
|
|
@include fluo_button();
|
|
|
|
margin-top: 3rem;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-12-15 20:04:59 +01:00
|
|
|
@media (min-width: $breakpoint_tablet) {
|
2024-10-31 20:08:58 +01:00
|
|
|
position: absolute;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
2024-10-31 20:08:58 +01:00
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding: 8rem 1rem;
|
|
|
|
padding-top: 4rem;
|
|
|
|
margin: 6rem 0;
|
|
|
|
margin-left: 20vw;
|
|
|
|
margin-right: 20vw;
|
|
|
|
width: calc(100% - 40vw);
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
|
|
|
|
2024-10-31 20:08:58 +01:00
|
|
|
// plus sur l'accueil
|
2023-12-06 17:06:45 +01:00
|
|
|
.home_consultation {
|
2023-12-20 06:48:35 +01:00
|
|
|
position: relative;
|
2023-12-06 17:06:45 +01:00
|
|
|
@include beige_gradient();
|
|
|
|
width: 100%;
|
2023-12-15 20:04:59 +01:00
|
|
|
padding: 4rem 0;
|
2023-12-06 17:06:45 +01:00
|
|
|
h2 {
|
|
|
|
@include main_title();
|
|
|
|
margin-bottom: 1.2rem;
|
2023-12-15 20:04:59 +01:00
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding-left: 0 !important;
|
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint_desktop) {
|
|
|
|
margin-left: 12.5vw;
|
|
|
|
max-width: 50vw;
|
|
|
|
}
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
2023-12-20 06:48:35 +01:00
|
|
|
h2 + div {
|
2024-01-06 07:56:23 +01:00
|
|
|
h2, h3, h4 {
|
2023-12-20 06:48:35 +01:00
|
|
|
@include sous_titre_alt();
|
2024-01-06 09:39:13 +01:00
|
|
|
@media (min-width: $breakpoint_desktop) {
|
|
|
|
max-width: 50vw;
|
|
|
|
margin-left: 12.5vw;
|
|
|
|
}
|
2023-12-20 06:48:35 +01:00
|
|
|
}
|
|
|
|
}
|
2023-12-06 17:06:45 +01:00
|
|
|
article > div {
|
2023-12-15 20:04:59 +01:00
|
|
|
height: unset !important;
|
2023-12-06 17:06:45 +01:00
|
|
|
p {
|
|
|
|
@include main_text_content();
|
2023-12-15 20:04:59 +01:00
|
|
|
@media (min-width: $breakpoint_desktop) {
|
|
|
|
margin-left: 12.5vw;
|
|
|
|
max-width: 50vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding: 0 !important;
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
div.more-link {
|
|
|
|
@include fluo_button();
|
|
|
|
margin-top: 3rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2023-12-15 20:04:59 +01:00
|
|
|
@media (min-width: $breakpoint_desktop) {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: $breakpoint_tablet) {
|
|
|
|
padding-left: 12.5vw;
|
|
|
|
padding-right: 12.5vw;
|
2023-12-06 17:06:45 +01:00
|
|
|
}
|
2024-10-31 01:32:57 +01:00
|
|
|
}
|