/* fonts */
@font-face {
    font-family: 'Nunito Sans';
    src: url('../fonts/NunitoSans-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* resetting css */
* {
    margin: 0px;
    padding: 0px;
}

/* stting standard styles for elements */
html {
    font-size: 16px;
}

body {
    background-color: white;
}

.bodyhidden {
    overflow: hidden;
}


/**** strat burger menu ******/
#burger-toggle {
    position: absolute;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    opacity: 0;
}

#burger-toggle:checked~.menu {
    opacity: 1;
    visibility: visible;
}

#burger-toggle:checked~.menu .menu-nav-link span div,
#burger-toggle:checked~.menu img,
#burger-toggle:checked~.menu .title p {
    transform: translateY(0);
    transition: 1.2s 0.1s cubic-bezier(0.35, 0, 0.07, 1);
}

#burger-toggle:checked~.menu .image-link:nth-child(1) img {
    transition-delay: 0.18s;
}

#burger-toggle:checked~.menu .image-link:nth-child(2) img {
    transition-delay: 0.26s;
}

#burger-toggle:checked~.menu .image-link:nth-child(3) img {
    transition-delay: 0.34s;
}

#burger-toggle:checked~.menu .image-link:nth-child(4) img {
    transition-delay: 0.42s;
}

#burger-toggle:checked~.burger-menu .line::after {
    transform: translateX(0);
}

#burger-toggle:checked~.burger-menu .line:nth-child(1) {
    transform: translateY(calc(var(--burger-menu-radius) / 5)) rotate(45deg);
}

#burger-toggle:checked~.burger-menu .line:nth-child(2) {
    transform: scaleX(0);
}

#burger-toggle:checked~.burger-menu .line:nth-child(3) {
    transform: translateY(calc(var(--burger-menu-radius) / -5)) rotate(-45deg);
}

.burger-menu {
    --burger-menu-radius: 4em;
    position: absolute;
    right: 0;
    z-index: 100;
    display: block;
    width: var(--burger-menu-radius);
    height: var(--burger-menu-radius);
    outline: none;
    cursor: pointer;
}

.burger-menu .line {
    position: absolute;
    left: 25%;
    width: 50%;
    height: 3px;
    background: #05254A;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
}

.burger-menu .line:nth-child(1) {
    top: 30%;
}

.burger-menu .line:nth-child(2) {
    top: 50%;
}

.burger-menu .line:nth-child(3) {
    top: 70%;
}

.burger-menu .line::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color-darker);
    transform: translateX(-100%);
    transition: 0.25s;
}

.burger-menu .line:nth-child(2)::after {
    transition-delay: 0.1s;
}

.burger-menu .line:nth-child(3)::after {
    transition-delay: 0.2s;
}

.burger-menu:hover .line::after {
    transform: translateX(0);
}

/****  end burger menu ******/

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0px !important;
}

/**********nav************/
header {
    padding: 20px 0;
    background-color: white;
    position: relative;
    z-index: 10;
    padding: 20px 0%;
}

header .logo {
    width: 130px!important;
    height: auto!important;
}

.header-height {
    height: 100vh;
    background-color: white;
}

.link-nav {
    display: none;
}

.link-nav a {
    font-family: 'Acto';
    font-weight: 500;
    line-height: 32px;
    position: relative;
    padding-bottom: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.link-nav a:hover {
    color: #a0978a;
}

/***under line animation link nav ***/

.link-nav a::before {
    transition: 300ms;
    height: 3px;
    content: "";
    position: absolute;
    top: 100%;
    background-color: #a0978a;
}

.link-nav a::before {
    width: 0%;
    bottom: 10px;
}

.link-nav a:hover::before {
    width: 100%;
}

.navbar-toggle {
    float: right;
}

nav {
    position: relative;
}

.link-nav {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: 100vh;
}


.link-nav a {
    color: black;
    margin: 10px;
    display: block;
}

.disply {
    display: block;
}

/***********main*******************/
.spacer-main {
    height: 50px;
}

main {
    background-image: url(../media/background-para-main-gold.png);
    background-repeat: no-repeat;
    background-size: 50vw;
    background-position: left bottom;
    position: relative
}
main.main-home {
    background-image: unset;
}

.background-gradient-main {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.394), rgba(102, 102, 102, 0));
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
}

.image-ben-play {
    width: 60px;
}

.link-social-media img {
    width: 50px;
}

.link-social-media svg #back-facebook,
.link-social-media svg #back-twitter,
.link-social-media svg #back-instagram {
    transition: 0.5s;
}

.link-social-media svg #Facebook:hover,
.link-social-media svg #Twitter:hover,
.link-social-media svg #Instagram:hover {
    color: white;
}

.link-social-media svg #back-facebook:hover,
.link-social-media svg #back-twitter:hover,
.link-social-media svg #back-instagram:hover {
    fill: #a0978a;
}

.link-social-media svg {
    width: 50px;
}

.div-content-main {
    padding: 0%;
    position: relative;
    z-index: 10;
}

.title-main-home {
    color: white !important;
    font-size: 2rem;
    line-height: 35px;
}

.p-main-home {
    color: white !important;
    width: 100%;
}

.background-video {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.background-video video {
    position: absolute;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -100;
}


.telecharger-brochure {
  padding: 20px 8%;
  background-color: #a0978a;
  color: white !important;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 24px rgba(185,123,106,.28);
  transition: .3s ease;
  font-weight: 700;
  letter-spacing: .5px;
}

.telecharger-brochure:hover,
.btn-slider-decouvrir:hover {
  background-color: #05254A;
  border: 1px solid #a0978a;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(5,37,74,.30);
}

.telecharger-brochure:hover,
.btn-slider-decouvrir:hover {
    background-color: black;
    border: 2px solid #a0978a;
    color: #fff !important;
}

@-webkit-keyframes pulse {
    0% {
        box-shadow: 0 0 0 10px var(--hover);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 10px var(--hover);
    }
}

.telecharger-brochure,
.btn-slider-decouvrir {
    --hover: #a0978a;
}

/***end animation btn**/
.div-btn-decouvrire {
    position: relative;
    height: 120px;
}

.btn-decouvrire {
    -webkit-animation: bounce 2s infinite 2s;
            animation: bounce 2s infinite 2s;
    position: absolute;
    top: 40px;
    left: 46%;
    cursor: pointer;
}
.btn-play{
    cursor: pointer;
}
@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.title-main {
    color: #05254A;
    font-size: 2rem;
    font-family: 'Adieu';
    line-height: 35px;
}

.p-main {
    color: #606060;
}

.spacer-main {
    height: 30px;
}

.spacer-main2 {
    height: 40px;
}

.para-main {
  /*  padding-left: 0px;*/
}

.warp-img-slider {
    height: 100%;
}

/********details bien*****************/
.detail-bien {
    background-color: #27435a;
    color: white;
    padding: 0 5%;
   background-image: url(../media/Pattern_background.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}

.logo-bahia img {
    width: 200px;
}

.spacer-height-detail-bien {
    height: 100px;
}

.img-detail-bien {
    height: 100%;
}

.img-detail-bien img {
    height: 100%!important;
    width: 100%!important;
    -o-object-fit: cover;
       object-fit: cover;

}

.img-logo {
    margin: 3rem 0;
}

.p-details-bien {
    padding: 0% 5%;
}

/*****************produits***********/
.title-produits {
    color: #05254A;
}

/********contact***********/
.contactez-nous {
    padding: 0 5%;
}

.title-contact {
    color: #05254A;
}

.content-contact,
form {
    padding: 10% 15%;
}
.content-contact a{
  color: black !important
}

.content-contact .email,
.content-contact .phone,
.content-contact .adress {
    font-weight: bold;
    font-size: 0.9rem;
    font-family: 'Nunito Sans', sans-serif;
    display: flex;
    align-items: center;
}
.content-contact .email img,
.content-contact .phone img,
.content-contact .adress img {
  width: 25px;
      height: 35px;
}
.contact-form {
    box-shadow: -23px 20px 63px #00000047;
}

.soustitle-contact {
    color: #05254A;
    margin-bottom: 20px !important;
}

.spacer-height-contact {
    height: 40px;
}

.spacer-height-contact2 {
    height: 40px;
}

.spacer-benner {
    height: 40px;
}

form {
    background-color: #a0978a;
    color: white;
}

.envoyer {
    width: 180px;
    height: 40px;
    color: white;
    background-color: #05254A;
    border: none;
    box-shadow: 2px 2px 10px #00000047;
}

.envoyer:hover {
    background-color: rgb(0, 0, 0);
    color: white;
    transition: 0.5s;
}

.envoyer:focus {
    -webkit-animation: pulse 1s;
            animation: pulse 1s;
    box-shadow: 0 0 0 10px transparent;
    color: #fff;
    border: #fff;
}

.envoyer {
    --hover: rgba(0, 0, 0, 0.287);
}

/*******slider produits home**************/
.background-slider,
.background-slider2 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-position-y: -27px;
}

.background-slider {
 /*   background-image: url(../media/background-para-main-gold.png);*/
}

.background-slider2 {
    background-image: url(../media/background-slider-produits2.svg);
}

.spacer-slider-produits {
    height: 30px;
}

.warp-text-slider {
    padding: 5%;
    color: #05254A;
}


.warp-img,
.items-warp-img {
    min-height: 100%;
    width: 100%;
    height: 100%;
}

.items-warp-img img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 100%;
   /* width: 100%;
    height: 100%;*/
}

.items-warp-img2 {
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    min-height: 500px;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.items-warp-img2 img{
    width: 100%;
    height: 90%;
    object-fit: cover;
    
}
.bien-etre .slick-track,
.bien-etre .slick-list{
    height: 100%!important;
    min-height: 100%!important;
}
.bien-etre .slick-dots li button:before{
    font-size: 50px!important;
    color: #a0978a!important;
    cursor: pointer;
}
.slick-dots{
    bottom: 0px!important;
}
.nos-produit.items-warp-img2 {
    background-image: url(../media/img-main_produits.png);
}

.bien-disponible.items-warp-img2 {
    background-image: url(../media/image_main_disponiblebien.png);
}

.contact.items-warp-img2 {
    background-image: url(../media/img-main-contact.png);
}

.btn-slider-decouvrir {
    width: 180px;
    height: 50px;
    border: none;
    background-color: #a0978a;
    color: white;
    font-family: 'Adieu';
    box-shadow: 2px 2px 10px #00000047;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.slider-produits {
    padding: 0 5%;
}

.section-slider-produits .slick-track,
.section-slider-produits .slick-list.draggable {
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.section-slider-produits .slick-next.slick-arrow {
    position: absolute;
    right: 0;
    top: 100%;
    height: 60px;
    transform: translate(0%, -100%);
    width: 60px;
    border: 1px solid white;
    color: white;
    background-color: #a0978a;
}

.section-slider-produits .slick-prev.slick-arrow {
    position: absolute;
    left: calc(100% - 58px);
    top: 100%;
    transform: translate(calc(100% - 122px), -100%);
    height: 60px;
    width: 60px;
    border: 1px solid white;
    color: white;
    background-color: #a0978a;
    z-index: 10;
    transition: 0.5s;
}

.section-slider-produits .slick-arrow:hover {
    background-color: #05254A;
}

.div-number .number {
    color: white;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 5px !important;
    font-size: 0.8rem;
}

.active-number {
    background-color: black !important;
}

.div-number .slick-next.slick-arrow,
.div-number .slick-prev.slick-arrow {
    height: 40px;
    width: 40px;
    background-color: #E7E7E8;
    z-index: 10;
}

.div-number .slick-prev:before {
    content: url(../media/icons/btn_prev.svg);
}

.div-number .slick-next:before {
    content: url(../media/icons/btn_next.svg);
}

.div-number {
    max-width: 170px;
    padding: 0 2%;
}

.title-vedio-home {
    color: #05254A;
}


/**********footer***********/
footer {
    background-color: black;
    color: white;
    padding: 0 5%;
}

.navigation-footer .link {
    display: block;
}

.socialmedia-footer .link-sm {
    margin: 10px 5px;
}

.link-nav-footer {
    display: block;
    color: white;
    font-size: 0.8rem;
    font-family: 'Acto';
    margin-bottom: 10px;
    position: relative;
    transition: 300ms;
}

.link-nav-footer:hover {
    color: #a0978a;
}

footer nav {
    padding: 0 10px;
    width: 100%;
}

.p-footer {
    font-size: 0.85rem;
}

footer strong {
    font-size: 1rem;
}

.copyright P {
    font-size: 0.8rem;
}

.spacer-footer {
    height: 30px;
}

.spacer-footer-link {
    height: 10px;
}

/******bedio home**********/
.section-img-bahia {
    padding: 0 5%;
}

.spacer-bahia-image {
    height: 65px;
}

.div-vedio {
    width: 100%!important;
}
.div-vedio img{
    width: 100%!important;
    height: auto!important;
}
.div-vedio video {
    width: 100%;
}

/*******gallery**********/
.title-warp-gallery {
    color: white;
}

.para-gallery {
    width: 100%;
    margin: auto;
}

.title-cart {
    font-family: 'Acto';
    font-weight: bold;
    margin: auto;
    min-height: 70px;
    display: flex;
align-items: center;
}

.title-gallery {
    color: #a0978a;
}

.gallery {
    color: white;
}
.img-gallery img{
    vertical-align: middle;
}

.spacer-gallery {
    height: 111px;
}

.spacer-gallery2 {
    height: 16px;
}

.spacer-gallery3 {
    height: 40px;
}

.icon-gallery p {
    font-weight: bold;
    font-family: 'Adieu';
    font-size: 0.9rem;
}


.icon-gallery img {
    margin: 20px 0;
}

.btn-search-product {
    padding: 0 20%;
}

.btn-search-product .slick-prev.slick-arrow,
.btn-search-product .slick-next.slick-arrow {
    background-color: white;
    box-shadow: 2px 2px 10px #00000047;
    width: 45px;
    height: 45px;
}

.btn-search-product .slick-prev.slick-arrow {
    position: absolute;
    left: 10px;
    z-index: 10;
}

.btn-search-product .slick-next.slick-arrow {
    position: absolute;
    right: 10px;
    z-index: 10;
}

.btn-search-product .slick-next:before {
    content: url(../media/icons/btn_next.svg) !important;
    transform: rotate(20deg);
}

.btn-search-product .slick-prev:before {
    content: url(../media/icons/btn_prev.svg) !important;
}

.btn-image {
    position: relative;
}

.div-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.decouvrire-btn {
    bottom: 0;
    position: absolute;
    right: 0;
    background-color: #05254A;
    border: 1px solid white;
    color: white;
    padding: 3% 4%;
    transition: 0.5s;
}

.decouvrire-btn:hover {
    background-color: #a0978a;
}

/********decouvrire-video********/

.title-video {
    color: white;
    font-family: 1.5rem;
}

.spacer-height-video {
    height: 50px;
}

/******content gellery and video**************/
.content-gallery-video {
    background-color: #05254A;
    background-image: url(../media/background-para-main.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-position-y: 147px;
    background-size: 77vw;
    padding: 0 5%;
}

/*********map*************/
.map {
    background-color: #05254A;
    padding: 0 10%;
}

#map {
    width: 100%;
    height: 600px;
    overflow: hidden;
    max-height: 600px;
}

.spacer-map {
    height: 40px;
}

.spacer-map2 {
    height: 100px;
}

.title-map {
    color: white;
}

/********slider bien-etre*************/
.spacer-items-slider {
    height: 0px;
}

.slider-bien-etre {
    background-color: #05254A;
    color: white;
}

.text-slider {
    width: 80%;
    height: 81%;
    background-image: linear-gradient(rgb(255 255 255 / 0%),rgb(255 255 255 / 0%), #a0978a91);
    z-index: 10;
    position: absolute;
    bottom: 8%;
    left: 10%;
}

.text-slider p {
    font-size: 1.3rem;
    font-family: 'Adieu';
    position: absolute;
    bottom: 0px;
    left: 25px;
}

.contant-slid-bien-etre {
    padding: 0 5%;
}

.spacer-start-slider-bien {
    height: 50px;
}

.spacer-end-slider-bien {
    height: 50px;
}

.items-slider {
    position: relative;
}

.slider-text {
    position: absolute;
    bottom: 0%;
    left: 0%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.186), #9d781a80);
    width: 90%;
    height: 100%;
}

.items-slider img {
    width: 100%;
    padding: 10%;
    transition: 1s;
}

.text-slider {
    transition: 1s;
}

.hover-animation {
    transition: 1s;
}

.animation-img {
    filter: brightness(120%);
}

.hover-animation:hover {
    transform: scale(1.08);
}

.slider-bien-etre .slick-prev.slick-arrow {
    position: absolute;
    left: 70px;
    top: 100%;
    transform: translate(-56px, -100%);
    z-index: 10;
}

.slider-bien-etre .slick-next.slick-arrow {
    position: absolute;
    right: -27px;
    top: 100%;
    transform: translate(-80px, -100%);
    z-index: 10;
}

.image-logo-bienetre,
.logo-details-bien {
    opacity: 30%;
}

.image-logo-bienetre {
    margin-bottom: 10%;
}

.slider-bien-etre .slick-prev:before {
    content: url(../media/icons/prev-small.svg);
}

.slider-bien-etre .slick-next:before {
    content: url(../media/icons/next-small.svg);
}

/*********pack-product**********/
.pack-product {
    background-color: #a0978a;
}

.img-cart {
    position: relative;
}

.img-cart .status {
    background-color: black;
    color: white;
    width: 100%;
    padding: 5px 0;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
}

.cart-product {
    background-color: white;
    padding: 0 30px 30px 30px;
    box-shadow: 2px 2px 10px #00000047;
}

.active-btn {
    background-color: #a0978a !important;
    color: white !important;
}

.btn-prix {
    width: 100%;
    height: 45px;
    color: white;
    background-color: #05254A;
    border: none;
    font-weight: bold;
    box-shadow: 2px 2px 6px #00000047;
}

.btn-infos {
    width: 100%;
    height: 45px;
    color: black;
    background-color: #E7E7E8;
    font-weight: bold;
    border: none;
    box-shadow: 2px 2px 6px #00000047;
    transition: 500ms;
}

.btn-infos:hover {
    background-color: #a0978a;
    color: white;
}

.link-cart-immolyse {
    color: black;
}

.link-cart-immolyse:hover {
    color: black;
}


.description-product p {
    margin: 0 !important;
    font-size: 1rem;
    font-weight: normal;
}

.icons-cart {
    padding: 1rem .8rem 0 1rem;
}

.section-gallery-project {
    background-color: #05254A;
    padding: 0 5%;
}

.spacer-height-btn-filter {
    height: 30px;

}

.title-recherche-bien {
    color: white;
}

.btn-filter {
    color: black;
    border: 0;
    background-color: #fff;
    height: 45px;
    box-shadow: 2px 2px 10px #00000047;
    padding: 0 10px;
    width: 93%;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

.spacer-gellery-product {
    height: 80px;
}

.banner {
    padding: 0 5%;
}

.img-banner img {
    width: 100%!important;
    height: auto!important;
}

h1 {
    font-family: 'Adieu';
    font-weight: bolder;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
}

h2 {
    font-size: 1.5rem;
    font-family: 'Adieu';
    font-weight: bold;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;
}

h3 {
    font-family: 'Adieu';
    font-size: 1rem;
    font-weight: bold;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;
}

h4 {
    font-size: 1.2rem;
    font-family: '';
    font-weight: bold;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;
}

p {
    font-size: 1rem;
    font-family: 'Acto';
    font-weight: normal;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;

}

ul {
    font-size: 1rem;
    font-family: '';
    font-weight: normal;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;
}

a {
    font-size: 1rem;
    text-decoration: none;
    font-style: normal;
    letter-spacing: x
        /*replace x with a value*/
    ;
    line-height: x
        /*replace x with a value*/
    ;
}

a:hover,
button:hover {
    cursor: pointer;
}

a:focus,
button:focus,
input:focus {
    outline: 0;
    box-shadow: none;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

input:focus::placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::placeholder {
    color: transparent;
}

input,
textarea {
    border-radius: 0 !important;
}

label span {
    color: red;
}

#play-button {
    display: none;
}

#video {
    height: 100%;
    width: 100%;
    
    pointer-events: none;
    position: absolute;
    
}

.video-warp {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    z-index: -3;
}

.gallery .card-gallery {
    width: 100% !important;
}
.row-gallery > div:nth-child(even) .card-gallery  {
    margin-left: auto;
}
.img-b{
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover
}

.paginationjs{
  display: flex;
  align-items: center;
  justify-content: center;
}

.paginationjs .paginationjs-pages li>a {
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    background: transparent;
    font-size: 14px;
    color: #545D7A;
    text-decoration: none;
    text-align: center;
    margin-left: 17px;
    border: 0;
      border-radius: 6px;
}
.paginationjs .paginationjs-pages li {
    float: left;
    border: 0 !important;
    border-right: none;
    list-style: none;
}
.paginationjs .paginationjs-pages li.active>a {
    height: 35px;
    line-height: 35px;
    background: black;
    color: white !important;
    border-radius: 6px;
}
.paginationjs-next a{
  background-image: url(../media/icons/go-right-button.svg) !important;
  color: transparent !important;
background-size: cover !important;
}
.paginationjs-prev a{
  background-image: url(../media/icons/go-left-button.svg) !important;
  color: transparent !important;
background-size: cover !important;
}

.error{
  color: red;
}
.msg_send{
  display: none;
}


.form-contact-bahia {
  padding: 0;
}
.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: none;
    outline: 0;
    box-shadow:unset;
}
.popup-container-pdf {
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    transition: all .3s ease-in-out;
    transform: scale(0.9s);
    position: fixed;
    z-index: 55;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    pointer-events: none;
}
.popup-container-pdf.active-popup {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
.popup-content-pdf {
    background:#a0978a;
    margin: auto;
    padding: 20px 20px 20px 24px;
    width: 35%;
    width: 90%;
}
.popup-content-pdf h4 {
  font-family: 'Adieu';
      font-weight: bold;
text-transform: uppercase;
    line-height: 1;
    color: #FFF;
    font-size: 19px;
    margin-bottom: 15px;
    margin-top: 35px;
    display: inline-block;
    position: relative;
}
.popup-content-pdf p {
    font-size: 14px;
    padding: 10px 0;
    margin: 0;
    color: white;
    font-family: 'Acto';
        font-weight: normal;
        font-style: normal;
    color: #fff;
    text-align: center;

}
.popup-content-pdf #close-pdf {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}
.popup-content-pdf h4::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 120%;
    height: 4px;
    top: -20px;
    background: #fff;
}
.form-contact label{
  margin-bottom: 10px;
  display: block;
}
.form-contact label span{
  color: red;
}
.form-contact input:focus{
  outline: 0;
  border: 0;

}
.close-overflay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (min-width: 668px) {
.popup-content-pdf {
        margin: auto;
    padding: 20px 20px 20px 24px;
    width: 75%;
}
}

@media (min-width: 1100px) {
.popup-content-pdf {
    margin: auto;
    padding: 20px 20px 20px 24px;
    width: 57%;
}
}


.container-check{
    display: block;
    position: relative;
    margin-bottom: .5rem;
    padding-left: 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container-check:hover input ~ .checkmark {
    background-color: #fff;
  }
 .container-check input:checked ~ .checkmark {
    background-color: #000;
  }
 .container-check input:checked ~ .checkmark:after {
    display: block;
  }
 .container-check .checkmark::after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
 .container-check input {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .checkmark {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 1.5rem;
    aspect-ratio: 1;
  }
  .checkmark::after {
    content: "";
    position: absolute;
    display: none;
  }
  .lien-condition{
    color: #05254A;
     text-decoration: underline;
  }

  .d-none{
    display: none;
  }