body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
}

header {
    display: flex;
    justify-content: space-around;
    align-items: center !important;
    min-height: 30px;
    background-color: white;
    top: 0;
    z-index: 200;
    position: sticky !important;
    border-bottom: 5px solid #4bb249;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li {
    list-style: none;
    margin-top: 40px !important;
}

.nav-links li a {
    color: #4bb249 !important;
    text-decoration: none;
    transition: 0.4s ease !important;
}

.nav-links li a:hover {
    color: white !important;
    cursor: pointer;
    background-color: #4bb249;
    padding: 0.7px;
    border-radius: 3px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #4bb249;
    margin: 5px;
    transition: all 0.3s ease;
}

@media (max-width:900px) {
    body {
        overflow-x: hidden;
    }
    .nav-links {
        position: fixed;
        z-index: 100;
        overflow: hidden;
        right: 0px;
        margin-top: 48px;
        height: 92vh;
        top: 30px;
        background: rgba(75, 178, 73, 0.8);
        flex-direction: column;
        align-items: center !important;
        width: 108%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        display: flex;
    }
    .nav-links li {
        opacity: 0;
        height: 40% !important;
    }
    .nav-links li a {
        color: white !important;
        text-decoration: none;
    }
    .nav-links li a:hover {
        color: #4bb249 !important;
        transition: 0.5s;
        cursor: pointer;
        background-color: white;
        padding: 0.7px;
        border-radius: 3px;
    }
    .burger {
        display: block;
    }
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
}

.nav-active {
    transform: translateX(0%);
}

.nav-inactive {
    transform: translateX(100%);
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

#description {
    background: url('images/bg.jpg') no-repeat 0;
    background-size: contain;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    height: 100vh;
    margin-top: 0;
}

.services-section {
    margin-top: 60px;
}

.inner-width {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    max-width: 33.33%;
    padding: 10px;
    text-align: center;
    color: #ddd;
    cursor: pointer;
}

.service-box:hover {
    cursor: initial;
}

.service-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #4bb249;
    color: #4bb249;
    transform: rotate(45deg);
    margin-bottom: 30px;
    margin-top: 16px;
    transition: 0.3s linear;
}

.service-desc {
    color: white !important;
    font-size: 18px;
}

.service-title {
    color: #4bb249 !important;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-icon i {
    line-height: 65px;
    transform: rotate(-45deg);
    font-size: 26px;
}

.service-box:hover .service-icon {
    background: #4bb249;
    color: #ddd;
    cursor: initial;
}

@media screen and (max-width:960px) {
    .service-box {
        max-width: 45%;
    }
}

@media screen and (max-width:768px) {
    .service-box {
        max-width: 50%;
    }
}

@media screen and (max-width:480px) {
    .service-box {
        max-width: 100%;
    }
}

.menu {
    border: 3px solid #4bb249;
    width: 40%;
    margin: auto;
    margin-top: 10px;
    color: white !important;
    transition: 0.4s ease !important;
}

.menu a {
    text-decoration: none !important;
    color: white;
}

.menu:hover {
    background: #4bb249;
    color: white;
    cursor: pointer;
}

#services::before {
    display: block;
    content: " ";
    margin-top: -8vh;
    height: 15vh;
    visibility: hidden;
    pointer-events: none;
}

#contact::before {
    display: block;
    content: " ";
    margin-top: -8vh;
    height: 8vh;
    visibility: hidden;
    pointer-events: none;
}

#description .brand {
    text-align: center;
    font-size: 40px;
    color: white !important;
    top: 70px;
    position: relative;
    font-family: 'Oswald', sans-serif !important;
    width: 50%;
    margin: auto;
    overflow: hidden;
    padding: 0;
    border-radius: 7px;
    font-family: 'Bebas Neue', cursive !important;
}

#description .brand p {
    color: white !important;
    margin-bottom: 80px;
}

@media (max-width:900px) {
    #description {
        height: 850px;
    }
    #description .brand {
        text-align: center;
        font-size: 42px;
        color: white;
        top: 60px;
        position: relative;
        font-family: 'Oswald', sans-serif !important;
        width: 60%;
        margin: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 7px;
    }
    #description p {
        font-size: 29px !important;
        color: #4bb249;
        margin-bottom: 40px !important;
    }
}

@media (max-width:500px) {
    #description {
        height: 150vh;
    }
    #description .brand {
        text-align: center;
        font-size: 42px;
        color: white;
        top: 50px !important;
        position: relative;
        width: 90% !important;
        margin: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 7px;
    }
    #description p {
        font-size: 22px !important;
        color: #4bb249;
    }
}

@media (max-width:425px) {
    #description .brand {
        text-align: center;
        font-size: 42px;
        color: white;
        top: 50px !important;
        position: relative;
        width: 90% !important;
        margin: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 7px;
    }
    #description p {
        font-size: 21px !important;
        color: #4bb249;
        margin-bottom: 5px !important;
    }
    #description {
        background: url('images/bg.jpg') no-repeat 0;
        background-size: contain;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        text-align: center;
        width: 100%;
        height: 75vh;
        margin-top: 0;
    }
    #description {
        height: 900px;
    }
    .service-icon {
        display: inline-block;
        width: 60px;
        height: 60px;
        border: 3px solid #4bb249;
        color: #4bb249;
        transform: rotate(45deg);
        margin-bottom: 30px;
        margin-top: 16px;
        transition: 0.3s linear;
    }
    .service-desc {
        color: #4bb249;
        font-size: 13px;
    }
    .service-title {
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }
    .service-icon i {
        line-height: 55px;
        transform: rotate(-45deg);
        font-size: 26px;
    }
}

@media (max-width:375px) {
    #description .brand {
        text-align: center;
        font-size: 42px;
        color: white;
        top: 50px !important;
        position: relative;
        width: 90% !important;
        margin: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 7px;
    }
    #description p {
        font-size: 21px !important;
        color: #4bb249;
    }
    #description {
        background: url('images/bg.jpg') no-repeat 0;
        background-size: contain;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        text-align: center;
        width: 100%;
        height: 75vh;
        margin-top: 0;
    }
    #description {
        height: 900px;
    }
    .service-icon {
        display: inline-block;
        width: 60px;
        height: 60px;
        border: 3px solid #4bb249;
        color: #4bb249;
        transform: rotate(45deg);
        margin-bottom: 30px;
        margin-top: 16px;
        transition: 0.3s linear;
    }
    .service-desc {
        color: #4bb249;
        font-size: 13px;
    }
    .service-title {
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }
    .service-icon i {
        line-height: 55px;
        transform: rotate(-45deg);
        font-size: 26px;
    }
}

@media (max-width:320px) {
    #description .brand {
        text-align: center;
        font-size: 42px;
        color: white;
        top: 35px !important;
        position: relative;
        width: 90% !important;
        margin: auto;
        overflow: hidden;
        padding: 0;
        border-radius: 7px;
    }
    #description p {
        font-size: 18px !important;
        color: #4bb249;
        margin-bottom: -5px !important;
    }
    #description {
        background: url('images/bg.jpg') no-repeat 0;
        background-size: contain;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        text-align: center;
        width: 100%;
        height: 75vh;
        margin-top: 0;
    }
    #description {
        height: 900px;
    }
    .service-icon {
        display: inline-block;
        width: 55px;
        height: 55px;
        border: 3px solid #4bb249;
        color: #4bb249;
        transform: rotate(45deg);
        margin-bottom: 30px;
        margin-top: 16px;
        transition: 0.3s linear;
    }
    .service-desc {
        color: #4bb249;
        font-size: 13px;
    }
    .service-title {
        color: white;
        font-size: 18px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }
    .service-icon i {
        line-height: 55px;
        transform: rotate(-45deg);
        font-size: 26px;
    }
    .menu {
        width: 50%;
    }
}

#description img {
    width: 100%;
}

#description p {
    font-size: 33px;
    color: #4bb249;
}

#services h1 {
    text-align: center;
    color: #4bb249;
    font-size: 43px;
}

hr {
    margin-top: 40px;
    margin-bottom: 20px;
    width: 70%;
    border: 2px solid #4bb249;
}

.menu_commande {
    text-align: center;
    margin-bottom: 50px;
}

.menuPDF {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #4bb249;
    width: 40%;
    margin: auto;
    margin-top: 10px;
    color: white;
    background: #4bb249;
    font-size: 20px;
    padding: 6px;
    text-decoration: none !important;
    transition: 0.4s ease !important;
}

.menuPDF:hover {
    background: white;
    color: #4bb249;
    cursor: pointer;
}

.commande {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #4bb249;
    width: 40%;
    margin: auto;
    margin-top: 10px;
    color: white;
    background: #4bb249;
    font-size: 20px;
    padding: 6px;
    text-decoration: none !important;
    transition: 0.4s ease !important;
}

.commande:hover {
    background: white;
    color: #4bb249;
    cursor: pointer;
}

@media (max-width:425px) {
    #particuliers p {
        text-align: center !important;
        width: 85% !important;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    #entreprises p {
        text-align: center !important;
        width: 85% !important;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    #evenementiels p {
        text-align: center !important;
        width: 85% !important;
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        margin-top: 50px;
    }
}

#imagesParticuliers {
    background: url('images/particuliers.jpg') no-repeat 0;
    background-size: contain;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    height: 40vh;
    margin-top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #4bb249;
    font-size: 30px;
}

#particuliers h3 {
    font-size: 35px;
    background: rgba(0, 0, 0, 0.2);
}

#particuliers p {
    text-align: center !important;
    width: 60%;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    font-weight: normal !important;
}

#imagesEntreprises {
    background: url('images/entreprises.jpg') no-repeat 0;
    background-size: contain;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    height: 40vh;
    margin-top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #4bb249;
    font-size: 20px;
}

#entreprises h3 {
    font-size: 35px;
    background: rgba(0, 0, 0, 0.2);
}

#entreprises p {
    text-align: center !important;
    width: 60%;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    font-weight: normal !important;
}

#imagesEvenementiel {
    background: url('images/eventementiels.jpg') no-repeat 0;
    background-size: contain;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    width: 100%;
    height: 40vh;
    margin-top: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #4bb249;
}

#evenementiels h3 {
    font-size: 35px;
    background: rgba(0, 0, 0, 0.2);
}

#evenementiels p {
    text-align: center !important;
    width: 60%;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    margin-top: 50px;
    font-weight: normal !important;
}

.bg-modalFormFR {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.containerFormFR {
    background-color: white;
    text-align: center;
    width: 50%;
    border-radius: 8px;
    border-style: solid;
    border-color: #4bb249;
    position: absolute;
}

.containerFormFR h1 {
    text-align: center;
    align-items: center;
    color: #4bb249;
    font-size: 35px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.closeFormFR {
    cursor: pointer;
    position: absolute;
    color: #4bb249 !important;
    right: 3px;
    top: -10px;
    font-size: 35px !important;
    font-weight: normal !important;
    opacity: 1 !important;
    transform: rotate(45deg);
    z-index: 100 !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.bg-modalFormEN {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
}

.containerFormEN {
    background-color: white;
    text-align: center;
    width: 50%;
    border-radius: 8px;
    border-style: solid;
    border-color: #4bb249;
    position: absolute;
}

.containerFormEN h1 {
    text-align: center;
    align-items: center;
    color: #4bb249;
    font-size: 35px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.closeFormEN {
    cursor: pointer;
    position: absolute;
    color: #4bb249 !important;
    right: 3px;
    top: -10px;
    font-size: 35px !important;
    font-weight: normal !important;
    opacity: 1 !important;
    transform: rotate(45deg);
    z-index: 100 !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
}

@media (max-width:450px) {
    .containerFormEN {
        width: 80%;
    }
    .containerFormFR {
        width: 80%;
    }
}

#contact h1 {
    font-size: 42px;
    color: #4bb249;
}

#contact {
    margin-top: 20px;
}

#containerContact {
    width: 100% !important;
    font-size: 24px !important;
    text-align: center !important;
}

.parallax {
    background: url('images/formbg.jpg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: 850px;
    padding-top: 40px;
}

.contactDiv {
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
    overflow: hidden;
}

#contact-form {
    margin-top: 25px;
    text-align: center !important;
    align-items: center !important;
}

#namefr {
    color: white !important;
}

input {
    /* text-align: center !important; */
    color: #fff !important;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white !important;
    opacity: 1 !important;
    /* Firefox */
}

 :-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: white !important;
}

 ::-ms-input-placeholder {
    /* Microsoft Edge */
    color: white !important;
}

textarea {
    height: 40px !important;
    color: #fff !important;
    /* text-align: center !important; */
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    position: relative;
    -webkit-box-shadow: none;
    width: 85% !important;
    width: 600px !important;
    max-width: 600px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    border-bottom: 1px solid #4bb249 !important;
    color: #fff !important;
    font-size: 18px !important;
    margin-bottom: 16px !important;
    height: 50px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -webkit-appearance: none !important;
}

select {
    /* text-align-last: center;
    text-align: -webkit-center !important; */
    appearance: none !important;
    -webkit-appearance: none !important;
}

.hidden {
    display: none;
    visibility: hidden;
}

@media (max-width:730px) {
    .form-control {
        width: 85% !important;
        width: 500px !important;
        max-width: 600px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        border-bottom: 1px solid #4bb249 !important;
        color: #fff !important;
        font-size: 18px !important;
        margin-bottom: 16px !important;
        height: 50px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
    .parallax {
        background: url('images/formbg.jpg') no-repeat center;
        background-size: cover;
        background-attachment: initial;
        height: 700px;
        padding-top: 40px;
    }
}

@media (max-width:500px) {
    .form-control {
        width: 85% !important;
        width: 450px !important;
        max-width: 600px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        border-bottom: 1px solid #4bb249 !important;
        color: #fff !important;
        font-size: 18px !important;
        margin-bottom: 16px !important;
        height: 50px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
    .parallax {
        background: url('images/formbg.jpg') no-repeat center;
        background-size: cover;
        background-attachment: initial;
        height: 700px;
        padding-top: 40px;
    }
}

@media (max-width:425px) {
    .form-control {
        width: 85% !important;
        width: 350px !important;
        max-width: 600px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        border-bottom: 1px solid #4bb249 !important;
        color: #fff !important;
        font-size: 18px !important;
        margin-bottom: 16px !important;
        height: 50px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
    .parallax {
        background: url('images/formbg.jpg') no-repeat center;
        background-size: cover;
        background-attachment: initial;
        height: 850px;
        padding-top: 40px;
    }
}

@media (max-width:375px) {
    .form-control {
        width: 85% !important;
        width: 300px !important;
        max-width: 600px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        border-bottom: 1px solid #4bb249 !important;
        color: #fff !important;
        font-size: 15px !important;
        margin-bottom: 16px !important;
        height: 50px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
    .parallax {
        background: url('images/formbg.jpg') no-repeat center;
        background-size: cover;
        background-attachment: initial;
        height: 850px;
        padding-top: 40px;
    }
}

@media (max-width:320px) {
    .form-control {
        width: 85% !important;
        width: 250px !important;
        max-width: 600px !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        border-bottom: 1px solid #4bb249 !important;
        color: #fff !important;
        font-size: 14px !important;
        margin-bottom: 16px !important;
        height: 50px !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }
    .parallax {
        background: url('images/formbg.jpg') no-repeat center;
        background-size: cover;
        background-attachment: initial;
        height: 850px;
        padding-top: 40px;
    }
}

input {
    height: 15px !important;
}

form .submit {
    background-color: #4bb249 !important;
    border-color: white !important;
    color: white !important;
    font-size: 20px !important;
    letter-spacing: 2px !important;
    height: 50px !important;
    margin-top: 20px !important;
    transition: 0.4s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

form .submit:hover {
    background-color: white !important;
    cursor: pointer !important;
    color: #4bb249 !important;
    border: 3px solid #4bb249 !important;
}

footer {
    padding: 0px;
    margin-top: 0px;
    background-color: white;
    align-items: center;
    border-top: 5px solid #4bb249;
    text-decoration: none !important;
}

footer .logoFooter {
    align-items: center;
    text-align: center;
    margin-top: 5px;
}

footer .reseauxSociaux ul {
    margin-top: 10px;
    text-align: center;
    align-items: center;
    align-content: center;
    padding: 0;
}

footer .reseauxSociaux li {
    align-items: center;
    display: inline;
    padding: 7px 20px 7px 20px;
    text-decoration: none !important;
}

footer ul li a img:hover {
    cursor: pointer;
}

footer .credentials {
    text-align: center;
    color: #4bb249;
    font-size: 13px;
    margin: 10px;
}

.containerFooter {
    margin: 0;
    padding: 0;
    overflow: hidden;
}