/*==========================================*/

/*                 Accueil                  */

/*==========================================*/

#accueil {
    text-align: center;
}

#accueil .row {
    margin: 0;
}

#accueil .col-text, #accueil .col-svg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #237280;
}

#accueil .col-text .acc-name {
    text-transform: uppercase;
    font-weight: bold;
}

#accueil .col-text .acc-addres {
    font-size: 25px;
    font-weight: 300;
    margin-top: -10px;
}

#accueil .col-text .acc-contact {
    font-size: 20px;
    color: #646464;
}

#accueil .col-text .acc-contact a {
    color: #237280;
    font-weight: bold;
    text-decoration: none;
}

#accueil .col-text .acc-status {
    font-size: 22px;
    margin: 10px 0 -3px 0;
}

#accueil .col-text .acc-status span {
    font-weight: bold;
    text-transform: uppercase;
}

#accueil .col-text .acc-name, #accueil .col-text .acc-addres, #accueil .col-text .acc-status {
    text-shadow: 2px 2px 2px rgba(0,0,0,0.15);
}

#accueil .col-text .acc-time {
    color: #646464;
    border: none;
    text-align: center;
    background: none;
}

#accueil .col-text .acc-time:focus {
    outline: none;
}

#accueil .col-text i.fa-arrow-down {
    font-size: 25px;
    animation: jump 0.9s infinite linear alternate;
    color: #237280;
}

@keyframes jump {
    0% {position: relative; top: 10px;}
    100% {position: relative; top: 30px;}
}

@media screen and (max-width: 1200px) {
    #accueil .col-text {
        padding: 20px 0 40px 0;
    }

    #accueil .col-svg {
        display: none;
    }
}

/*==========================================*/

/*                  Offer                   */

/*==========================================*/

#offre {
    padding: 0 0 25px 0;
}

#offre .desc_center span {
    font-weight: bold;
}

#offre .carousel .card-carousel {
    border: 1px solid rgba(30,30,30,0.2);
    border-radius: 25px;
    text-align: center;
    padding: 20px 0px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .2s background-color ease;
}

#offre .carousel .card-carousel img {
    width: 70%;
    margin: 0 auto;
}

#offre .owl-carousel .card-carousel .offre-title {
    font-size: 17px;
    margin-bottom: -1px;
    font-weight: bold;
}

#offre .card-carousel .offre-price {
    font-size: 17px;
    color: #40b398;
    font-weight: 200;
}

@media screen and (max-width: 1200px) {
    #offre {
        padding: 20px 0;
    }
}

/*==========================================*/

/*                 Pharmacie                */

/*==========================================*/

#pharmacie {
    background: rgba(100, 100, 100, 0.05);
    padding: 50px 0;
}

#pharmacie .col-image img {
    width: 80%;
    height: auto;
    border-radius: 8em 50px 8em 50px;
    box-shadow: 3px 5px 14px 0px rgba(0,0,0,0.4);
}

#pharmacie .col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#pharmacie .col-text .pharma-box {
    background: white;
    box-shadow: 3px 5px 14px 0px rgba(0,0,0,0.4);
    border-radius: 25px;
    margin: 10px 0;
    padding: 30px 40px 15px 40px;
    transition: .2s background-color ease;
}

#pharmacie .col-text .pharma-box:hover {
    color: white;
    background-color: #40b398;
    box-shadow: 3px 5px 14px 0px rgba(64, 179, 152,0.6);
}

#pharmacie .col-text .pharma-box .col-1 {
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin-top: 5px;
}

#pharmacie .col-text .pharma-box .col-pharma-text {
    margin: auto 0;
}

#pharmacie .col-text .pharma-box .pharma-title {
    font-weight: bold;
    font-size: 20px;
}

#pharmacie .col-text .pharma-box .pharma-desc {
    color: #646464;
    letter-spacing: 1px;
    font-weight: 200;
    font-size: 15px;
}

#pharmacie .col-text .pharma-box:hover .pharma-desc {
    color: white;
}

@media screen and (max-width: 1200px) {
    #pharmacie .col-image {
        display: none;
    }
}

/*==========================================*/

/*                 Service                  */

/*==========================================*/

#service {
    background: rgba(100, 100, 100, 0.05);
    padding: 50px 0;
}

#service .serv-flex {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

#service .serv-box {
    background: white;
    width: 23%;
    border-radius: 25px;
    box-shadow: 3px 5px 14px 0px rgba(0,0,0,0.4);
    padding: 20px;
    transition: .2s background-color ease;
    margin: 10px;
}

#service .serv-box:hover {
    color: white;
    background-color: #40b398;
    box-shadow: 3px 5px 14px 0px rgba(64, 179, 152,0.6);
}

#service .serv-box .serv-icon {
    padding: 20px 15px;
    font-size: 30px;
    background: rgba(100, 100, 100, 0.1);
    border-radius: 10em;
    margin-bottom: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#service .serv-box:hover i {
    color: white;
}

#service .serv-box .serv-title {
    font-weight: bold;
}

#service .serv-box .serv-desc {
    font-size: 15px;
    color: #646464;
    letter-spacing: 1px;
    font-weight: 200;
}

#service .serv-box:hover .serv-desc {
    color: white;
}

@media screen and (max-width: 1200px) {
    #service .serv-box {
        width: 90%;
        margin: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/*==========================================*/

/*                  Team                    */

/*==========================================*/

#team {
    background: rgba(100, 100, 100, 0.05);
    padding: 0 0 50px 0;
}

#team .team-flex {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

#team .team-box {
    background: white;
    width: 18%;
    border-radius: 25px;
    box-shadow: 3px 5px 14px 0px rgba(0,0,0,0.4);
    transition: .2s background-color ease;
    margin: 0 10px;
    text-align: center;
    padding: 170px 20px 5px 20px;
}

#team .team-box:hover {
    color: white;
    background-color: #40b398;
    box-shadow: 3px 5px 14px 0px rgba(64, 179, 152,0.6);
}

#team .team-box .team-image {
    position: relative;
}

#team .team-box .team-image-mobile {
    display: none;
}

#team .team-box .team-image img {
    width: 85%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translate(50%,0%);
    transition: .2s all ease;
}

#team .team-box:hover .team-image img {
    width: 90%;
}

#team .team-box .team-title, #team .team-box .team-desc {
    text-transform: uppercase;
}

#team .team-box .team-title {
    font-weight: bold;
    margin: 5px 0 -5px 0;
}

#team .team-box .team-desc {
    font-size: 12px;
    color: #40b398;
    letter-spacing: 1px;
    font-weight: 200;
}

#team .team-box:hover .team-title, #team .team-box:hover .team-desc {
    color: white;
}

@media screen and (max-width: 1200px) {
    #team {
        padding: 0;
    }

    #team .team-box {
        width: 60%;
        margin: 20px 5px;
        padding: 20px 20px 5px 20px;
    }

    #team .team-box .team-image {
        display: none;
    }

    #team .team-box .team-image-mobile {
        display: block;
    }

    #team .team-box .team-image-mobile img {
        width: 150px;
        height: auto;
    }
}

/*==========================================*/

/*                 Contact                  */

/*==========================================*/

#contact {
    background: rgba(100, 100, 100, 0.05);
    border-radius: 50px;
    margin: 130px auto 30px auto;
}

#contact .col-text {
    padding: 90px 0 90px 70px;
    color: #2C5C6E;
    font-weight: normal;
}

#contact .col-text h1 {
    font-weight: 300;
    margin-bottom: -5px;
}

#contact .col-text h2 {
    font-weight: bold;
    text-transform: uppercase;
}

#contact .col-text h1, #contact .col-text h2 {
    font-size: 	2rem;
}

#contact .col-img {
    position: relative;
}

#contact img {
    width: 130%;
    position: absolute;
    bottom: 0;
    right: 1px;
}

@media screen and (max-width: 1200px) {
    #contact {
        border-radius: 0;
        margin: 10px auto 30px auto;
        text-align: center;
    }

    #contact .col-text {
        padding: 30px 50px;
    }

    #contact .col-img {
        display: none;
    }
}

#ModalContact .modal-contact-close {
    display: flex;
    justify-content: end;
    margin-bottom: -20px;
}

#ModalContact form {
    display: flex;
    flex-direction: column;
    padding: 80px 50px;
}

#ModalContact form h1 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}

#ModalContact form .desc {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    color: #646464;
    font-size: 15px;
}

#ModalContact form .desc code {
    color: #40b398;
    font-size: 15px;
}

#ModalContact form .input-group-text {
    background: none;
    border: none;
}

#ModalContact form input[type=email], #ModalContact form input[type=text], #ModalContact form textarea {
    border: 1px rgba(30,30,30,0.2) solid;
    border-radius: 5px;
    padding: 3px 5px;
    margin-top: -2px;
}

#ModalContact form .hcaptcha {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

#ModalContact .btn-custom-invert {
    margin: 20px auto 0 auto;
    width: 30%;
}

@media screen and (max-width: 1200px) {
    #contact {
        background: none
    }
    #contact .col-text h1, #contact .col-text h2 {
        font-size: 	1.5rem;
    }
    #ModalContact form {
        width: 100%;
        background: white;
    }
    #ModalContact .btn-custom-invert {
        width: auto;
    }
}