@charset "utf-8";

/*
Theme Name: MMPJ et Moi
Author: MMPJ et Moi
Description: MMPJ et Moi
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: MMPJ et Moi
*/


/*************************************** RESET ****************************************************/

* {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    border: 0;
    height: auto;
    max-width: 100%;
    vertical-align: bottom;
}


/*************************************** STYLES POUR LANCER LE THEME ****************************************************/

.pr-container {
    max-width: 1250Px;
    margin: 0 auto;
}

header .pr-container {
    padding: 25px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loader {
    width: 75px;
    height: 75px;
    border: 10px solid #c8b180;
    border-top: 11px solid white;
    border-radius: 100%;
    margin: auto;
    animation: spin 1s infinite linear;
    position: absolute;
    inset: 0;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*.blur {*/
/*    filter: blur(5px);*/
/*}*/

.ml-auto {
    margin-left: auto;
}

.btn-full {
    background-color: #c8b180;
    color: white;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #c8b180;
    padding: 10px 25px;
}

.btn-outline {
    background-color: white;
    color: #c8b180;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #c8b180;
    padding: 10px 25px;
}


/*************************************** PAGE AVANTAGES ****************************************************/

@media screen and (min-width: 750px) {
    .pr-avantages .card-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.pr-avantages .card-container {
    text-decoration: none;
}

.pr-avantages .card-header {
    padding: 10px 30px;
    background-color: rgb(var(--color-blue));
}

.pr-avantages .card-body {
    padding: 0;
}

.pr-avantages .card-header .card-title {
    font-family: var(--font-heading-family);
    font-weight: var(--type-bold);
    text-transform: uppercase;

    color: rgb(var(--color-gold));
    text-align: center;
}

.pr-avantages .card-body .card-image {
    display: block;
    max-width: 100%;
}


/*************************************** PAGE CONTACT ****************************************************/

@keyframes fadeEffect {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/*************************************** PAGE TECHNIQUES & REGLEMENTATIONS ****************************************************/
.pr-techniques .card {
    position: relative;
}

.pr-techniques .card .card-image {
    aspect-ratio: 1;
}

.pr-techniques-articles .card-body {
    display: flex;
    flex-direction: column;
    background-color: rgb(var(--color-blue));
    color: rgb(var(--color-beige));
}

.pr-techniques-articles .card-container {
    display: flex;
    flex-direction: column;
}

/*************************************** PAGE ACTUALITES  ****************************************************/


.pr-actualites .card-container {
    cursor: pointer;
}


.pr-actualites .card {
    background-color: white;
}

.pr-actualites .filters .categories,
.pr-actualites .filters .tags {
    display: flex;
    flex-direction: column;
}

.pr-actualites .filters {
    display: flex;
    gap: 30px;
}

.pr-actualites .card .card-header {
    position: relative;
}

.pr-actualites .card .card-btn {
    color: #ae9664;
    font-size: 14px;
}

.pr-actualites .card .card-tags {
    font-family: var(--font-heading-family);
    background: #ba9f77;
    color: white;
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.03em;
    font-weight: var(--type-semi-bold);
    text-transform: uppercase;
    padding: 5px 15px;
    max-width: fit-content;
}
/*************************************** MENU  ****************************************************/

.navbar-container {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: white;
    padding-top: 50px;
    min-height: 100%;
    min-width: 300px;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.navbar-collapse-header,
.navbar-collapse-body {
    padding-inline: 50px;
}

.navbar-collapse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-collapse-header .navbar-header-title {
    color: #303030;
    font-size: 25px;
    line-height: 40px;
    text-transform: uppercase;
}

.navbar-collapse-header form button {
    border: none;
    background-color: white;
    color: #ae9664;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
}

.navbar-collapse-footer {
    margin-top: auto;
}

.navbar-collapse ul {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.navbar-collapse li a {
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    color: #303030;
    transition: all ease 0.3s;
}

.navbar-collapse li:hover::after {
    width: 50%;
}

.navbar-collapse li::after {
    transition: all ease 0.3s;
    content: "";
    display: block;
    width: 25px;
    height: 1px;
    background-color: #a4a5a7;
    margin-top: 5px;
}

.navbar-collapse-footer button {
    width: 100%;
    border: none;
    color: white;
    background-color: #ae9664;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding-block: 20px;
    cursor: pointer;
}

.navbar-expand {
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: inherit;
    color: white;
    cursor: pointer;
    font-size: 24px;
}

.main-navigation {
    display: flex;
    gap: 25px;
}

.main-navigation .searchform input {
    border: none;
    padding: 10px 15px;
}

.main-navigation .searchform label {
    color: white;
    font-size: 24px;
}

.navbar-buttons-clientArea {
    border: 1px solid white;
    background-color: white;
    color: #3f3f3f;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 25px;
}

.header {
    background-image: url('assets/img/header.webp');
    background-repeat: no-repeat;
    background-size: cover;
}


/*************************************** FOOTER ****************************************************/

footer .footer-bar {
    background-color: #ba9f77;
    padding-block: 5px
}

footer .footer-bar .pr-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-bar .copyrights {
    color: white;
    font-weight: 300;
    font-size: 10px;
}

footer #menu-footer li a {
    color: white;
    font-weight: 300;
}

footer .footer-partners {
    background-color: white;
    padding-block: 35px;
}

footer .footer-partners-list li img {
    height: 60px;
}

footer .footer-partners .pr-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

footer .footer-partners .partner-description {
    text-align: center;
    font-size: 12px;
}

footer .footer-partners .footer-informations {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
}

footer .footer-partners .footer-partners-list .partner-social-media {
    display: flex;
    gap: 15px;
}

footer .footer-partners .footer-partners-list .partner-social-media a {
    color: #c8b180;
}

footer .footer-partners .footer-partners-list {
    display: flex;
    gap: 70px;
}

footer .footer-partners .footer-partners-list li {
    display: flex;
    align-items: center;
    gap: 25px;
}


/*************************************** SINGLE PAGE ****************************************************/
.single-avantage .card {
    padding: 25px;
    background-color: white;
}

.single-avantage .card-body {
    color: #303030;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
}


/*************************************** LIKE ****************************************************/

.buttons_like_container button {
    background-color: white;
    border: 1px solid #ae9664;
    color: #ae9664;
    padding: 10px 25px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all ease 0.3s;
}

/*************************************** COMMENTS ****************************************************/

.comments-area {
    display: flex;
    flex-direction: column;
}

.comment-list {
    display: flex;
    flex-direction: column;
}

.comment-list li:last-child::after {
    content: "";
    width: 0;
    margin-block: 0;
    height: 0;
    display: none;
}

.comment-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.logged-in-as {
    display: none;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.comment-reply-title {
    margin-bottom: 15px;
}

.comment-form input.submit {
    color: white;
    font-size: 16px;
    font-weight: 700;
    background-color: #303030;
    padding: 5px 35px;
    max-width: fit-content;
    border: none;
}


/*************************************** HOME PAGE ****************************************************/

.card-avantages .card-body img {
    min-width: 100%;
    object-fit: cover;
}

/*************************************** E-BOUTIQUE ****************************************************/
.pr-eboutique .card {
    aspect-ratio: 1;
}

.pr-eboutique .card .card-body {
    position: relative;
}

.pr-eboutique .card-image-full {
    object-fit: cover;
    aspect-ratio: 1;
    height: 100%;
    width: 100%;
}

.pr-eboutique .card .card-body .card-image-container {
    background-color: white;
    padding: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 50%;
    min-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*************************************** E-BOUTIQUE ****************************************************/

.swiper-techniques {
    width: 100%;
}
/*************************************** ESPACE PERSONNEL ****************************************************/

.pr-espace .card-title {
    color: #303030;
    font-weight: 300;
    font-size: 21px;
    margin-bottom: 15px;
}

.pr-espace hr {
    margin-bottom: 35px;
    border: 1px solid #DED0B3;
}


/* .pr-espace form {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 35px;
} */

table {
    width: 100%;
}

tbody {
    border: 0;
}

.section-group {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr;
}

.section-group .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.section-group .card-grid .card i {
    font-size: 50px;
}

.section-subgroup-child ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7.5px;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-gap-small {
    gap: 25px;
}

.flex-gap-large {
    gap: 75px;
}

.margin-bottom-small {
    margin-bottom: 25px;
}

.margin-bottom-large {
    margin-bottom: 75px;
}

.none {
    display: none !important;
}

@media screen and (min-width: 750px) {
    .pr-contact .staff {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 64px;
    }
}

.announcement-bar {
    text-align: center;
    font-size: 14px;
    padding: 16px;
}

.datatable-wrapper {
    margin-block: 25px;
}

.flex-basis-33 {
    flex-basis: 33%;
}