@import url("https://fonts.googleapis.com/css2?family=Montagu+Slab:opsz,wght@16..144,200;16..144,400&family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 20px;
}

h2, h1 {
    text-align: center;
    margin: 15px 0;
}

header {
    position: relative;
    z-index: 10;
    background-color: white;
    -webkit-box-shadow: 0px 0px 17px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 17px 5px rgba(0, 0, 0, 0.5);
}

@media (min-width: 950px) {
    header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
}

@media (min-width: 950px) {
    header .container {
        width: max-content;
    }
}

header .container .logo {
    width: 100px;
}

header .container .logo img {
    width: 100%;
}

header .container .burger {
    width: max-content;
}

@media (min-width: 950px) {
    header .container .burger {
        display: none;
    }
}

header nav {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    border-top: 2px solid #884DA7;
}

@media (min-width: 950px) {
    header nav {
        height: max-content;
        border-top: none;
    }
}

header nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 950px) {
    header nav ul {
        height: max-content;
        border-top: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    color: black;
    text-decoration: none;
}

header .nav_active {
    height: max-content;
    transition: all 0.5s ease-in-out;
}

main .welcome {
    position: relative;
    overflow: hidden;
}
.oriented_container{
    position: relative;
    overflow: hidden;
}
main .welcome .oriented {
    position: absolute;
    right: 0;
    background-image: url('../img/oriented2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    z-index: -10;
    background-attachment: fixed;
}

main .welcome .container {
    padding-top: 15px;
}

main .welcome .oriented_container figure {
    position: relative;
    z-index: 10;
    width: 150px;
    margin: auto;
    margin-bottom: -5px;
}

@media (min-width: 950px) {
    main .welcome .oriented_container figure {
        width: 250px;
    }
}

main .welcome .oriented_container figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

main .welcome .container .text {
    line-height: 26px;
}

main .welcome .text_background {
    background-image: url("../img/fond-trais.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

main .welcome .text_background .container {
    padding-top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

main .welcome .text_background .container .img_text_2 {
    height: 100%;
    max-height: 250px;
}

@media (max-width: 600px) {
    main .welcome .text_background .container .img_text_2 {
        display: none;
    }
}

main .welcome .text_background p {
    width: 60%;
    padding: 15px;
    background-color: #884DA7;
    border: #FFD700 2px solid;
    color: white;
    line-height: 16px;
    height: max-content;
}

main .seance p {
    line-height: 26px;
}

main .cut_image {
    position: relative;
    margin: 70px 0;
}

main .cut_image .background {
    background-color: #884DA7;
    height: 130px;
    width: 100%;
}

main .cut_image img {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

main .about p {
    line-height: 26px;
    text-align: center;
}

main .services {
    background-color: #884DA7;
    padding: 25px;
    margin-top: -50px;
    color: white;
}

main .services h2 {
    margin: 25px 0;
}

main .services .services_content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    text-align: center;
}

@media (min-width: 950px) {
    main .services .services_content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

main .services .services_content .service {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    line-height: 26px;
    font-size: 14px;
}

main .services .services_content .service h3 {
    text-align: left;
}

main .services .services_content .service ul {
    text-align: left;
    max-width: 600px;
    margin: auto;
}

main .services .services_content .service ul li {
    text-align: left;
    /*
    width: max-content;
    */
}

main .services .services_content .service p {
    text-align: left;
    line-height: 20px;
}

main .infos {
    background-color: #884DA7;
    padding: 25px;
    margin-top: -50px;
    color: white;
    
}

main .infos .container {
    margin-top: 0;
    padding: 25px;
}

main .infos .container h2 {
    margin-top: 0;
}

main .infos .container .infos_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: center;
}

.infos_container a{
    color: #FFD700;
}
main .contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 950px) {
    main .contact form {
        justify-content: center;
    }
}

main .contact form p span input {
    width: 150px;
}

@media (min-width: 950px) {
    main .contact form p span input {
        width: 350px;
    }
}

main .contact form p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

@media (min-width: 950px) {
    main .contact form p {
        justify-content: center;
    }
}

main .contact form p span input, main .contact form p span textarea {
    padding: 10px;
    border: 1px solid #884DA7;
    border-radius: 10px;
}

main .contact form p:nth-of-type(2) span {
    width: 100%;
}

main .contact form p:nth-of-type(2) span textarea {
    width: 100%;
}

main .contact form .inputs textarea {
    width: 100%;
    resize: none;
}

main .contact form .has-spinner {
    display: block;
    background-color: #884DA7;
    padding: 10px 20px;
    width: 70%;
    max-width: 300px;
    color: white;
    border-radius: 10px;
    margin: 15px auto;
    border: none;
}

.wpcf7-spinner {
    display: none !important;
}

footer {
    -webkit-box-shadow: 0px 0px 17px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 17px 5px rgba(0, 0, 0, 0.5);
}

footer .container {
    margin-bottom: 0;
    padding: 15px 0;
}

footer .container p {
    text-align: center;
    font-size: 12px;
}


.success {
    background-color: #DFF2BF;
    border: #4F8A10 1px solid;
    color: #4F8A10;
    padding: 15px;
    border-radius: 10px;
    margin: 15px auto;
    text-align: center;
}

.error {
    background-color: #FFBABA;
    border: #D8000C 1px solid;
    color: #D8000C;
    padding: 15px;
    border-radius: 10px;
    margin: 15px auto;
    text-align: center;
}

.fieldCalendarService {
    display: none;
}

.ui-datepicker-title {
    background-color: #884DA7;
    color: white;
}

.ahb_m2 #fbuilder td:not(.ui-datepicker-unselectable) a.ui-state-default.ui-state-active {
    background-color: #884DA7 !important;
    color: white;
}

.ahb_m2 #fbuilder .slots div a {
    border-color: #884DA7 !important;;
}

#field_1-1,#field_1-2 {
    padding: 15px 25px;
}

#field_1-1 input, #field_1-2 input, #email_1 {
    padding: 15px 25px;
    border: 1px solid #884DA7;
    border-radius: 10px;
}

.pbSubmit{
    background-color: #884DA7 !important;
    color: white !important;
    border: none !important;
    padding: 15px 25px !important;
    border-radius: 10px !important;
}

.r{
    display: none !important;
}

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