/* color code */

.default-text {
    color: #d61c53;
}

.secondary-text {
    color: #a32691;
}

.cba-text {
    color: #2bc89a;
}

.default-bg {
    background-color: #d61c53;
    color: white;
}

.secondary-bg {
    background-color: #a32691;
    color: white;
}

.icon-radius {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    background-image: url("../../cba-admin/assets/images/background.jpg");
    background-position: fixed;
    background-size: 100%;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    background-color: #d61c53;
    border-radius: 20px;
}

.body {
    margin-top: 10vh;
}

.menu {
    height: 50px;
    width: 100%;
    position: fixed;
    top: 0;
    padding: 0 10px;
    background-color: #fcf9f9;
    box-shadow: 0 0 5px rgb(204, 204, 204);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 8;
}

.logo {
    width: 30%;
}

.logo img {
    width: 70px;
}

.menu-items {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon {
    font-size: 1.2em;
    border-radius: 35px;
    width: 35px;
    height: 35px;
    background-color: #d61c53;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-transparent {
    color: black;
    background-color: transparent;
    width: auto;
    height: auto;
    font-size: 1.6em;
}

.menu-item {
    color: black;
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.search-text {
    font-size: 12px;
    margin-right: 10px;
    font-weight: 400;
}

.princ {
    height: 235px;
    width: 100%;
    margin-top: 40px;
}
.princ .carousel{
    position:relative;
}
.princ .carousel-item {
    background-color: #d61c53;
    width: 100%;
    height: 230px;
    border-bottom-right-radius: 60px;
    background-image: url("../img/acceuil_cba.jpg");
    background-size: cover;
    cursor: pointer;
}

.princ .inner-carousel {
    width: 60%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel-text {
    color: white;
    line-height: 10px;
    font-size: 18px;
    font-weight: bold;
}

.smaller {
    font-size: 12px;
    font-weight: normal;
}

.carousel-img {
    width: 25vw;
}

.text-no-active {
    font-size: 1.8em;
}

.text-no-active-smaller {
    font-size: 0.8em;
    line-height: 1.5em;
    margin-left: 5px;
}

.client-pub {
    height: 190px;
    width: 98%;
    margin: 10px auto;
    position: relative
}

.client-pub .inner-carousel {}

.client-pub .carousel-item {
    width: 100%;
    background-size: cover;
    position: relative;
    cursor: pointer;
}

.recherche {
    height: fit-content;
    width: 98%;
    background: rgb(103, 23, 101);
    background: linear-gradient( 90deg, rgba(103, 23, 101, 1) 0%, rgba(188, 32, 106, 1) 35%, rgba(189, 8, 61, 1) 100%);
    margin: 5px auto;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.search-h4 {
    color: white;
    font-weight: bold;
    text-align: right;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 20px;
}

.select-item {
    background-color: white;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
    width: 90%;
    border: none;
    padding: 10px 20px;
}

.submit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 95%;
}

.btn-search {
    background-color: #262626;
    padding: 10px 15px;
    color: white;
    border-radius: 15px;
    width: 150px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories {
    width: 98%;
    overflow-x: scroll;
}

.categories::-webkit-scrollbar {
    display: none;
}

.categories-items {
    display: flex;
    width: 100%;
    width: fit-content;
    align-items: center;
    margin: 0 auto;
}

.categorie-item {
    width: 23%;
    margin: 0 1%;
}

.categorie-item .cat-img {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background-size: cover;
    cursor: pointer;
}

.titre-cat {
    font-size: 13px;
    text-align: center;
    color: #d61c53;
}

.section {
    width: 96%;
    display: flex;
    justify-content: space-between;
    margin: 10px auto;
    flex-wrap: wrap;
}

.section .card-cba {
    background: url(../../cba-admin/assets/images/note.png);
    background-size: cover;
    width: 48%;
    height: 16vh;
    border-radius: 15px;
    padding: 15px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.card-cba i {
    font-size: 22px;
    margin-top: 10px;
}

.card-cba p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.menu-footer {
    height: 50px;
    background-color: #fcf9f9;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 7;
    box-shadow: 0 0 5px rgb(204, 204, 204);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3vh;
    color: rgb(94, 94, 94);
    cursor: pointer;
    transition: all 0.4s;
}

.footer-item:hover {
    color: #d61c53;
}

.footer-active {
    color: #d61c53;
    font-weight: bold;
}

.footer-item p {
    font-size: 12px;
}

.actus {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 9.5vh;
    overflow-x: scroll;
}

.actus::-webkit-scrollbar {
    display: none;
}

.actus .actus-items {
    width: fit-content;
    display: flex;
}

.actus-items .actus-item {
    width: 43vw;
    height: 32vh;
    background-color: #262626;
    border-radius: 10px;
    margin-right: 2vw;
    background-image: url("../../cba-admin/assets/images/shutterstock_713892805.jpg");
    background-size: cover;
    position: relative;
    cursor: pointer;
}

.actus-items .actus-item .actus-body {
    background-color: #fcf9f9d3;
    padding: 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 10px;
    right: 12px;
    left: 12px;
}

.actus-body .h5 {
    font-size: 14px;
    color: #d61c53;
    text-transform: uppercase;
}

.p-actus {
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    margin-bottom: 10px;
}

.actus-btn {
    font-size: 12px;
    color: white;
    background-color: #d61c53;
    border-radius: 5px;
    padding: 5px;
}

.banniere {
    margin-top: 10vh;
    height: 30vh;
    background-color: #262626;
    background-size: cover;
    width: 100%;
    border-bottom-right-radius: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.sous_categories {
    width: 100%;
    padding: 10px;
    margin-bottom: 1vh;
}

.sous_categories .sous-item {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    margin: 5px auto;
    border-radius: 10px;
    border: 1px solid #eee;
    cursor: pointer;
}

.sous_categories .sous-item .sous-img {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.sous_categories .sous-item .sous-btn {
    background-color: #a32691;
    color: white;
    padding: 2px 7px;
    border-radius: 6px;
}

.sous-b-body {
    display: flex;
    align-items: center;
    width: 80%;
}

.sous-b-body .sous-body {
    display: flex;
    padding-top: 10px;
    flex-direction: column;
    justify-content: center;
    line-height: 5px;
    margin-left: 10px;
}

.sous-b-body .sous-body .sous-titre {
    font-weight: bold;
}

.sous-b-body .sous-body p small {
    font-size: x-small;
}


/* Start state */

.animated-modal {
    max-width: 550px;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(-50px);
    transition: all 0.7s;
}

.animated-modal h2,
.animated-modal p {
    transform: translateY(-50px);
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.4s;
}


/* Final state */

.fancybox-slide--current .animated-modal,
.fancybox-slide--current .animated-modal h2,
.fancybox-slide--current .animated-modal p {
    transform: translateY(0);
    opacity: 1;
}


/* Reveal content with different delays */

.fancybox-slide--current .animated-modal h2 {
    transition-delay: 0.1s;
}

.fancybox-slide--current .animated-modal p {
    transition-delay: 0.3s;
}


/* blog */

.blog-banniere {
    background-image: url("../img/b4.png");
    background-color: #d61c53;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 30vh;
    margin-top: 10vh;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fcf9f9;
    position: relative;
}

.blog-banniere .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #26262610;
    top: 0;
    left: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-banniere h3 {
    font-weight: bold;
    line-height: 15px;
    z-index: 1;
}

.blog-banniere p {
    font-size: 12px;
    z-index: 1;
    width: 60%;
}

.blog-categories {
    width: 100%;
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.blog-categories .item {
    width: 48%;
    height: 15%;
    background-image: url("../img/allcat.png");
    background-color: #d61c53;
    background-size: cover;
    margin-bottom: 15px;
    border-radius: 10px;
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-categories .item i {
    font-size: 2em;
    padding-bottom: 10px;
}

.blog-categories .item p {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: small;
}

.networks {
    width: 100%;
    text-align: center;
    margin-bottom: 15vh;
}

.networks .blog-link {
    background-color: #d61c53;
    color: white;
    margin: 0 5px;
    padding: 10px 10px;
    border-radius: 5px;
}

.networks .blog-link:first-child {
    background-color: rgb(7, 7, 192);
}


/* fin blog*/


/* categories */

.categories-items-cat {
    width: 100%;
    padding: 0 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
}

.categories-items-cat .item {
    width: 48%;
    height: 15vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: white;
    border: 1px solid rgb(243, 242, 242);
    border-radius: 10px;
    margin-bottom: 5px;
    cursor: pointer;
}

.categories-items-cat .item>img {
    width: 40%;
}

.categories-items-cat .item p {
    font-size: 13px;
    width: 40%;
    font-weight: 700;
}

.en-tete {
    margin-top: 10vh;
    width: 100%;
    padding: 10px 20px;
    background-color: #d61c53;
}

.en-tete h4 {
    color: white;
    font-weight: bold;
}


/* reglage*/

.reglage-items {
    width: 100%;
    padding: 20px;
}

.reglage-items .item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.reglage-items .item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d61c53;
    color: white;
    margin-right: 5px;
}

.reglage-items .item .item-body {
    line-height: 5px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 5px;
}

.reglage-items .item .item-body h5 {
    font-size: 16px;
    font-weight: 500;
    color: rgb(85, 85, 85);
}

.reglage-items .item .item-body p {
    font-size: 13px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #2626263a;
    z-index: 10;
    height: 100vh;
}

.sidebar .side {
    width: 60%;
    height: 100vh;
    background: rgb(103, 23, 101);
    background: linear-gradient( 360deg, rgba(103, 23, 101, 1) 0%, rgba(188, 32, 106, 1) 35%, rgba(189, 8, 61, 1) 100%);
    overflow-y: scroll;
    color: white;
}

.sidebar .side::-webkit-scrollbar {
    display: none;
}

.sidebar .side .profil {
    width: 100%;
    display: flex;
    align-items: center;
    height: 15vh;
    padding: 20px;
    border-bottom: 1px solid rgba(131, 131, 131, 0.692);
}

.sidebar .side .profil .logo {
    width: 60px;
    height: 60px;
    background-size: cover;
    border-radius: 30px;
}

.sidebar .side .profil .profil-body {
    display: flex;
    width: fit-content;
    margin-left: 10px;
    height: 60px;
    flex-direction: column;
    justify-content: center;
    line-height: 10px;
}

.sidebar .side .profil .profil-body h5 {
    font-weight: 700;
    font-size: 16px;
}

.sidebar .side .profil .profil-body p {
    font-size: 14px;
}

.sidebar .side .side-body {
    width: 100%;
}

.sidebar .side .side-body .item,
.sidebar .side .side-footer .item {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #2626263d;
    padding: 5px 15px;
    padding-top: 15px;
    cursor: pointer;
    align-items: center;
}

.sidebar .side .side-body .item>p,
.sidebar .side .side-footer .item>p {
    margin-right: 10px;
    font-size: 12px;
}

.avis-item {
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a32691;
    padding: 5px 10px;
}

.avis-item.active {
    background-color: #a32691;
    color: white;
    border-radius: 20px;
}


/* review */

.div-img {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.img-div {
    width: 12px;
    height: 10px;
    border-radius: 20px;
    margin-left: 12px;
    color: orange;
}

.img-div:first-child {
    margin-left: 0;
}

.div1-1 {
    border: 1px solid rgb(238, 238, 238);
    width: 48%;
    height: fit-content;
    border-width: 1px;
    border-radius: 12px;
    padding: 10px 0;
}

.div1 {
    text-align: center;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    align-items: center;
}

.txt2 {
    font-size: 10px;
}

.txt1 {
    text-transform: capitalize;
    font-weight: 600;
    margin-left: 10px;
}

.div-ee {
    font-size: 40px;
}

.count {
    display: flex;
    justify-content: center;
}

.count div:first-child {
    font-size: 40px;
    font-weight: bold;
}

.count div:nth-child(2) {
    font-size: 24px;
}

.div1-31 {
    width: 60%;
    height: 4px;
    background-color: rgb(226, 224, 224);
    margin: 12px;
}

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

.div2-1 {
    width: 60px;
    height: 60px;
    background-image: url(https://www.securities-services.societegenerale.com/uploads/tx_bisgbio/default-profile.png);
    background-size: cover;
    background-color: white;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 30px;
    margin-right: 12px;
}

.div2 {
    display: flex;
    list-style: none;
    border-bottom: 1px solid rgb(238, 238, 238);
    padding: 20px;
    align-items: center;
}

.div22 {
    width: fit-content;
    color: orange;
}

.div22 i {
    padding-right: 2px;
    font-size: 12px;
}

.divv {}

.txt2-2 {
    padding-top: 5px;
    font-weight: bold;
}

.txt2-3 {
    padding-top: 2px;
    color: rgb(134, 134, 134);
    font-size: 10px;
}

.note {
    padding: 2px 5px;
    background-color: red;
    color: white;
}

.txt3 {
    font-weight: bold;
    font-size: 14px;
    margin-left: 15px;
}

.review {
    background-color: white;
    padding-top: 18%;
}

.notations {
    width: 100%;
    padding: 10px;
}

.notations .txt4 {
    font-weight: bold;
    padding: 0;
    margin-bottom: 0;
}

.notations .form-group {
    margin-top: 0;
    margin-bottom: 20px;
}

.notation {
    display: flex;
    position: relative;
    transform: rotateY(180deg);
    width: 180px;
}

.notations .notation input {
    display: none;
}

.notations .notation label {
    cursor: pointer;
    width: 35px;
}

.notation label::before {
    content: "\f005";
    font-family: fontAwesome;
    position: relative;
    display: block;
    font-size: 30px;
    color: rgba(192, 192, 192, 0.801);
}

.notation label::after {
    content: "\f005";
    font-family: fontAwesome;
    position: absolute;
    display: block;
    font-size: 30px;
    color: orange;
    top: 0;
    opacity: 0;
    transition: 0.5s;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.notation label:hover::after,
.notation label:hover~label::after,
.notation input:checked~label::after {
    opacity: 1;
}

.notations .form-group textarea {
    width: 100%;
    height: 80px;
    font-size: 16px;
    border: none;
    outline: none;
    border-bottom: 1px solid black;
    transition: all 0.5s;
}

.notations .form-group textarea::placeholder {
    color: #ccc;
}

.notations .form-group textarea:active,
.notations .form-group textarea:focus {
    border-color: #a32691;
    border-width: 2px;
    transition: all 0.5s;
}

.notations .form-group .bouton {
    width: 100%;
    border: none;
    padding: 5px;
    border-radius: 20px;
    background-color: #d61c53;
    color: white;
}


/* search */

.search {
    width: 100%;
}

.banner-search {
    width: 100%;
    height: 240px;
    background-color: #d61c53;
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 20px;
}

.banner-search a {
    color: white;
    font-size: 22px;
}

.banner-search h2 {
    font-weight: bold;
}

.banner-search .input-search input {
    background-color: transparent;
    border: none;
    border: 2px solid white;
    outline: none;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    font-size: 16px;
}

.banner-search .input-search input::placeholder {
    color: #eee;
}

.banner-search .boutton {
    width: 100%;
    text-align: center;
    color: #d61c53;
    background-color: white;
    border: none;
    padding: 5px;
    border-radius: 15px;
    margin-top: 10px;
    font-weight: bold;
    outline: none;
}

.search .search-error {
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* apropos */

.about {
    padding: 10px 0;
}

.about .container p {
    font-size: 14px;
}

@keyframes slider-bar {
    0% {
        width: 0%;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes captionText {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mask {
    0% {
        opacity: 0;
        transform: scale(0);
        border-radius: 100%;
    }
    100% {
        opacity: 1;
        transform: scale(1);
        border-radius: 0%;
    }
}

@keyframes search-mob {
    0% {
        opacity: 0;
        width: 20%;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideclose {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        width: 0;
    }
}


/* service */

.titre-serv {
    padding-top: 2vh;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 500;
}

.service-body {
    padding: 5px 10px;
    width: 100%;
}

.service-body .service-item {
    background-color: white;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.service-body .service-item .logo-note {
    width: 40%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-note .logo-prest {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
}

.logo-note .prest-note {
    text-align: center;
}

.logo-note .prest-note i {
    font-size: 12px;
    text-align: center;
}

.logo-note .prest-infos {
    line-height: 5px;
}

.prest-infos>.titre-page {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 5px;
}

.prest-infos .prest-nom .nom {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

.prest-infos .prest-nom {
    display: flex;
}

.prest-infos .prest-loc {
    display: flex;
    align-items: center;
}

.prest-infos .prest-loc p {
    text-transform: capitalize;
    font-weight: 400;
}

.prest-btn {
    margin-bottom: 10px;
    margin-top: 0;
}

.prest-btn a {
    background-color: #2bc89a;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: small;
}


/* prestataire*/

.div11 {
    position: relative;
    width: 100%;
    height: 400px;
    border-bottom-right-radius: 150px;
    background-color: rgb(158, 13, 158);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.div11-1 {
    position: absolute;
    width: fit-content;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.459);
    color: white;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 25px;
    bottom: 20px;
    padding-right: 50px;
}

.div11-1 p {
    margin: 0;
    margin-left: 14px;
    font-weight: bold;
}

.heart {
    position: absolute;
    right: 15px;
    top: 380px;
}

.heart i {
    color: #d61c53;
    font-size: 38px;
    cursor: pointer;
    transition: all 0.3s;
}

.heart i:hover {
    transform: scale(1.05);
}

.kin {
    color: #d61c53;
    left: 30px;
    font-weight: bold;
}

.div12 {
    width: 100%;
}

.div12-1 {
    position: fixed;
    bottom: 0;
    margin: 0;
    padding: 0 10px;
    z-index: 3000;
    width: 100%;
    height: 7vh;
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 3px rgb(230, 230, 230);
    background-color: white;
}

.div12-liste:hover {
    border: 1px solid rgb(158, 13, 158);
    border-radius: 20px;
    background: rgb(170, 8, 170);
    color: white;
}

.div12-liste {
    padding: 5px 30px;
    text-align: center;
    color: rgb(170, 8, 170);
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.7rem;
}

.div12-liste.active {
    background: rgb(170, 8, 170);
    color: white;
    border-radius: 20px;
}

.adress {
    position: relative;
    color: #d61c53;
    font-size: 14px;
    font-weight: bold;
}

.sp1 {
    position: absolute;
    color: black;
    padding-top: 6px;
}

.prest-body {
    padding: 10px 20px;
    padding-top: 40px;
}


/* galeries */

.pr_galeries {
    width: 100%;
    padding: 0 5px;
    padding-bottom: 40px;
    margin-top: 10vh;
}

.pr_galeries .img-galerie {
    width: 100%;
    height: 300px;
    background-color: #a32691;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    cursor: pointer;
}


/*service prestataire*/

.galerie-services {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    flex-wrap: wrap;
}

.galerie-services .service-item {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.galerie-services .service-item p {
    font-size: 12px;
    color: #a32691;
}

.galerie-services .service-item .service-item-img {
    background-color: #a32691;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;
}

.others {
    width: 100%;
    padding: 0 20px;
}

.others .others-item {
    background-color: #d61c53;
    border-radius: 20px;
    width: 100%;
    padding: 5px 10px;
    color: white;
    margin-bottom: 5px;
}

.logo-page {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-image: url(../img/icon.png);
    background-size: cover;
    margin-bottom: 50px;
}

.connercter-menu .input {
    display: flex;
    flex-direction: column;
    border: 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    width: 100%;
    padding: 10px 20px;
    outline: none;
    background: transparent;
    transition: all 0.3s;
    color: white;
}

.connercter-menu {
    width: 100%;
}

.btn-page {
    width: 30%;
    height: 6vh;
    border-radius: 12px;
    background-color: black;
    color: white;
    border: 0;
    outline: none;
}

.inscript {
    padding: 28px 0;
}

.conneceter .connect-elm {
    width: 100%;
    padding: 20px;
}

.conneceter div .connercter-menu .form-group {
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    width: 100%;
}

.conneceter div .connercter-menu .form-group label {
    position: absolute;
    left: 0;
    top: 10px;
}

.inscript p {
    padding: 0;
    color: white;
    margin: 0;
    font-size: 14px;
}

.inscript .forget-btn {
    text-decoration: underline;
    margin-bottom: 10px;
}

.connercter-menu input::placeholder {
    color: rgb(218, 216, 216);
    font-size: 11px;
}

.connercter-menu input:focus {
    border-bottom: 3px solid white;
}

.inscript a {
    color: white;
}

.inscription {
    text-decoration: none;
}

.connercter-menu select {
    display: flex;
    flex-direction: column;
    border: 0px;
    border-bottom: 1px solid rgb(255, 255, 255);
    width: 100%;
    padding: 10px 20px;
    outline: none;
    background-color: transparent;
    color: white;
}

.connercter-menu select option {
    color: #262626;
    background-color: transparent;
}

.inscript-2 p {
    padding: 18px 0;
    color: white;
}

.inscription-2 {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.conneceter {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #d61c54ce;
}

.indication {
    border-left: 2px solid white;
    padding: 0 5px;
    color: white;
}

.indication {
    border-left: 2px solid white;
    padding: 0 5px;
    color: white;
    font-size: 12px;
}

@media screen and (min-width: 1080px) {
    body::before {
        content: "la version full web n'est pas encore disponible, veuillez redimensioner l'ecran à la taille d'un mobile";
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        margin: 0;
        padding: 0;
        background-color: orangered;
        z-index: 5000;
        color: white;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .princ {
        height: 190px;
        width: 100%;
        margin-top: 42px;
        position: relative
    }
    .client-pub {
        height: 140px;
    }
    .div11 {
        height: 300px;
        border-bottom-right-radius: 100px;
    }
    .heart {
        position: absolute;
        right: 15px;
        top: 310px;
    }
    .princ .carousel-item {
        height: 190px;
    }
    .princ .inner-carousel {
        width: 60%;
        height: 250px;
      
    }
}