@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/*** BASE ***/
:root {
    --color-1: #000711;
    --color-2: #0164c1;
    --color-3: #232323;
    --color-4: #ffffff;
    --color-5: #ff3434;
    --color-6: #208a15;
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-3);
    word-wrap: anywhere;
}

#page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



/*** ELEMENTS DEFAULT ***/
a {text-decoration: none;}
ul {list-style-type: none;}
img {width: 100%; display: block;}



/*** SUPER CLASS ***/
.row {display: flex; flex-direction: row;}
.col {display: flex; flex-direction: column;}
.txt-center {text-align: center;}
.txt-left {text-align: left;}
.txt-right {text-align: right;}
.txt-justify {text-align: justify;}
.m-auto {margin-left: auto; margin-right: auto;}
.fs-10 {font-size: 10px;}
.fs-12 {font-size: 12px;}
.fs-14 {font-size: 14px;}
.fs-16 {font-size: 16px;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.line-height-normal{line-height: 1.2;}
.max-width-350 {max-width: 350px;}
.max-width-650 {max-width: 650px;}
.page-max-width-650 {max-width: 650px; margin-left: auto; margin-right: auto;}
.page-max-width-1000 {max-width: 1100px; margin-left: auto; margin-right: auto;}

.w-10 {width: 10%;}
.w-20 {width: 20%;}
.w-30 {width: 30%;}
.w-40 {width: 40%;}
.w-50 {width: 50%;}
.w-60 {width: 60%;}
.w-70 {width: 70%;}
.w-80 {width: 80%;}
.w-90 {width: 90%;}

.white-link {color: var(--color-4); transition: color 125ms ease;}
.white-link:hover {color: var(--color-2);}

.white-link-2 {color: var(--color-4); transition: color 125ms ease;}
.white-link-2:hover {color: var(--color-1);}

.separator-x {
    width: 1px;
    height: 1em;
    background-color: var(--color-4);
    transition: height 200ms ease-in-out, width 200ms ease-in-out, background-color 200ms ease-in-out;
}



/*** HEADER & FOOTER ***/
header, footer {
    font-size: 14px;
    color: var(--color-4);
    background-color: var(--color-1);
}
.logo-site {
    width: 125px;
    min-width: 125px;
    margin-right: 10%;
}



/*** HEADER ***/
header {
    position: sticky;
    z-index: 100;
    top: 0;
    left: 0;
}

header .container {
    padding: 1rem 0 1rem 3rem;
    align-items: center;
    justify-content: space-between;
}



/*** HEADER MENU ***/
header .col-1 {
    width: 100%;
    margin-right: 3rem;
}

header ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

header .col-2 ul {
    flex-wrap: nowrap;
}

header li:not(.separator-x) {
    padding: 0.5rem 1rem;
}

header li:last-child {
    padding-right: 0;
}

header a {
    color: var(--color-4);
}

header:hover .separator-x {
    width: 1px;
    height: 0.5em;
    background-color: var(--color-2);
}

header .col-2 {
    align-self: stretch;
}

header .col-2 ul {
    height: 100%;
}

header .col-2 li {
    width: max-content;
    height: calc(100% + 2rem);
}

header .col-2 li:not(.separator-x) {
    padding: 0;
}

header .col-2 li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% + 2rem);
    padding: 0.5rem 1.5rem;
    align-items: center;
    justify-content: center;
    background-color: var(--color-2);
}



/*** MAIN ***/
main .container {
    padding: 0 3rem;
}

h1 {
    max-width: 1024px;
    margin: 3rem auto;
    padding-bottom: 1.5rem;
    position: relative;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 5px;
}

h1::after {
    content: "";
    width: 50px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    background-color: var(--color-2);
}

.title-anim {
    opacity: 0;
    animation: title-anim 1000ms ease-out forwards;
}

.big-bg-title-anim {
    opacity: 1;
    animation: big-bg-title-anim 1000ms ease-out forwards;
}

.content-anim {
    opacity: 0;
    animation: content-anim 1000ms ease-out 500ms forwards;
}



/*** ACCUEIL ***/
#accueil .big-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("./../img/pages/home.jpg");
}

#accueil .big-bg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.500);
}

#accueil .big-bg > div {
    width: 100%;
    padding: 0 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

#accueil h1 {
    /* max-width: none; */
    padding: 0 1rem;
    color: var(--color-4);
    font-size: 60px;
    font-weight: 700;
}

#accueil h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--color-4);
}

#accueil .big-bg h1::after {
    content: none;
}

@keyframes big-bg-title-anim {
    0% {
        opacity: 0;
        transform: translate(calc(5vmin - 50%), -50%);
    } 100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#accueil .container {
    width: 100%;
    margin-top: 100vh;
    position: relative;
    z-index: 1;
    margin-top: 100vh;
    padding-top: 3rem;
    padding-bottom: 6rem;
    background-color: var(--color-4);
}

#accueil p {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
    text-align-last: center;
}

#accueil p:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

#accueil p::after {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    background-color: var(--color-2);
}

#accueil p:last-child::after {
    content: none;
}

#accueil .logo-slider {
    margin-top: 3rem;
}

#accueil .subtitle {
    margin-bottom: 0.75rem;
    align-items: center;
}

#accueil h3 {
    font-size: 26px;
    font-weight: 400;
}

#accueil .subtitle div {
    height: 1px;
    margin: 0 5rem;
    flex-grow: 1;
    background-color: var(--color-2);
}

#accueil .slider {
    overflow: hidden;
}

#accueil .logo-item {
    width: 0;
    height: 100px;
    flex-shrink: 0;
    position: relative;
    margin-right: 2rem;
    transition: filter 125ms linear;
}

#accueil .slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/*** FORMULAIRES ***/
.form-container {
    margin-bottom: 3rem;
}

.form-container .item {
    margin-bottom: 0.75rem;
}
.form-container .item:last-child {
    margin-bottom: 0;
}

.form-container .item .left {
    width: 33.333%;
}

.form-container .item .right {
    width: 66.666%;
}

.form-container label {
    display: block;
    width: 100%;
    padding: 0.3rem 0;
    
}

.form-container textarea {
    resize: vertical;
}

.form-container .input-form {
    display: block;
    width: 100%;
    padding: 0.3rem 0.75rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    text-overflow: ellipsis;
    color: var(--color-3);
    background-color: transparent;
    border-radius: 3px;
    border: 1px solid var(--color-3);
    transition: border-color 125ms linear, box-shadow 125ms linear;
}

.form-container .input-form:focus {
    outline: none;
    border-color: var(--color-2);
    box-shadow: 0 0 4px 2px var(--color-2);
}

.form-container .input-form::placeholder {
    opacity: 1;
}

.form-container .input-form-btn {
    width: min(150px, 100%);
    position: relative;
    padding: 0.5rem 0.75rem;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: var(--color-4);
    background-color: var(--color-2);
    border-radius: 3px;
    border: 1px solid var(--color-2);
    transition: background-color 125ms linear, border-color 125ms linear;
}

.form-container .input-form-btn:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
}

.form-container .cv {
    margin-bottom: 0.75rem;
}

.form-container .cv input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.form-container .cv .error, 
.form-container .cv .error {
    margin-top: 0.2rem;
}

.form-container .cv .format-error, 
.form-container .cv .size-error {
    display: none;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-5);
}

.form-container .cv .progress {
    display: none;
    /* width: 0px; */
    /* height: max-content; */
    margin-top: 0.75rem;
    font-size: 14px;
    text-align: center;
    color: var(--color-4);
    background-color: var(--color-2);
    border-radius: 3px;
}

.form-container .conditions {
    float: left;
    position: relative;
    top: 3px;
    margin-right: 0.5rem;
}

.form-container .asterix {
    margin-top: 0.5rem;
}

span.important {
    color: var(--color-5);
}

.form-container .form-message {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    color: var(--color-4);
    border-radius: 3px;
}

.form-container .form-success {
    display: none;
    color: var(--color-6);
    background-color: rgba(33, 138, 21, 0.25);
}

.form-container .form-error, .form-container .form-error-mail {
    display: none;
    color: var(--color-5);
    background-color: rgba(255, 51, 51, 0.25);
}

.form-container .form-message > div {
    align-items: flex-start;
    justify-content: space-between;
}

.form-container .form-message span {
    font-weight: 500;
}

.form-container .form-message button {
    margin-left: 1rem;
    color: inherit;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.form-container .form-message i {
    font-size: 1.5rem;
}

p.msg-remaining-chr {
    margin-top: 0.2rem;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    text-align: right;
}

p.msg-remaining-chr .data {
    font-weight: 400;
}

p.msg-remaining-chr .data.warning {
    color: var(--color-5);
}

p.missing-data {
    display: none;
    margin-top: 0.2rem;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-5);
}

p.missing-data span {
    color: var(--color-5);
    text-decoration: underline;
    cursor: pointer;
}

.email-frame {
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.email-frame iframe {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid var(--color-2);  
}

/*** CONTACT ***/
#contact h2 {
    max-width: max-content;
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    color: var(--color-2);
}

#contact h2::after {
    content: "";
    width: 25px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    background-color: var(--color-3);
}

#contact .col-1 h2 {
    margin-left: 33.333%;
}

#contact .col-container {
    justify-content: center;
}
#contact .col-1 {
    width: 65%;
    margin-right: 2rem;
}

#contact .col-2 {
    width: 35%;
}

#contact .head {
    align-items: center;
    font-size: 14px;
    padding: 0.3rem 1rem;
    margin-bottom: 0.75rem;
    border-radius: 3px;
    border: 1px solid var(--color-2);
    background-color: #f6f6f6;
}

#contact h3 {
    font-size: 14px;
    font-weight: 400;
}

#contact .head button {
    margin-right: 0.5rem;
    cursor: pointer;
    background-color: transparent;
    border: none;
}

#contact .head button:hover {
    color: var(--color-2);
}

#contact button.plus {
    display: none;
}

#contact button.minus {
    display: block;
}

#contact .content {
    padding-left: 1rem;
}

#contact .content address {
    font-style: normal;
}

#contact .content a {
    margin-bottom: 0.75rem;
    align-items: center;
    color: var(--color-3);
}

#contact .content a:hover {
    color: var(--color-2);
}

#contact .content i {
    margin-right: 0.5rem;
    color: var(--color-2);
}

#contact .content a:hover i {
    color: var(--color-3);
}

#contact .content strong {
    color: var(--color-2);
    font-weight: 400;
}

#contact .google-map {
    width: 100%;
    height: 350px;
}

@keyframes title-anim {
    0% {
        opacity: 0;
        transform: translateX(-5vmin);
    } 100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes content-anim {
    0% {
        opacity: 0;
        transform: translateY(5vmin);
    } 100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*** PLAQUETTE ***/
#porte-entree .container,
#amenagement .container,
#fenetres .container,
#volets .container,
#realisations .container {
    margin-bottom: 6rem;
}

.plaquette .item {
    margin-bottom: 6rem;
    align-items: stretch;
    justify-content: space-between;
}

.plaquette .item:last-child {
    margin-bottom: 0;
}

.plaquette .item.reverse {
    flex-direction: row-reverse;
}

    /* BK IMAGE */
.plaquette .bk-image-container {
    margin-right: 2rem;
    align-items: stretch;
    justify-content: space-between;
}

.plaquette .item.reverse .bk-image-container {
    margin-right: 0;
    margin-left: 2rem;
}

.plaquette .bk-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    /* background-size: cover; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.plaquette .bk-image-container h2 {
    display: none;
    position: relative;
    margin-bottom: 1rem;
    padding: 0 25px;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
}

.plaquette .bk-image-container h2::before,
.plaquette .bk-image-container h2::after {
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--color-2);
}

.plaquette .bk-image-container h2::before {
    left: 0;
}

.plaquette .bk-image-container h2::after {
    right: 0;
}

    /* TXT CONTENT */
.plaquette .txt-content h2 {
    position: relative;
    margin-bottom: 1rem;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 3px;
}

.plaquette .txt-content h2 {
    padding-left: 20px;
    padding-right: 0;
    text-align: left;
}

.plaquette .item.reverse .txt-content h2 {
    padding-left: 0;
    padding-right: 20px;
    text-align: right;
}

.plaquette .txt-content h2::before {
    content: "";
    width: 5px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--color-2);
}

.plaquette .txt-content h2::before {
    left: 0;
    right: auto;
}

.plaquette .item.reverse .txt-content h2::before {
    left: auto;
    right: 0;
}

.plaquette .txt-content p > strong {
    padding: 0 3px;
    font-weight: 400;
    line-height: 1.8;
    color: #0164c1;
    background-color: rgba(1, 100, 193, 0.100);
    border-radius: 3px;
}

.plaquette .btn-container {
    margin-top: 1rem;
    position: relative;
}

.plaquette .btn-container::before, 
.plaquette .btn-container::after {
    content: "";
    width: calc(100% / 2 - 250px / 2 - 1rem);
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: var(--color-2);
}

.plaquette .btn-container::before {
    left: 0;
    right: auto;
}

.plaquette .btn-container::after {
    left: auto;
    right: 0;
}

.plaquette .input-form-btn {
    display: block;
    width: min(250px, 100%);
    margin: 0 auto;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-2);
    border-radius: 3px;
    border: 1px solid var(--color-2);
    transition: background-color 125ms linear, border-color 125ms linear;
}

.plaquette .input-form-btn:hover {
    background-color: var(--color-3);
    border-color: var(--color-3);
}

.plaquette .input-form-btn a {
    display: block;
    position: relative;
    padding: 0.5rem 0.75rem;
    color: var(--color-4);
    transition: color 125ms linear;
}

.plaquette .input-form-btn a::after {
    content: "";
    width: calc(100% - 1rem * 2);
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    background-color: var(--color-4);
}

.plaquette .input-form-btn a:last-child:after {
    content: none;
}

.plaquette .input-form-btn a:hover {
    color: var(--color-2);
}

.plaquette .input-form-btn a:last-child {
    border-bottom: none;
}

.plaquette .input-form-btn a.missing {
    background-color: red;
}



/*** IMG SLIDER ***/
.img-slider {
    height: 500px;
    align-items: center;
    justify-content: space-between;
}

.img-slider .slider-arrow {
    width : 0;
    height : 0;
    border-right : 15px solid transparent;
    border-bottom : 15px solid var(--color-2);
    border-left : 15px solid transparent;
    cursor: pointer;
}

.img-slider .slider-arrow.left {
    transform: rotate(-90deg);
}

.img-slider .slider-arrow.right {
    transform: rotate(90deg);
}

.img-slider .slider-arrow.left:hover {
    transform: translateX(-2px) scale(1.25) rotate(-90deg);
    transition: 125ms linear all;
}

.img-slider .slider-arrow.right:hover {
    transform: translateX(2px) scale(1.25) rotate(90deg);
    transition: 125ms linear all;
}

.img-slider .slider-content {
    height: 100%;
    margin: 0 0.5rem;
    border-radius: 0.5rem;
    flex-grow: 1;
    overflow: hidden;
    position: relative;
}

.img-slider .slider-content .slider-item {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}


/*** FOOTER ***/
footer {
    position: relative;
    z-index: 99;
}

footer .container {
    padding: 1rem 3rem;
}

footer .logo-site {
    margin: 0;
}

footer .top {
    align-items: center;
    justify-content: space-between;
}

footer .center {
    width: 100%;
}

footer address {
    flex-wrap: wrap;
    font-style: normal;
    justify-content: space-evenly;
}

footer address > div {
    margin: 0.5rem 1rem;
}

footer .center a {
    align-items: center;
    justify-content: center;
}

footer i {
    margin-right: 1rem;
}

footer i.big {
    font-size: 1.5em;
}

footer i.small {
    font-size: 1em;
}

footer .logo-partenaire {
    width: 60px;
    min-width: 60px;
}

footer .bottom {
    padding-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

footer .bottom button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

footer .bottom button, footer .bottom p {
    margin: 0 1rem;
}

footer .bottom p {
    display: flex;
    align-items: center;
}

footer .bottom:hover .separator-x {
    width: 1px;
    height: 0.5em;
    background-color: var(--color-2);
}

#copyright {
    margin: 0 3px;
    display: inline-block;
    cursor: pointer;
    user-select: none;
    transition: all 250ms linear;
}



/*** MODAL ***/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 7, 17, 0.500);
    z-index: 900;
}

.modal-container {
    display: flex;
    flex-direction: column;
    width: calc(100% - 1rem * 2);
    max-width: 600px;
    max-height: 75vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 0.5rem;
    border: 3px solid var(--color-3);
    overflow: hidden;
}

.modal-header {
    position: relative;
    padding: 0.5rem 1rem;
    background-color: var(--color-2);
}

.modal-btn-close {
    width: 2rem;
    height: 2rem;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 2px solid var(--color-4);
    color: var(--color-4);
    cursor: pointer;
    transition: color 125ms ease, border-color 125ms ease;
}

.modal-btn-close:hover {
    color: var(--color-3);
    border-color: var(--color-3);
}


.modal-btn-close i {
    font-size: 20px;
}

.modal-header h3 {
    color: var(--color-4);
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.modal-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
}

.modal-footer {
    padding: 0.25rem 1rem;
    background-color: var(--color-2);
}

.modal-footer * {
    color: var(--color-4);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
}

.modal-body .modal-content {
    margin-bottom: 1.5rem;
}

.modal-body .modal-content:last-child {
    margin-bottom: 0;
}

.modal-body .modal-content h4 {
    margin-bottom: 0.25rem;
    font-size: 20px;
    font-weight: 500;
}

.modal-body .modal-content p {
    margin-bottom: 0.5rem;
}

.modal-body .modal-content p:last-child {
    margin-bottom: 0;
}



/*** MEDIA 800px ***/
@media screen and (max-width: 800px) {



    /*** BASE ***/
    body {
        font-size: 14px;
    }



    /*** HEADER & FOOTER ***/
    .logo-site {
        width: 100px;
        min-width: 100px;
        margin-right: 0;
    }



    /*** HEADER ***/
    header .container {
        flex-wrap: wrap;
        padding: 1rem;
    }
    header .col-1 {
        margin-right: 0;
    }
    header .col-2 {
        margin-bottom: -1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        width: calc(100% + 2rem);
    }
    header ul {
        flex-direction: column;
        align-items: center;
    }
    header li:not(.separator-x) {
        width: 100%;
        padding: 0.5rem 0;
    }
    header li.separator-x {
        width: 1rem;
        height: 1px;
    }
    header:hover .separator-x {
        width: 0.5em;
        height: 1px;
        background-color: var(--color-2);
    }
    header a {
        display: block;
        text-align: center;
    }



    /*** MAIN ***/
    main .container {
        padding: 0 1rem;
    }
    .form-container .item {
        flex-wrap: wrap;
    }
    .form-container .item .left {
        width: 100%;
    }
    .form-container .item .right {
        width: 100%;
    }



    /*** ACCUEIL ***/

    #accueil .big-bg > div {
        padding: 0 1rem;
    }
    #accueil h1 {
        font-size: 36px;
    }
    #accueil h2 {
        font-size: 18px;
    }
    #accueil h3 {
        width: 100%;
        position: relative;
        margin-right: 0;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        text-align: center;
    }
    #accueil h3::after {
        content: "";
        width: 50px;
        height: 1px;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, -50%);
        background-color: var(--color-2);
    }
    #accueil .subtitle div {
        display: none;
    }



    /*** CONTACT ***/
    #contact .col-container {
        flex-wrap: wrap;
    }
    #contact .col-1 {
        /* order: 2; */
        width: 100%;
        margin-right: 0;
    }
    #contact .col-2 {
        /* order: 1; */
        width: 100%;
        margin-bottom: 3rem;
    }
    #contact .col-1 h2 {
        margin: 0 auto 1rem auto;
    }
    #contact .head {
        justify-content: center;
    }
    #contact .content a {
        justify-content: center;
        text-align: center;
    }
    #contact .horraires {
        text-align: center;
    }



    /*** PLAQUETTE ***/
    .plaquette .item {
        flex-wrap: wrap;
    }
    .plaquette .w-10,
    .plaquette .w-20,
    .plaquette .w-30,
    .plaquette .w-40,
    .plaquette .w-50,
    .plaquette .w-60,
    .plaquette .w-70,
    .plaquette .w-80,
    .plaquette .w-90 {
        width: 100%;
    }
    .plaquette .bk-image-container {
        height: 300px;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .plaquette .item.reverse .bk-image-container {
        margin-left: 0;
    }
    .plaquette .bk-image-container h2 {
        display: block;
    }
    .plaquette .txt-content h2 {
        display: none;
    }
    .plaquette .btn-container {
        margin-top: 0.5rem;
    }



    /*** FOOTER ***/
    footer .container {
        padding: 1rem 1rem;
    }
    footer .top {
        flex-wrap: wrap;
    }
    footer .logo-site {
        margin: 0 auto;
    }
    footer .center {
        width: 100%;
    }
    footer .logo-partenaire {
        margin: 0 auto;
    }



}

/*** U WAN'T DISPLAY IT IN CALCULATRICE ? ENJOY U CAN DO IT ! ***/
@media screen and (max-width: 250px) {



    /*** HEADER & FOOTER ***/
    .logo-site {
        min-width: auto;
    }



    /*** FOOTER ***/
    footer .logo-partenaire {
        min-width: auto;
    }
    footer .center a {
        flex-wrap: wrap;
    }



}