/* Start Variables */

:root {
    --main-color: #2a54f6;
    --secondary-color: rgb(40, 208, 246);
    --third-color: #02f1eb;
    --transparent-color: rgba(42, 83, 246, 0.7);
    --grey-text-color: #B5B5B5;
    --dark-grey: #667085;
    --dark : #171717;
    --section-background: #2ad1f60d;
    --section-padding: 60px;
    --main-duration: 0.5s;
    --raduis:10px;
    --paragraph-font-size:21px;
    --animation-duration:1s;
}


/* Global Rules  */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 1.2vh;
}

::-webkit-scrollbar-track {
    background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
    background: #4d8eff;
    border-radius: 100vw;
}

::-webkit-scrollbar-thumb:hover {
    background: #6a9ffc;
}

::selection {
    color: white;
    background-color: var(--main-color);
} 

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-inline: auto;
}

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* End Global Rules */
/* Start Header */
header {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 2;
    /* background-color: rgba(0, 0, 0, 0.234); */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 97px;
}

header .container::after {
    content: "";
    position: absolute;
    height: 1px;
    background-color: #a2a2a2;
    bottom: 0;
    width: calc(100% - 30px);
    left: 15px;
}

header .logo-holder{
    width: 200px;
    height: 50px;
}

header .logo-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

header nav .toggle-menu {
    color: white;
    font-size: 22px;
}

@media (min-width: 768px) {
    header nav .toggle-menu {
        display: none;
    }
}

header nav ul {
    display: flex;
}

@media (max-width: 767px) {
    header nav ul {
        display: none;
    }

    header nav .newUlStyle {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transition: 2s ease-in-out;
        background-color: rgb(0 0 0 / 90%);
    }

    header nav ul li a {
        padding: 15px !important;
    }
}

header nav ul li a {
    padding: 40px 10px;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

header nav ul li a.active,
header nav ul li a:hover {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

header nav .form {
    width: 40px;
    height: 30px;
    position: relative;
    margin-left: 30px;
    border-left: 1px solid white;
}

header nav .form i {
    color: white;
    position: absolute;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

/* End Header */
.landing {
    min-height: 70vh;
    height: 70vh;
    background-color: var(--dark);
    background-image: url("../Images/banner.png");
    background-size: cover;
    background-position:center;
    position: relative;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 20%);
}


.landing .logo{
    position: absolute;
    height: 85%;
    top: 10%;
    left: 5%;
    animation: breathing 8s ease-in-out infinite;
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.landing .logo img{
    width: 100%;
    height: 100%;
}

.landing .content-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: calc(100% - 97px);
}

.landing .content-container .content {
    width: 50%;
    height: 100%;
    color: white;
}

.landing .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing .container .image{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.landing .container .image img{
    object-fit: contain !important;
    width: 100%;
    height: 100%;
}

.landing .content  h1 {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 0px;
    width: 80%;
}
.landing .content  h1 .title-firstpart{
    color: var(--secondary-color);
}
.landing .content  h1 .title-secondpart {
    color: var(--main-color);
}
.landing .content  h1 + p {
    color: var(--grey-text-color);
}
.landing .content  .desc {
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.5;
}

.landing .change-background {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ddd;
}
@media (max-height: 764px) {
    .landing .content h1 {
        font-size: 45px;
        width: 85%;
    }
    .landing .content .desc {
        font-size: 22px;
    }
}
@media (max-width: 1200px) {
    .landing .content-container .content {
        width: 70%;
    }

    .landing .content h1 {
        font-size: 45px;
        width: 85%;
    }
    .landing .content .desc {
        font-size: 18px;
    }
    .landing .logo{
        top: 20%;
        width: 400px;
        height: 400px;
    }

}
@media (max-width: 992px) {
    .landing .content-container .content {
        width: 80%;
    }

    .landing .content h1 {
        font-size: 45px;
        width: 100%;
    }

    .landing .content .desc {
        font-size: 18px;
    }
    .landing .logo {
        top: 25%;
        width: 300px;
        height: 300px;
    }
}
@media (max-width: 767px) {
    .landing .change-background {
        display: none;
    }
    .landing .content h1 {
        font-size: 38px;
        width: 100%;
    }

    .landing .content .desc {
        font-size: 16px;
        color: white;
    }
    .landing .logo {
        top: 20%;
        width: 200px;
        height: 200px;
    }
    .landing {
        min-height: 100vh;
    }
    .landing .content-container {
        top: 15%;
    }
    .landing-edit .content-container {
        top: 0%;
        height: 60vh;
    }
    .landing .container {
        flex-direction: column;
        justify-content: space-around;
    }
    .landing .container .image{
        display: none;
    }
}



/* End Landing */

/* Start about us */


.section-title  {
    padding: 30px 0px ;
    text-align: center;
    background-image: linear-gradient(to bottom left, var(--main-color), var(--secondary-color));
}

.section-title p {
    margin: auto ;
    font-size: 38px;
    position: relative;
    width: fit-content;
    color: white;
    
}

.section-title p::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100% ;
    height: 2px;
    background-color: white;
    transition: all var(--main-duration) ease-in-out;
}

.section-title p::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    transition: all var(--main-duration) ease-in-out;
}

.section-title p:hover::after {
    width: 10%;
}

.section-title p:hover::before {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc{
    width: 100%;
    text-align: center;
    margin: 30px 0 50px 0;
}

.section-desc p {
    margin: auto;
    color: var(--grey-text-color);
    font-size: 18px;
    width: 35%;
}

@media (max-width: 1200px) {
    .section-title p {
        font-size: 35px;
    }
    .section-desc p {

        width: 60%;
    }
}
@media (max-width: 992px) {
    .section-title p {
        font-size: 30px;
    }
    .section-desc p {

        width: 80%;
    }
}
@media (max-width: 767px) {
    .section-title {
        padding: 30px 0;
    }
.section-title p {
        font-size: 25px;
        
    }
    .section-title+.section-desc p{
        width: 90%;
    }
}

.about-us .container{
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.about-us .first-part ,.about-us .second-part {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}

.about-us .second-part {
    padding-top: 30px;
}

.about-us .first-part  .about-text ,.speech {
    font-size: 21px;
    width: 50%;
    text-align: center;
    line-height: 1.5;
    color: var(--dark-grey);
}

.about-us .first-part .image-holder {
    width: 50%;
}

.about-us .first-part .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-text span:first-child{
    font-size: larger;
    color: var(--third-color);
}

.about-text span:last-child {
    font-size: larger;
    color: var(--main-color);
}

.about-us .about-ceo {
    display: flex;
    justify-content:center;
    align-items: center;
}


.about-us .about-ceo .ceo-name{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 40px;
    text-align: center;
    width: 40%;
}

.about-us .about-ceo .ceo-name p {
    font-size: 20px;
    color: var(--grey-text-color);
}



.about-ceo .image-container img {
    width: 100%;
    height: 100%;
}

.about-us .speech {
    font-style: italic;
}

.quotation-mark {
    font-size: 40px;
}

@media (max-width: 992px) {
    .about-text {
            width: 100% !important;
            font-size: 18px !important;
    }
    .about-us .first-part {
        display: flex;
        flex-direction: column;
    }

    .about-us .image-holder {
        width: 80% !important;
    }

    .second-part {
        flex-direction: column !important;
    }

    .speech {
        width: 100% !important;
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-us .image-holder {
            width: 100% !important;
    }
    .about-ceo .image-container {
        width: 30%;
    }

    .about-us .about-ceo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .about-us .about-ceo .ceo-name p {
        font-size: 16px;

    }
    .about-us .about-ceo .ceo-name {

        width: 50%;
    }
}
/*  End about us */
/*  Start our values */

.values .container {
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.values .box{
        width: 250px;
        height: fit-content;
}


.values .header {
    width: 100%;
    height: fit-content;
}
.values .image-holder {
        width: 100%;
        height: 70%;
        justify-content: center;
        display: flex;
}
.values .header img{
    height: 100%;
}

.values .title{
    text-align: center;
    font-size: 24px;
    padding: 10px;
    font-weight: bold;
    color: var(--dark-grey);
}

.values .body{
    text-align: center;
    font-size: 19px;
    padding: 20px;
    color: var(--grey-text-color);
}

.values .first-line{
    width: 100%;
    display: flex;
    justify-content: center;
}
.values .second-line {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: start;
}
.values .third-line {
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: start;
}

.values .third-line .box .body {
    padding: 20px 10px;
}

@media (max-width: 767px) {
    .values .second-line ,.values .third-line {
        flex-direction: column;
        align-items: center;
        
    }
}
/*  End our values */
/* Start services */

.services .flex{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.services .container:not(:nth-child(1)) {
    margin:  var(--section-padding) auto ;
}
.services .container .card {
    width: 45%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}

.services .container .card .image-holder{
    height: 100%;
    margin-right: 20px;
    width: 50px;
}

.services .container .card .image-holder img{
    height: 45px;  
}

.services .card .text {
    width: 100%;
}

.services .card .text .title {
    height: fit-content;
    width: 100%;
    font-weight: 500;
    font-size: 24px;
    padding: 0 10px;
    color: var(--dark-grey);
}

.services .card .text .content  {
    font-size: 19px;
    padding: 20px 10px;
    color: var(--grey-text-color);
}

.services .statistic {
    width: 100%;
    background-color: var(--secondary-color);
    height: fit-content;
    padding: 20px 0;
}
.services .statistic .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
}
.services .statistic .cardStatic {
    width: fit-content;
    min-width: 120px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services .statistic .cardStatic .header {
    width: 100%;
    height: fit-content;
}

.services .statistic .cardStatic .header .image-holder {
    height: 70%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items:end;

}
.services .statistic .cardStatic .header .image-holder img{
    height: 40px;
}

.services .statistic .cardStatic .header .title {
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    height: 30%;
}

.services .statistic .cardStatic .body {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.services .statistic .cardStatic .body p {
    font-size: 50px;
    color: white;
    margin-left: -20px;
}

@media (max-width: 767px) {
    .services .flex{
        flex-direction: column;
    }
    .services .container .card {
        width: 100%;
        align-items: center;
        flex-direction: column;
    }
    .services .statistic .cardStatic .header .image-holder img {
        height: 35px;
    }
    .services .statistic .cardStatic .body p {
        font-size: 30px;
    }
    .services .statistic .cardStatic {
        justify-content: space-evenly;
    }
    .services .statistic .container{
        justify-content: center;
    }
}
/*  End Services */
/*  Start emploi */

.emploi .container {
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.emploi .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.emploi .category{
    width: 100%;
    height:fit-content;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.emploi .category .title {
    width: 100%;
    padding: 20px 0;
}

.emploi .category .title p {
    font-size: 24px;
    color: var(--dark-grey);
    font-weight: 500;
    
}

.emploi .category .sous-category-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 100%;
    height: fit-content;
}
.emploi .category .sous-category-wrapper .sous-category{
    width: 60%;
    height: fit-content;
    border: 2px solid var(--grey-text-color);
    border-radius: 20px;
    margin: 15px 0;
}
.emploi .category .sous-category-wrapper .sous-category .header{
    height: 50px;
    width: 100%;
    display: flex ;
    justify-content: space-between;
    padding: 20px;
}
.emploi .category .sous-category-wrapper .sous-category .header > p{
    font-size: larger;
    color: var(--secondary-color);
    font-weight: 600;
}
.emploi .category .sous-category-wrapper .sous-category .header div {
    display: flex;
    align-items: center;
    height: fit-content;
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
}

.emploi .category .sous-category-wrapper .sous-category .header div img{
    height: 12px;
}

.emploi .category .sous-category-wrapper .sous-category .body{
    height: fit-content;
    width: 100%;
    padding: 20px;
    color: var(--dark-grey);
    font-size: 19px;
}
.emploi .category .sous-category-wrapper .sous-category .footer{
        height: fit-content;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
}

.emploi .sous-category .footer :is(.location,.time,.expiryDate) {
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content:flex-start;
    padding-inline: 20px;
    margin-bottom: 20px;
}

.emploi .sous-category .footer :is(.location , .time,.expiryDate) img{
    margin-right: 10px;
}
.emploi .sous-category .footer :is(.location, .time,.expiryDate) p {
    color: var(--dark-grey);
    font-weight: 600;
    margin-bottom: -10px;
}


.separator {
    width: 100%;
    height: 2px;
    background-color: #D8D8D8;
}
@media (max-width: 767px) {
    .emploi .category .sous-category-wrapper {
            align-items: center;
    }
    .emploi .category .sous-category-wrapper .sous-category {
        width: 100%;
    }
}
/*  End emploi */

/* Start Contact */
.contact {
    position: relative;
    
}

.contact .container {
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.plane{
    position: absolute;
    right: 100px;
    top: 50px;
}
@media (max-width: 1200px) {
    .plane {
        width: 250px;
        right: 40px;
    }
}

@media (max-width: 992px) {
    .plane {
            width: 150px;
            top: 20px;
        }
}

@media (max-width: 767px) {
    .plane {
        top: 10px;
        right: 20px;
        width: 100px;
    }
}
.contact .container{
    display: flex;
    justify-content: space-between;
    align-items: start;
}

form {
    width: 49%;
    height: fit-content;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

form .row {
    width: 100%;
    height: fit-content;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

form .row .field {
    height: 100px;
    width: 48%;
    position: relative;
}

form .Message  {
    height: fit-content;
    flex-direction: column;
    align-items: start;
}

form .Message .field{
    width: 100%;
    height: fit-content;
}

form .Message .field textarea{
    height:170px ;
    resize: none;
}

.field i {
    position: absolute;
    top: 46px;
    right: 30px;
    font-size: larger;
    visibility: hidden;
    z-index: 10;
}

.field i:first-of-type {
    color: red;
}

.field i:nth-of-type(2) {
    color: var(--third-color);
}

.field small {
    visibility: hidden;
}

.field.succes :is(input, textarea, select) {
    border-color: var(--third-color) !important;
    box-shadow: 0 0 2px 0px var(--third-color);
}

.field.error :is(input, textarea) {
    border-color: red  !important;
    box-shadow: 0 0 2px 0px red;
    animation:  shake 0.2s ease-in-out;
}

@keyframes shake {
    0% {
        transform: translatex(0);
    }

    25% {
        transform: translatex(15px);
    }

    75% {
        transform: translatex(-9px);
    }

    100% {
        transform: translatex(0);
    }
}

.field.succes i.fa-circle-check {
    visibility: visible;
}

.field.error i.fa-circle-exclamation {
    visibility: visible;
}

.field.error small {
    visibility: visible;
    color: red;
}

form .row .field label {
    font-size: larger;
    font-weight: 600;
    margin-bottom: 100px;
    color: var(--dark-grey);
    white-space: nowrap;
}

form .row .field input,
textarea{
    width: 100%;
    padding: 15px 10px;
    font-size: 15px;
    border: 1.2px solid var(--grey-text-color);
    border-radius: 5px;
    margin-top: 10px;
    transition: all var(--main-duration);
    color: var(--grey-text-color);
}
form .row .field :is(input:focus,textarea:focus){
    outline: none;
    box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.15);
    border: 1.2px solid var(--main-color);
}

.file-input-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 1px solid var(--grey-text-color);
    margin-top: 10px;
    border-radius: 5px;
    background-color: white;
    height: 49.2px;
}

.file-input {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    padding: 6px;
    height: 100%;
    width: 40%;
    background-color: var(--secondary-color);
    border-radius: 4px 0 0 4px;
    cursor: pointer;
}

.file-input-icon {
    font-size: 12px;
    color: var(--dark-grey);
    font-weight: 400;
    text-align: center;
}

.file-input-field {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.selected-file-text {
    width: 70%;
    height: 100%;
    padding: 5px;
    font-size: 14px;
    color: #555;
    overflow: hidden;
    padding-top :6px ;
}

button[type="submit"]{
    background-color: var(--main-color);
    border: none;
    padding: 10px 30px;
    border-radius:5px;
    color: white;
}
.contact .map {
    width: 49%;
    height: 500px;
}

.contact .map .title{
    font-size: larger;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-grey);
    height: 30px;
}

.contact .map .mapContainer,iframe{
    height: 100%;
    width: 100%;
}


@media (max-width: 992px) {
    .contact .container {
            flex-direction: column;
        
    }
    .contact :is(form,.map) {
            width: 100%;
            margin-bottom: 20px;
    }
}

@media (max-width: 550px) {
    form .row {
        flex-direction: column;
    }
     form .row .field {
        width: 100%;
    }
}
/* End Contact */
/* Start footer */

footer {
    background-color: var(--dark);
    overflow: hidden;
}

footer .container{
    display: flex;
    flex-direction: column;
    color: white;
}

footer .container .upper-footer{
    width: 100%;
    height: fit-content;
    display: flex ;
    justify-content: space-between;
    align-items: start;
}

footer .container .upper-footer :is(.logo-holder,.links,.infos)  {
    width: 33%;
    height: 250px;
    margin-top: 40px;
}

footer .container .upper-footer .logo-holder {
    width: 25%;
}

footer .container .upper-footer .links {
    width: 20%;
}

footer .container .upper-footer .logo-holder img{
    width: 200px;
    margin-bottom: 10px;
}

footer .container .upper-footer .logo-holder p {
    font-size: 15px;
    color: var(--grey-text-color);
    width: 60%;
    margin-left: 5px;
    line-height: 1.3;
}

footer .container .upper-footer  h3 {
    font-style: italic;
    margin-bottom: 15px;
}


footer .container .upper-footer .links ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

footer .container .upper-footer .links ul li a{
    text-decoration: none;
    color: white;
}

footer .container .upper-footer .links ul li a:hover {
    color: var(--secondary-color);
}

footer .container .upper-footer .infos :is(.phone,.email,.addresse) {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: fit-content;
    margin-bottom: 25px;

}

footer .container .upper-footer .infos :is(.phone, .email, .addresse) p{
    color: #808080;
}

footer .container .upper-footer .infos h4{
    margin-right: 20px;
    width: 60px;
}

footer .container .upper-footer .infos .email a{
   text-decoration: none;
   color: #808080;
}

footer .container .upper-footer .infos .email a:hover {
    color: var(--secondary-color);
}



@media (max-width: 992px) {
    footer .container .upper-footer :is(.logo-holder, .links, .infos) {
        width: fit-content;
        height: 250px;
        margin-top: 40px;

    }

    footer .container .upper-footer .links{
        margin-inline: 30px;
    }
}

@media (max-width: 767px) {
    footer .container .upper-footer {
        flex-wrap: wrap;
    }
    footer .container .upper-footer .links {
        margin-right: 80px;
        margin-left: 0;
    }
    footer .container .upper-footer :is(.logo-holder, .links, .infos) {
        height: fit-content;
    }
}

footer .separator{
    height: 1px;
    background-color: var(--grey-text-color);
}

footer .container .copy-rights{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
        padding: 30px 0;
}

footer .container .copy-rights .text {
    font-weight: 500;
    font-size: 16px;
    font-style: italic;
    color: #808080;
}

footer .container .copy-rights .text span:first-child{
    color: var(--secondary-color);
}
footer .container .copy-rights .text span:last-child {
    color: var(--main-color);
}

footer .container .copy-rights .medias i{
    color: white;
    font-size: 22px;
    margin-left: 10px;
    margin-bottom: 5px;
}


/* End footer */

/* Start ERP */

/* Start landing */
.landing-edit{
    min-height: 60vh;
    background-image: url(../Images/erp\ banner.png);
}
.landing-edit .overlay {
    background-color: rgb(0 0 0 / 40%);
}
@media (max-width: 767px) {
    .landing-edit {
            min-height: 100vh;
    }
    .landing-edit .content-container{
        top: 15%;
    }
}


/* End landing */
/* Start odooPres */
.odoo-pres{
    margin-bottom: var(--section-padding);
}

.odoo-pres .container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: var(--section-padding);
    margin-bottom: var(--section-padding);
}

.odoo-pres .container .image-holder{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.odoo-pres .container .image-holder img {
    width: 100%;
    padding-top: 40px;
}
.odoo-pres .container .text{
    width: 45%;
    padding: 10px;
}
.odoo-pres .container .text p:first-child{
    color: var(--dark-grey);
    font-size: 24px;
    width: 60%;
    margin-bottom: 20px;
}

.odoo-pres .container .text p:last-child{
    color: var(--grey-text-color);
    font-size: 19px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .odoo-pres .container .image-holder {
        width: 48%;
    }
    .odoo-pres .container .text {
        width: 48%;
    }
    .odoo-pres .container .text p:first-child {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .odoo-pres .container {
        align-items: center;
        flex-direction: column;
    }
    .odoo-pres .container :is(.image-holder,.text){
        width: 100%;
    }
    .odoo-pres .container .image-holder img {
        width: 80%;
    }
}
/* End odooPres */

/* Start odooApps  */

.odoo-apps{
    margin-bottom: var(--section-padding);
}

.odoo-apps :is(.second-row,.first-row){
    width: 100%;
    height: fit-content;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.odoo-apps .app {
    width: 298px;
    padding: 8px;
    margin-bottom: 20px;
    height: 64px;
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid rgb(234, 234, 234);
    border-radius: 5px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.odoo-apps .app img{
    height: 100%;
    margin-right: 20px;
}

.odoo-apps .app h4 {
    font-size: 21px;
}

.odoo-apps .second-row {
    justify-content: space-evenly;
}

@media (max-width: 992px) {
    .odoo-apps .app{
        width: 32%;
    }
    .odoo-apps :is(.second-row, .first-row) {
        justify-content: space-evenly;
    }
}

@media (max-width: 767px) {
    .odoo-apps .app {
        width: 298px;
    }

}
/* End odooApps */
/* Start demande */
.demande .container{
    margin: var(--section-padding) auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demande .text{
    width: 40%;
    height: fit-content;
    color: var(--dark-grey);
    font-size: 24px;
    font-weight: 600;
    margin-top: -40px;
}


@media (max-width: 767px) {
    .demande .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .demande .text {
        width: 98%;
        text-align: center;
        margin-bottom: 30px;
            margin-top: 0;
    }
    .demande form {
        width: 90%;
    }
}
/* End demande */
/* End ERP */
/* floating form */
.screen-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 40%);
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.screen-overlay .form-container {
    background-color: white;
    width: 900px;
    height: fit-content;
    padding: 25px 40px;
    margin: 0 10px;
    border-radius: 20px;
    position: relative;
    opacity: 0;
}

.slideDownStart {
    animation: slideDownStart 1s ease-in-out forwards;
}

.slideDownEnd {
    margin-bottom: 0;
    animation: slideDownEnd 0.6s ease-in-out forwards;
}

.screen-overlay .form-container .custom-i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    padding: 5px 7px;
    color: white;
    background-color: red;
    border-radius: 50%;
}


@keyframes slideDownStart {
    40% {
        transform: translateY(-100px);
    }

    60% {
        transform: translateY(50px);
        opacity: 1;
    }

    80% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDownEnd {
    0% {
        opacity: 1;
    }

    40% {
        margin-bottom: 100px;
        opacity: 1;
    }

    100% {
        margin-bottom: -300px;
        opacity: 0;
    }
}

.screen-overlay form {
    width: 100%;
}
/* floating form */
.submitmessage{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
    color: white;
    height:fit-content;
    font-size: 19px;
}

.emploi .submitmessage{
    width: 50% ;
    margin: auto;
}

.submitmessage p.error {
    border-radius: 10px;
    padding: 20px;
    background-color: #e26969;
}

.submitmessage p.success {
    border-radius: 10px;
    padding: 20px;
    background-color: #69e2ac;
}
.fadeout {
    opacity: 0;
    transition: opacity 1s;
    /* Change the duration of fade-out animation here (in seconds) */
}
/* Animaaaaaaaaaaaaaaaaaaaaaations */
.left-fade-element,
.right-fade-element,
.up-fade-element,
.down-fade-element,
.zoom-in-element,
.zoom-out-element,
.right-slide-element,
.left-slide-element {
    opacity: 0;
}

.leftfade {
    animation: fade-in-left var(--animation-duration) ease-in-out;
    opacity: 1;
}

.rightfade {
    animation: fade-in-right var(--animation-duration) ease-in-out;
    opacity: 1;
}

.upfade {
    animation: fade-in-up var(--animation-duration) ease-in-out;
    opacity: 1;
}

.downfade {
    animation: fade-in-down var(--animation-duration) ease-in-out;
    opacity: 1;
}

.upfade {
    animation: fade-in-up var(--animation-duration) ease-in-out;
    opacity: 1;
}

.downfade {
    animation: fade-in-down var(--animation-duration) ease-in-out;
    opacity: 1;
}

.zoomin {
    animation: zoom-in 0.7s ease-in-out;
    opacity: 1;
}

.zoomout {
    animation: zoom-out 0.7s ease-in-out;
    opacity: 1;
}

.slideright {
    animation: right-slide 0.5s ease-in;
    opacity: 1;
}

.slideleft {
    animation: left-slide 0.5s ease-out;
    opacity: 1;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-down {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoom-in {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom-out {
    from {
        transform: scale(1.2);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes right-slide {
    from {
        transform:translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes left-slide {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
