/* My */
body {
    margin: 0;
    padding: 0;
    background-color: #F8F8F8;
}

* {
    font-family: 'Tajawal', sans-serif;
}

:root {
    --main-color: #F4903A;
    --secend-color: #F8F8F8;
    --text-color: #003f5d;
}

.container_slide {
    width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.slider_container {
    position: relative;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

.swiper {
    width: auto;
    height: 100%;
    z-index: 10;
    color: white;
}

.swiper_content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.swiper-slide {
    position: relative;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgb(0, 0, 0, 0.5);

}

.swiper_content span {
    position: relative;
    font-size: 2rem;
    font-weight: 900;
    border-bottom: 4px solid var(--main-color);
    text-align: center;
    color: #fff;
}

.swiper_content .swiper_btn {
    background-color: var(--main-color);
    color: #fff;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 900;
    z-index: 99;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    list-style: none;
}

.menu_container {
    margin-top: 15px;
}

li {
    text-decoration: none;
}

.menu>li>a {
    position: relative;
    font-weight: 500;
    text-decoration: none;
    padding: 10px;
	color:#000;
}

.menu>li>a:hover {
    color: var(--main-color);
}

.menu>li>a:before,
.menu_mob>li>a:before {
    content: "";
    background: var(--main-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s ease-in;
    width: 0;
    height: 4px;

}

.mobile_menu {
    display: none;
}

.menu>li>a:hover:before,
.menu_mob>li>a:hover:before {
    content: "";
    margin-bottom: -10px;
    width: 100%;
}



.menu>li:first-child>a:before {
    margin-bottom: -10px;
    width: 100%;
}

.container_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 35px;
    padding-left: 35px;
    transition: ease-in;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;

}

.container_header1 {
	min-height:80px;
    background-color: #fff;
	padding-top: 20px;
}

.container_header {
    background-color: #fff;
    height: 600px;
    background-image: url(./images/blob.svg);
    background-repeat: no-repeat;
    background-size: 48%;


}

.header_image {


    background-image: url(./images/code.gif);
    background-repeat: no-repeat;
    width: 50%;

}

.header_content {
    height: 80vh;
    width: 100%;

    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.header_content h1 {
    margin-left: 7%;
    width: 30%;
    color: #fff;
}

header_content span {
    color: #fff;
}

.shap {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
}

.header_pager {
    padding-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;



}

.form_container h4 {
    font: normal normal 16px / 24px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #003f5d;

}

.form_group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

input[type=text],
input[type=email],
select {
    width: 100%;
    height: 40px;
    margin: 10px;
}

select {
    width: 100%;
    height: 40px;
}

textarea {
    width: 100%;
    margin-bottom: 10px;
}

.form_group {
    width: 100%;
}

.container_contact {

    background-color: #fff;
    padding-bottom: 3rem;
}

.container_contact h1 {

    color: #F4903A;
}

.rejoint_container {

    padding-top: 3rem;

}

.header_pager h1 {
    color: #F4903A;
    margin: 0;
}

.header_pager span {
    font-weight: 700;
}

.header_pager h5 {
    color: #003f5d;

    max-width: 60%;
    font: normal normal 16px / 24px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
}

.contact_btn {
    text-decoration: none;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    border: none;
}

.contact_btn>a {
    color: #fff;
}

.contact_btn:hover {
    background-color: var(--main-color);
    opacity: 0.9;

}

.container_logo img {
    height: 90px;
    width: auto;
}

.mobile_menu_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.hidden {
    display: none;
}

.close {
    color: var(--text-color);
    height: 40px;
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}

.menu_item_mobile {
    height: 100%;
    width: 400px;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;

}

.menu_item_mobile ul {
    list-style: none;


}

a {
    text-decoration: none;
	color:#000;
}

.menu_mobile {
    cursor: pointer;
    height: 40px;
    width: 40px;
    color: var(--text-color);
    font-size: 30px;
}

.menu_mobile:hover i {
    color: var(--main-color);
}

.menu_mob li {
    padding-top: 30px;

}

.container_skill {
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-direction: row;
    position: relative;
    background-color: #F8F8F8;
    padding-top: 50px;

}

.skill_contennt {
    padding: 10px;
    width: 50%;
}

body h4 {
    font-size: 34px;
    color: #003f5d;
    margin: 0;
    margin-bottom: 25px;
}

body h4::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 17px;
    height: 3px;
    background-color: #F4903A;
    width: 50px;
}



.skill_card {
    padding-right: 25px;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #ffffff !important;
    border-radius: 20px !important;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    max-width: 278px;
    min-width: 278px;
	transition:ease-in-out;
	transition-duration:.3s;
}
.skill_card:hover{
transform: rotate(2deg);
}

.skill_card>h5 {
    color: #003f5d;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
	

}

.skill_example {
    width: 50%;
    padding: 10px;
    padding-right: 25px;
    padding-left: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;



}

.skill_icon {
    height: 48px;
    width: 48px;
    background-color: #F4903A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.skill_card i {
    z-index: 2;
}

.skill_go {

    height: 28px;
    width: 28px;
    background-color: #F4903A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    cursor: pointer;


}

.skill_go:hover {
    opacity: 0.8;
}

.container_expertise {

    position: relative;
}

.card_expertise {
    width: 24%;
    position: relative;
    margin-top: 30px;
    min-width: 280px;

}

.card_content {

    border-radius: 10px;
    min-height: 367px;
    background-repeat: no-repeat;
    background-size: cover;
	transition:ease-in-out;
    transition-duration: .5s;
}
.card_content:hover {

	transform:scale(1.1);
	z-index:10;
	
}

.card_content::before {
    content: "";
    z-index: 1;
    position: absolute;
    margin: 15px 0px;
    min-height: 367px;
    display: grid;
    width: 100%;
    top: 0px;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(transparent, 79%, #F4903A);
}

.card_content a {
    z-index: 2;
    color: white;
    position: absolute;
    bottom: 0;
    padding: 10px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;

}



.expertise_content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 3rem;



}

.fond_container {
    background-color: #F4903A;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.fond_container h1 {
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;

}

.fond_content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;

}

.card_fond {
    width: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;


}

.card_fond_img {
    background-color: #fff;
    border-radius: 100px;
    height: 150px;
    width: 150px;
    margin: 10px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;


}

.card_fond_content {
    width: 70%;
    color: #fff;
}

.card_fond_content h6 {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #fff;


}

.card_fond_content span {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;

}

.container_project {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.card_project {
    display: flex;
    flex-direction: column;
    align-items: center;
	transition:ease-in-out;
	transition-duration:.5s;
}
.card_project:hover {
    transform: rotate3d(2, 1, 4, 5deg);
}

.card_project h5 {
    color: #003f5d;
    padding: 10px;
    font-size: 21px;
}

.card_project_image {
    height: 280px;
    width: 280px;
    background-size: cover;
    background-repeat: no-repeat;
}

.container_partnre {
    text-align: center;
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.partnre_list {
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.cotainer_blog {

    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 3rem;
}

.cotainer_blog h4 {
    text-align: center;

}

.partnre_list>div {
    height: 120px;
    width: 120px;
    background-size: contain;
    background-repeat: no-repeat;
}

.card_blog {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 32%;
}

.card_blog_img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 214px;
    width: 100%;
    position: relative;


}

.card_blog_date {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
}

.card_blog_date>.blog_mois,
.card_blog_date>.blog_day,
.card_blog_date>.blog_year {
    color: rgb(34, 34, 34);
}

.card_blog_date>.blog_year {
    color: #F4903A;
    font-weight: 700;

}

.card_blog_date>.blog_day {
    font-size: 28px;
    font-weight: 700;
}

.card_blog_date>.blog_mois::before,
card_blog_date>.blog_day::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 10px;
    background-color: #F4903A;
    top: 25px;
    margin-left: 7px;
}

.card_blog_content {
    padding: 10px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.card_blog_content h4 {
    color: rgb(0, 63, 93);
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
}

.card_blog_content span {
    font-size: 15px;
    line-height: 27px;
    color: rgb(0, 63, 93);
}

.card_blog_content a {
    font-size: 13px;
    line-height: 17px;
    color: rgb(0, 63, 93);
    font-weight: 700;
}

.container_banner {
    margin-bottom: 3rem;
    z-index: 100;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    text-align: center;
    padding-top: 35px;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border-top-width: 1px !important;
    border-right-width: 1px !important;
    border-bottom-width: 1px !important;
    border-left-width: 1px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    border-left-color: #ffffff !important;
    border-left-style: solid !important;
    border-right-color: #ffffff !important;
    border-right-style: solid !important;
    border-top-color: #ffffff !important;
    border-top-style: solid !important;
    border-bottom-color: #ffffff !important;
    border-bottom-style: solid !important;
    border-radius: 25px !important;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
    padding: 10px;
}

.container_banner h3 {
    color: rgb(0, 63, 93);
    font-weight: 400;
    font-size: 28px;
}

.btn_contact {
    text-transform: none;
    font: 500 14px / 16px Montserrat, Helvetica, Arial, Verdana, sans-serif;
    border-radius: 10px;
    border-width: 0px;
    border-style: solid;
    border-color: rgb(23, 145, 213);
    border-image: initial;
    padding: 12px 18px;
    background: #F4903A;
    color: #fff;
    cursor: pointer;
}

.circle1 {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px;
    height: 100px;
    width: 100px;
    background-color: #F4903A;
    border-radius: 50% 20% 30% 10%;
}

.circle2 {

    position: absolute;
    bottom: 0;
    right: 0;
    margin: 10px;
    height: 100px;
    width: 100px;
    background-color: #F4903A;
    border-radius: 50% 20% 30% 10%;
}



.footer {

    width: 100%;
    background-color: #FAF4EA;
}

.footer_content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 3rem;



}

.footer_menu h4 {
    color: rgb(0, 63, 93);
    font-weight: 400;
    font-size: 24px;
}

.footer_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer_cpyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_cpyright div {
    font-size: 13px;
    line-height: 25px;
    color: #003f5d;
    font-size: 13px;
    padding: 10px;

}

.info_entreprise {
    display: flex;
    flex-direction: row;
    padding-top: 3rem;
    gap: 20px;
}

.map_entreprise {
    height: 400px;
    width: 400px;
    background-image: url('./images/map.png');
    background-position: center;
    background-size: cover;
}

.info_content p {
    font: normal normal 16px / 24px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #003f5d;
}

.form_success {
    color: white;
    background-color: #198754;
    border-color: #198754;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.form_error {
    display: none;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
}

.header_project {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.container_projects {
    display: flex;
    flex-direction: row;
    position: relative;
}

.project_content {
    width: 60%;
    background-color: #fff;
    padding: 2rem;
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
}



.project_description {
    width: 40%;
    padding: 2rem;
}

.project_logo {
    background-color: #fff;
    position: absolute;
    height: 100px;
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    border: 4px solid #F4903A;
    z-index: 100;
    top: -80px;
}


.project_presentation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.project_presentation img {
    width: 100%;
}

.project_description h1 {
    font: normal normal 16px / 24px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #003f5d;
}

.project_description p {
    font: normal normal 16px / 24px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #003f5d;
}

.container_list_action {
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
}




.action_img>img {
    height: 300px;
    width: 300px;
}

.list_action h6 {
    color: #003f5d;
    font: normal 400 21px / 30px "Montserrat", Helvetica, Arial, Verdana, sans-serif;
    text-transform: none;
}

@media only screen and (max-width: 600px) {

    .project_content,
    .project_description {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .container_projects {
        flex-direction: column;
    }

    .form_group {
        flex-direction: column;
    }

    input[type=text],
    input[type=email],
    select {
        margin: 0;
        margin-bottom: 10px;
    }

    .footer_cpyright {
        flex-direction: column;
    }

    .footer_content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .circle1,
    .circle2 {
        height: 30px;
        width: 30px;
    }

    .cotainer_blog {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card_blog {
        width: 90%;
    }

    .container_project a {
        width: 100%;
    }

    .card_fond {
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .mobile_menu {
        display: block;
    }

    .card_expertise {
        width: 100%;
    }

    .skill_example,
    .container_skill,
    .skill_contennt,
    .skill_example {
        padding: 0;
    }

    .container_skill,
    .skill_example,
    .skill_contennt {
        flex-direction: column;
        width: 100%;
    }

    .container_skill,
    .skill_example {
        padding-top: 3rem;
    }

    .container_menu,
    .header_image {
        display: none;
    }

    .container_header {
        background-size: 1000px;
        background-position-x: right;
    }

    .header_content {
        padding: 0;

    }

    .header_content h1 {
        width: 90%;
        padding: 0;
        display: block;
        line-height: 70px;
    }

}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}


.btn_action_archive {
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 3px solid #FFCE01;
    color: #00539a;
    font-weight: 800;
    transition: 0.5s;
    z-index: 10;
}

.btn_action_archive::before {

    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #00539a;
    opacity: 0.5;
    color: white;
    transition: 0.5s;

}

.btn_action_archive:hover {
    color: #FFCE01;
}

.btn_action_archive:hover::before {
    width: 100%;
}

.em-pagination {
    width: 100%;
    margin-top: 40px;
	    margin-bottom: 40px;

    text-align: center;
}

.em-pagination>span,
.em-pagination>a {
    width: 40px;
    height: 40px;
    line-height: 25px;
    font-weight: 700;
    border-radius: 0;
    background-color: transparent;
    margin: 0 4px;
    position: relative;

    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #F4903A;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;

}

.btn_action_archive {}

.archive_container .current {
    color: #F4903A;
    border-color: #FAF4EA;
    background: #0054c9;
    background: #FAF4EA;
}
