:root {
    --width-content: 1250px;

    --color-default:#80CD29;
}

* {
    margin:0;
    padding:0;
    text-decoration:none;
    list-style:none;
}

html {
    scroll-behavior: smooth;
    overflow-x:hidden;
    width:100vw;
}

body {
    font-family:"Outfit";
    overflow-x:clip;
    background:#fafafa;
}

a {
    color:#4F6B77;
    transition:0.5s;
    text-decoration:underline;
}

a:hover {
    color:#374c55;
}

p {
    font-size:16px;
    line-height:23px;
    min-height:23px;
    color:#000;
    font-weight:300;
}

p.text-center {
    text-align:center;
}

p.taller {
    font-size:18px;
    font-weight:400;
}

strong {
    font-weight:500;
}

strong.green {
    color:#61a615;
}

ol {
    padding-left:20px;
    list-style-type: decimal;
}

ol li {
    color: #000;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 23px; /* 175% */
    margin-top:10px;
    list-style-type: decimal;
}

ol li:first-child {
    margin-top:0;
}

ul {
    list-style:initial;
    padding-left:20px;
}

ul li {
    list-style:initial;
    color: #4f6b77;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    line-height: 23px; /* 175% */
    margin-top:10px;
}

ul li:first-child {
    margin-top:0;
}

h1 {
    font-size: 55px;
    font-weight: 900;
    line-height: 69px;
    text-align: center;
    color:#FFFFFF;
    text-shadow: 0px 4px 5px #00000073;
    text-transform:uppercase;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: 0.05em;
    text-align: left;
    color:var(--color-default);
    text-transform:uppercase;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.1em;
    text-align: left;
    position:relative;
    padding-bottom:7px;
    color:#4F6B77;
    margin-top:11px;
}

h3:first-child {
    margin-top:0;
}

h3:after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    width:80px;
    display:block;
    background:var(--color-default);
}

.not-all-width.image-grey h2, .not-all-width.background-grey h2 {
    color:#4F6B77;
}

.not-all-width.image-grey h3, .not-all-width.background-grey h3 {
    color:var(--color-default);
}

.not-all-width.image-grey-2 h3, .not-all-width.image-grey-2 p, .not-all-width.image-grey-3 h3, .not-all-width.image-grey-3 p {
    color:white;
    padding-bottom:0;
    text-align:center;
}

.not-all-width.background-grey p {
    color:white;
}

.not-all-width.image-grey-2 h3:after, .not-all-width.image-grey-3 h3:after {
    display:none;
}

header {
    position:fixed;
    width:200px;
    height:calc(100vh - 310px);
    top:0;
    left:0;
    background:#231F20;
    padding:60px 35px;
    padding-bottom:250px;
    z-index: 100;
}

header .logo {
    width:100%;
    position:relative;
}

header .logo img {
    width:100%;
}

header .logo a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

header .container-phone {
    display: none;
}

header .container_coord {
    position: absolute;
    left: 50%;
    transform:translate(-50%,0);
    bottom: 20px;
    width:calc(100% - 70px);
    padding-left:35px;
    padding-right:35px;
}

header .menu-responsive-container {
    margin-top:30px;
}

header .menu {
    list-style:none;
    padding-left:0;
}

header .menu > li {
    list-style:none;
    padding-left:0;
    border-bottom:1px solid #4F6B77;
    margin-top:3px;
    padding-bottom:3px;
    position:relative;
}

header .menu > li:first-child {
    margin-top:0;
}

header .menu > li:last-child {
    padding-bottom:0;
}

header .menu > li.menu-has-children:after {
    content:"";
    background:url("/media/icons/chevron.png");
    width:20px;
    height:20px;
    background-size:contain;
    background-position:center;
    color:white;
    position:absolute;
    top:50%;
    right:0;
    transform:translate(0,-50%);
    z-index:-1;
}

header .menu > li.active.menu-has-children:after, header .menu > li.menu-has-children:hover:after {
    color:var(--color-default);
}

header .menu > li > a, header .menu > li > span {
    color:#FFFFFF;
    font-size: 18px;
    font-weight: 200;
    line-height: 23px;
    letter-spacing: 0.02em;
    padding-bottom:7px;
    padding-top:7px;
    text-decoration:none;
    display:block;
    width:100%;
    cursor:pointer;
}

header .menu > li.active > a, header .menu > li.active > span, header .menu > li:hover > a, header .menu > li:hover > span {
    color:var(--color-default);
}

header .menu > li > ul {
    display:none;
    position:absolute;
    top:0;
    left:100%;
    background:#231F20;
    padding-left:0;
    list-style:none;
    padding:15px 20px;
    padding-left:55px;
    padding-right:60px;
}

header .menu > li:hover > ul {
    display:block;
}

header .menu > li > ul > li {
    padding-left:0;
    list-style:none;
}

header .menu > li > ul > li > a, header .menu > li > ul > li > span {
    text-decoration:none;
    color:white;
    font-size: 18px;
    font-weight: 200;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: left;
    padding:3px 0;
}

header .menu > li > ul > li.active > a, header .menu > li > ul > li.active > span, header .menu > li > ul > li:hover > a, header .menu > li > ul > li:hover > span {
    color:var(--color-default);
}

.coordonnees {
    margin-top:40px;
}

.coordonnees:first-child {
    margin-top:0;
}

.page-content {
    min-height:100vh;
    width:calc(100vw - 270px);
    margin-left:auto;
    margin-right:0;
}

.not-all-width {
    width:var(--width-content);
    padding-left:calc((100% - var(--width-content)) / 2);
    padding-right:calc((100% - var(--width-content)) / 2);
    padding-top: 70px;
    padding-bottom: 70px;
}

.not-all-width.image-grey {
    background:url('/media/background/f26810c9e726833c566b7b61781d597e.jpeg') no-repeat;
    background-size:cover;
    background-position:center;
}

.not-all-width.background-grey {
    background:#4F6B77;
}

.not-all-width.image-grey-2 {
    background:url('/media/background/20b9bc1fbaf9066747eaaa26f452b702.jpeg') no-repeat;
    background-size:cover;
    background-position:center;
}

.not-all-width.image-grey-3 {
    background:url('/media/background/e9c48bb090f0b3da3f7557cc50d45c52.jpeg') no-repeat;
    background-size:cover;
    background-position:bottom;
}

.coordonnees > a, .coordonnees > div {
    display:flex;
    flex-wrap:wrap;
    padding-left:25px;
    width:calc(100% - 25px);
    position:relative;
    margin-top:25px;
    color:#4F6B77;
    text-decoration:none;
}

header .coordonnees > a, header .coordonnees > div {
    color:#ffffff;
}

.coordonnees > a:first-child, .coordonnees > div:first-child {
    margin-top:0;
}

.coordonnees > a > span.text, .coordonnees > div > p {
    color:#4F6B77;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: left;
}

header .coordonnees > a > span.text, header .coordonnees > div > p {
    color:#FFFFFF;
    font-weight:200;
}

.coordonnees > a > span.fa, .coordonnees > div > span.fa {
    font-size:18px;
    color:var(--color-default);
    position:absolute;
    top:0;
    left:0;
    width:20px;
    text-align:center;
    line-height: 20px;
}

.social-links {
    margin-top:50px;
    display:flex;
    flex-wrap:wrap;
    width:max-content;
    margin-left:auto;
    margin-right:auto;
    max-width:100%;
}

.social-links > a {
    display:block;
    width:max-content;
    height:max-content;
    text-decoration:none;
    margin-left:25px;
}

.social-links > a:first-child {
    margin-left:0;
}

.social-links > a > span {
    color:var(--color-default);
    font-size:20px;
}

footer {
    background:#000000;
    padding:20px calc(((100vw - 270px) - var(--width-content)) / 2);
    width:var(--width-content);
    margin-left: auto;
    margin-right: 0;
}

footer > p {
    width:100%;
    text-align:center;
    font-family: Open Sans;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    color:#C8B9B9;
}

footer > .menu {
    display:flex;
    flex-wrap:wrap;
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    margin-top:12px;
    padding-left:0;
    list-style:none;
}

footer > .menu li {
    margin-top:0;
    margin-right:5px;
    padding-left:0;
    list-style:none;
}

footer > .menu li:last-child {
    margin-right:0;
}

footer > .menu li a {
    width:max-content;
    display:block;
    padding-left:10px;
    position:relative;
    font-family: Open Sans;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #C8B9B9;
    text-decoration:none;
}

footer > .menu li a:before {
    position:absolute;
    top:50%;
    left:0;
    transform:translate(0,-50%);
    content:"-";
}

footer > .menu li:first-child a {
    padding-left:0;
}

footer > .menu li:first-child a:before {
    content:"";
}

footer > .arduinnova {
    display:block;
    width:220px;
    margin-top:12px;
    text-decoration:none;
    margin-left:auto;
    margin-right:auto;
}

footer > .arduinnova > img {
    width:100%;
}

.slider-bullet {
    height:400px;
}

.slider-bullet.home {
    height:100vh;
}
.jseditor .slider-bullet.home {
    height: 400px;
}

.slider-bullet.background-bottom .slideritem {
    background-position:center bottom;
}

.slider .slideritem .slider-content {
    width:100%;
    height:100%;
    position:relative;
}

.slider .slideritem .slider-content .filter {
    z-index:1;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #372E0D66;
}

.slider .slideritem .slider-content .block-center {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:max-content;
    height:max-content;
    max-width:80%;
    z-index:2;
}

.slider .slideritem .slider-content .block-center p {
    color:var(--color-default);
    margin-top:7px;
    text-align:center;
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0em;
}

.slider .slideritem .slider-content .block-center .important-link {
    margin-top:44px;
    margin-left:auto;
    margin-right:auto;
}

.slider .slideritem .slider-content .go-bottom {
    display:block;
    width:60px;
    height:60px;
    border-radius:100%;
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translate(-50%,0);
    background:var(--color-default);
    cursor:pointer;
    z-index:2;
}

.slider .slideritem .slider-content .go-bottom .fa {
    font-size:20px;
    color:black;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.slider .slider-menu {
    display:none;
}

.important-link {
    background:var(--color-default);
    border:1px solid var(--color-default);
    padding:13px 34px;
    display:block;
    width:max-content;
    max-width:calc(100% - 150px);
    font-size: 18px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration:none;
    color:black;
    text-transform:uppercase;
    margin-left:auto;
    margin-right:auto;
    margin-top:40px;
}

.important-link:first-child {
    margin-top:0;
}

.important-link:hover {
    background:white;
    color:black;
}

.background-grey .important-link {
    background:white;
    border:1px solid white;
    color:#57A005;
}

.background-grey .important-link:hover {
    background:#57A005;
    color:white;
}

.image-text {
    display:flex;
    flex-wrap:wrap;
    margin-top:50px;
    height:380px;
    overflow:hidden;
    position:relative;
}

.image-text:first-child {
    margin-top:0;
}

.image-text > a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:3;
}

.image-text .image {
    width:50%;
    height:100%;
    transition:0.5s;
}

.image-text:hover .image {
    width:47%;
}

.image-text .image img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.image-text .text {
    width:50%;
    background:var(--color-default);
    position:relative;
    transition:0.5s;
}

.image-text:hover .text {
    width:53%;
}

.image-text.grey .text {
    background:#4F6B77;
}

.image-text .text .center {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:max-content;
    height:max-content;
}

.image-text .text .center h3 {
    color:#333333;
}

.image-text .text .center h3:after {
    background:white;
}

.image-text.grey .text h2 {
    color:white;
}

.image-text.grey .text h3 {
    color:white;
}

.image-text.grey .text .center h3:after {
    background:var(--color-default);
}

.image-text .text .center h2 {
    color:white;
    font-weight:400;
}

.image-text.grey .text h2 {
    color:var(--color-default);
}

.links-pages {
    display:flex;
    flex-wrap:wrap;
    width:100%;
    margin-top:50px;
}

.links-pages > div {
    width:calc((100% - 135px) / 4);
    height:calc((var(--width-content) - 135px) / 4 * 1.17);
    margin-left:45px;
    overflow:hidden;
    position:relative;
    margin-top:45px;
}

.links-pages > div:nth-child(4n + 1) {
    margin-left:0;
}

.links-pages > div:nth-child(-n + 4) {
    margin-top:0;
}

.links-pages > div img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:0.5s;
}

.links-pages > div:hover img {
    transform:scale(1.1);
}

.links-pages > div a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:3;
}

.links-pages > div .filter {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
    background: #00000040;
}

.links-pages > div h3 {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    color:white;
    display:block;
    width:max-content;
    max-width:80%;
}

.links-pages > div h3:after {
    background:white;
}

.image-text-2 {
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    margin-top:50px;
}

.image-text-2:first-child {
    margin-top:0;
}

.image-text-2 .image {
    width:45%;
    margin-left:0;
    margin-right:auto;
    position:relative;
}

.image-text-2 .image.normal-size {
    height:max-content;
}

.image-text-2 .image:after {
    content:"";
    z-index:-1;
    position:absolute;
    top:0;
    right:0;
    width:90px;
    height:70px;
    transform:translate(30px,-30px);
    border:2px dashed var(--color-default);
}

.image-grey .image-text-2 .image:after, .background-grey .image-text-2 .image:after, .image-grey-2 .image-text-2 .image:after, .image-grey-3 .image-text-2 .image:after, .image-text-2 .image.not-square:after {
    display:none;
}

.image-text-2.text-first .image {
    margin-left:auto;
    margin-right:0;
}

.image-text-2 .image img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.image-text-2 .text {
    width:45%;
    margin-left:auto;
    margin-right:0;
}

.image-text-2.text-first .text {
    margin-left:0;
    margin-right:auto;
}

.social-networks-wall-tab {
  display: none;
}

.social-networks-wall-container {
  display: flex;
  flex-wrap: wrap;
  height: auto !important;
  align-items: stretch;
  margin-top:50px;
}

.social-networks-wall-root .block-sortable-active .block-sortable-item {
    position:relative !important;
    top:0 !important;
    left:0 !important;
    width:calc(100% / 3 - 20px) !important;
    height:auto ! important;
    margin-left:calc(20px * 3 / 4);
    margin-right:calc(20px * 3 / 4);
    margin-top:20px;
}

.social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(3n + 1) {
    margin-left:0;
}

.social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(3n) {
    margin-right:0;
}

.social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(-n + 3) {
    margin-top:0;
}

.social-networks-wall-item {
    height:calc(100% - 10px);
}

.social-networks-wall-item-toolbar {
    margin: auto 0 0 0;
}

.social-networks-wall-item-footer {
    margin:0;
}

.block-green {
    background:var(--color-default);
    padding-top:35px;
    padding-bottom:35px;
}

.block-green p {
    display:block;
    width:80%;
    margin-left:auto;
    margin-right:auto;
    font-size:18px;
    line-height:26px;
    text-align:center;
}

.block-contact {
    background:url("/media/background/green-hexa.jpeg") no-repeat;
    background-size:cover;
    background-position:center;
    padding-top:35px;
    padding-bottom:35px;
}

.block-contact p {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.03em;
    text-align: center;
    color:white;
}

.block-contact .important-link {
    background:#4F6B77;
    border:1px solid #4F6B77;
    color:white;
}

.block-contact .important-link:hover {
    background:white;
    color:#4F6B77;
}

.photo-gallery {
    margin-top:40px;
}

.photo-gallery-photos {
    display:flex;
    flex-wrap:wrap;
}

.photo-gallery-photos li {
    width:calc((100% - 192px) / 4);
    height:calc((var(--width-content) - 192px) / 4);
    margin-left:32px;
    margin-right:32px;
    margin-top:64px;
    padding-bottom:10px;
    border-bottom:3px solid var(--color-default);
}

.photo-gallery-photos li:nth-child(4n + 1) {
    margin-left:0;
}

.photo-gallery-photos li:nth-child(4n) {
    margin-right:0;
}

.photo-gallery-photos li:nth-child(-n + 4) {
    margin-top:0;
}

.photo-gallery-photos li a {
    width:100%;
    height:100%;
    display:block;
    position:relative;
}

.photo-gallery-photos li a img {
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.photo-gallery-photos li a .filter {
    width:100%;
    height:100%;
    background: #57A00569;
    z-index:1;
    position:absolute;
    top:0;
    left:0;
    display:block;
    opacity:0;
    transition:0.5s;
}

.photo-gallery-photos li a .photo-gallery-caption {
    z-index:2;
    position:absolute;
    bottom:15px;
    left:15px;
    width:max-content;
    height:max-content;
    max-width:calc(100% - 30px);
    color:white;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0em;
    text-align: left;
    display:block;
    opacity:0;
    transition:0.5s;
    text-shadow: #000 1px 0 10px;
}

.photo-gallery-photos li a:hover .filter, .photo-gallery-photos li a:hover .photo-gallery-caption {
    opacity:1;
}

.flex-gallery {
    display:flex;
    flex-wrap:wrap;
}

.flex-gallery > div {
    width:calc(50% - 32px);
    margin-left:32px;
    margin-right:32px;
}

.flex-gallery > div:first-child {
    margin-left:0;
}

.flex-gallery > div:last-child {
    margin-right:0;
}

.flex-gallery .photo-gallery-photos li {
    width:calc((100% - 64px) / 2);
    height:calc(((var(--width-content) * 0.5 - 32px) - 64px) / 2);
}

.flex-gallery .photo-gallery-photos li:nth-child(4n + 1) {
    margin-left:32px;
}

.flex-gallery .photo-gallery-photos li:nth-child(4n) {
    margin-right:32px;
}

.flex-gallery .photo-gallery-photos li:nth-child(-n + 4) {
    margin-top:64px;
}

.flex-gallery .photo-gallery-photos li:nth-child(2n + 1) {
    margin-left:0;
}

.flex-gallery .photo-gallery-photos li:nth-child(2n) {
    margin-right:0;
}

.flex-gallery .photo-gallery-photos li:nth-child(-n + 2) {
    margin-top:0;
}

.links-flex {
    display:flex;
    flex-wrap:wrap;
    width:100%;
    margin-left:auto;
    margin-right:auto;
}

.links-flex > * {
    margin-left:auto;
    margin-right:auto;
    margin-top:50px;
}

.links-flex > *:first-child {;
    margin-top:50px;
}

.bardage-avantages {
    display:flex;
    flex-wrap:wrap;
    margin-top:50px;
}

.bardage-avantages > div {
    width:calc((100% - 160px) / 5 - 60px);
    height:calc((var(--width-content) - 160px) / 5 - 60px);
    margin-left:20px;
    margin-right:20px;
    margin-top:40px;
    background:white;
    padding:30px;
}

.bardage-avantages > div:nth-child(5n + 1) {
    margin-left:0;
}

.bardage-avantages > div:nth-child(5n) {
    margin-right:0;
}

.bardage-avantages > div:nth-child(-n + 5) {
    margin-top:0;
}

.bardage-avantages > div img {
    width:90px;
    max-width:80%;
    margin-left:auto;
    margin-right:auto;
    display:block;
}

.bardage-avantages > div h4 {
    margin-top:25px;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
    color:#4F6B77;
}

.equipe {
    width:100%;
    display:block;
}

.not-all-width.padding-bottom-smaller {
    padding-bottom:30px;
    padding-top:30px;
}

#gmap {
    height:300px;
    width:100%;
    margin-top:30px;
}

.contact-map {
    display:flex;
    flex-wrap:wrap;
}

.contact-map .contact {
    width:calc(60% - 80px);
    margin-left:0;
    margin-right:auto;
}

.contact-map .map {
    width:40%;
    margin-left:auto;
    margin-right:0;
}

.contact form {
    margin-top:35px;
}

.contact form dl {
    display:flex;
    flex-wrap:wrap;
    position:relative;
}

.contact form dt {
    display:none;
}

.contact form dt#label-label {
    display: block;
    width: calc(100% - 30px);
    margin-top: 10px;
}
.contact form dd.form-before-label {
    display: block;
    width: 25px;
    margin-top: 10px;
}

.contact form dd {
    width:calc(50% - 15px);
    margin-top:20px;
    width:100%;
}

.contact form dd#lastname-element, .contact form dd#phone-element, .contact form dd#email-element {
    margin-left:0;
}

.contact form dd#lastname-element input, .contact form dd#phone-element input, .contact form dd#email-element input {
    width:calc(50% - 15px - 36px);
}

.contact form dd#lastname-element {
    margin-top:0;
}

.contact form dd#message-element {
    margin-left:auto;
    margin-right:0;
    position:absolute;
    top:0;
    right:0;
    margin-top:0;
    width:calc(50% - 15px);
}

.contact form dd#message-element textarea {
    height:180px;
}

.contact form dd#form-element {
    display:none;
}

.contact form #rgpd-label {
    display:block;
}

.contact form input[type=text], .contact form select, .contact form textarea {
    width:calc(100% - 36px);
    padding:14px 18px;
    border:none;
    background:#EAE9E9;
    color:black;
    font-family: Outfit;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: left;
}

.contact form input::placeholder, .contact form select::placeholder, .contact form textarea::placeholder {
    color:#57A005;
    font-family: Outfit;
    opacity:1;
}

.contact form dt#rgpd-label {
    display:block;
    width:calc(100% - 30px);
    order:18;
    color:#4F6B77;
    font-size:15px;
    margin-top:20px;
    text-align:left;
    font-weight:500;
}

.contact form dd.checkboxRGPD {
    order:17;
    width:20px;
    margin-right:10px;
    position:relative;
    margin-top:20px;
}

.contact form dd.checkboxRGPD input {
    width:100%;
}

.contact form dd#hcaptcharesponse-element {
    order:19;
    width:100%;
    margin-top:20px;
}

.contact form dd#send_message-element {
    order:20;
    width:100%;
}

.contact form input[type=submit] {
    min-width:190px;
    padding:10px 18px;
    margin-left:auto;
    margin-right:auto;
    background:#EAE9E9;
    border:none;
    border-radius:0;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.05em;
    text-align: center;
    color:#57A005;
    display:block;
    cursor:pointer;
    transition:0.5s;
}

.contact form input[type=submit]:hover {
    background:#57A005;
    color:white;
}

.legal-page h1 {
    color:var(--color-default);
    text-shadow:none;
}

#tinymce .not-all-width {
    width:calc(100% - 60px);
    padding-left:30px;
    padding-right:30px;
}

#tinymce .image-text > a {
    height:10%;
}

#tinymce .links-pages > div a {
    height:10%;
}

#tinymce .links-pages > div .filter {
    width:0;
}

.mce-content-body [data-mce-selected="inline-boundary"] {
    opacity:0.5;
}

#tinymce .image-text:hover .text {
  width: 50%;
}

#tinymce .image-text:hover .image {
  width: 50%;
}

.categories-photos {
    display:flex;
    flex-wrap:wrap;
    margin-top:30px;
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
}

.categories-photos > div {
    font-family: Outfit;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1em;
    text-align: center;
    color:#ffffff;
    padding:5px 12px;
    border:1px solid white;
    margin-right:30px;
    cursor:pointer;
    transition:0.5s;
    margin-top:20px;
}

.categories-photos > div:last-child {
    margin-right:0;
}

.categories-photos > div.active, .categories-photos > div:hover {
    background:var(--color-default);
    border:1px solid var(--color-default);
    color:black;
}

@media all and (max-width:1600px) {
    :root {
        --width-content: 1050px;
    }
    
    header {
      width: 200px;
      height: calc(100vh - 40px);
      padding: 20px;
    }
    
    header .logo {
      width: 80%;
      margin-left:auto;
      margin-right:auto;
    }
    
    .page-content {
      width: calc(100vw - 240px);
    }
    
    footer {
      padding: 20px calc(((100vw - 240px) - var(--width-content)) / 2);
    }
    
    header .menu > li > ul {
      padding-left: 40px;
    }
    
    header .menu-responsive-container {
      margin-top: 10px;
    }
    
    header .coordonnees {
      margin-top: 20px;
    }
    
    header .container_coord {
        width:calc(100% - 40px);
        padding-left:20px;
        padding-right:20px;
    }
    
    .social-links {
        margin-top: 30px;
    }
    
    .bardage-avantages > div {
        width:calc((100% - 160px) / 5 - 30px);
        height:calc((var(--width-content) - 160px) / 5 - 30px);
        padding:15px;
    }
    
    .bardage-avantages > div img {
        width:70px;
    }
}

@media all and (max-width:1400px) {
    :root {
        --width-content: 850px;
    }
    
    header .menu > li > a, header .menu > li > span {
        line-height: 18px;
        padding-bottom: 4px;
        padding-top: 4px;
    }
    
    .coordonnees > a, .coordonnees > div {
        margin-top:12px;
    }
    
    header .menu > li > ul > li {
        margin-top:5px;
    }
    
    header .menu > li > ul {
        padding: 7px 14px;
    }

    header .menu > li > ul {
        padding-left: 27px;
    }
    
    .social-networks-wall-root .block-sortable-active .block-sortable-item {
      width: calc(100% / 3 - 10px) !important;
      margin-left: calc(10px * 3 / 4);
      margin-right: calc(10px * 3 / 4);
      margin-top: 10px;
    }
    
    .links-pages > div h3 {
      font-size:18px;
      line-height:25px;
    }
    
    .photo-gallery-photos li {
        width:calc((100% - 120px) / 4);
        height:calc((var(--width-content) - 120px) / 4);
        margin-left:20px;
        margin-right:20px;
        margin-top:40px;
    }
    
    .flex-gallery > div {
        width:calc(50% - 20px);
        margin-left:20px;
        margin-right:20px;
    }
    
    .flex-gallery .photo-gallery-photos li {
        width:calc((100% - 40px) / 2);
        height:calc(((var(--width-content) * 0.5 - 20px) - 40px) / 2);
        margin-left:20px;
        margin-right:20px;
        margin-top:40px;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(4n + 1) {
        margin-left:20px;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(4n) {
        margin-right:20px;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(-n + 4) {
        margin-top:40px;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(2n + 1) {
        margin-left:0;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(2n) {
        margin-right:0;
    }
    
    .flex-gallery .photo-gallery-photos li:nth-child(-n + 2) {
        margin-top:0;
    }
    
    .bardage-avantages > div {
        width:calc((100% - 80px) / 5 - 30px);
        height:calc((var(--width-content) - 80px) / 5 - 30px);
        margin-left:10px;
        margin-right:10px;
        margin-top:20px;
    }
    
    .bardage-avantages > div h4 {
        margin-top:12px;
        font-size: 16px;
        line-height: 19px;
    }
    
    .contact-map .contact {
      width: calc(60% - 40px);
    }
}

@media all and (max-width:1200px) {
    :root {
        --width-content: 700px;
    }
    
    .image-text-2 .image {
        width: 47%;
    }
    
    .image-text-2 .text {
      width: 47%;
    }
    
    .bardage-avantages > div img {
        width:40px;
    }
    
    .bardage-avantages > div h4 {
        margin-top:8px;
        font-size: 14px;
        line-height: 16px;
    }
    
    .contact form dd#lastname-element input, .contact form dd#phone-element input, .contact form dd#email-element input {
        width:calc(100% - 36px);
    }
    
    .contact form dd#message-element {
        position:relative;
        margin-top:20px;
        width:100%;
    }
    
    .image-text-2 {
        display:block;
        height:max-content;
    }
    
    .image-text-2 .image {
        width:100%;
        height:calc(var(--width-content) * 6 / 16);
    }
    
    .image-text-2 .text {
        width:100%;
        height:max-content;
        margin-top:30px;
    }
    
    .image-text-2.text-first .text {
        margin-top:0;
        margin-bottom:30px;
    }
}

@media all and (max-width:992px) {
    :root {
        --width-content: 90vw;
    }

    header {
        width: calc(100vw - 40px);
        height: max-content;
        min-height: 53px;
        padding:5px 20px;
    }

    header .logo {
        width:90px;
        position:absolute;
        left:50%;
        transform:translate(-50%,0);
    }

    header .container-phone {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 20px;
    }

    header .container-phone .fa {
        color: var(--color-default);
    }

    .menu-responsive-button-container {
      display: block;
      position:absolute;
      right:20px;
      top: 19px;
    }

    .menu-responsive-button-container .menu-responsive-button {
      margin-right: 0;
    }

    .menu-responsive-button {
      background: url("/media/icons/menu.png") no-repeat;
      background-size: contain;
      background-position: center;
      height: 30px;
      width: 30px;
      border: none;
      border-radius:0;
    }

    .menu-responsive-button span {
      display: none;
    }

    header .coordonnees, header .social-links {
        display:none;
    }

    header .menu-responsive-container {
        margin-top:0;
    }

    header .menu {
        margin-top: 53px;
    }

    header .menu > li:first-child {
        margin-top:10px;
    }

    header .menu > li:last-child {
        margin-bottom:10px;
    }

    header .menu > li > a, header .menu > li > span {
        font-size:16px;
        line-height:20px;
        padding-top:5px;
        padding-bottom:5px;
    }

    header .menu > li.menu-has-children::after {
        content:"";
    }

    .menu-responsive-active li.menu-has-children > a::after, .menu-responsive-active li.menu-has-children > span::after {
        content:"";
    }

    header .menu > li > ul {
        display:block;
        position:relative;
        top:0;
        left:0;
        transform:none;
        padding-top:0;
    }

    header .menu > li > ul > li > a, header .menu > li > ul > li > span {
      font-size: 16px;
      line-height: 18px;
      padding: 2px 0;
    }

    .page-content {
        padding-top:63px;
        min-height:calc(100vh - 63px);
        width:100vw;
    }

    footer {
      padding: 20px calc((100vw - var(--width-content)) / 2);
    }

    footer > .menu {
        display:block;
    }

    footer > .menu li {
        margin-left:auto;
        margin-right:auto;
        width:max-content;
    }

    .slider-bullet.home {
      height: calc(100vh - 63px);
    }

    .not-all-width {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .image-text {
        display:block;
        height:max-content;
    }

    .image-text .image {
        width:100%;
        height:calc(var(--width-content) * 6 / 16);
    }

    .image-text .text {
        width:100%;
        height:300px;
    }

    .image-text:hover .image {
        width:100%;
    }

    .image-text:hover .text {
        width:100%;
        height:350px;
    }

    .image-text .text .center {
        max-width:90%;
    }

    .image-text .text .center h2, .image-text .text .center h3 {
        text-align:center;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(-n+3) {
      margin-top: 20px;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(-n+2) {
      margin-top: 20px;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item:first-child {
      margin-top: 0;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(3n) {
      margin-right: 0;
    }

    .social-networks-wall-root .block-sortable-active .block-sortable-item:nth-child(3n + 1) {
      margin-left: 0;
    }

    .links-flex {
        display:block;
    }

    .links-pages > div {
        width:calc((100% - 45px) / 2);
        height:calc((var(--width-content) - 45px) / 2 * 1.17);
    }

    .links-pages > div:nth-child(4n + 1) {
        margin-left:45px;
    }

    .links-pages > div:nth-child(-n + 4) {
        margin-top:45px;
    }

    .links-pages > div:nth-child(2n + 1) {
        margin-left:0;
    }

    .links-pages > div:nth-child(-n + 2) {
        margin-top:0;
    }

    .photo-gallery-photos li {
        width:calc((100% - 40px) / 2);
        height:calc((var(--width-content) - 40px) / 2);
    }

    .photo-gallery-photos li:nth-child(4n + 1) {
        margin-left:20px;
    }

    .photo-gallery-photos li:nth-child(4n) {
        margin-right:20px;
    }

    .photo-gallery-photos li:nth-child(-n + 4) {
        margin-top:40px;
    }

    .photo-gallery-photos li:nth-child(2n + 1) {
        margin-left:0;
    }

    .photo-gallery-photos li:nth-child(2n) {
        margin-right:0;
    }

    .photo-gallery-photos li:nth-child(-n + 2) {
        margin-top:0;
    }

    .flex-gallery {
        display:block;
    }

    .flex-gallery > div {
        width:100%;
        margin-left:0;
        margin-right:0;
        margin-top:100px;
    }

    .flex-gallery > div:first-child {
        margin-top:0;
    }

    .flex-gallery .photo-gallery-photos li {
        height:calc((var(--width-content) - 40px) / 2);
    }

    .bardage-avantages {
        display:block;
    }

    .bardage-avantages > div {
        width:150px;
        height:150px;
        margin-left:auto;
        margin-right:auto;
    }

    .bardage-avantages > div:nth-child(5n + 1) {
        margin-left:auto;
    }

    .bardage-avantages > div:nth-child(5n) {
        margin-right:auto;
    }

    .bardage-avantages > div:nth-child(-n + 5) {
        margin-top:40px;
    }

    .bardage-avantages > div:first-child {
        margin-top:0;
    }

    .bardage-avantages > div img {
        width:80px;
    }

    .bardage-avantages > div h4 {
        margin-top:25px;
        font-size: 18px;
        line-height: 23px;
    }

    .contact-map {
        display:block;
    }

    .contact-map .contact {
        width:100%;
    }

    .contact-map .map {
        width:100%;
        margin-top:50px;
    }

    .slider-content h1 {
        font-size: 40px;
    }
}

@media all and (max-width:600px) {
    h1 {
      font-size: 30px;
      line-height: 35px;
    }

    h2 {
      font-size: 15px;
      line-height: 19px;
    }

    h3 {
      font-size: 23px;
      line-height: 29px;
    }

    .important-link {
      padding: 6px 16px;
      max-width: calc(100% - 60px);
      font-size: 16px;
      line-height: 20px;
    }

    .links-pages {
        display:block;
    }

    .links-pages > div {
        width:100%;
        height:calc(var(--width-content) * 1.17);
        margin-left:0;
    }

    .links-pages > div:nth-child(4n + 1) {
        margin-left:0;
    }

    .links-pages > div:nth-child(-n + 4) {
        margin-top:45px;
    }

    .links-pages > div:nth-child(2n + 1) {
        margin-left:0;
    }

    .links-pages > div:nth-child(-n + 2) {
        margin-top:45px;
    }

    .links-pages > div:first-child {
        margin-top:0;
    }

    .photo-gallery-photos {
        display:block;
    }

    .photo-gallery-photos li, .flex-gallery .photo-gallery-photos li {
        width:100%;
        height:var(--width-content);
        margin-left:0;
        margin-right:0;
    }

    .flex-gallery .photo-gallery-photos li:nth-child(-n+2) {
      margin-top: 40px;
    }

    .flex-gallery .photo-gallery-photos li:first-child {
      margin-top: 0;
    }

    .photo-gallery-photos li:nth-child(4n + 1) {
        margin-left:0;
    }

    .photo-gallery-photos li:nth-child(4n) {
        margin-right:0;
    }

    .photo-gallery-photos li:nth-child(-n + 2) {
        margin-top:40px;
    }

    .photo-gallery-photos li:first-child {
        margin-top:0;
    }

    .slider-content h1 {
        font-size: 30px;
    }
}




