
:root {
    --color-white: #ffffff;
    --color-gray-500: #878787;
    --color-orange: #fc7624;
    --color-orange-hover: #fd6d13;
    --color-blue: #0353ec;
    --color-blue-20: rgba(3, 83, 236, 0.2);
    --color-blue-hover: #0345C5;
    --box-shadow: 0px 5px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.5s ease;
    --border-radius-btn: 0.3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
}

*:focus {
    outline: 0 !important;
}

a {
    text-decoration: none !important;
}

p {
    font-size: 18px;
    line-height: 135%;
}

::-moz-placeholder {
    color: #bbbbbb !important;
    opacity: 1;
    /* Firefox */
}

::placeholder {
    color: #bbbbbb !important;
    opacity: 1;
    /* Firefox */
}

body {
    background-color: #fff;
    font-family: "Ubuntu", sans-serif;
}

.text-18 {
    font-size: 18px;
}

.page-content,
.prestataires-search {
    padding: 40px 0;
    margin-top: 70px;
}

.head-search {
    margin-top: 70px;
}

.simple-logo {
    width: 115px;
}

.bg_logo {
    background: url("./../../media/bg/bg-logo-winkare.png") no-repeat 100% 100%;
}

#langue-switcher,
#country-switcher,
#currency-switcher {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 100%;
    font-size: 16px;
    font-weight: 500;
}

.langue_switcher_container,
.country_switcher_container,
.currency_switcher_container {
    flex-direction: column;
    display: none;
    position: absolute;
    left: -7px;
    right: 0;
    top: 16px;
    z-index: 999;
    cursor: pointer;
}

.langue_switcher_container .langues_container,
.country_switcher_container .countries_container,
.currency_switcher_container .currencies_container {
    flex-direction: column;
    display: flex;
    padding: 4px 0px;
    align-items: center;
    background: #ffffff;
    border-radius: 2px;
    width: 40px;
}

.langues_container a,
.countries_container a,
.currencies_container a {
    font: 400 14px/26px "Roboto" !important;
    padding: 0 !important;
    color: #0f172a;
}

#langue-switcher img,
.langues_container a img {
    height: 18px;
    width: 26px;
}
.langues_container a img {
    margin: 4px 0;
}

.langues_container a:hover,
.countries_container a:hover,
.currencies_container a:hover {
    /* background: #00111a; */
    color: #fff !important;
    text-decoration: underline;
}

/* Custom scrollbar styles */

::-webkit-scrollbar {
    width: 8px;
    /* Set the width of the scrollbar */
    border-radius: 2px;
}

::-webkit-scrollbar-track {
    background: #f7dece;
    /* Set the background color of the scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: #fc7624;
    /* Set the color of the scrollbar thumb */
}

/* SLIDER SEARCH HOME */

.block-head-search .title {
    color: #fff;
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 59.4px */
    margin-bottom: 16px;
}

.block-head-search .desc {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 25.2px */
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.block-head-search .form-search input[type="text"] {
    color: #898989;
    font-size: 20px;
    height: 64px;
    width: 100%;
    padding: 8px 16px 8px 75px;
}

.block-head-search .form-search i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.block-head-search .form-search input[name="generalSearch"] {
    border-right: 2px solid #eee;
}

.block-head-search .form-search button {
    color: #fff;
    font-size: 20px;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: #fc7624;
    padding: 8px 24px;
    transition: all 0.2s ease-in-out;
}

.section-title {
    color: #0353ec;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 24px;
}

.section-title-2 {
    color: #263357;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 44px */
    margin-bottom: 10px;
}

.after-section-title {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 25.2px */
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-orange {
    background-color: var(--color-orange);
}

._btn,
._btn-blue,
._btn-orange {
    padding: 0.3rem 2rem;
    border-radius: 0.5rem;
    color: var(--color-white);
    font-size: 1rem;
    cursor: pointer;
}

._btn-blue {
    background-color: var(--color-blue);
}

._btn-blue:hover {
    background-color: var(--color-blue-hover);
    border-radius: 0.3rem;
}

._btn-orange {
    background-color: var(--color-orange);
}

._btn-orange:hover {
    background-color: var(--color-orange-hover);
    border-radius: 0.3rem;
}

/**
    Navbar::start
*/

.btn-svg-transparent,
.btn-submit-blue,
.btn-submit-orange {
    display: flex;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-svg-transparent:hover,
.btn-submit-blue:hover,
.btn-submit-orange:hover {
    border-radius: 0.4rem;
    color: #fff;
}

.btn-svg-transparent {
    background: transparent;
}

.btn-submit-blue {
    background: var(--color-blue);
    color: var(--color-white);
}

.btn-submit-orange {
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-svg-transparent:hover {
    background: rgba(0, 0, 0, 0.1);
}

.scale {
    transform-origin: 100% 50%;
    transform: scale(1);
    transition: all 0.15s ease-in-out;
}

.text-flex {
    display: flex;
}

.rotate {
    transform-origin: center;
    transition: all 0.15s ease-in-out;
}

.btn-svg-transparent:hover .translate {
    transform: translateX(2px);
    transition: all 0.15s ease-in-out;
}

.btn-svg-transparent:hover .rotate {
    transform: rotate(360deg);
    transition: all 0.15s ease-in-out;
}

.btn-svg-transparent:hover .scale {
    transform: scale(1.1);
    transition: all 0.15s ease-in-out;
}

span.btn-svg-icon {
    display: flex;
    align-items: center;
    align-content: center;
    margin-right: 0.4rem;
}

/**
    Navbar::end
*/

.card-user-description .user .user-img img {
    border-radius: 50rem;
    transition: var(--transition);
}

span.user-job-name {
    color: var(--color-blue);
    font-weight: 600;
    font-size: 1rem;
}

.card-user-description,
.card-user-description.center {
    box-shadow: var(--box-shadow);
    border-radius: 1rem;
    padding: 1.5rem;
    font-size: 0.9rem;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.slick-current + .slick-active .card-user-description {
    padding: 3rem 1.5rem;
}

.carouselreviews .slick-track {
    display: flex;
    align-items: center;
}

.reviews {
    padding-top: 20px;
    padding-bottom: 30px;
}

.reviews .stars-icon.filled {
    color: #fc7624;
}

.user-job-stars {
    margin-top: 5px;
}

.reviews .slick-dots li button:before {
    font-size: 12px;
    color: #d9d9d9;
    opacity: 1;
}

.reviews .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #0353ec;
}

.card-shadow-hover {
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card-shadow-hover:hover img {
    transform: scale(1.2);
    transition: var(--transition);
}

/* FOOTER */

.contact-us-input {
    border-radius: 10px;
    padding: 0.8rem 0.75rem;
    padding-left: calc(26px + 12px);
    /* 24px = width svg */
    width: 100%;
    color: #000;
}

.contact-us {
    display: flex;
    align-items: center;
}

.contact-us-email {
    position: relative;
    /*margin-right: 20px;*/
    width: 100%;
}

.success-newsletter {
    margin-top: 5px;
}

.btn-submit-orange[type="submit"] {
    max-width: max-content;
    background-color: #fc7624;
    color: #fff;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
}

.btn-submit-orange[type="submit"]:hover {
    border-radius: 0.4rem;
}

.contact-us-icon {
    width: 24px;
    height: 18px;
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translate(100%, -50%);
    transition: all 3s ease-in-out;
}

.contact-us-input:hover + .contact-us-icon .translate-y {
    animation: rotate 2s ease-in-out infinite;
}

.envelop-arrow {
    fill: var(--color-white);
}

footer {
    color: var(--color-white);
}

footer .social-media-icon {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

footer .social-media-icon svg {
    width: 24px;
    height: 24px;
}

footer .social-media-icon.youtube path,
footer .social-media-icon.facebook path,
footer .social-media-icon.instagram path,
footer .social-media-icon.twitter-x path,
footer .social-media-icon.linkedin path {
    stroke-dashoffset: 0;
    fill: #fff;
    transition: all 0.3s ease;
}

footer .social-media-icon.youtube path {
    stroke-dasharray: 80;
}

footer .social-media-icon.facebook path {
    stroke-dasharray: 90;
}

footer .social-media-icon.instagram path {
    stroke-dasharray: 56;
}

footer .social-media-icon.twitter-x path {
    stroke-dasharray: 114;
}

footer .social-media-icon.linkedin path {
    stroke-dasharray: 132;
}

footer .social-media-icon.youtube:hover path,
footer .social-media-icon.facebook:hover path,
footer .social-media-icon.instagram:hover path,
footer .social-media-icon.twitter-x:hover path,
footer .social-media-icon.linkedin:hover path {
    fill: transparent;
    stroke-width: 0.5;
    stroke: var(--color-white);
}

footer .social-media-icon.youtube:hover path {
    animation: animate-youtube 1s linear forwards;
}

footer .social-media-icon.facebook:hover path {
    animation: animate-facebook 1s linear forwards;
}

footer .social-media-icon.instagram:hover path {
    animation: animate-instagram 1s linear forwards;
}

footer .social-media-icon.twitter-x:hover path {
    animation: animate-twitter-x 1s linear forwards;
}

footer .social-media-icon.linkedin:hover path {
    animation: animate-linkedin 1s linear forwards;
}

footer a {
    color: #fff;
    display: block;
    /*max-width: max-content;*/
    color: #fff;
}

footer a:hover {
    color: #fc7624;
}

.scrolling {
    overflow: scroll;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.scrolling::-webkit-scrollbar {
    width: 7px;
}

/* Track */
.scrolling::-webkit-scrollbar-track {
    background-color: var(--color-blue);
    border-radius: 10px;
}

/* Handle */
.scrolling::-webkit-scrollbar-thumb {
    background-color: var(--color-orange);
    border-radius: 7px;
}

/* Handle on hover */
.scrolling:hover::-webkit-scrollbar-thumb {
    background-color: var(--color-orange-hover);
}

/* @keyframes */

@keyframes rotate {
    0% {
        transform: rotateZ(0);
    }

    30% {
        transform: rotateZ(360deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes animate-youtube {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 80;
    }

    80% {
        stroke-dashoffset: 160;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 160;
        fill: var(--color-white);
    }
}

@keyframes animate-facebook {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 90;
    }

    80% {
        stroke-dashoffset: 180;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 180;
        fill: var(--color-white);
    }
}

@keyframes animate-instagram {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 56;
    }

    80% {
        stroke-dashoffset: 112;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 112;
        fill: var(--color-white);
    }
}

@keyframes animate-twitter-x {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 114;
    }

    80% {
        stroke-dashoffset: 228;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 228;
        fill: var(--color-white);
    }
}

@keyframes animate-linkedin {
    0% {
        stroke-dashoffset: 0;
    }

    40% {
        stroke-dashoffset: 132;
    }

    80% {
        stroke-dashoffset: 264;
        fill: transparent;
    }

    100% {
        stroke-dashoffset: 264;
        fill: var(--color-white);
    }
}

/* CATEGORIES HOME */
.scrolling.categories-grid {
    max-height: 650px;
}

.categories-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 10px 14px 2px rgba(0, 0, 0, 0.07);
    padding: 1.5rem 0.5rem 0.5rem;
}

.categories-card-header img {
    max-height: 5rem;
}

.categories-card-title {
    margin-top: 20px;
    color: #001d6c;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}

.categories-card-body {
    padding: 1rem 1rem 0.5rem 1rem;
}

/* PROVIDERS HOME */

.scrolling.providers-grid {
    max-height: 700px;
}

.providers-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: var(--transition);
    margin-bottom: 24px;
}

.providers-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #b0cbff;
    transition: var(--transition);
}

.providers-card-header img {
    width: 100%;
}

.providers-card-body {
    margin: 1rem 0 0;
}

.providers-card-body .card-title,
.providers-card-body .card-title a {
    color: #001d6c;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
    margin: 0;
}

.providers-card-body .card-sub-title {
    color: var(--cool-gray-60, #697077);
    text-align: center;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.providers-card-footer {
    display: grid;
    /*grid-template-columns: 3fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;*/
    grid-row-gap: 0;
    align-items: center;
    justify-content: center;
}

.providers-card-footer .emissions-n {
    color: #001d6c;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 15.869px */
    letter-spacing: 0.496px;
    margin: 0;
}

.providers-card-footer .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    /*transition: var(--transition);
    height: 30px;
    border-radius: 10px;
    border: 1px solid #0353ec;*/
}

.providers-card-footer .stars .stars-icon {
    font-size: 0.9rem;
    margin: 0 0.1rem;
    transition: var(--transition);
    transform: translateY(-1px);
}

.providers-card-footer .stars .stars-icon {
    color: var(--color-orange);
}

.providers-card hr {
    width: 95% !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

.providers-card:hover .providers-card-header {
    border-radius: 0;
}

/*.providers-card:hover .providers-card-footer .stars {
    background: var(--color-blue-20);
    border-radius: 4rem;
}

.providers-card:hover .providers-card-footer .stars .stars-icon {
    animation: headShake 1s linear forwards;
}*/

/* SERVICES HOME */

.services {
    margin: 40px 0;
    padding: 90px 0;
    background: #f5f5f5;
}

.services .service {
    display: flex;
    margin: 16px 0;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
}

.services .service .image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #0353ec;
    background: #fff;
    box-shadow: 0px 10px 12px -7px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.services .service .info {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services .service .info .title {
    color: #001d6c;
    text-align: left;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 5px;
}

.services .service .info .price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 12px;
    padding-top: 12px;
}

/*.services .service .info .price-container:before {
    content: "";
    position: absolute;
    border: 1px solid #d9d9d9;
    left: -16px;
    top: 0px;
    right: -32px;
}*/

.services .service .info .price-container .text {
    color: #001d6c;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
    letter-spacing: 0.522px;
}

.services .service .info .price-container .price {
    color: #fff;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 16.705px */
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    padding: 8px 4px;
    margin-left: 2px;
    align-items: center;
    border-radius: 10px;
    background: #fc7624;
}

.services .service img {
    max-width: 52px;
}

/* TEXT RIGHT HOME */

.list-blue li:before {
    content: "\f058";
    color: #0353ec;
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    margin-right: 10px;
}

.list-blue ul {
    margin-left: 0;
    list-style-type: none;
}

.list-blue li {
    display: flex;
    margin-bottom: 0.5rem;
}

/* TEXT LEFT HOME */

.list-orange li:before {
    content: "\f058";
    color: #fc7624;
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    margin-right: 10px;
}

.list-orange ul {
    margin-left: 0;
    list-style-type: none;
}

.list-orange li {
    display: flex;
    margin-bottom: 0.5rem;
}

/* COMMENT CA MARCHE HOME */
.ccm {
    /*width: 300px;*/
    margin: 0 auto;
}

.ccm .image {
    background: #fff;
    display: flex;
    align-content: center;
    justify-content: center;
    padding: 32px;
}

.ccm .image img {
    max-width: 166px;
}

.ccm .title,
.ccm h4 {
    color: #001d6c;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 24px 0 16px;
}

.ccm .desc,
.ccm .desc p {
    color: #263357;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

@keyframes headShake {
    0% {
        transform: translateX(0);
    }

    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }

    50% {
        transform: translateX(0);
    }
}

/* BLOCK IMAGE */

.list-text {
    font-size: 20px;
    line-height: 135%;
}

.list-orange i {
    color: #fc7624;
}

.list-blue i {
    color: #0353ec;
}

.block-image .btn-submit-blue {
    max-width: max-content;
}

.block-image.bg-light.bg_logo .list-orange li:before {
    color: #0353ec;
}

.block-image.bg-light.bg_logo .btn-submit-blue {
    background: #fc7624;
}

@media (min-width: 992px) {
    .block-image:not(.bg-light.bg_logo) .blocimg {
        order: 2;
    }
}

/*  REGISTERATION PAGE  */
.auth-main {
    min-height: 400px;
}

.side.auth {
    display: flex;
    flex-direction: column;
    padding: 30px;
    /* min-height: 1000px; */
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
}

.template-login .side.auth,
.template-register .side.auth,
.template-prestataire-register .side.auth,
.template-forgotten-password .side.auth,
.template-re-send-email .side.auth {
    background-image: url(./../../media/auth/authentification-3-winkare.png);
    background-size: cover;
    background-position: 50% 0%;
}

.registration-page {
    background-color: #efefef;
}

.registration-page .side {
    height: 100%;
    padding: 48px;
    background-color: #0353ec;
    overflow: hidden;
    color: #ffffff;
    border-radius: 10px 0 0 10px;
}

.registration-page .side .title {
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    margin-top: auto;
}

.registration-page .side p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.registration-page .side ul li {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.registration-page .side ul li .span {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.registration-page .side .footer-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.registration-page .side .footer-desc .phone {
    color: #fc7624;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.registration-page .steps-container {
    padding: 48px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-container .form-container {
    width: 680px;
    margin: 40px auto;
}

/*---------- extra style ------------*/

nav {
}

nav .btn-submit-blue {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    border-radius: 10px;
    padding: 14px 12px;
    color: #fff !important;
}

nav .btn-submit-blue:hover {
    border-radius: 0.4rem;
}

/*---------- style country dropdown in search ------------*/

.custom-select {
    position: relative;
    display: inline-block;
}

.custom-select select {
    display: none;
}

.custom-select img {
    margin-right: 5px;
    border-radius: 3px;
    width: 40px;
    max-width: 100%;
}

.custom-select .select-box {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.custom-select .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: none;
    background: #fff;
}

.custom-select .dropdown a {
    display: flex;
    align-items: center;
    padding: 6px 5px;
    text-decoration: none;
    color: #333;
}

.custom-select.country {
    padding: 0;
    border: none;
    background: transparent;
    width: max-content;
    z-index: 1;
}

.custom-select.country .select-box {
    display: inline-block;
    border: none;
    padding-right: 10px;
    position: relative;
}

.custom-select.country .select-box:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #898989 transparent transparent transparent;
}

/*---------- END style country dropdown in search ------------*/

.block-head-search .form-search button:hover {
    border-radius: 0.4rem;
}

.navbar .btn-svg-transparent:hover,
.navbar .btn-svg-transparent:hover svg {
    color: #0353ec;
    background: transparent;
}

/* FOOTER */

.social-media {
    flex-flow: wrap;
}

.top-footer {
    padding-bottom: 50px !important;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    font-family: "Roboto";
}

.links-footer {
    padding-top: 50px !important;
}

.links-footer h6 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 10px;
}

.copyright {
    text-align: right;
}

.copyright a {
    display: inline-block;
    margin: 0 15px;
}

/* PRESTATAIRES SEARCH PAGE */

.prestataires-search {
    background: #fff;
}

.topbar {
    border-bottom: 1px solid #dde1e6;
}

.capitalize svg {
    display: inline-block;
}

.bloc-prestataire .stars {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloc-prestataire .stars .stars-icon {
    font-size: 0.9rem;
    margin: 0 0.1rem;
    transition: var(--transition);
    transform: translateY(-1px);
}

.bloc-prestataire .stars .stars-icon {
    color: var(--color-orange);
}

/*.bloc-prestataire:hover .stars {
    background: var(--color-blue-20);
    border-radius: 0.2rem;
}*/

/*.bloc-prestataire:hover .stars .stars-icon {
    animation: headShake 1s linear forwards;
}*/

.bloc-prestataire .title {
    display: flex;
}




.price-prestataire {
    max-width: 100%;
}

.bloc-prestataire .details svg {
    display: inline-block;
}



.provider-ordering {
    float: right;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 10px;
}

.provider-ordering .orderby {
    color: #202020;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.result-count p {
    color: #202020;
    font-size: 16px;
    font-weight: 500;
}

.provider-ordering span {
    color: #898989;
}

/* PRESTATAIRES DETAILS PAGE */

.items-top-right {
    justify-content: flex-end;
}

.detail-prestataire .bloc-prestataire {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #d9d9d9;
}

.carouselprestataire {
    width: 99%;
}

.carouselprestataire .slick-slide {
    height: 200px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carouselprestataire .slick-slide img {
    min-height: 100%;
    height: initial;
    width: initial;
    max-width: initial;
    min-width: 100%;
}

.longue-description {
    margin-top: 35px;
    font-family: Inter;
}

.map-prestataire {
    margin-bottom: 20px;
}

.prestataire-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    padding: 1rem 0.5rem;
}

.prestataire-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



/* POPUP MESSAGE PRESTATAIR */

.message-container,
.share-button-container,
.message-reported {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
}

.message-container.show,
.share-button-container.show,
.message-reported.show {
    display: block;
}

.message-button {
    background: #fc7624;
}

.message-button:hover {
    border-radius: 0.4rem;
}

._shadow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(112.14deg, rgba(3, 83, 236, 0.5), rgba(249, 115, 22, 0.5));
    z-index: 99;
    display: none;
    backdrop-filter: blur(3px);

}

._shadow.show {
    display: block;
}

/* LOGIN PAGE */

/*.auth-frontend button[type="submit"] {*/
/*    background-color: #fc7624;*/
/*    border-color: #fc7624;*/
/*    border-radius: 10px;*/
/*    font-size: 14px;*/
/*    line-height: 120%;*/
/*    padding: 0.9rem 1rem;*/
/*    color: #fff;*/
/*}*/

/*.auth-frontend button[type="submit"]:hover {*/
/*    border-radius: 0.4rem;*/
/*}*/

/*.auth-frontend h1 {*/
/*    color: #263238;*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    font-family: "Ubuntu";*/
/*    line-height: 110%;*/
/*    text-align: left;*/
/*}*/

/*.auth-frontend p.register {*/
/*    font-size: 16px;*/
/*    text-align: left;*/
/*    font-family: "Ubuntu";*/
/*    font-weight: 400;*/
/*    color: #263238;*/
/*    line-height: 110%;*/
/*}*/

.auth-frontend .link-orange {
    font-size: 14px;
    line-height: 110%;
    color: #fc7624;
    font-weight: 500;
}

.auth-frontend .link-orange:hover {
    color: #0056b3;
}

.auth-frontend .kt_login_forgo {
    font-size: 14px;
    line-height: 110%;
    font-weight: 400;
    color: #0353ec;
}

.auth-frontend .kt_login_forgo:hover {
    color: #fc7624;
}

.auth-frontend .social_button {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 11px 8px;
}

.auth-frontend .social button:hover {
    border-color: #fc7624;
}

.auth-main {
    border-radius: 10px;
}

.auth-right {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.auth-main .form-control {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px 16px;
}

.auth-main .form-group {
    margin-bottom: 1.5rem;
}

.form-group.password {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 20px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.toggle-password i {
    color: #898989;
}

/* REGISTER PAGE */
.auth-frontend .link-black {
    font-size: 14px;
    line-height: 110%;
    color: #202020;
    font-weight: 600;
    font-family: "Ubuntu";
}

.toggle-password.with-p {
    right: 25px;
    /*top: calc(50% - 0.8rem);*/
}

.auth-frontend .checkbox-inline p {
    display: inline;
}

.auth-frontend .checkbox-inline {
    margin-top: 20px;
}

.auth-frontend .checkbox-inline input {
    width: 18px;
    height: 18px;
}

.auth-frontend .checkbox-inline input[type="checkbox"] {
    display: none;
}

.auth-frontend .checkbox-inline .target {
    position: relative;
}

.auth-frontend .checkbox-inline .target:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    vertical-align: middle;
    margin-right: 5px;
    border-radius: 3px;
}

.auth-frontend .checkbox-inline .target:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.auth-frontend
    .checkbox-inline
    input[type="checkbox"]:checked
    + .target:before {
    background-color: #fc7624;
    border-color: #fc7624;
}

.auth-frontend .checkbox-inline input[type="checkbox"]:checked + .target:after {
    display: block;
}

.auth-frontend .link-black:hover {
    color: #fc7624;
}

/* FORGOTTEN PASSWORD */

.auth-frontend .pass-bottom.register {
    margin-top: 1.5rem;
    text-align: center;
    text-transform: lowercase;
}

.auth-frontend .pass-bottom.register a {
    text-transform: none;
}

/* MES MESSAGES */

.input-search-message {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    font-family: "Ubuntu";
    color: #d1d5db;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px 16px;
    width: 100%;
    margin-bottom: 20px;
}

#parent_objets .items-start {
    background-color: #fff;
}

#parent_objets .items-start.response_section {
    background-color: #f0f7ff;
}

/*------------------------------------ front user profile -------------------------------*/

select.witharrow {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.row.justify-content-center.auth-main {
    margin: 0;
}

/*-------------------- Prestataire -------------------------------*/
#address_result {
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 1;
    background-color: #fff;
    left: 0;
    right: 0;
    top: 45px;
}

.address_element {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
}

.address_element:last-child {
    border-bottom: 1px solid #ccc;
}

.address_element {
    padding: 5px;
    cursor: pointer;
}

.address_element:hover {
    background: #fcfcfd;
}

.langues_container {
    padding: 10px;
}

.existing-image {
    display: inline-block;
    margin-top: 30px;
    margin-right: 20px;
    position: relative;
}

.delete-image {
    position: absolute;
    top: -10px;
}

.delete-image:hover i {
    color: red !important;
}

div#existingImages {
    display: flex;
    flex-wrap: wrap;
}

form#dropzone {
    margin-top: 30px;
}

.existing-image img {
    max-width: 100px;
}

/*------------------------ new css------------------*/

nav .btn-submit-blue:hover {
    background: #fc7624;
}

.block-head-search .form-search button:hover {
    background: #0353ec;
}

.categories-card:hover {
    box-shadow: 0px 10px 14px 2px rgb(252 118 36 / 45%);
}

.stars {
    unicode-bidi: bidi-override;
    text-align: left;
}

.stars > .fa {
    font-size: 1rem;
    padding: 0.1em;
}

.stars-label {
    font-size: 1rem;
}

.services .service:hover .image {
    border-color: #fc7624;
}

.block-image .btn-submit-blue:hover {
    background: #fc7624;
}

.block-image.bg-light.bg_logo .btn-submit-blue:hover {
    background: #0353ec;
}

.all-services.bg-white {
    background: url("./../../media/bg/bg-logo-winkare.png") no-repeat 100% 100%;
    background-position: right top;
}

.btn-svg-transparent,
.btn-submit-blue,
.btn-submit-orange {
    font-size: 1.15rem;
}

.price-prestataire,
.price-prestataire {
    background: transparent;
    background-color: transparent !important;
    padding: 0 !important;
}

.price-prestataire .text-right {
    color: #262626 !important;
    font-size: 1.15rem;
    line-height: 1.15rem;
}

:root {
    --warm-off-white: #FDF7F3;
}

.logoHome {
    width: 150px;
    height: 32px;

}

.bg-warm-off-white {
    background: var(--warm-off-white);
}

.angel-btn-submit-blue {
    animation: ease-in-out 1s;
    width: 12px;
    height: 6px;
    border-width: 1.5px;
    margin-bottom: 8px;
}

.subheaderMenu {
    height: 80px;
    justify-content: space-between;
    padding: 12px 44px;

}

.btn-connect-blue::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #0353EC;
    bottom: 3px;
    transition: all .2s ease-out;
}

.btn-connect-blue:hover::before {
    transform: translateY(2px);
}


.nav-item-mainmenu {
    height: 32px;
    gap: 4px;
    border-radius: 8px;
    padding: 8px;
}

#dropdown-menu-mainmenu {
    width: max-content;
    height: 342px;
    gap: 24px;
    border-radius: 20px;
    padding: 24px;
    background: #FDF7F3;
    border: 1px solid #F7F0EC;

}

.dropdown-select-filter {
    height: 342px;
    gap: 24px;
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #F7F0EC;
    top: 70px;
    z-index: 1;
}

.sideCategories {
    width: 294px;
    height: 294px;
    gap: 24px;
    border-right: 1px solid #F7F0EC

}

.sideSubCategory {
    min-width: 200px;
    width: max-content;
    gap: 24px;
    border-right: 1px solid #F7F0EC

}

.sidePrestations > .title,
.sideCategories > .title {
    font-family: Neue Montreal, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
    vertical-align: middle;
    text-transform: uppercase;
    color: #818C96;


}

.itemCategory {
    height: 64px;
    gap: 16px;
    border-radius: 12px;
    padding: 16px;
    font-family: Neue Montreal, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #0E2155;
}


.itemSubCategory {
    border-radius: 12px;
    padding: 16px;
    font-family: Neue Montreal, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
    color: #0E2155;
}

.activeItemCategory {

    background: #EEEBE9;

}

.sidePrestations {
    min-width: 250px;
    width: max-content;
    padding: 16px;
    gap: 24px;
    display: flex;
    flex-direction: column;


}

.sideItems {
    min-width: 200px;
    width: max-content;
    gap: 24px;
    display: flex;
    flex-direction: column;


}

.sidePrestations > .list {
    height: 132px;
    gap: 12px;

}

.sidePrestations .itemPrestations {
    width: max-content;
    color: #0E2155 !important;
    font-family: Neue Montreal, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
}

.sidePrestations .itemPrestations:hover {
    height: 20px;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid #0E2155
}

.btn-submit-blue-outline {
    display: flex;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 1.375rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-submit-blue-outline {
    border-color: var(--color-blue);
    color: var(--color-blue);
    border-radius: 50px;
}

.btn-submit-blue-outline:hover {
    background: #0345C526;
    gap: 8px;
}


.btn-langue-item {
    display: flex;
    height: 30px !important;
}

.item-mainmenu-mobile .link-mainmenu-mobile {
    font-family: Neue Montreal, sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #0E2155;

}

/*------------------------- Scrolling -----------------------*/


.hidden-scroll {
    overflow: scroll;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.hidden-scroll::-webkit-scrollbar {
    width: 0px;
}

.scrollable {
    overflow: scroll;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.scrollable::-webkit-scrollbar-track {
    background: #f7dece;
}

.scrollable::-webkit-scrollbar-thumb {
    background: #fc7624;
}

.scrollable::-webkit-scrollbar {
    width: 8px;
    border-radius: 2px;
}


/*-------- Footer -------------*/

.contact-us {

}

.font-neue {
    font-family: Neue Montreal, sans-serif;
}

/*-------- PROFILE ----------------*/


.borderbottom {
    padding-left: 30px;
    border-bottom: 1px solid #F97316;
}


.myInfosBtn {
    background-color: transparent !important;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.25rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.myInfosBtnEdit {
    color: #16a34a;
}

.myInfosBtnEdit:hover {
    background-color: #16a34a !important;
    color: #FFF !important;
}


.myInfosBtnDelete {
    color: #dc2626;

}

.myInfosBtnDelete:hover {
    color: #FFF !important;
    background-color: #dc2626 !important;
    border: 1px solid #dc2626;

}

.myInfosBtn:hover svg {
    stroke: currentColor !important;
}


.borderedfull {
    border: 1px solid #F97316;
}

.dropdown-arrow::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #f97316;
}

/* Date Range Picker styles */
.daterangepicker {
    font-family: inherit;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: #f97316;
}

.daterangepicker .ranges li.active {
    background-color: #f97316;
    color: white;
}

.daterangepicker .drp-buttons .btn {
    border-radius: 4px;
    padding: 5px 10px;
}

.daterangepicker .drp-buttons .btn.applyBtn {
    background-color: #f97316 !important;
    border-color: #f97316 !important;
}

/*----------------------------------------------------------- Responsive ------------------------------------------------------------*/

/* TOP BAR RESPONSIVE */

@media (max-width: 940px) {
    .navbar-light .navbar-brand {
        margin-right: 0;
        flex: auto;
        padding-bottom: 1rem;
        justify-content: center;
    }

    .navbar-light .form-inline {
        justify-content: center;
    }

    .simple-logo {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .container-px-lg {
        padding: 0 2rem !important;
    }

    .categories-card-title {
        margin-top: 16px;
        font-size: 14px;
        line-height: 15px;
    }
}

/* SLIDER SEARCH HOME RESPONSIVE */

@media (max-width: 990px) {
    .block-head-search .form-search i {
        left: 10px;
    }
    .block-head-search .form-search input[type="text"] {
        font-size: 14px;
        padding: 8px 16px 8px 32px;
        border: none;
        border-bottom: 2px solid #eee;
        margin-bottom: 4px;
    }
    .block-head-search .form-search button {
        margin-top: 8px;
    }
}

@media (max-width: 767px) {
    .block-head-search .title {
        font-size: 30px;
    }

    .block-head-search .desc {
        font-size: 15px;
        max-width: 100%;
    }
}

/* LATEST MEMBERS HOME RESPONSIVE */

@media (max-width: 767px) {
    .providers-card {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* TEXT IMAGE HOME RESPONSIVE */
@media (max-width: 767px) {
    .section-title,
    .ccm .title,
    .ccm h4 {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: initial;
    }

    .after-section-title {
        font-size: 14px;
    }
    p,
    .list-text,
    .ccm .desc,
    .ccm .desc p {
        font-size: 13px;
        line-height: 18px;
    }

    .blocimg {
        order: 1;
    }

    .bloctxt {
        order: 2;
    }

    .categories-card-title {
        margin-top: 10px;
        font-size: 12px;
        margin-bottom: 0;
    }

    .categories-card-body {
        padding: 0.5rem;
    }

    .categories-card-header img {
        max-height: 3rem;
    }

    .categories .scrolling.p-4 {
        padding: 1rem 0px !important;
    }

    .providers-card-body .card-title,
    .providers-card-body .card-title a,
    .providers-card-body .card-sub-title {
        font-size: 13px;
        line-height: 17px;
    }
    .scrolling.categories-grid,
    .scrolling.providers-grid {
        max-height: 474px;
    }
    /* Services  */
    .services {
        margin: 40px 0;
        padding: 40px 0;
    }

    .services .service {
        margin: 8px 0;
    }
    .services .service .image {
        width: 100px;
        height: 100px;
    }
    .services .service .info {
        align-items: start;
        margin-left: 16px;
        padding: 0;
    }
    .services .service .info .title {
        font-size: 16px;
        margin: 0;
    }
    .services .service .info .price-container {
        padding-top: 10px;
    }
    .services .service .info .price-container:before {
        content: "";
        left: 0;
        top: 0px;
        right: -20%;
    }
    .services .service .info .price-container .text {
        font-size: 14px;
    }
    .services .service .info .price-container .price {
        padding: 6px 8px;
    }
    /* LOGIN PAGE RRESPONSIVE */

    .profil-sidebar {
        padding: 0px;
    }
    .registration-page .side {
        border-radius: 10px 10px 0 0;
    }
    .auth-right {
        border-radius: 0 0 10px 10px;
    }
    /* Footer  */

    .copyright a {
        display: inline;
        margin: 0 12px 0 0;
        float: left;
    }
}

@media (max-width: 991px) {
    .blocimg {
        order: 1;
    }

    .bloctxt {
        order: 2;
    }
}
/* REVIEWS HOME RESPONSIVE */

@media (max-width: 1200px) {
    .card-user-description .user .user-img img {
        max-width: 150px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }
}

/* HOW TO RESPONSIVE */

@media (max-width: 767px) {
    .ccm {
        width: auto;
    }
    .ccm .image img {
        max-width: 166px;
    }
}

@media (max-width: 900px) and (min-width: 768px) {
    .ccm .image {
        padding: 15px;
    }
}

/* FOOTE RRESPONSIVE */

@media (max-width: 576px) {
    .contact-us {
        display: block;
    }

    .btn-submit-orange[type="submit"] {
        margin-top: 5px;
        max-width: 100%;
    }

    .contact-us-input {
        margin-top: 10px;
    }

    .contact-us-email {
        margin-right: 0;
    }
}

@media (max-width: 767px) and (min-width: 577px) {
    .contact-us {
        justify-content: center;
        margin-top: 10px;
    }
}

/* PRESTATAIRES SEARCH PAGE RRESPONSIVE */

@media (max-width: 1365px) and (min-width: 1199px) {

    .capitalize span {
        font-size: 11px;
    }

    .infos-provider .capitalize.ml-2 {
        margin-left: 4px !important;
    }

    .infos-provider svg {
        width: 13px;
    }
}

@media (max-width: 984px) {


    .price-prestataire .details {
        text-align: left !important;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .prestataire-name {
        font-size: 20px;
    }

    .provider-ordering .orderby {
        font-size: 14px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .txt-provider {
        width: 100%;
        margin-top: 16px;
    }

    .provider-ordering {
        width: 100%;
    }

    .prestataire-name {
        font-size: 17px;
    }
}

@media (max-width: 576px) {
    .afficherNumero {
        margin-right: 0 !important;
    }

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





    .infos-provider .capitalize {
        margin-bottom: 5px;
    }

    .result-count {
        margin-bottom: 10px;
    }
}

/* PRESTATAIRES DETAIL PAGE RRESPONSIVE */

@media (max-width: 980px) {
    .prestataire-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .prestataire-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .prestataire-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* PRESTATAIRE REGISTER PAGE RRESPONSIVE */

@media (max-width: 767px) {
    .form-element-container {
        width: 100% !important;
    }

    .form-element-container input[type="radio"],
    .form-element-container input[type="checkbox"] {
        display: none;
    }

    .registration-page #app .form-mt-gutter-lg {
        margin: 0 !important;
    }

    .registration-page #app .form-shadow-btn {
        padding: 10px;
        margin: 0 5px;
    }

    #formProfileMetas .form-shadow-input.grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #formProfileMetas .form-border-width-input {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* PRESTATAIRE PROFILE PAGE RRESPONSIVE */

@media (max-width: 767px) {
    .profil-sidebar li {
        width: 100%;
    }

    .profil-sidebar {
        padding: 15px 15px 0 15px;
    }
}

/*----------------------------------------------------------- Responsive ------------------------------------------------------------*/

/* TOP BAR RESPONSIVE */
@media (max-width: 1200px) {
    .logoHome {
        width: 120px;
    }
    .subheaderMenu .left-menu{
        gap:24px !important
    }
}

@media (max-width: 1024px) {
    .hero__users_res {
        height: 525px;
    }

}

@media (max-width: 940px) {
    .logoHome {
        width: 111px;
        height: 25px;
        gap: 35px;
    }
    .btn-submit-blue{
        width: 175px;
        height: 36px;
        border-radius: 50px;
        padding: 10px;

        font-family: Neue Montreal,sans-serif;
        font-weight: 500;
        font-size: 14px !important;
        line-height: 16px;
        letter-spacing: 0;
        text-align: center;
        vertical-align: middle;
    }
    .hero__users_res {
        height: 425px;
    }
}

@media (max-width: 767px) {
    .borderbottom {
        padding-left: 10px;
    }
}

@media (max-width: 495px) {

    .hero__users_res{
        height: 237px !important;
    }
}
@media (max-width: 375px) {
    .logoHome {
        width: 100px;
    }
    .btn-submit-blue{
        width: 160px;
        font-size: 12px !important;
    }

}

@media (max-width: 320px) {
    .logoHome {
        width: 90px;
    }
    .btn-submit-blue{
        width: 120px;
        font-size: 10px !important;
    }
}

/* SLIDER SEARCH HOME RESPONSIVE */

@media (max-width: 990px) {

}

@media (max-width: 767px) {

}

/* LATEST MEMBERS HOME RESPONSIVE */

@media (max-width: 767px) {

}

/* TEXT IMAGE HOME RESPONSIVE */
@media (max-width: 767px) {

}

@media (max-width: 991px) {

}

/* REVIEWS HOME RESPONSIVE */

@media (max-width: 1200px) {

}

/* HOW TO RESPONSIVE */

@media (max-width: 767px) {

}

@media (max-width: 900px) and (min-width: 768px) {

}

/* FOOTE RRESPONSIVE */

@media (max-width: 576px) {

}

@media (max-width: 767px) and (min-width: 577px) {

}

/* PRESTATAIRES SEARCH PAGE RRESPONSIVE */

@media (max-width: 1365px) and (min-width: 1199px) {

}

@media (max-width: 984px) {

}

@media (max-width: 767px) {

}

@media (max-width: 576px) {

}

/* PRESTATAIRES DETAIL PAGE RRESPONSIVE */

@media (max-width: 980px) {

}

@media (max-width: 700px) {

}

@media (max-width: 560px) {
}

/* PRESTATAIRE REGISTER PAGE RRESPONSIVE */

@media (max-width: 767px) {

}

/* PRESTATAIRE PROFILE PAGE RRESPONSIVE */

@media (max-width: 767px) {

}

/* Déclarations correctes des polices */
@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Light.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-LightItalic.otf') format('opentype');
    font-weight: 300; /* Light */
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Italic.otf') format('opentype');
    font-weight: 400; /* Regular */
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-MediumItalic.otf') format('opentype');
    font-weight: 500; /* Medium */
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('/fonts/NeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700; /* Bold */
    font-style: italic;
    font-display: swap;
}

/* Variables CSS (correctes) */
:root {
    --color-primary: #F97316;
    --color-secondary: #169EF9;
    --color-tertiary: #FFD724;
    --color-quaternary: #F883D6;
    --color-quinary: #38D88E;
    --color-text-light: #FDF7F3;
    --color-text-dark: #0E2155;
    --font-family-neue-montreal: "Neue Montreal", sans-serif;
    --font-family-unbounded: "Unbounded", sans-serif;
    --border: 1px solid #F7F0EC;
}


/* Overlay (dark background) */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: rgba(0, 0, 0, .4);
    animation: animation-drawer-fade-in 0.3s ease-in-out 1;
}

.drawer-body {
    max-height: calc(100vh - 100px);
}

.menu-sub-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.1);
    z-index: 105;
}

.menu-sub-dropdown.show {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1,
    menu-sub-dropdown-animation-move-up 0.3s ease 1;
}

@keyframes animation-drawer-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes menu-sub-dropdown-animation-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes menu-sub-dropdown-animation-move-up {
    from {
        margin-top: 0.75rem;
    }
    to {
        margin-top: 0;
    }
}


.home-container {
    max-width: 1124px;
    width: 100%;
}

.txt-lg-unbounded {
    font-family: var(--font-family-unbounded);
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    vertical-align: middle;
}

.txt-md-unbounded {
    font-family: var(--font-family-unbounded);
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    vertical-align: middle;
}


.txt-xs {
    font-size: 13px;
    line-height: 24px;
    vertical-align: middle;
}

.txt-xl-unbounded {
    font-family: var(--font-family-unbounded);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
}

.txt-xl-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    vertical-align: middle;
}

.txt-lg-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    font-size: 24px;
    letter-spacing: 0;
    vertical-align: middle;
}

.txt-md-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    font-size: 20px;
    letter-spacing: 0;
    vertical-align: middle;
}

.txt-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    letter-spacing: 0;
    vertical-align: middle;
}

.txt-sm-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    font-size: 16px;
    letter-spacing: 0;
    vertical-align: middle;
}

.txt-xs-neue-montreal {
    font-family: var(--font-family-neue-montreal);
    font-size: 14px;
    letter-spacing: 0;
    vertical-align: middle;
}

p.p-description {
    font-family: var(--font-family-neue-montreal);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    margin: 0;
}

/* HERO---------------------------------------------------------------------::start*/

/*.hero__search {*/
/*    max-width: 666px;*/
/*}*/

.hero__search-bar {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: var(--border);
    align-items: center;
}

.input-with-icon input::placeholder {
    font-family: var(--font-family-neue-montreal);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    vertical-align: middle;
}

.hero__search-button {
    font-size: 16px;
    border-radius: 50px;
    font-family: var(--font-family-neue-montreal);
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
}

.hero__complex-search {
    position: relative;
}

.hero__complex-search a.hero__complex-search--link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: .2s ease-out;
}

.hero__search-button span,
.hero__search-button svg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(50%);
    z-index: 1;
    transition: .5s cubic-bezier(0.37, -0.26, 0.53, 1.33);
}

.hero__search-button span {
    transform: translateX(0%) translateY(-50%);
}

.hero__search-button svg {
    transform: translateX(100%) translateY(-50%);
}

.hero__search-button:hover span {
    transform: translateX(-100%) translateY(-50%);
}

.hero__search-button:hover svg {
    transform: translateX(0%) translateY(-50%);
}


.hero__complex-search:hover a.hero__complex-search--link::before {
    transform: translateY(5px);
}

.hero__user {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    padding-top: 56px;
}


.hero__user:nth-child(1) {
    background-color: var(--color-primary);
    height: 100%;
}

.hero__user:nth-child(2) {
    background-color: var(--color-secondary);
    height: 88%;
}

.hero__user:nth-child(3) {
    background-color: var(--color-tertiary);
    height: 92%;
}

.hero__user:nth-child(4) {
    background-color: var(--color-quaternary);
    height: 77%;
}

.hero__user:nth-child(5) {
    background-color: var(--color-quinary);
    height: 90%;
}

.hero__user:nth-child(3) .hero__user-infos,
.hero__user:nth-child(4) .hero__user-infos {
    color: var(--color-text-dark);
}

.hero__user-job {
    font-family: var(--font-family-neue-montreal);
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
}

.hero__user-img {
    height: 85%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__user-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.hero__user-img {*/
/*    background-position: 0 0;*/
/*    background-repeat: no-repeat;*/
/*}*/

/*.hero__user {*/
/*    overflow: hidden;*/
/*}*/

/*.hero__user:nth-child(1) .hero__user-img {*/
/*    height: 100%;*/
/*}*/

/*.hero__user:nth-child(2) .hero__user-img {*/
/*    height: 100%;*/
/*}*/

/*.hero__user:nth-child(3) .hero__user-img {*/
/*    height: 100%;*/
/*}*/

/*.hero__user:nth-child(4) .hero__user-img {*/
/*    height: 100%;*/
/*}*/

/*.hero__user:nth-child(5) .hero__user-img {*/
/*    height: 100%;*/
/*}*/

/*.hero__user-img img {*/
/*    height: 100%;*/
/*}*/

/* HERO---------------------------------------::end*/

/* SERVICES---------------------------------------------------------------------::start*/

.services__section {
    padding: 3rem;
}


/* SERVICES---------------------------------------::end*/

/* STATS---------------------------------------------------------------------::start*/

.stats__section-card:nth-child(1) {
    background-color: #A2D8FD;
    border: 1px solid #8FC6EB;
}

.stats__section-card:nth-child(2) {
    background-color: #FFD7BB;
    border: 1px solid #EEC49A;
}

.stats__section-card:nth-child(3) {
    background-color: #FCCDEF;
    border: 1px solid #F2B3E0;
}

.stats__section-card:nth-child(4) {
    background-color: #AFEFD2;
    border: 1px solid #8BD7B4;
}

/* STATS---------------------------------------::end*/

/* LATEST MEMBERS---------------------------------------------------------------------::start*/

/* Styles personnalisés pour le carousel */

.latestMembers__section .swiper-container::before,
.latestMembers__section .swiper-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 11%;
    height: 100%;
    z-index: 2;
}

.latestMembers__section .swiper-container::before {
    left: 0;
    background: linear-gradient(90deg, #FFE6F8, transparent);
}

.latestMembers__section .swiper-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent, #FFE6F8);
}

.swiper-card {
    border-radius: 24px !important;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

/* LATEST MEMBERS---------------------------------------::end*/

/* OUR SERVICES---------------------------------------------------------------------::start*/
.ourServices__section-content {
    padding: 16px;
}

/* OUR SERVICES---------------------------------------::end*/


/* TEXT IMAGE---------------------------------------------------------------------::start*/
.textImage__section .textImage__section-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.textImage__section .textImage__section-col ul li {
    position: relative;
    padding-left: 28px;
    font-family: 'Neue Montreal', sans-serif;
    color: #818C96;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0;
    vertical-align: middle;

}

.textImage__section .textImage__section-col ul li::before {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuOTk5OTggMTQuNjY2OEMxMS42NjY2IDE0LjY2NjggMTQuNjY2NiAxMS42NjY4IDE0LjY2NjYgOC4wMDAxNkMxNC42NjY2IDQuMzMzNSAxMS42NjY2IDEuMzMzNSA3Ljk5OTk4IDEuMzMzNUM0LjMzMzMxIDEuMzMzNSAxLjMzMzMxIDQuMzMzNSAxLjMzMzMxIDguMDAwMTZDMS4zMzMzMSAxMS42NjY4IDQuMzMzMzEgMTQuNjY2OCA3Ljk5OTk4IDE0LjY2NjhaIiBzdHJva2U9IiM4MThDOTYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNS4xNjY2OSA3Ljk5OTk1TDcuMDUzMzUgOS44ODY2MkwxMC44MzM0IDYuMTEzMjgiIHN0cm9rZT0iIzgxOEM5NiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo= ");
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #818C96;
    font-size: 16px;
}

/* TEXT IMAGE---------------------------------------::end*/

.swiper .swiper-initialized {
    background: red !important;
}

.testimonial-card {
    width: 439px !important;
    height: 350px;
}

.glide__slide {
    width: calc(440px - 10px) !important; /* (total width - total gap) / nombre de slides */
}

.account-settings li {
    position: relative;
}

.account-settings li::before,
.account-settings .active::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 0;
    background: #F97316;
    transition: all .3s ease;
}

.account-settings .active::before {
    height: 100%;
}

.account-settings li:hover::before {
    height: 100%;
    background: #f973164d;
}

/* Responsive styles */
@media (max-width: 768px) {

    .txt-xl-unbounded {
        font-size: 35px;
        line-height: 38px;
    }

    .txt-lg-unbounded {
        font-size: 28px;
        line-height: 28px;
    }

    .txt-xl-neue-montreal {
        font-size: 35px;
        line-height: 35px;
    }

    p.p-description {
        font-size: 14px;
        line-height: 19px;
    }

    .hero__search-bar {
        flex-direction: column;
        border-radius: 20px;
    }

    .input-with-icon {
        width: 100%;
        padding: 10px 15px;
    }

    .hero__user {
        padding-top: 35px;
    }

}

@media (max-width: 494px) {
    .hero__user-img img {
        height: auto;
    }
}
