@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Limelight&display=swap");
:root {
--maxwidth: 1640px;
--maxwidth2: 1364px;
--green: #437754;
--grey: #F3F4F5;
}
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
overflow-x: hidden;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
p a {
text-decoration: underline;
}
p, h1, h2, h3, h4, h5 {
width: 100%;
}
h2 {
font-family: "Limelight", "Poppins", cursive;
font-size: 40px;
font-weight: 400;
text-transform: uppercase;
}
.loader {
position: fixed;
z-index: 999;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--green);
}
.loader__text {
font-family: "Limelight", "Poppins", cursive;
font-size: 20px;
font-weight: 400;
text-transform: uppercase;
color: #fff;
text-align: center;
margin: 20px 0;
}
.handpan {
position: relative;
width: 150px;
height: 75px;
}
.handpan__barre {
position: absolute;
top: calc(50% - 2px);
left: -4px;
width: calc(100% + 8px);
height: 4px;
background-color: #fff;
border-radius: 100px;
}
.handpan__circle {
position: relative;
width: 100%;
height: 100%;
box-shadow: inset 0 0 0 4px #fff;
border-radius: 100%;
overflow: hidden;
}
.handpan__Lcircle {
position: absolute;
top: 10px;
width: 40px;
height: 22px;
box-shadow: inset 0 0 0 3px #fff;
border-radius: 100%;
}
.handpan__Lcircle::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 35%;
height: 35%;
box-shadow: inset 0 0 0 2px rgba(255,255,255,.75);
border-radius: 100%;
transform: translate(-50%,-50%)
}
.handpan__circle .handpan__Lcircle:nth-child(1) {
left: 20%;
}
.handpan__circle .handpan__Lcircle:nth-child(2) {
left: 60%;
}
.handpan__circle .handpan__Lcircle:nth-child(3) {
left: 100%;
}
.handpan__circle .handpan__Lcircle:nth-child(4) {
left: 140%;
}
.handpan__top {
position: absolute;
top: 0;
left: 50%;
width: 40%;
height: 3px;
background-color: var(--green);
transform: translateX(-50%);
border-bottom: 4px solid #fff;
}
.handpan__top2 {
position: absolute;
top: 1px;
left: 50%;
width: 30px;
height: 5px;
background-color: #fff;
border-top-left-radius: 100%;
border-top-right-radius: 100%;
transform: translateX(-50%);
}
main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
max-width: var(--maxwidth);
padding-top: 60px;
}
.flex {
display: flex;
justify-content: center;
align-items: center;
}
.flex__col {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.button {
position: relative;
font-family: "Poppins", sans-serif;
min-width: 200px;
padding: 10px 20px;
background-color: #000;
color: #fff;
font-size: 18px;
font-weight: bold;
text-align: center;
border: none;
border-radius: 0;
overflow: hidden;
}
.button.white {
background-color: #fff;
color: #000;
box-shadow:inset 0px 0px 0px 1px #000;
transition: color 0.5s;
}
.button span {
position: relative;
z-index: 2;
}
.button::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 120%;
padding-top: 120%;
border-radius: 100%;
background-color: var(--green);
transform: translate(-50%, -50%) scale(0);
transition: transform 0.5s;
}
.button:hover::after {
transform: translate(-50%, -50%) scale(1);
}
.button.white:hover {
color: #fff;
}
.site__header {
position: fixed;
top: 0;
left: 0;
z-index: 999;
width: 100vw;
max-width: 100%;
background-color: #fff;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15);
height: 60px;
}
.site__header__content {
position: relative;
width: 100%;
max-width: var(--maxwidth);
justify-content: flex-end;
}
.logo {
position: absolute;
top: 5px;
left: 15px;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15);
border-radius: 100%;
width: 110px;
height: 110px;
}
.logo img {
width: 100%;
height: 100%;
}
.main__navigation {
}
.menu-menu-1-container {
}
.main__navigation .menu {
display: flex;
justify-content: center;
align-items: center;
}
.main__navigation .menu li {
position: relative;
height: 60px;
}
.main__navigation .menu li a {
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
padding: 0 20px;
height: 60px;
color: #000;
transition: color 0.3s;
}
.main__navigation .menu li a:hover {
color: var(--green);
}
.main__navigation .menu-item-has-children {
position: relative;
}
.main__navigation li.menu-item-has-children a {
padding: 0 40px 0 20px;
}
.main__navigation .menu-item-has-children::after {
content: '';
position: absolute;
top: 50%;
right: 20px;
width: 10px;
height: 3px;
background-color: #000;
pointer-events: none;
}
.main__navigation .menu-item-has-children::before {
content: '';
position: absolute;
top: 50%;
right: 20px;
width: 10px;
height: 3px;
background-color: #000;
transform: rotate(90deg);
transition: transform 0.3s;
pointer-events: none;
}
.main__navigation .menu .sub-menu {
display: none;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
position: absolute;
top: 100%;
left: 0;
width: max-content;
background-color: #fff;
padding: 10px 0;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15);
}
.main__navigation .menu li:hover .sub-menu {
display: flex;
}
.main__navigation .menu li:hover::before {
transform: rotate(0deg);
}
.main__navigation .menu .sub-menu li {
height: 40px;
}
.main__navigation .menu .sub-menu li a {
height: 40px;
padding: 0 20px;
}
.footer {
width: 100vw;
max-width: 100%;
background-color: #000;
}
.footer__content {
justify-content: space-between;
width: calc(100% - 40px);
max-width: var(--maxwidth);
padding: 40px 20px;
}
.footer__menu {
width: 30%;
margin: 10px 0;
}
.footer__menu li {
position: relative;
display: flex;
justify-content: flex-start;
align-items: flex-start;
flex-direction: column;
}
.footer__menu li::before{
content: '';
position: absolute;
top: calc(50% - 1px);
left: 0;
width: 100%; 
height: 2px;
background-color: #fff;
}
.footer__menu a {
position: relative;
font-family: "Limelight", "Poppins", cursive;
font-size: 20px;
color: #fff;
text-transform: uppercase;
padding: 5px 30px 5px 0;
background-color: #000;
}
.footer__menu .sub-menu {
display: none;
}
.footer__info {
width: 30%;
color: #fff;
text-transform: uppercase;
text-align: right;
align-items: flex-end;
}
.footer__title {
font-family: "Limelight", "Poppins", cursive;
font-size: 20px;
}
.footer__address {
font-size: 14px;
font-weight: bold;
margin: 10px 0;
}
.footer__social a {
margin: 0 5px;
}
.footer__social a img {
width: 50px;
height: 50px;
}
.footer__logo {
border-radius: 100%;
width: 110px;
height: 110px;
}
.footer__logo img {
width: 100%;
height: 100%;
}
.footer__extra {
width: 100vw;
max-width: 100%;
background-color: #fff;
padding: 20px 0;
}
.footer__extra a {
position: relative;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
padding: 0 20px;
}
.footer__extra a::after {
content: '';
position: absolute;
top: calc(50% - 1px);
right: -10px;
width: 20px;
height: 2px;
background-color: #000;
}
.footer__extra a:last-child::after {
content: none;
}
.single {
margin-top: 40px;
}
.single__header {
position: relative;
width: calc(100% - 40px);
padding: 0 20px;
}
.single__image {
width: 50%;
margin-right: 5%;
align-items: flex-start;
}
.single__image__container {
position: relative;
width: 100%;
padding-top: 75%;
}
.single__image__container::before {
content: '';
position: absolute;
top: 20px;
left: 20px;
width: 100%;
height: 100%;
background-color: var(--green);
}
.single__image__container img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.single__content {
width: 45%;
align-items: flex-start;
}
.single__content h1 {
font-family: "Limelight", "Poppins", cursive;
font-size: 40px;
font-weight: 400;
text-transform: uppercase;
color: var(--green);
margin-bottom: 10px;
}
.single__price {
position: relative;
font-size: 26px;
font-weight: bold;
padding-bottom: 10px;
margin-bottom: 30px;
}
.single__price::after {
content: '';
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 6px;
background-color: var(--green);
}
.single__content p {
margin-bottom: 25px;
}
.single__buttons {
flex-flow: wrap;
}
.single__buttons a {
margin-bottom: 10px;
margin-right: 5px;
}
.single__video {
position: relative;
width: 100%;
margin-top: 150px;
padding: 100px 0;
}
.single__video__inner {
position: relative;
width: 100%;
max-width: 800px;
}
.single__video::before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 100vw;
height: 100%;
background-color: var(--green);
transform: translateX(-50%)
}
.single__video h2 {
color: #fff;
text-align: center;
}
.single__video iframe {
width: 100%;
min-height: 450px;
margin: 30px 0;
}
.single__related {
position: relative;
width: 100%;
padding: 50px 0;
}
.single__related__inner {
width: calc(100% - 160px);
padding: 50px 80px;
max-width: 1200px;
}
.single__related h2 {
color: var(--green);
margin-bottom: 20px;
text-align: center;
}
.single__related__display {
width: 100%;
align-items: flex-start;
justify-content: center;
flex-flow: wrap;
}
.single__related__card {
position: relative;
width: calc(31.5% - 40px);
min-width: 250px; 
margin: 10px 0.9166%;
background-color: #fff;
padding: 20px;
align-items: flex-end;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15), 0 3px 20px 0 rgba(0,0,0,0.15);
}
.single__related__card__image {
position: relative;
width: 100%;
padding-top: 80%;
}
.single__related__card__image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.single__related__card__title {
font-size: 18px;
font-weight: bold;
width: 70%;
padding-right: 30%;
margin-top: 10px;
min-height: 54px;
}
.single__related__card__price {
font-size: 26px;
font-weight: 800;
color: var(--green);
margin-bottom: 10px;
}
.single__cbanner {
position: relative;
width: calc(100% - 40px);
padding: 100px 20px;
}
.single__cbanner::before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 100vw;
height: 100%;
background-color: #000;
transform: translateX(-50%);
}
.single__cbanner__title {
position: relative;
font-family: "Limelight", "Poppins", cursive;
font-size: 40px;
font-weight: 400;
text-transform: uppercase;
color: #fff;
text-align: center;
margin-bottom: 30px;
}
.single__cbanner__buttons {
flex-flow: wrap;
}
.single__cbanner__buttons a {
margin: 0 10px;
margin-bottom: 10px;
}
.single__endBanner {
position: relative;
width: 100%;
height: 40vh;
}
.single__endBanner img {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 100%;
object-fit: cover;
transform: translate(-50%,-50%);
}
.single__endBanner__title {
position: relative;
z-index: 2;
font-family: "Limelight", "Poppins", cursive;
font-size: 40px;
font-weight: 400;
text-transform: uppercase;
color: #fff;
text-align: center;
width: 90%;
margin-bottom: 20px;
}
.single__endBanner .button {
position: relative;
z-index: 2;
background-color: #fff;
color: #000;
transition: color 0.5s;
}
.single__endBanner .button:hover {
color: #fff;
}
.wpcf7 {
width: calc(100% - 80px);
padding: 0 40px;
max-width: 800px;
margin-top: 100px;
}
.wpcf7__line {
width: 100%;
margin-bottom: 20px;
}
.wpcf7__line label {
width: 100%;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
padding-bottom: 10px;
}
.wpcf7__input {
width: 100%;
}
.wpcf7__input span {
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
width: 100%;
}
.wpcf7__input input, .wpcf7__input textarea {
width: calc(100% - 20px);
padding: 10px;
border: 1px solid #BCBCBC;
border-radius: 0;
}
.wpcf7__rgpd input {
position: absolute;
top: 50%;
left: 0;
width: 25px;
height: 25px;
transform: translateY(-50%);
}
.wpcf7__rgpd span.wpcf7-list-item {
margin: 0;
}
.wpcf7__rgpd label {
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
font-weight: 400;
text-transform: none;
width: calc(100% - 40px);
padding-left: 40px;
padding-bottom: 0;;
letter-spacing: 1.2px;
}
.wpcf7 input[type=submit] {
position: relative;
font-family: "Poppins", sans-serif;
min-width: 200px;
padding: 10px 20px;
background-color: #000;
color: #fff;
font-size: 18px;
font-weight: bold;
text-align: center;
border: none;
border-radius: 0;
overflow: hidden;
border: 1px solid #000;
transition: all 0.5s;
cursor: pointer;
margin-top: 20px;
}
.wpcf7 input[type=submit]:hover {
background-color: #fff;
color: #000;
}
.wpcf7 input[type=submit]:disabled {
opacity: 0.1;
}
.wpcf7 form .wpcf7-response-output {
margin: 0;
padding: 10px 20px;
position: fixed;
bottom: 0;
left: 0;
width: calc(100% - 40px);
z-index: 99;
text-align: center;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
background-color: #ffb900;
color: #fff;
font-weight: bold;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
background-color: #dc3232;
color: #fff;
font-weight: bold;
}
.wpcf7 form.sent .wpcf7-response-output {
background-color: #46b450;
color: #fff;
font-weight: bold;
}
.error-404 {
min-height: 50vh;
}
.error-404 h1, .error-404 p {
text-align: center;
}
.footer__partenaires {
width: 100vw;
max-width: 100%;
background-color: #000;
}
.footer__partenaires p {
color: #fff;
font-size: 16px;
font-weight: bold;
text-align: center;
}
.footer__partenaires__img {
flex-flow: wrap; 
margin: 10px 0;
}
.footer__partenaires__img a {
width: 150px;
margin: 0 5px;
}
.footer__partenaires__img a img {
width: 100%;
}
.grecaptcha-badge {
display: none;
}
@media only screen and (max-width: 1600px) {
:root {
--maxwidth2: 1100px;
}
main {
max-width: 1100px;
}
}
@media only screen and (max-width: 1100px) {
.single__related__card {
position: relative;
width: calc(48% - 40px);
margin: 10px 1%;
background-color: #fff;
padding: 20px;
align-items: flex-end;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.15), 0 3px 20px 0 rgba(0,0,0,0.15);
}
}
@media only screen and (max-width: 1000px) {
main {
padding-top: 50px;
}
.logo {
width: 80px;
height: 80px;
}
.site__header {
height: 50px;
}
.main__navigation {
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--green);
width: 100vw;
height: 100vh;
transform: translateX(100%);
}
.main__navigation .menu {
flex-direction: column;
}
.main__navigation .menu li {
height: unset;
}
.main__navigation .menu li a {
font-family: "Limelight", "Poppins", cursive;
font-size: 20px;
font-weight: 400;
height: 40px;
color: #fff;
}
.main__navigation .menu-item-has-children::before, .main__navigation .menu-item-has-children::after {
display: none;
}
.main__navigation li.menu-item-has-children a {
padding: 0 20px;
}
.main__navigation .menu .sub-menu {
display: flex;
position: relative;
top: unset;
left: unset;
background-color: transparent;
box-shadow: unset;
padding: 0;
align-items: center;
}
.main__navigation .menu .sub-menu li a {
}
.burger {
width: 50px;
height: 50px;
margin-right: 10px;
}
.burger div {
width: 75%;
height: 4px;
background-color: #000;
border-radius: 25px;
margin: 3px 0;
}
.close {
display: none;
position: fixed;
top: 0;
height: 10px;
width: 50px;
height: 50px;
}
.close div {
position: absolute;
top: 50%;
left: 50%;
width: 75%;
height: 4px;
border-radius: 25px;
background-color: #fff;
transform: translate(-50%,-50%) rotate(45deg);
}
.close div:last-child {
transform: translate(-50%,-50%) rotate(-45deg);
}
.single__header {
flex-direction: column;
}
.single__image {
width: 100%;
max-width: 600px;
align-items: center;
margin-bottom: 100px;
}
.single__content {
width: 100%;
}
.single__video {
width: 100%;
max-width: 100%;
}
}
@media only screen and (max-width: 800px) {
.footer__content {
flex-direction: column;
justify-content: center;
}
.footer__menu, .footer__info {
width: 100%;
margin: 0;
}
.footer__logo {
margin: 20px 0;
}
.footer__info {
align-items: center;
text-align: center;
}
.footer__extra {
flex-direction: column;
}
.footer__extra a::after {
display: none;
}
.single__endBanner__title {
font-size: 28px;
}
.single__cbanner__title {
font-size: 28px;
}
.wpcf7 {
width: calc(100% - 40px);
padding: 0 20px;
max-width: 800px;
margin-top: 100px;
}
}
@media only screen and (max-width: 775px) {
.single__related__display {
justify-content: center;
}
.single__related__card {
width: 100%;
max-width: 300px;
}
}
@media only screen and (max-width: 700px) {
.single__video iframe {
min-height: 340px;
}
.single__video h2 {
max-width: 300px;
}
}
@media only screen and (max-width: 600px) {
h2 {
font-size: 26px;
}
.single__image {
margin-bottom: 60px;
}
}
@media only screen and (max-width: 500px) {
.single__video {
padding: 60px 0 40px 0;
}
.single__video iframe {
min-height: 280px;
margin: 15px 0;
}
}
@media only screen and (max-width: 400px) {
.single__video iframe {
min-height: 220px;
margin: 15px 0;
}
.single__video__social a img {
width: 30px;
height: 30px;
}
.single__related__inner {
width: calc(100% - 40px);
padding: 0 20px;
}
}