@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

::-webkit-scrollbar {
    width: .5rem;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #ff9017;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 144, 23, 0.8);
}

a,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding-left: 0;
}

button {
    border: none;
    cursor: pointer;
    background-color: none;
}

button:focus {
    outline: none;
}

input:focus {
    outline: none;
}

.navigation .nav--c .logo a {
    color: #000;
}

.navigation .nav--c .logo a:hover {
    text-decoration: none;
}

.logo a h1 {
    font-family: 'Mochiy Pop P One', sans-serif !important;
    font-size: 2.5rem;
}

@media only screen and (max-width: 48em) {
    .logo a h1 {
        font-size: 2rem;
    }
}

.h-nav ul {
    padding-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.h-nav ul li {
    margin-right: 3rem;
}

.h-nav ul li a {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.h-nav ul li a:hover {
    color: #ff9017;
}

.h-nav ul li a:hover svg {
    fill: #ff9017 !important;
}

.h-nav ul li a .icon-menu {
    width: 3.5rem;
    height: 4.5rem;
    margin-right: 1rem;
}

.h-nav ul li a .icon-menu svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-nav ul li a .icon-menu1 {
    width: 2rem;
    height: 3rem;
    margin-right: 1rem;
}

.h-nav ul li a .icon-menu1 svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 48em) {
    .h-nav {
        display: none;
    }
}

.navigation {
    padding: 2rem 0;
    background: white;
}

/* .navigation .container { */
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
/* } */

.navigation .menu {
    transition: all .3s ease-in-out;
}

.navigation .menu .blog-menu{
    display: block;
}

@media only screen and (max-width:48rem){
    .navigation .menu .blog-menu{
        display: none!important;
    }
}

.navigation .menu ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.navigation .menu ul li {
    margin-right: 2rem;
}

.navigation .menu ul li a {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.navigation .menu ul li a:hover {
    color: #ff9017;
}

.navigation .menu .menu--btns li {
    margin-right: 2rem;
}

@media only screen and (max-width: 62em) {
    .navigation .menu {
        height: 100vh;
        width: 28rem;
        position: fixed;
        top: 0;
        background: white;
        box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.08);
        z-index: 111;
        right: -100%;
        padding: 2rem 1.5rem;
    }
    .navigation .menu ul {
        display: block !important;
    }
    .navigation .menu ul li {
        margin: 1rem 0;
        width: 100%;
    }
    .navigation .menu .btn-nav {
        border: 1px solid #000;
        color: #000;
    }
    .navigation .menu .btn-nav:hover {
        background-color: #000;
        color: #fff;
    }
    .navigation .menu li a {
        color: #000 !important;
    }
    .navigation .menu .btn-nav1:hover {
        background-color: #fff;
    }
}

.navigation .menu--enter {
    display: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #ff9017;
}

@media only screen and (max-width: 62em) {
    .navigation .menu--enter {
        /* display: block; */
        display: inline-block;
        float: inline-end;
    }
}

.navigation .menu--exit {
    height: 3rem;
    width: 3rem !important;
    color: #00A9A9;
    border-radius: 50%;
    border: 2px solid #00A9A9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
}

.navigation .menu--exit i {
    font-size: 2.3rem;
    color: #00A9A9 !important;
}

@media only screen and (max-width: 62em) {
    .navigation .menu--exit {
        display: block;
    }
}

.btn-nav {
    padding: 1rem 2rem;
    border-radius: 40px;
    width: 100%;
    color: black;
    font-weight: bold;
    background-color: transparent;
    border: 1px solid #000;
    transition: all .3s ease-in-out;
}

@media only screen and (max-width: 62em) {
    .btn-nav {
        padding: 1rem;
    }
}

.btn-nav:hover {
    background-color: #000;
    color: #fff;
}

.btn-nav1 {
    padding: 1rem;
    border-radius: 40px;
    width: 100%;
    color: #fff;
    font-weight: bold;
    background-color: #ff9017;
    border: 1px solid #ff9017;
    transition: all .3s ease-in-out;
}

@media only screen and (max-width: 62em) {
    .btn-nav1 {
        padding: 1rem;
    }
}

.btn-nav1:hover {
    background-color: transparent;
    color: #ff9017;
}

.nav--second {
    padding: 2rem 0;
}

.nav--second ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
}

.nav--second ul li {
    margin-right: 2rem;
}

.nav--second ul li a {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all .3s ease-in-out;
    padding: 1rem;
    border-radius: 20px;
    text-decoration: none;
}

.nav--second ul li a:hover {
    background-color: #000;
    color: #fff;
    padding: 1rem;
}

.act a {
    background-color: #000;
    color: #fff !important;
    padding: 1rem;
}

.act1 a {
    color: #ff9017 !important;
}

.act1 a svg {
    fill: #ff9017 !important;
}

.ul--drop__down {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
    background-color: white;
    position: absolute;
    top: 4rem;
    right: 1rem;
    margin-top: 1.5rem;
    border: 1px solid #e5e5e5;
    width: 20rem;
}

.ul--drop__down::after {
    content: '';
    position: absolute;
    height: 1.5rem;
    border: 1px solid #e5e5e5;
    width: 1.5rem;
    background-color: white;
    z-index: -11;
    top: -.6rem;
    right: 5px;
    transform: rotate(45deg);
}

.ul--drop__down--title {
    padding: 1rem;
    background-color: #fcfcfc;
    border-bottom: 1px solid #e5e5e5;
}

.ul--drop__down--title h3 {
    font-size: 14px;
}

.ul--drop__down--title p {
    font-size: 13px;
}

.ul--drop__down--title p a {
    color: #00A9A9;
}

.ul--drop__down li {
    padding: 1rem;
    cursor: pointer;
    border-left: none;
    height: initial;
    display: block;
    border-right: none;
}

.ul--drop__down li:hover {
    background-color: #fcfcfc;
}

.ul--drop__down1 ul {
    border-bottom: 1px solid #e5e5e5;
}

.ul--drop__down1 li {
    font-size: 13px;
    padding: .7rem 1rem !important;
    transition: all .3s ease-in-out;
}

.ul--drop__down1 li:hover {
    margin-left: 1rem;
    background-color: white !important;
}

.ul--drop__down1 li a {
    color: #000;
}

.ul--drop {
    position: relative;
    z-index: 111;
}

.ul--drop button:focus+.ul--drop__down {
    visibility: visible;
    opacity: 1;
}

.ul--drop__down1 ul {
    border-bottom: 1px solid #e5e5e5;
}

.ul--drop__down1 li {
    font-size: 13px;
    padding: .7rem 1rem !important;
    transition: all .3s ease-in-out;
}

.ul--drop__down1 li:hover {
    margin-left: 1rem;
    background-color: white !important;
}

.ul--drop__down1 li a {
    color: #000;
}

.ul--drop {
    position: relative;
    z-index: 111;
}

.ul--drop button:focus+.ul--drop__down {
    visibility: visible;
    opacity: 1;
}

.notif {
    position: relative;
    margin-right: 2rem;
}

@media only screen and (max-width: 48em) {
    .notif {
        margin-right: 1rem;
    }
}

.notif i {
    font-size: 2.5rem;
    color: #fff;
}

@media only screen and (max-width: 48em) {
    .notif i {
        font-size: 2rem;
    }
}

.notif span {
    height: 1rem;
    width: 1rem;
    position: absolute;
    line-height: 2rem;
    color: white;
    font-size: 13px;
    text-align: center;
    top: 0rem;
    right: 0rem;
    background-color: #ff9017;
    border-radius: 50%;
}

.lg--green {
    background-color: transparent;
    display: flex;
    align-items: center;
    position: relative;
}

.lg--green span {
    color: #00A9A9;
    margin-right: .5rem;
    font-size: 1.4rem;
}

.lg--green h3 {
    margin-bottom: 0;
    color: #7AA4D1;
    font-weight: bold;
    background-color: #EFF7FF;
    border-radius: 50%;
    border: 1.5px solid #DFE0EB;
    height: 4rem;
    width: 4rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-profil {
    background-color: #00A9A9;
}

.nav-profil .logo a {
    color: #fff !important;
}

.ul-dash {
    border: 1px solid #ccc;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.ul-dash ul {
    margin-bottom: 0;
}

.ul-dash ul li {
    padding: 1rem 2rem;
    border-bottom: 1px solid #ccc;
}

.ul-dash ul li:last-child {
    border-bottom: 0;
}

.ul-dash ul li a {
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    transition: all .3s ease-in-out;
}

.ul-dash ul li a:hover {
    color: #ff9017;
}

.nav--g {
    background-color: #00A9A9;
}

.nav--g .logo a {
    color: #fff !important;
}

.nav--g .btn-nav {
    border: 1px solid #fff;
    color: white;
}

.nav--g .btn-nav:hover {
    background-color: transparent;
    color: #fff;
}

.nav--g li a {
    color: #fff !important;
}

.nav--g li a:hover {
    color: #ff9017 !important;
}

.nav--g .btn-nav1:hover {
    background-color: #fff;
}

.nav--sg {
    background-color: #00A9A9;
}

.nav--sg a {
    color: #fff !important;
}

.nav--sg a:hover {
    background-color: #fff !important;
    color: #000 !important;
}

.nav--sg .act a {
    background-color: #fff;
    color: #000 !important;
    padding: 1rem;
}

.group--input {
    margin-bottom: 6rem;
}

@media only screen and (max-width: 48em) {
    .group--input {
        margin-bottom: 4rem;
    }
}

.group--input label {
    font-size: 13px;
    margin-bottom: 1rem;
}

.group--input input,
.group--input textarea,
.group--input select {
    padding: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    outline: none;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.group--input input:focus,
.group--input textarea:focus,
.group--input select:focus {
    border: 1px solid #00A9A9;
}

.group--input textarea {
    height: 15rem;
}

.lbl {
    color: #000;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 2rem;
}

.fa1 {
    width: 70%;
}

@media only screen and (max-width: 48em) {
    .fa1 {
        width: 100%;
    }
}

.country {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.country img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.country select {
    margin-left: 1rem;
    border: none;
    border-radius: 0;
    width: 100%;
    outline: none;
    font-size: 14px;
}

.fileupload-wrapper .card-upld {
    border: 2px dashed #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding: 30px 30px 40px;
    position: relative;
}

.fileupload-wrapper .card-textupld {
    text-align: center;
    color: #6f6f6f;
}

.fileupload-wrapper .card-textupld .txt-card {
    margin-bottom: 2rem;
}

.fileupload-wrapper .card-textupld .txt-card h3 {
    font-size: 1.7rem;
    color: #666;
    margin-bottom: 0;
}

.fileupload-wrapper .card-textupld .txt-card p {
    font-size: 1.3rem;
    color: #000;
}

.fileupload-wrapper .card-textupld input[type="file"] {
    display: none;
}

.fileupload-wrapper .card-textupld button {
    margin: 0;
    padding: 1rem 2rem;
    width: fit-content;
}

.resRe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 36em) {
    .resRe {
        display: block;
    }
}

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

.ul--connexion li {
    margin-right: 1rem;
}

.ul--connexion li button {
    padding: .5rem 2.5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
}

.ul--connexion li img {
    height: 4rem;
    object-fit: cover;
}

.step {
    display: none;
}

.active {
    display: block;
}

#progress-bar {
    width: 100%;
    background-color: #ccc;
    height: 2px;
    margin: 40px 0;
}

#progress {
    height: 100%;
    width: 0;
    background-color: #ff9017;
}

.otp .pin-code {
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.otp .pin-code input {
    border: none;
    border-radius: 5px;
    text-align: center;
    width: 48px;
    height: 48px;
    font-size: 36px;
    background-color: #e0e0e0;
    margin-right: 5px;
}

.otp .pin-code input:focus {
    border: 1px solid #00A9A9;
    outline: none;
}

.otp input::-webkit-outer-spin-button,
.otp input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-site {
    padding: 1rem;
    border-radius: 5px;
    width: 100%;
    color: white;
    background-color: #ff9017;
    border: 2px solid #ff9017;
    transition: all .3s ease-in-out;
    margin: 2rem 0;
}

.btn-site:hover {
    background-color: #fff;
    color: #ff9017;
}

.btn-site1 {
    padding: 1rem;
    border-radius: 5px;
    width: 100%;
    color: white;
    background-color: #00A9A9;
    border: 2px solid #00A9A9;
    transition: all .3s ease-in-out;
    margin: 2rem 0;
}

.btn-site1:hover {
    background-color: #fff;
    color: #00A9A9;
}

.btn-site2 {
    padding: .8rem;
    border-radius: 5px;
    width: fit-content;
    color: white;
    background-color: #000;
    border: 2px solid #000;
    transition: all .3s ease-in-out;
}

.btn-site2:hover {
    background-color: #fff;
    color: #000;
}

.btns {
    display: flex;
}

.btns .btn-site {
    margin-left: 1rem;
}

.card--ro {
    padding: 4rem;
    border-radius: 4px;
    background-color: #fff5f2;
}

.card--ro h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.card--ro ol {
    margin-left: 2rem;
}

.card--ro ol li {
    font-size: 1.3rem;
}

.card--ro ol li a {
    color: #000;
    text-decoration: underline !important;
}

.card--validate {
    width: 40%;
    margin: 4rem auto;
    padding: 4rem;
    border-radius: 4px;
    text-align: center;
    background: url(/public/icones/image-5.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

@media only screen and (max-width: 62em) {
    .card--validate {
        width: 60%;
    }
}

@media only screen and (max-width: 48em) {
    .card--validate {
        width: 80%;
    }
}

@media only screen and (max-width: 36em) {
    .card--validate {
        width: 100%;
    }
}

.card--validate h1 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.card--validate img {
    height: 8rem;
    margin: 1rem;
}

.card--connexion form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card--connexion h2 {
    font-weight: bold;
    margin-bottom: 2rem;
}

.card--connexion label {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card--connexion .country {
    border: 1px solid #ccc;
    transition: all .3s ease-in-out;
    padding: 1.5rem;
}

.card--connexion .country:hover {
    border: 1px solid #00A9A9;
}

.card--connexion .country input {
    width: 100%;
    border: none;
    margin-left: 1rem;
}

.card--connexion p a {
    font-weight: bold;
    color: #ff9017;
}


.part--connexion {
    padding: 4rem;
    background-color: #fff;
    /* width: 40%; */
    border-radius: 10px;
}

@media only screen and (min-width: 49em) {
    .part--connexion {
        width: 40%;
    }
}

.h-image {
    position: relative;
}

.h-image img {
    height: 35rem;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: brightness(0.9);
}

@media only screen and (max-width: 48em) {
    .h-image img {
        height: 25rem;
    }
}

.h-image .overlay {
    height: 35rem;
    background: transparent;
    padding: 3rem;
    border-radius: 10px;
    top: 0;
    width: 100%;
    position: absolute;
    background-color: #0000005e;
}

@media only screen and (max-width: 48em) {
    .h-image .overlay {
        height: 25rem;
    }

    .h-image .overlay h1{
        font-size: 30px!important;
    }
}

.h-image .overlay .h-text {
    width: 70%;
    margin-bottom: 4rem;
    color: #fff;
    bottom: 0;
    position: absolute;
}

@media only screen and (max-width: 48em) {
    .h-image .overlay .h-text {
        width: 100%;
        position: relative;
    }
}

.h-image .overlay .h-text h1 {
    font-weight: 700;
}

.img--biens .h-image {
    margin-bottom: 2rem;
}

.img--biens img {
    height: 15rem;
}

.img--biens .overlay {
    height: 15rem;
    padding: 2rem;
    background: linear-gradient(#ecd5d511, #0a0a0ac5);
}

.img--biens .overlay .h-text {
    bottom: -2rem;
    position: absolute;
}

@media only screen and (max-width: 48em) {
    .img--biens .overlay .h-text {
        bottom: -8rem;
        position: relative;
    }
}

.h-text {
    width: 70%;
    margin-bottom: 4rem;
}

@media only screen and (max-width: 48em) {
    .h-text {
        width: 100%;
    }
}

.h-text h1 {
    font-weight: 700;
}

.card--login {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 35rem;
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #D3CECE;
}

.card--login img {
    height: 6rem;
}

.card--login .login-img1 {
    height: 4rem;
    margin-top: 1rem;
}

.card--login h1 {
    font-weight: 700;
    font-size: 2rem;
}

.card--login p {
    font-size: 1.3rem;
    overflow: auto;
    height: 10rem;
}

.card--blog {
    margin-bottom: 2rem;
}

.card--blog img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 48em) {
    .card--blog img {
        height: 20rem;
    }
}

@media only screen and (max-width: 36em) {
    .card--blog img {
        height: 15rem;
    }
}

.card--blog h3 {
    color: #000;
    font-weight: 600;
}

.card--blog p {
    color: #3D3E48;
    font-size: 1.3rem;
}

.part--blog {
    padding: 4rem 0;
}

.part--blog img {
    width: 100%;
    height: 55rem;
    object-fit: cover;
}

@media only screen and (max-width: 48em) {
    .part--blog img {
        height: 30rem;
    }
}

.part--blog h1 {
    font-size: 3rem;
    font-weight: bold;
}

.part--blog p {
    font-weight: 400;
    font-size: 1.3rem;
    margin: 2rem 0;
}

.part--blog span {
    color: #808080;
}

.pills--blog {
    justify-content: center;
    margin-bottom: 3rem;
    font-weight: 700;
    font-size: 1.4rem;
}

.pills--blog .nav-link {
    color: #3D3E48;
    padding: 1rem;
}

.pills--blog .nav-link.active,
.pills--blog .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #ff9017 !important;
}

.card-search {
    margin-bottom: 2rem;
}

.card-search .star {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 30px;
    background: rgba(88, 88, 88, 0.5);
    backdrop-filter: blur(5px);
}

.card-search .star img {
    height: 2rem !important;
}

.card-search .star p {
    color: #fff;
    font-size: 1.3rem;
    margin-left: .5rem;
}

.card-search .city {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.219);
    backdrop-filter: blur(5px);
}

.card-search .city p {
    color: #fff;
    font-size: 1.3rem;
    margin-left: 0rem;
}

.card-search .img--ov1 {
    position: relative;
}

.card-search .img--ov1 img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.card-search .img--ov1 .overlay {
    height: 18rem;
    background: transparent;
    padding: 1rem;
    border-radius: 10px;
    top: 0;
    width: 100%;
    position: absolute;
}

.card-search__descrip {
    background-color: #fff;
    padding: 1rem;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.card-search__descrip h2 {
    /* font-weight: bold; */
    color: #000;
    font-size: 2rem;
    margin-top: 0!important;
}

.card-search__descrip p {
    color: #a6a8ad;
    font-size: 1.3rem;
}

.card-search__descrip .p_descrip {
    height: auto;
    overflow: auto;
    color: #000!important;
}



.card-search__descrip button {
    width: fit-content;
    font-size: 1.4rem;
    padding: .5rem;
    border-radius: 30px;
    margin: 1rem 0;
}

.card-search__descrip h3 {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.card-search__descrip h3 a {
    color: #ff9017;
}

.card-map {
    height: 20rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
}

.card-map iframe {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.part-accordion {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #fff;
}

.part-accordion .accordion-item {
    border-top: 1px solid #ccc;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-bottom: 2rem;
}

.part-accordion .accordion-button {
    font-size: 1.5rem;
    font-weight: 600;
}

.part-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.card-pub {
    display: flex;
    align-items: start;
    background-color: #fff5f2;
    flex-wrap: wrap;
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
}

.card-pub img {
    height: 15rem;
    width: 20rem;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 2rem;
}

@media only screen and (max-width: 36em) {
    .card-pub img {
        width: 100%;
        margin-bottom: 1rem;
    }
}

.card-pub h2 {
    font-weight: bold;
    color: #ff9017;
}

.card-pub h3 {
    font-weight: bold;
    font-size: 1.4rem;
}

.card-pub p {
    font-size: 1.4rem;
}

.img--sup__card {
    padding: 2rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 7px;
    margin-right: -11rem;
    position: absolute;
    /* width: 40%; */
    background: white;
    right: -1rem;
    top: 8%;
    z-index: 10;
}

@media only screen and (max-width: 48em) {
    .img--sup__card {
        width: 100%;
        position: relative;
    }
}

.img--sup__card h2 {
    font-weight: bold;
    margin-bottom: 2rem;
}

.img--sup__card p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

@media only screen and (max-width: 48em) {
    .img--sup__img {
        height: 16rem !important;
        display: none;
    }
}

.img-g img {
    height: 30rem;
    width: 100%;
    object-fit: cover;
}

.img-p img {
    height: 14.5rem;
    width: 100%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.card-descrip__icon {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 2rem 0;
    padding: 2rem;
}

.card-descrip__icon ul li {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 48em) {
    .responsive-cards {
        display: none;
    }
}

.carousel-responsive {
    display: none;
}

@media only screen and (max-width: 48em) {
    .carousel-responsive {
        display: block;
    }
}

.owl-carousel {
    width: 100%;
    display: block !important;
}

.owl-carousel .owl-nav {
    display: block !important;
    font-size: 2rem;
    color: #fff;
}

.owl-carousel .owl-prev {
    position: absolute;
    top: -5rem;
    width: 4rem;
    height: 4rem;
    right: 5rem;
    border-radius: 50%;
    background-color: #fff !important;
    border: 3px solid #cccccccc !important;
    outline: none;
    text-align: center;
    align-items: center;
    color: #000 !important;
}

@media only screen and (max-width: 36em) {
    .owl-carousel .owl-prev {
        left: 0;
        top: 35%;
    }
}

.owl-carousel .owl-next {
    position: absolute;
    top: -5rem;
    right: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: #000 !important;
    outline: none;
    border: 3px solid #cccccccc !important;
    text-align: center;
    align-items: center;
}

@media only screen and (max-width: 36em) {
    .owl-carousel .owl-next {
        top: 35%;
    }
}

.footer {
    background-color: #fff5f2;
    padding: 4rem 0;
    background-color: #000;
}

.footer h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.8rem !important;
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    color: #fff;
    font-size: 1.3rem;
}

.footer ul li a {
    color: #fff;
    transition: all .3s ease-in-out;
}

.footer ul li a:hover {
    color: #00A9A9;
    text-decoration: none !important;
}

.footer .logo a {
    color: #fff;
}

@media only screen and (max-width: 48em) {
    .footer .ftb {
        margin-bottom: 3rem;
    }
}

.icones {
    display: flex;
}

.icones i {
    font-size: 2.5rem;
    margin-right: 1rem;
    border-radius: 50%;
}

section {
    margin: 3rem 0;
}

@media only screen and (max-width: 48em) {
    section {
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 36em) {
    section {
        margin: 1rem 0;
    }
}

.header2 {
    background-color: #00A9A9;
    padding: 5rem 0;
    margin-bottom: 3rem;
    color: #fff;
}

.header2 h1 {
    font-weight: 600;
    font-size: 3rem;
}

@media only screen and (max-width: 48em) {
    .header2 h1 {
        font-size: 2.5rem;
    }
}

.header2 p {
    font-size: 1.5rem;
}

.bg--grey {
    background-color: #f9f9fb;
}

.header__form {
    background-color: #FFFFFF52;
    width: 80%;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.5rem;
}

@media only screen and (max-width: 62em) {
    .header__form {
        width: 100%;
    }
}

.header__form .form {
    padding: 1rem;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.header__form form {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 48em) {
    .header__form form {
        display: block;
    }
}

.header__form input {
    padding: 1.5rem;
    width: 100%;
    border-left: 1px solid #ff9017 !important;
    border-right: 1px solid #ff9017 !important;
    border: 0;
}

@media only screen and (max-width: 48em) {
    .header__form input {
        /* border-top: 1px dotted #ff9017 !important;
        border-bottom: 1px dotted #ff9017 !important; */
        border-left: 0 !important;
        border-right: 0 !important;
        background-color: #F9FCFFD9;
    }
}

.header__form input::placeholder {
    color: #000;
}

.header__form select {
    padding: 1.5rem;
    width: 100%;
    border: none;
    outline: none !important;
}

@media only screen and (max-width: 48em) {
    .header__form select {
        background-color: #F9FCFFD9;
    }
}

.header__form button {
    font-size: 1.5rem;
    padding: 2rem 0;
    border-radius: 5px;
    width: 100%;
}

@media only screen and (max-width: 48rem){
    .header__form button {
        padding: 1.5rem;
    }
}

.h-title {
    margin-bottom: 2rem;
}

.h-title h2 {
    font-size: 25px;
    font-weight: bold;
}

.bg--pink {
    background-color: #fff5f2;
    padding: 4rem;
}

.dashCustomer .nav-pills {
    border-bottom: 1px solid #D9D9D9;
}

.dashCustomer .nav-item {
    font-weight: bold;
}

.dashCustomer .nav-link {
    color: #10529A !important;
    border-radius: 0;
}

.dashCustomer .nav-pills .nav-link.active,
.dashCustomer .nav-pills .show>.nav-link {
    color: #10529A;
    background-color: transparent;
    border-bottom: 3px solid #ff9017;
}

.dashCustomer .tab-content {
    padding: 3rem 0;
}

.acc--part {
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #BBD0E7;
}

.acc--part:last-child {
    border-bottom: 0;
}

.acc--part .suppr {
    color: #00000066;
}

.acc--part h4 {
    font-weight: bold;
}

.acc--part p {
    font-size: 1.4rem;
}

.acc--part a {
    color: #10529A;
    font-size: 1.4rem;
    font-weight: bold;
}

.acc--part img {
    height: 1.5rem;
    margin-right: 1rem;
}

.big--acc {
    border: 1px solid #ccc;
    padding: 10rem 2rem 2rem 2rem;
    border-radius: 5px;
}

.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 4px auto;
    margin-bottom: -9rem;
}

@media only screen and (max-width: 48em) {
    .avatar-upload {
        max-width: 150px;
        margin-bottom: -7rem;
    }
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    bottom: 10px;
}

@media only screen and (max-width: 48em) {
    .avatar-upload .avatar-edit {
        right: -3px;
    }
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #ff9017;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all .2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #ff9017;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f044";
    font-family: 'FontAwesome';
    color: #fff;
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    background-color: #EFF7FF;
    color: #10529A;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview h1 {
    font-weight: bold;
    font-size: 4rem;
}

@media only screen and (max-width: 48em) {
    .avatar-upload .avatar-preview {
        width: 150px;
        height: 150px;
    }
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav--second {
    display: block;
}

@media only screen and (max-width: 48em) {
    .nav--second {
        display: none;
    }
}

.nav--second1 {
    display: none !important;
}

@media only screen and (max-width: 48em) {
    .nav--second1 {
        display: block;
    }
}

.dfor .header__form {
    margin-top: -5rem;
}

.dfo {
    background-color: #00A9A9;
    padding: 3rem;
}

.pagination {
    height: 5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    display: flex;
    justify-content: end;
    align-items: end;
}

.pagination .circle {
    background-color: white;
    color: #000;
    width: 3rem;
    height: 3rem;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
}

.pagination .circle:hover {
    background-color: #00A9A9;
    cursor: pointer;
    color: #fff;
}

.pagination .activepag {
    background-color: #ccc;
    color: #000;
}

.tips--matiere {
    text-align: center;
    margin-top: 2rem;
}

@media only screen and (max-width: 48em) {
    .tips--matiere {
        display: none;
    }
}

.tips--matiere .form__label--matiere {
    display: inline-block;
    border: 1px solid #000;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    padding: 1rem 2rem;
    margin: .5rem 0;
    font-size: 1.3rem;
}

.tips--matiere .form__radio--matiere {
    display: none;
}

.tips--matiere .form__radio--matiere:checked+.form__label--matiere {
    background-color: #fff;
    color: #ff9017;
    border: 1px solid #ff9017;
}

.img--sup__img {
    background-image: url("../images/img15.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    height: 25rem;
}

.img--sup1__img {
    background-image: url(../images/img20.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    height: 25rem;
}

.img--sup2__img {
    background-image: url(../images/img26.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    height: 25rem;
}

.img--sup3__img {
    background-image: url(../images/img31.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    width: 100%;
    height: 25rem;
}

.descr iframe {
    height: 20rem;
    width: 100%;
    border-radius: 10px;
}

.descr p {
    font-size: 1.4rem;
}

.descr p a {
    color: #ff9017;
}

@media only screen and (max-width: 48em) {
    .row-4 {
        display: none;
    }
}

.position {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 48em) {
    .position {
        display: block;
    }
}

.position p {
    font-size: 1.4rem;
}

.position p a {
    color: #aaaaaa;
    text-decoration: underline;
}

.research-item{
    display: flex; 
    flex-direction:column;
    width: 100%;
}

.research-item p {
    padding: 0 1.5rem; 
    font-weight:bold;
}

.research-item.input{ 
    border-left: 1px solid #ff9017 !important;
    border-right: 1px solid #ff9017 !important;
    width: 100%;
}

@media only screen and (max-width: 48rem)
{
    .research-item.select-type{ 
        margin-bottom: 2rem;
    }
}





/*# sourceMappingURL=main.css.map */