@font-face {
    font-family: 'Museo';
    src: url('./../../font/Museo700-Regular.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Museo';
    src: url('./../../font/Museo300-Regular.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

:root {
    /* Colors */
    --first-color: #F0733B;
    --first-color-2: #EB5C4F;
    --first-color-light: #fcb899e5;
    --second-color: #E32481;
    --second-color-2: #a00550;
    --second-color-light: #df4b9293;
    --black-color: #000000;
    --white-color: #ffffff;
    --gray-color: #a5a3a3;
    /* Fonts */
    --main-font: 'Museo';
}

* {
    font-family: var(--main-font);
}

select,
input {
    border: 1px solid;
    border-color: #5e5e5e !important;
}

body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: #FCFCFE;
}

.no-event {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.no-event p {
    font-size: 16px;
    color: var(--gray-color);
}

/* Header Desktop */
body {
    overflow-x: hidden;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loader .loader-img {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#loader img {
    width: auto;
    height: 80px;
}

#progress-bar {
    width: 60%;
    height: 5px;
    margin: 0 auto;
    background-color: #ccc;
    overflow: hidden;
}

#progress-bar span {
    display: block;
    width: 0%;
    height: 100%;
    /* background-color: #000; */
    transition: ease-in .1s;
}

.header {
    background-color: var(--white-color);
    padding: 20px 15px;
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header.sticky {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    top:0;
    width: 100%;
    animation: showNavbar .6s ease-in-out;
}

@keyframes showNavbar {
    from {
        top: -100%;
    }

    to {
        top: 0;
    }
}


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

.header .header-content .logo {
    display: flex;
    flex-direction: column;
    position: relative;
}

.header .header-content .logo img {
    position: relative;
    height: 50px;
    width: 130px;
}

.header .header-content .logo span {
    position: absolute;
    bottom: 0px;
    right: -35px;
    font-size: 9px;
    font-weight: bold;
    font-family: var(--main-font);
    color: var(--black-color);
}

.header .header-content .toggle-menu-nav {
    display: none;
}

.header .header-content .toggle-menu-nav button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.header .header-content .toggle-menu-nav button i,
.header .header-content .toggle-menu-nav button svg {
    font-size: 30px;
}

.header .menu-nav {
    display: block;
}

.header .menu-nav div button {
    display: none;
}

.header .menu-nav div ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.header .menu-nav div ul li {
    margin-bottom: 0 !important;
    /* margin-left: 20px !important;
    border-right: 1px solid gray; */
    padding-right: 20px !important;
    cursor: default;
    color: var(--black-color);
    font-size: 18px;
    font-weight: normal;
}

.header .menu-nav div ul li:last-child {
    border-right: none;
    padding-right: 0px !important;
}


.header .menu-nav div ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 18px;
    font-weight: normal;
    transition: ease-in-out .3s;
}


.header .menu-nav div ul li a.active,
.header .menu-nav div ul li a:hover {
    color: var(--first-color);
}

.header .menu-nav div ul li:hover ul {
    display: flex;
    transition: ease-in-out 3s;
}

.header .menu-nav div ul li ul {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    position: absolute;
    background-color: var(--white-color);
    padding: 10px !important;
    width: 170px;
    /* height: 80px; */
    box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.3);
}

.header .menu-nav div ul li ul li {
    padding: 5px;
}

.header .menu-nav div ul li ul li:first-child {
    width: 100%;
    border-bottom: 1px solid #d6d6d6;
}


/* Footer Desktop */
.footer {
    margin-top: 30px;
    background: linear-gradient(to right, var(--first-color), var(--first-color-2));
    padding: 30px;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
}

.footer .footer-head {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-head .logo {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 130px;
    margin-bottom: 10px;
}

.footer .footer-head .logo img {
    position: relative;
    height: 50px;
    width: 130px;
}

.footer .footer-head .logo span {
    position: absolute;
    bottom: -2px;
    right: -37px;
    font-size: 9px;
    font-family: var(--main-font);
    color: var(--white-color);
}

.footer .footer-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.footer .footer-toggle {
    margin-top: 10px !important;
}

.footer .footer-toggle h5 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
}

.footer .footer-toggle button {
    width: 100%;
    border: none;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    font-size: 18px;
}

.footer .footer-toggle .dropdown-list {
    display: block;
    list-style: none;
    padding-left: 20px;
    margin-bottom: 0 !important;
}

.footer .footer-toggle .dropdown-list li {
    margin-bottom: 5px !important;
}

.footer .footer-toggle .dropdown-list li:first-child {
    margin-top: 5px !important;
}

.footer .footer-toggle .dropdown-list li:last-child {
    margin-bottom: 0px !important;
}

.footer .footer-toggle .dropdown-list li a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 16px;
    transition: ease-in-out .3s;
}

.footer .footer-toggle .dropdown-list li a:hover {
    color: var(--second-color);
}

.footer .footer-toggle .dropdown-list li a svg,
.footer .footer-toggle .dropdown-list li a i {
    margin-right: 5px;
}

.footer .footer-foot {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--white-color);
}

.footer .footer-foot ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer .footer-foot ul li {
    color: var(--white-color);
    margin-right: 50px;
}

.footer .footer-foot ul li a {
    text-decoration: none;
    color: var(--white-color);
    font-size: 16px;
    transition: ease-in-out .3s;
}

.footer .footer-foot ul li a:hover {
    color: var(--second-color);
}

.footer .footer-foot .link-sociaux {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 10px;
}

.footer .footer-foot .link-sociaux li {
    margin-right: 25px !important;
}

.footer .footer-foot .link-sociaux li:last-child {
    margin-right: 0 !important;
}

.footer .footer-foot .link-sociaux li a svg,
.footer .footer-foot .link-sociaux li a i {
    font-size: 30px;
}

.footer .footer-foot p {
    margin-top: 10px;
    text-align: center;
    color: var(--white-color);
    font-size: 15px;
}

/* Section Hero */
.section-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 40px;
    background: linear-gradient(to right, var(--first-color), var(--first-color-2));
}

.section-hero p {
    color: var(--white-color);
    font-size: 28px;
    text-align: center;
    font-family: var(--main-font);
}

.section-hero .hero-action {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 470px;
}

.section-hero .hero-action a {
    text-decoration: none;
    width: 250px;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-family: var(--main-font);
}

.section-hero .hero-action a:nth-child(1) {
    background-color: var(--second-color);
}

.section-hero .hero-action a:nth-child(1):hover {
    background-color: var(--second-color-2);
}

.section-hero .hero-action a:nth-child(2) {
    border: 2px solid var(--second-color);
}

.section-hero .hero-action a:nth-child(2):hover {
    border: 2px solid var(--second-color-2);
    background-color: var(--second-color-2);
}

/* .section-hero img{
    position: absolute;
    height:220px ;
    right: -80px;
    bottom: -55px;
} */

.section-hero img#child1 {
    position: absolute;
    height: 220px;
    right: -80px;
    bottom: -55px;
}

.section-hero img#child2 {
    position: absolute;
    height: 185px;
    left: -65px;
    bottom: -33px;
    transform: scaleX(-1);
}

/* Section About Us */
.section-about-us {
    padding: 20px 100px;
    margin-top: 10px;
}
.section-about-us .about-us-head h1,
.section-about-us .about-us-head h5 {
    text-align: center !important;
    font-size: 20px !important;
    color: var(--first-color) !important;
    font-weight: 700 !important;
    font-family: var(--main-font) !important;
}

.section-about-us .about-us-head h5 span {
    display: inline-block;
}

.section-about-us .about-us-body p {
    margin-top: 10px;
    font-size: 16px;
}

.section-about-us .about-us-body span {
    color: var(--first-color);
    font-weight: 700;
}

/* Section Create Talent */
.create-talent-work {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0px 100px;
}

.section-create-talent {
    padding: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--first-color), var(--first-color-2));
    border-radius: 20px;
    height: 100%;
}

.section-create-talent .create-content {
    border-radius: 20px;
    background: var(--white-color);
    padding: 20px 10px;
    height: 100%;
}

.section-create-talent .create-talent-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 35px;
}

.section-create-talent .create-talent-head h5 a {
    text-decoration: none;
    color: var(--second-color);
    transition: ease-in-out .3s;
}

.section-create-talent .create-talent-head h5 a:hover {
    color: var(--second-color-2);
}

.section-create-talent .create-talent-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-create-talent .create-talent-body p {
    margin-top: 10px;
    font-size: 16px;
}

.section-create-talent .create-talent-body .talent-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 370px;
    width: 230px;
    padding: 10px;
    background-image: url(./../../img/people/talent.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
}

.section-create-talent .create-talent-body .talent-skill h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--second-color);
}

.section-create-talent .create-talent-body .talent-skill span {
    width: 95%;
    background-color: var(--second-color-2);
    opacity: .9;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.section-create-talent .create-talent-foot {
    margin-top: 20px;
    text-align: center;
}

.section-create-talent .create-talent-foot h5 {
    font-size: 22px;
}

.section-create-talent .create-talent-foot h5 span {
    color: var(--second-color);
    font-weight: 700;
}

.section-create-talent .create-talent-foot ul {
    padding: 0px 30px;
    margin-bottom: 20px !important;
    text-align: start;
}

.section-create-talent .create-talent-foot ul li {
    font-size: 16px;
}

.section-create-talent .create-talent-foot ul li span {
    color: var(--second-color);
}

.section-create-talent .create-talent-foot a {
    text-decoration: none;
    border-radius: 20px;
    padding: 10px;
    background-color: var(--second-color);
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-family: var(--main-font);
}

.section-create-talent .create-talent-foot a:hover {
    background-color: var(--second-color-2);
}

/* Section create work */
.section-create-work {
    padding: 20px;
    margin-top: 10px;
    background: linear-gradient(to right, var(--second-color), var(--second-color-2));
    border-radius: 20px;
    height: 100%;
}

.section-create-work .create-content {
    border-radius: 20px;
    background: var(--white-color);
    padding: 20px 10px;
    height: 100%;
}

.section-create-work .create-work-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--black-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.section-create-work .create-work-head h5 a {
    text-decoration: none;
    color: var(--first-color);
    transition: ease-in-out .3s;
}

.section-create-work .create-work-head h5 a:hover {
    color: var(--first-color-2);
}

.section-create-work .create-work-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section-create-work .create-work-body p {
    margin-top: 10px;
    font-size: 16px;
}

.section-create-work .create-work-body .work-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 370px;
    width: 230px;
    padding: 10px;
    background-image: url(./../../img/people/business.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
}

.section-create-work .create-work-body .work-skill h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--first-color);
}

.section-create-work .create-work-body .work-skill span {
    width: 95%;
    background-color: var(--first-color-2);
    opacity: .9;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.section-create-work .create-work-foot {
    margin-top: 20px;
    text-align: center;
}

.section-create-work .create-work-foot h5 {
    font-size: 22px;
}

.section-create-work .create-work-foot h5 span {
    color: var(--first-color);
    font-weight: 700;
}

.section-create-work .create-work-foot ul {
    padding: 0px 30px;
    margin-bottom: 20px !important;
    text-align: start;
}

.section-create-work .create-work-foot ul li {
    font-size: 16px;
}

.section-create-work .create-work-foot ul li span {
    color: var(--first-color);
}

.section-create-work .create-work-foot a {
    text-decoration: none;
    border-radius: 20px;
    padding: 10px;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-family: var(--main-font);
}

.section-create-work .create-work-foot a:hover {
    background-color: var(--first-color-2);
}

/* How it Work */
.section-how-work {
    padding: 20px 100px;
    margin-top: 10px;
}

.section-how-work .how-work-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.section-how-work .how-work-head p {
    font-size: 16px;
}

.section-how-work .how-work-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-how-work .how-work-body>img {
    width: 280px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.section-how-work .how-work-body>h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.section-how-work .how-work-body .global-step .choose {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.section-how-work .how-work-body .global-step .choose button {
    padding: 10px;
    font-size: 18px;
    border-radius: 20px;
    width: 120px;
    transition: ease-in-out .3s;
}

.section-how-work .how-work-body .global-step .choose button:first-child {
    border: 2px solid var(--first-color);
    background-color: transparent;
    color: var(--black-color);
    margin-right: 30px;
}

.section-how-work .how-work-body .global-step .choose button:first-child.active {
    border: 2px solid var(--first-color);
    background-color: var(--first-color);
    color: var(--white-color);
    margin-right: 30px;
}

.section-how-work .how-work-body .global-step .choose button:first-child:hover {
    border: 2px solid var(--first-color-2);
    background-color: var(--first-color-2);
    color: var(--white-color);
}

.section-how-work .how-work-body .global-step .choose button:last-child {
    border: 2px solid var(--second-color);
    background-color: transparent;
    color: var(--black-color);
}

.section-how-work .how-work-body .global-step .choose button:last-child.active {
    border: 2px solid var(--second-color);
    background-color: var(--second-color);
    color: var(--white-color);
}

.section-how-work .how-work-body .global-step .choose button:last-child:hover {
    border: 2px solid var(--second-color-2);
    background-color: var(--second-color-2);
    color: var(--white-color);
}

.section-how-work .global-step #for-talent {
    display: none;
}

.section-how-work .global-step #for-talent.active {
    display: block;
}

.section-how-work .global-step #for-business {
    display: none;
}

.section-how-work .global-step #for-business.active {
    display: block;
}

.section-how-work .global-step .step {
    margin-bottom: 20px !important;
}

.section-how-work .global-step .step:first-child {
    margin-top: 20px !important;
}

.section-how-work .global-step .step:last-child {
    margin-bottom: 0px !important;
}

.section-how-work .global-step .step .step-description .step-number {
    display: flex;
    justify-content: start;
    align-items: center;
}

.section-how-work .global-step .step .step-description .step-number span {
    font-size: 18px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white-color);
}

.section-how-work .global-step #for-talent .step .step-description .step-number span {
    background-color: var(--first-color);
}

.section-how-work .global-step #for-business .step .step-description .step-number span {
    background-color: var(--second-color);
}

.section-how-work .global-step .step .step-description .step-number h5 {
    font-size: 18px;
    margin-bottom: 0 !important;
}

.section-how-work .global-step #for-talent .step .step-description .step-number h5 {
    color: var(--first-color);
}

.section-how-work .global-step #for-business .step .step-description .step-number h5 {
    color: var(--second-color);
}

.section-how-work .global-step .step .step-description p {
    margin-bottom: 0 !important;
    padding-left: 50px;
}

/* Partner sction */
.section-partner {
    padding: 20px;
    margin-top: 10px;
}

.section-partner .partner-head {
    margin-bottom: 20px;
}

.section-partner .partner-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.section-partner .partner-body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-items: center;
}

.section-partner .partner-body img {
    height: 100px;
}

.section-partner .partner-body img:last-child {
    height: 80px;
    /* width: 100%; */
    max-width: 188px;
}

/* List skill section */
.section-skill {
    margin: 20px 0;
}

.section-skill .skill-list-head {
    margin-bottom: 20px;
    padding: 20px;
    margin-top: 10px;
    /* background: linear-gradient(to right, var(--second-color), var(--second-color-2)); */
    width: 100%;
}

.section-skill .skill-list-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-skill .skill-list-body {
    padding: 0px 100px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.section-skill .skill-list-body .skill {
    padding: 20px;
    /* background-color: var(--first-color-light); */
    border: 2px solid var(--first-color-light);
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
    transition: ease-in-out .3s;
    cursor: default;
}

/* .section-skill .skill-list-body .skill:hover {
    background-color: var(--first-color-2);
    color: var(--white-color);
} */

.section-skill .skill-list-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.section-skill .skill-list-foot a {
    text-decoration: none;
    padding: 10px 15px;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 18px;
    border-radius: 20px;
    transition: ease-in-out .3s;
}

.section-skill .skill-list-foot a:hover {
    background-color: var(--first-color-2);
}

/* Matching Section */
.section-matching {
    margin-top: 10px;
}

.section-matching .matching-head {
    margin-bottom: 20px;
    padding: 20px;
    margin-top: 10px;
    /* background: linear-gradient(to right, var(--second-color), var(--second-color-2)); */
    width: 100%;
}

.section-matching .matching-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-matching .matching-body {
    padding: 0px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-matching .matching-body p {
    margin-bottom: 0 !important;
    font-size: 16px;
}

.section-matching .matching-body p span {
    color: var(--first-color);
}

.section-matching .matching-body img {
    /* width: 100%; */
    height: 250px;
}

.section-matching .matching-body ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
    /* justify-items: center; */
}

.section-matching .matching-body ul li:nth-child(1) {
    color: #F80000;
}

.section-matching .matching-body ul li:nth-child(2) {
    color: #00B1F5;
}

.section-matching .matching-body ul li:nth-child(3) {
    color: #F38900;
}

.section-matching .matching-body ul li:nth-child(4) {
    color: #F20079;
}

/* Page Login */
.login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100vh;
    padding: 20px;
}

.login .login-head {
    margin-bottom: 20px;
}

.login .login-head .logo {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 303px;
}

.login .login-head .logo img {
    position: relative;
    width: 250px;
    height: 150px;
}

.login .login-head .logo span {
    position: absolute;
    bottom: 20px;
    right: 7px;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--main-font);
    color: var(--black-color);
}

.login .login-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.login .login-body form .input-form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-bottom: 20px;
    width: 250px;
    position: relative;
}

.login .login-body form .input-form label {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 700;
}

.login .login-body form .input-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--black-color);
    outline: none;
    font-size: 16px;
}

.login .login-body form .input-form a {
    text-decoration: none;
    position: absolute;
    bottom: -30px;
    right: 0px;
    font-size: 14px;
    color: var(--second-color);
    transition: ease-in-out .3s;
}

.login .login-body form .input-form a:hover {
    color: var(--second-color-2);
}

.login .login-body form .input-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.login .login-body form .input-button button {
    width: 200px;
    padding: 10px 15px;
    color: var(--white-color);
    border: none;
    border-radius: 20px;
    background-color: var(--first-color);
    transition: ease-in-out .3s;
}

.login .login-body form .input-button button:hover {
    background-color: var(--first-color-2);
}

.login .login-foot {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.login .login-foot p a {
    text-decoration: none;
    color: var(--first-color);
    transition: ease-in-out .3s;
}

.login .login-foot p a:hover {
    text-decoration: underline;
    color: var(--first-color-2);
}

/* Page Register */
.register {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
    /* height: 100vh; */
    padding: 20px;
}

.register .register-head {
    margin-bottom: 20px;
}

.register .register-head .logo {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 303px;
}

.register .register-head .logo img {
    position: relative;
    width: 250px;
    height: 150px;
}

.register .register-head .logo span {
    position: absolute;
    bottom: 20px;
    right: 7px;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--main-font);
    color: var(--black-color);
}

.register .register-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
}

.register .register-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0px 100px;
}

.register .register-body .choose {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.register .register-body .choose button {
    padding: 10px;
    font-size: 18px;
    border-radius: 20px;
    width: 120px;
    transition: ease-in-out .3s;
}

.register .register-body .choose button:first-child {
    border: 2px solid var(--first-color);
    background-color: transparent;
    color: var(--black-color);
    margin-right: 30px;
}

.register .register-body .choose button:first-child.active {
    border: 2px solid var(--first-color);
    background-color: var(--first-color);
    color: var(--white-color);
    margin-right: 30px;
}

.register .register-body .choose button:first-child:hover {
    border: 2px solid var(--first-color-2);
    background-color: var(--first-color-2);
    color: var(--white-color);
}

.register .register-body .choose button:last-child {
    border: 2px solid var(--second-color);
    background-color: transparent;
    color: var(--black-color);
}

.register .register-body .choose button:last-child.active {
    border: 2px solid var(--second-color);
    background-color: var(--second-color);
    color: var(--white-color);
}

.register .register-body .choose button:last-child:hover {
    border: 2px solid var(--second-color-2);
    background-color: var(--second-color-2);
    color: var(--white-color);
}

.register .register-body #for-talent .form-drag-drop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.register .register-body #for-talent .form-drag-drop label {
    padding: 10px 15px;
    /* height: 75px; */
    border: 2px dashed gray;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: ease-in-out .3s;
    min-width: 300px;
    width: 100%;
}

.register .register-body #for-talent .form-drag-drop label #spinner {
    display: none;
}

.register .register-body #for-talent .form-drag-drop label.drag-over,
.register .register-body #for-talent .form-drag-drop label:hover {
    background-color: #5e5c5c5e;
}

.register .register-body #for-talent .form-drag-drop label #file-name-text {
    text-align: center;
}

.register .register-body #for-talent .form-drag-drop label #file-name-text div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: 10px;
}

.register .register-body #for-talent .form-drag-drop label #file-name-text div span:nth-child(3) {
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 10px 15px;
    font-size: 14px;
    transition: ease-in-out .3s;
}

.register .register-body #for-talent .form-drag-drop label.drag-over #file-name-text div span:nth-child(3),
.register .register-body #for-talent .form-drag-drop label:hover #file-name-text div span:nth-child(3) {
    background-color: var(--first-color-2);
}

.register .register-body #for-talent .form-drag-drop input {
    visibility: hidden;
}

.register .register-body #for-talent .register-info {
    width: 100%;
}

.register .register-body #for-talent .register-info .skill-info,
.register .register-body #for-talent .register-info .training-info,
.register .register-body #for-talent .register-info .experience-info,
.register .register-body #for-talent .register-info .personal-info {
    border-bottom: 2px solid rgb(219, 219, 219);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.register .register-body #for-talent .register-info .credential .credential-head,
.register .register-body #for-talent .register-info .skill-info .head,
.register .register-body #for-talent .register-info .training-info .head,
.register .register-body #for-talent .register-info .experience-info .head,
.register .register-body #for-talent .register-info .personal-info .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.register .register-body #for-talent .register-info .credential .credential-head h6,
.register .register-body #for-talent .register-info .skill-info .head h6,
.register .register-body #for-talent .register-info .training-info .head h6,
.register .register-body #for-talent .register-info .experience-info .head h6,
.register .register-body #for-talent .register-info .personal-info .head h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: 0px !important;
}

.register .register-body #for-talent .register-info .skill-info .head button,
.register .register-body #for-talent .register-info .training-info .head button,
.register .register-body #for-talent .register-info .experience-info .head button,
.register .register-body #for-talent .register-info .personal-info .head button {
    font-size: 16px;
    font-weight: 300;
    color: var(--white-color);
    border: none;
    border-radius: 20px;
    background-color: var(--first-color);
    padding: 10px 15px;
    transition: ease-in-out .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register .register-body #for-talent .register-info .skill-info .head button:hover,
.register .register-body #for-talent .register-info .training-info .head button:hover,
.register .register-body #for-talent .register-info .experience-info .head button:hover,
.register .register-body #for-talent .register-info .personal-info .head button:hover {
    background-color: var(--first-color-2);
}


.register .register-body #for-talent .register-info .personal-info .body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.register .register-body #for-talent .register-info .personal-info .body .input-form {
    width: 100%;
    min-width: 220px;
    /* max-width: 500px; */
    display: flex;
    flex-direction: column;
}

.register .register-body #for-talent .register-info .personal-info .body .input-form label {
    text-transform: initial;
}

.register .register-body #for-talent .register-info .personal-info .body .input-form label span {
    color: #F80000;
    margin-left: 5px;
}

.register .register-body #for-talent .register-info .personal-info .body .input-form input {
    width: 100%;
    outline: none;
    padding: 5px 15px;
}

.register .register-body #for-talent .register-info .experience-info .body .list-xp {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-left: 0px !important;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    border: none;
    border-radius: 20px;
    background-color: #ececec;
    margin: 10px 0;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form label:first-child.none,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form label:first-child.none {
    font-weight: 300;
    font-size: 16px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form label:first-child,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form label:first-child {
    font-weight: 700;
    font-size: 16px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form label:last-child,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form label:last-child {
    font-weight: 300;
    font-size: 14px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form span,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form span {
    font-weight: 300;
    font-size: 16px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .action,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .action {}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .action button,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .action button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 20px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
    margin-bottom: 10px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list .skill-detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--first-color-light);
    padding: 5px 15px;
    border-radius: 20px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list .skill-detail span {
    font-size: 16px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list .skill-detail button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    transition: ease-in-out .3s;
    color: var(--black-color);
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list .skill-detail button:hover {
    color: #F80000;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add,
.register .register-body #for-talent .register-info .training-info .body .list-training-add,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-left: 0px !important;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    border: none;
    border-radius: 20px;
    background-color: #ececec;
}

.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .place,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .place {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 20px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add input,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add input,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add textarea,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add input,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add textarea {
    padding: 5px 15px;
    outline: none;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add>input,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add>input,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add>textarea,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add>input,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add>textarea {
    max-width: 1050px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add>textarea,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add>textarea {
    resize: none;
    height: 100px;
}

.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .place input,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .place input {
    max-width: 1050px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action button,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action button,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action button {
    width: 110px;
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-size: 16px;
    color: var(--white-color);
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action button:first-child,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action button:first-child,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action button:first-child {
    background-color: #f80000ad;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action button:first-child:hover,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action button:first-child:hover,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action button:first-child:hover {
    background-color: #fa0000;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action button:last-child,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action button:last-child,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action button:last-child {
    background-color: #15f800ad;
}

.register .register-body #for-talent .register-info .skill-info .body .skill-list-add .skill-add .button-action button:last-child:hover,
.register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .button-action button:last-child:hover,
.register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .button-action button:last-child:hover {
    background-color: #19ff04;
}

.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form textarea,
.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form input,
.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form textarea,
.register .register-body #for-talent .register-info .training-info .body .list-training .training-detail .input-form input,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form textarea,
.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail .input-form input {
    visibility: hidden;
    display: none;
}

.register .register-body #for-talent .register-info .experience-info .body .list-xp .experience-detail {
    margin: 10px 0;
}

.register .register-body #for-talent .register-info .credential {
    margin-top: 20px;
}

.register .register-body #for-talent .register-info .credential .credential-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.register .register-body #for-talent .register-info .credential .credential-body .input-form {
    width: 100%;
    min-width: 220px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.register .register-body #for-talent .register-info .credential .credential-body .input-form label {
    text-transform: initial;
}

.register .register-body #for-talent .register-info .credential .credential-body .input-form label span {
    color: #F80000;
    margin-left: 5px;
}

.register .register-body #for-talent .register-info .credential .credential-body .input-form input {
    width: 100%;
    outline: none;
    padding: 5px 15px;
}

.register .register-body form .input-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.register .register-body form .input-button button {
    width: 200px;
    padding: 10px 15px;
    color: var(--white-color);
    border: none;
    border-radius: 20px;
    transition: ease-in-out .3s;
}

.register .register-body #for-talent .input-button button.last {
    background-color: var(--first-color-light);
}

.register .register-body #for-talent .input-button button {
    background-color: var(--first-color);
}

.register .register-body #for-talent .input-button button:hover {
    background-color: var(--first-color-2);
}

.register .register-body #for-business h6 {
    font-size: 20px;
    font-weight: 700;
    color: var(--second-color);
}

.register .register-body #for-business .input-group {
    display: flex;
    flex-direction: column;
    justify-items: center;
    width: 100%;
    /* margin-bottom: 20px; */
}

.register .register-body #for-business .input-group .place {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.register .register-body #for-business .input-group .input-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.register .register-body #for-business .input-group .input-form p {
    margin-bottom: 0px !important;
    font-size: 13px;
    color: gray;
}

.register .register-body #for-business .input-group .input-form input {
    padding: 5px 15px;
    outline: none;
    width: 100%;
}

.register .register-body #for-business .input-group .input-form label {
    text-transform: initial;
}

.register .register-body #for-business .input-group .input-form label span {
    color: #F80000;
    margin-left: 5px;
}

.register .register-body #for-business .input-group .input-form textarea {
    padding: 5px 15px;
    outline: none;
    width: 100%;
    height: 100px;
}

.register .register-body #for-business .input-button button {
    background-color: var(--second-color);
}

.register .register-body #for-business .input-button button:hover {
    background-color: var(--second-color-2);
}

.register .register-body #for-talent {
    display: none;
}

.register .register-body #for-talent.active {
    display: block;
    width: 100%;
}

.register .register-body #for-business {
    display: none;
}

.register .register-body #for-business.active {
    display: block;
    width: 100%;
}

.register .register-foot {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
}

.register .register-foot p a {
    text-decoration: none;
    color: var(--first-color);
    transition: ease-in-out .3s;
}

.register .register-foot p a:hover {
    text-decoration: underline;
    color: var(--first-color-2);
}


/* Equipe */
.teams-b {
    /* padding: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    left: -20px;
}

.teams-gal {
    /* padding: 20px; */
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.teams-gal .post:nth-child(n) {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
}

.teams-gal .post:nth-child(2n) {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 150px;
}

.teams-gal .post:nth-child(1) {
    left: 0;
    z-index: -10;
    /* margin-left: 110px; */
}

.teams-gal .post:nth-child(2) {
    left: 0px;
    z-index: -11;
}

.teams-gal .post:nth-child(3) {
    left: 0px;
    z-index: -12;
}

.teams-gal .post:nth-child(4) {
    left: 0px;
    z-index: -13;
}

.teams-gal .post:nth-child(5) {
    left: 0px;
    z-index: -14;
}

.teams-gal .post:nth-child(n+6) {
    left: 0px;
    z-index: -15;
}

.teams-gal .post {
    max-width: 200px;
}

.teams-gal .post .profil {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    position: relative;
}

.teams-gal .post .profil img {
    width: 96%;
    height: 96%;
    border-radius: 50%;
}

.teams-gal .post .profil .circle {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    background-color: #F0733B;
    background: linear-gradient(to right, #F0733B, #EB5C4F);
}

.teams-gal .post:nth-child(n) .profil .title-post {
    left: 2%;
    top: 0;
}

.teams-gal .post:nth-child(2n) .profil .title-post {
    left: -4%;
    top: 150px;
}

.teams-gal .post .profil .title-post {
    display: flex;
    position: absolute;
    padding: 15px 10px;
    font-size: 9px;
    width: 80px;
    height: 80px;
    text-align: center;
    min-width: 52.5px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 1;
    color: white;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #F0733B, #EB5C4F);
}

.teams-gal .post .profil-detail {
    text-align: start;
    margin: 5px 0;
    position: relative;
    left: 75px;
}

.teams-gal .post .profil-detail h5 {
    color: #EB5C4F;
    font-weight: 700;
    margin-bottom: 0 !important;
    font-size: 16px;
}

.teams-gal .post .profil-detail h6 {
    color: #000000;
    font-weight: 300;
    font-size: 14px;
}


/* Manifesto & Equipe */
.section-hero .hero-img.teams {
    position: relative;
    height: 220px;
}

.section-hero .hero-img.teams img#teams3:nth-child(1) {
    right: -292px;
    bottom: -151px;
    height: 550px;
}

.section-hero .hero-img.teams img:nth-child(1) {
    height: 250px;
    position: absolute;
    right: 100px;
}

.section-hero .hero-img.teams img:nth-child(2) {
    transform: scaleX(-1);
    height: 240px;
    position: absolute;
    right: -100px;
    bottom: -32px;
}

.section-teams {
    margin-top: 10px;
}

.section-teams .teams-head {
    margin-bottom: 20px;
    padding: 20px;
    margin-top: 10px;
    /* background: linear-gradient(to right, var(--second-color), var(--second-color-2)); */
    width: 100%;
}

.section-teams .teams-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

/* .section-teams .teams-body{} */
.section-teams .teams-body .members {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    justify-items: center;
}

.section-teams .teams-body .members .member-card {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    text-align: center;
    width: 270px;
    background: linear-gradient(to right, var(--second-color), var(--second-color-2));
    padding: 20px;
    border-radius: 20px;
}

.section-teams .teams-body .members .member-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.section-teams .teams-body .members .member-card .member-detail-card {
    padding: 20px;
    width: 100%;
    /* border: 2px solid var(--second-color); */
    background-color: var(--white-color);
    border-radius: 20px;
}

.section-teams .teams-body .members .member-card .member-detail-card h5 {
    color: var(--second-color);
    font-size: 20px;
    font-weight: 700;
}

.section-teams .teams-body .members .member-card .member-detail-card h6 {
    font-size: 16px;
}

/* .section-teams .teams-body .members .member-card .member-detail-card .sociaux{} */
.section-teams .teams-body .members .member-card .member-detail-card .sociaux a {
    font-size: 26px;
    text-decoration: none;
    transition: ease-in-out .3s;
    color: var(--second-color);
    margin-right: 25px;
}

.section-teams .teams-body .members .member-card .member-detail-card .sociaux a:last-child {
    margin-right: 0 !important;
}

.section-teams .teams-body .members .member-card .member-detail-card .sociaux a:hover {
    color: var(--second-color-2);
}

/* Offre emploi */
.section-jobs {
    margin-top: 20px;
}

.section-jobs .jobs-head {
    padding: 20px;
}

.section-jobs .jobs-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-jobs .jobs-search form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px !important;
}

.section-jobs .jobs-search form .input-form {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
}

.section-jobs .jobs-search form .input-form button {
    position: absolute;
    left: 20px;
    z-index: 100;
    background-color: transparent;
    border: none;
    border-right: 1px solid gray;
    color: var(--black-color);
    transition: ease-in-out .3s;
    font-size: 18px;
}

.section-jobs .jobs-search form .input-form button:hover {
    color: var(--first-color-2);
}

.section-jobs .jobs-search form .input-form input {
    width: 230px;
    padding: 10px 15px;
    padding-left: 45px;
    position: relative;
    outline: none;
    border: 2px solid gray;
    border-radius: 20px;
    font-size: 16px;
}

.section-jobs .jobs-body {
    display: grid;
    grid-template-columns: 30% 70%;
    justify-items: center;
    margin: 20px;
    /* border-top: 2px solid gray; */
    padding-top: 20px;

}

.section-jobs .jobs-body .jobs-filter {
    width: 100%;
    border-right: 2px solid gray;
    height: 100%;
}

.section-jobs .jobs-body .jobs-filter .input-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.section-jobs .jobs-body .jobs-filter .input-form>label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-jobs .jobs-body .jobs-filter .input-form select {
    width: 230px;
    padding: 10px 15px;
    outline: none;
}

.section-jobs .jobs-body .jobs-filter .input-form .check {
    display: flex;
    justify-content: start;
    align-items: center;
}

.section-jobs .jobs-body .jobs-filter .input-form .check input.checkbox {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    appearance: none;
    border: 2px solid var(--first-color-2);
    transition: ease-in-out .3s;
}

.section-jobs .jobs-body .jobs-filter .input-form .check input.checkbox:checked {
    background-color: var(--first-color-2);
}

.section-jobs .jobs-body .jobs-filter .input-form .check label {
    font-size: 18px;
}

.section-jobs .jobs-body .jobs-lists {
    padding: 20px;
    width: 100%;
}

.section-jobs .jobs-body .jobs-lists .job-detail {
    padding: 20px;
    background-color: var(--first-color-light);
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-jobs .jobs-body .jobs-lists .job-detail>span {
    font-size: 14px;
}

.section-jobs .jobs-body .jobs-lists .job-detail h5 {
    font-size: 20px;
    font-weight: 700;
}

.section-jobs .jobs-body .jobs-lists .job-detail h6,
.section-jobs .jobs-body .jobs-lists .job-detail p {
    font-size: 16px;
}

.section-jobs .jobs-body .jobs-lists .job-detail ul {
    list-style: none;
    display: flex;
    justify-content: start;
    column-gap: 20px;
    padding-left: 0px !important;
    margin-bottom: 0 !important;
}

.section-jobs .jobs-body .jobs-lists .job-detail ul li {
    padding: 10px 15px;
    background-color: var(--first-color);
    border-radius: 20px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.wymee-paginate {
    width: 100%;
    margin-top: 30px;
}

.wymee-paginate .paginate-block {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0 !important;
}

.wymee-paginate .paginate-block li {
    margin-right: 5px !important;
}

.wymee-paginate .paginate-block li:last-child {
    margin-right: 0px !important;
}

.wymee-paginate .paginate-block a {
    padding: 15px;
    border: 1px solid var(--second-color);
    text-decoration: none;
    color: var(--black-color);
    transition: ease-in-out .3s;
}

.wymee-paginate .paginate-block a.prev.first {
    border: none;
    background-color: var(--second-color-light);
}

.wymee-paginate .paginate-block a.prev.first:hover {
    border: none;
    background-color: var(--second-color-light);
    color: var(--black-color);
}

.wymee-paginate .paginate-block a.active {
    color: var(--white-color);
    background-color: var(--second-color);
}

.wymee-paginate .paginate-block a.next.last {
    border: none;
    background-color: var(--second-color-light);
}

.wymee-paginate .paginate-block a.next.last:hover {
    border: none;
    background-color: var(--second-color-light);
    color: var(--black-color);
}

.wymee-paginate .paginate-block a:hover {
    color: var(--white-color);
    background-color: var(--second-color);
}

/* Talent */
.section-talent {
    margin-top: 20px;
    padding: 20px 100px;
}

.section-talent .talent-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-talent .talent-head p {
    font-size: 16px;
}

.section-talent .talent-body>h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 10px !important;
}


.section-talent .talent-body .step .step-description .step-number {
    display: flex;
    justify-content: start;
    align-items: center;
}

.section-talent .talent-body .step .step-description .step-number span {
    font-size: 18px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white-color);
}

.section-talent .talent-body .step .step-description .step-number span {
    background-color: var(--first-color);
}


.section-talent .talent-body .step .step-description .step-number h5 {
    font-size: 18px;
    margin-bottom: 0 !important;
}

.section-talent .talent-body .step .step-description .step-number h5 {
    color: var(--first-color);
}

.section-talent .talent-body .step .step-description p {
    margin-bottom: 0 !important;
    padding-left: 50px;
}


.section-talent .create-talent-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.section-talent .create-talent-body p {
    margin-top: 10px;
    font-size: 16px;
}

.section-talent .create-talent-body .talent-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 370px;
    width: 230px;
    padding: 10px;
    background-image: url(./../../img/people/talent.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
}

.section-talent .create-talent-body .talent-skill h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--second-color);
}

.section-talent .create-talent-body .talent-skill span {
    width: 95%;
    background-color: var(--second-color-2);
    opacity: .9;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.section-talent .create-talent-foot {
    margin-top: 20px;
    text-align: center;
}

.section-talent .create-talent-foot h5 {
    font-size: 22px;
}

.section-talent .create-talent-foot h5 span {
    color: var(--second-color);
    font-weight: 700;
}

.section-talent .create-talent-foot ul {
    padding: 0px 30px;
    margin-bottom: 40px !important;
    text-align: start;
}

.section-talent .create-talent-foot ul li {
    font-size: 16px;
}

.section-talent .create-talent-foot ul li span {
    color: var(--second-color);
}

.section-talent .create-talent-foot a {
    text-decoration: none;
    border-radius: 20px;
    padding: 10px;
    background-color: var(--second-color);
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-family: var(--main-font);
}

.section-talent .create-talent-foot a:hover {
    background-color: var(--second-color-2);
}

.section-talent .talent-foot {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    /* background: linear-gradient(to right, var(--second-color), var(--second-color-2)); */
    width: 100%;
    text-align: center;
}

.section-talent .talent-foot h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-talent .talent-foot .talent-foot-action {
    margin-top: 20px;
}

.section-talent .talent-foot .talent-foot-action a {
    text-decoration: none;
    text-align: center;
    margin-top: 10px !important;
    color: var(--white-color);
    padding: 10px 15px;
    border-radius: 20px;
    background-color: var(--first-color);
    transition: ease-in-out .3s;
}

.section-talent .talent-foot .talent-foot-action a:hover {
    background-color: var(--first-color-2);
}

/* Entreprise */
.section-business {
    margin-top: 20px;
    padding: 20px 100px;
}

.section-business .business-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-business .business-head p {
    font-size: 16px;
}

.section-business .business-body>h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 10px !important;
}


.section-business .business-body .step .step-description .step-number {
    display: flex;
    justify-content: start;
    align-items: center;
}

.section-business .business-body .step .step-description .step-number span {
    font-size: 18px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white-color);
}

.section-business .business-body .step .step-description .step-number span {
    background-color: var(--second-color);
}


.section-business .business-body .step .step-description .step-number h5 {
    font-size: 18px;
    margin-bottom: 0 !important;
}

.section-business .business-body .step .step-description .step-number h5 {
    color: var(--second-color);
}

.section-business .business-body .step .step-description p {
    margin-bottom: 0 !important;
    padding-left: 50px;
}


.section-business .create-business-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.section-business .create-business-body p {
    margin-top: 10px;
    font-size: 16px;
}

.section-business .create-business-body .business-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 370px;
    width: 230px;
    padding: 10px;
    background-image: url(./../../img/people/business.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
}

.section-business .create-business-body .business-skill h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--first-color);
}

.section-business .create-business-body .business-skill span {
    width: 95%;
    background-color: var(--first-color-2);
    opacity: .9;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.section-business .create-business-foot {
    margin-top: 20px;
    text-align: center;
}

.section-business .create-business-foot h5 {
    font-size: 22px;
}

.section-business .create-business-foot h5 span {
    color: var(--second-color);
    font-weight: 700;
}

.section-business .create-business-foot ul {
    padding: 0px 30px;
    margin-bottom: 40px !important;
    text-align: start;
}

.section-business .create-business-foot ul li {
    font-size: 16px;
}

.section-business .create-business-foot ul li span {
    color: var(--second-color);
}

.section-business .create-business-foot a {
    text-decoration: none;
    border-radius: 20px;
    padding: 10px;
    background-color: var(--second-color);
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 20px;
    transition: ease-in-out .3s;
    font-family: var(--main-font);
}

.section-business .create-business-foot a:hover {
    background-color: var(--second-color-2);
}

.section-business .business-foot {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 20px;
    /* background: linear-gradient(to right, var(--first-color), var(--first-color-2)); */
    width: 100%;
    text-align: center;
}

.section-business .business-foot h5 {
    text-align: center;
    font-size: 20px;
    color: var(--second-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
    text-transform: uppercase;
}

.section-business .business-foot .business-foot-action {
    margin-top: 20px;
}

.section-business .business-foot .business-foot-action a {
    text-decoration: none;
    text-align: center;
    margin-top: 10px !important;
    color: var(--white-color);
    padding: 10px 15px;
    border-radius: 20px;
    background-color: var(--second-color);
    transition: ease-in-out .3s;
}

.section-business .business-foot .business-foot-action a:hover {
    background-color: var(--second-color-2);
}

/* Consulting */
.consulting {
    margin-top: 20px;
    padding: 20px 100px;
}

.consulting .consulting-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.consulting .consulting-body {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    justify-items: center;
}

.consulting .consulting-body .theme {
    border-radius: 0px;
    width: 100%;
}

.consulting .consulting-body .theme .theme-title h5 {
    font-size: 18px;
    color: var(--first-color);
    border-bottom: 3px solid var(--first-color);
    margin-bottom: 0 !important;
    text-transform: uppercase;
}

.consulting .consulting-body .theme .theme-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.consulting .consulting-body .theme .theme-content img {
    max-width: 100%;
    height: 250px;
    margin: 20px 0;
}

.consulting .consulting-body .theme .theme-content #imgTalent {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 370px;
    width: 100%;
    max-width: 250px;
    padding: 10px;
    background-image: url(./../../img/people/talent.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
}

.consulting .consulting-body .theme .theme-content #imgTalent h5 {
    font-size: 22px;
    font-weight: 700;
    color: var(--second-color);
}

.consulting .consulting-body .theme .theme-content #imgTalent span {
    width: 95%;
    background-color: var(--second-color-2);
    opacity: .9;
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.consulting .consulting-body .theme .theme-content p {
    font-size: 16px;
}

/* Contact */
.hero-img.contact img {
    width: 250px;
}

.section-contact {
    padding: 20px 100px;
}

.section-contact .contact-head {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: center;
    gap: 20px;
}

.section-contact .contact-head .left {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: flex-start;
    margin: 20px 0;
    gap: 20px;
}

.section-contact .contact-head .right {
    width: 100%;
    padding: 20px;
}

.section-contact .contact-head iframe {
    width: 100% !important;
    max-height: 500px;
    height: 100%;
    border: none;
    box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.3);
}

.section-contact .contact-head .contact-box {
    text-align: center;
    width: 250px;
    border-radius: 20px;
    background-color: var(--first-color);
    box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.3);
    padding: 20px;
    height: 100%;
    color: var(--white-color);
}

.section-contact .contact-head i,
.section-contact .contact-head svg {
    font-size: 35px;
    margin-bottom: 10px;
}

.section-contact .contact-head h6 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-contact .contact-head p {
    font-size: 16px;
    font-weight: 300;
}

.section-contact .contact-head a {
    text-decoration: none;
    color: var(--white-color);
    transition: ease-in-out .3s;
}

.section-contact .contact-head a:hover {
    color: var(--second-color);
}

.section-contact .contact-body {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.section-contact .contact-body .form-contact {
    background-color: var(--first-color);
    padding: 20px;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
}

.section-contact .contact-body .form-contact h5 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px !important;
    color:white
}

.section-contact .contact-body .form-contact .input-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.section-contact .contact-body .form-contact .input-form label {
    font-size: 16px;
    color:white
}

.section-contact .contact-body .form-contact .input-form label span {
    color: red;
}

.section-contact .contact-body .form-contact .input-form input,
.section-contact .contact-body .form-contact .input-form textarea {
    padding: 10px 15px;
    outline: none;
    font-size: 16px;
    border: none;
    border-bottom: 3px solid;
    border-color: var(--first-color-2) !important;
}

.section-contact .contact-body .form-contact .input-form textarea {
    height: 100px;
}

.section-contact .contact-body .form-contact .input-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-contact .contact-body .form-contact .input-button button {
    padding: 10px 15px;
    border: none;
    background-color: var(--second-color);
    border-radius: 20px;
    color: var(--white-color);
    font-size: 16px;
    transition: ease-in-out .3s;
}

.section-contact .contact-body .form-contact .input-button button:hover {
    background-color: var(--second-color-2);
}

.section-contact .contact-body .maps iframe {
    height: 100%;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

/* All Skill */
.section-all-skill {
    margin: 20px 0;
    padding: 20px 100px;
}

.section-all-skill .all-skill-head h5 {
    text-align: center;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    font-family: var(--main-font);
    margin-bottom: 0 !important;
}

.section-all-skill .all-skill-body {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.section-all-skill .all-skill-body .list-skill {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid var(--first-color-light);
}

.section-all-skill .all-skill-body .list-skill h6 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--first-color);
}

.section-all-skill .all-skill-body .list-skill ul {
    list-style: none;
    padding-left: 0px !important;
}


/* Section recruitment */
.section-recruitment {
    padding: 20px 100px;
}

.section-recruitment .recruitment-head {
    text-align: center;
}

.section-recruitment .recruitment-head h5 {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 700;
}

.section-recruitment .recruitment-head .recruitment-search .group-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-recruitment .recruitment-head .recruitment-search .group-form .group-input {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.section-recruitment .recruitment-head .recruitment-search .group-form .group-input,
.section-recruitment .recruitment-head .recruitment-search .group-form .group-input .input-form {
    width: 100%;
}

.section-recruitment .recruitment-head .recruitment-search .group-form .group-input select,
.section-recruitment .recruitment-head .recruitment-search .group-form .group-input input {
    padding: 10px 15px;
    outline: none;
    border-color: var(--first-color) !important;
    width: 100%;
}

.section-recruitment .recruitment-head .recruitment-search .group-form .input-button button {
    padding: 10px 15px;
    border: none;
    color: var(--white-color);
    font-size: 16px;
    background-color: var(--first-color);
    border-radius: 20px;
    transition: ease-in-out .3s;
}

.section-recruitment .recruitment-head .recruitment-search .group-form .input-button button:hover {
    background-color: var(--first-color-2);
}

.section-recruitment .recruitment-head .recruitment-search p {
    display: block;
    margin: 20px 0;
    font-size: 16px;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* margin-top: 20px; */
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label #spinner {
    display: none;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label {
    padding: 10px 15px;
    /* height: 75px; */
    border: 2px dashed gray;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: ease-in-out .3s;
    min-width: 300px;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label.drag-over,
.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label:hover {
    background-color: #5e5c5c5e;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label #file-name-text div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: 10px;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label #file-name-text div span:nth-child(3) {
    background-color: var(--second-color);
    color: var(--white-color);
    padding: 10px 15px;
    font-size: 14px;
    transition: ease-in-out .3s;
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label.drag-over #file-name-text div span:nth-child(3),
.section-recruitment .recruitment-head .recruitment-search .form-drag-drop label:hover #file-name-text div span:nth-child(3) {
    background-color: var(--second-color-2);
}

.section-recruitment .recruitment-head .recruitment-search .form-drag-drop input {
    visibility: hidden;
}

.section-recruitment .recruitment-body>h5 {
    width: 100%;
    padding: 20px;
    text-align: center;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(to right, var(--second-color), var(--second-color-2));
}

.section-recruitment .recruitment-body .offer-list {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.section-recruitment .recruitment-body .offer-list .offer {
    padding: 10px;
    border: 2px solid var(--second-color-light);
    position: relative;
}

.section-recruitment .recruitment-body .offer-list .offer .published {
    font-size: 14px;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-title h5 {
    font-size: 20px;
    font-weight: 700;
    /* color: var(--black-color); */
}

.section-recruitment .recruitment-body .offer-list .offer .offer-details {
    position: relative;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-details h6,
.section-recruitment .recruitment-body .offer-list .offer .offer-details p {
    font-size: 16px;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-details h6 span {
    color: var(--first-color);
    font-weight: 700;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-details .skill {
    list-style: none;
    display: flex;
    justify-content: start;
    column-gap: 20px;
    padding-left: 0px !important;
    margin-bottom: 0 !important;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-details .skill li {
    padding: 10px 15px;
    background-color: var(--second-color);
    border-radius: 20px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-action {
    margin-top: 0px !important;
    width: 100%;
    position: relative;
    bottom: -12px;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-action a {
    display: block;
    text-align: center;
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    background-color: var(--second-color);
    color: var(--white-color);
    padding: 10px;
    /* border: 2px solid var(--second-color-light); */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: ease-in-out .3s;
}

.section-recruitment .recruitment-body .offer-list .offer .offer-action a:hover {
    background-color: var(--second-color-2);
}

/* Section details offer */
.section-detail-recruitment {
    padding: 20px 100px;
}

.section-detail-recruitment .detail-recruitment-head {
    text-align: center;
    margin: 20px 0;
}

.section-detail-recruitment .detail-recruitment-head span {
    font-size: 14px;
    padding: 10px;
    border-radius: 20px;
    background-color: var(--first-color-light);
}

.section-detail-recruitment .detail-recruitment-head h5 {
    margin-top: 20px;
    font-size: 20px;
    color: var(--first-color);
    font-weight: 700;
    text-transform: uppercase;
}

.section-detail-recruitment .detail-recruitment-head ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0 !important;
}

.section-detail-recruitment .detail-recruitment-head ul li {
    font-size: 16px;
    color: var(--black-color);
}

.section-detail-recruitment .detail-recruitment-head ul li::after {
    content: '|';
    margin: 0px 10px;
}

.section-detail-recruitment .detail-recruitment-head ul li:last-child::after {
    content: '';
    margin: 0px;
}

.section-detail-recruitment .detail-recruitment-head ul li svg,
.section-detail-recruitment .detail-recruitment-head ul li i {
    font-size: 18px;
    color: var(--first-color);
}

.section-detail-recruitment .action-offer {
    display: flex;
    justify-content: center;
}

.section-detail-recruitment .action-offer a {
    padding: 10px 15px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--first-color);
    color: var(--white-color);
    font-size: 16px;
    transition: ease-in-out .3s;
}

.section-detail-recruitment .detail-recruitment-head .action-offer a:hover {
    background-color: var(--first-color-2);
}

.section-detail-recruitment .detail-recruitment-body {
    margin-top: 20px;
}

.section-detail-recruitment .detail-recruitment-body h6 {
    color: var(--first-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}

.section-detail-recruitment .detail-recruitment-body p {
    font-size: 16px;
}

.section-detail-recruitment .detail-recruitment-body ul {
    padding-left: 1rem !important;
    list-style: decimal;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.section-detail-recruitment .detail-recruitment-body ul li {
    margin-bottom: 15px !important;
}

.section-detail-recruitment .detail-recruitment-body .required-profile ul,
.section-detail-recruitment .detail-recruitment-body ul ul {
    list-style: circle;
    font-weight: 300;
    margin-bottom: 0px !important;
}

/* Matching page */
.section-match {
    padding: 20px 100px;
}

.section-match .match-body {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}

.section-match .match-body .left-match {
    min-width: 250px;
    background-color: rgb(235, 231, 231);
    border-radius: 20px;
}

.section-match .match-body .left-match .profil-match .profil-match-head {
    background: linear-gradient(to right, var(--second-color), var(--second-color-2));
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    color: var(--white-color);
}

.section-match .match-body .left-match .profil-match .profil-match-head .action-pro {
    display: flex;
    justify-content: end;
    /* margin-bottom: 20px; */
}

.section-match .match-body .left-match .profil-match .profil-match-head .action-pro button,
.section-match .match-body .left-match .profil-match .profil-match-head .action-pro a {
    text-decoration: none;
    background-color: var(--first-color);
    padding: 5px 10px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: var(--white-color);
    transition: ease-in-out .3s;
}

.section-match .match-body .left-match .profil-match .profil-match-head .action-pro button:hover,
.section-match .match-body .left-match .profil-match .profil-match-head .action-pro a:hover {
    background-color: var(--first-color-2);
}

.section-match .match-body .left-match .profil-match .profil-match-head .prof img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white-color);
    padding: 5px;
}

.section-match .match-body .left-match .profil-match .profil-match-head .prof span {
    font-size: 20px;
    color: var(--white-color);
    margin-left: 15px;
}

.section-match .match-body .left-match .profil-match .profil-match-body {
    padding: 20px;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs {
    margin-bottom: 20px;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location h6,
.section-match .match-body .left-match .profil-match .profil-match-body .skill h6,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs h6 {
    font-size: 18px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location h6 i,
.section-match .match-body .left-match .profil-match .profil-match-body .location h6 svg,
.section-match .match-body .left-match .profil-match .profil-match-body .skill h6 i,
.section-match .match-body .left-match .profil-match .profil-match-body .skill h6 svg,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs h6 i,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs h6 svg {
    color: var(--black-color);
    margin-right: 10px;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .list-locations ul,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .list-skills ul,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .list-jobs ul {
    padding-left: 0 !important;
    list-style: none;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .list-locations ul li,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .list-skills ul li,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .list-jobs ul li {
    padding: 5px 10px;
    font-size: 14px;
    background-color: var(--first-color-light);
    border-radius: 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black-color);
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .list-locations ul li button,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .list-skills ul li button,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .list-jobs ul li button {
    border: none;
    background-color: transparent;
    font-size: 18px;
    transition: ease-in-out .3s;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .list-locations ul li button:hover,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .list-skills ul li button:hover,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .list-jobs ul li button:hover {
    color: #F80000;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .add-location,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .add-skill .add-action,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .add-job .add-action {
    position: relative;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .add-location input,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .add-skill div input,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .add-job div input {
    width: 100%;
    position: relative;
    padding: 10px 15px;
    outline: none;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .add-location button,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .add-skill button,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .add-job button {
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 10px 10px;
    background-color: var(--second-color);
    color: var(--white-color);
    border: 2px solid var(--second-color);
    font-size: 16px;
    transition: ease-in-out .3s;
}

.section-match .match-body .left-match .profil-match .profil-match-body .location .add-location button:hover,
.section-match .match-body .left-match .profil-match .profil-match-body .skill .add-skill button:hover,
.section-match .match-body .left-match .profil-match .profil-match-body .jobs .add-job button:hover {
    background-color: var(--second-color-2);
    border: 2px solid var(--second-color-2);
}

.section-match .match-body .right-match .offer-list {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.section-match .match-body .right-match .offer-list .offer {
    padding: 10px;
    border: 2px solid var(--second-color-light);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
}

.section-match .match-body .right-match .offer-list .offer .published {
    font-size: 14px;
}

.section-match .match-body .right-match .offer-list .offer .offer-title h5 {
    font-size: 20px;
    font-weight: 700;
    /* color: var(--black-color); */
}

.section-match .match-body .right-match .offer-list .offer .offer-details {
    position: relative;
}

.section-match .match-body .right-match .offer-list .offer .offer-details h6,
.section-match .match-body .right-match .offer-list .offer .offer-details p {
    font-size: 16px;
}

.section-match .match-body .right-match .offer-list .offer .offer-details h6 span {
    color: var(--first-color);
    font-weight: 700;
}

.section-match .match-body .right-match .offer-list .offer .offer-details .skill {
    list-style: none;
    display: flex;
    justify-content: start;
    column-gap: 20px;
    padding-left: 0px !important;
    margin-bottom: 0 !important;
}

.section-match .match-body .right-match .offer-list .offer .offer-details .skill li {
    padding: 10px 15px;
    background-color: var(--second-color);
    border-radius: 20px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.section-match .match-body .right-match .offer-list .offer .offer-action {
    margin-top: 0px !important;
    width: 100%;
    position: relative;
    bottom: -12px;
}

.section-match .match-body .right-match .offer-list .offer .offer-action a {
    display: block;
    text-align: center;
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    background-color: var(--second-color);
    color: var(--white-color);
    padding: 10px;
    /* border: 2px solid var(--second-color-light); */
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: ease-in-out .3s;
}

.section-match .match-body .right-match .offer-list .offer .offer-action a:hover {
    background-color: var(--second-color-2);
}

/* Other default */
.edit-profil .personal-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.edit-profil .personal-info .input-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.edit-profil .personal-info .input-form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    margin-bottom: 10px;
}

.edit-profil .personal-info .input-form select,
.edit-profil .personal-info .input-form textarea,
.edit-profil .personal-info .input-form input {
    width: 100%;
    padding: 5px 10px;
    outline: none;
    font-size: 16px;
    border: 1px solid var(--gray-color);
}

.edit-profil .personal-info .input-form textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.edit-profil .personal-info .input-form label {
    font-size: 16px;
    color: var(--black-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.edit-profil .personal-info .input-form .list-language,
.edit-profil .personal-info .input-form .list-skill {
    margin-top: 5px;
    display: block;
    width: 100%;
}

.edit-profil .personal-info .input-form .list-language input,
.edit-profil .personal-info .input-form .list-skill input {
    visibility: hidden;
    position: absolute;
    width: 0px;
    height: 0px;
}

.edit-profil .personal-info .input-form .list-language span,
.edit-profil .personal-info .input-form .list-skill span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 10px;
    background-color: var(--first-color-light);
    border-radius: 20px;
    margin-bottom: 10px;
    border: none;
}

.edit-profil .personal-info .input-form .list-language span i,
.edit-profil .personal-info .input-form .list-language span svg,
.edit-profil .personal-info .input-form .list-skill span i,
.edit-profil .personal-info .input-form .list-skill span svg {
    cursor: pointer;
    transition: ease-in-out .3s;
}

.edit-profil .personal-info .input-form .list-language span i:hover,
.edit-profil .personal-info .input-form .list-language span svg:hover,
.edit-profil .personal-info .input-form .list-skill span i:hover,
.edit-profil .personal-info .input-form .list-skill span svg:hover {
    color: red;
}

.edit-profil .personal-info .input-form .input-button-form {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    width: 100%;
}

.edit-profil .personal-info .input-form .input-button-form input {
    padding: 5px 10px;
    border: 1px solid var(--gray-color);
    outline: none;
    width: 90%;
    height: 40px;
}

.edit-profil .personal-info .input-form .input-button-form button {
    color: var(--white-color);
    background-color: var(--first-color);
    font-size: 18px;
    border: none;
    width: 10%;
    height: 40px;
    cursor: pointer;
    transition: ease-in-out .3s;
}

.edit-profil .personal-info .input-form .input-button-form span {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-color: var(--first-color-2);
    font-size: 20px;
    border: none;
    width: 10%;
    height: 40px;
}

.edit-profil .personal-info .input-form .input-button-form button:hover {
    background-color: var(--first-color-2);
}

/* Mobile start */
@media only screen and (max-width: 768px) {

    /* Header Mobile */
    body {
        overflow-x: hidden;
    }

    .header {
        background-color: var(--white-color);
        padding: 20px 15px;
        position: relative;
        z-index: 1000;
        display: block;
    }

    .header.sticky {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        position: fixed;
        width: 100%;
        animation: showNavbar .6s ease-in-out;
    }

    @keyframes showNavbar {
        from {
            top: -100%;
        }

        to {
            top: 0;
        }
    }

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

    .header .header-content .logo {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .header .header-content .logo img {
        position: relative;
        height: 50px;
        width: 130px;
    }

    .header .header-content .logo span {
        position: absolute;
        bottom: 0px;
        right: -35px;
        font-size: 9px;
        font-weight: bold;
        font-family: var(--main-font);
        color: var(--black-color);
    }

    .header .header-content .toggle-menu-nav {
        display: block;
    }

    .header .header-content .toggle-menu-nav button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .header .header-content .toggle-menu-nav button i,
    .header .header-content .toggle-menu-nav button svg {
        font-size: 30px;
    }

    .header .menu-nav {
        display: none;
        position: absolute;
        top: 0;
        right: -850px;
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(1px);
        height: 100vh;
        width: 100vw;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .header .menu-nav.show {
        display: block;
    }

    .header .menu-nav.open {
        right: 0;
        transition: right 0.3s ease;
    }

    .header .menu-nav div {
        position: absolute;
        right: 0;
        padding-top: 100px;
        padding-left: 30px;
        background-color: #000000;
        height: 100vh;
        width: 90vw;
    }

    .header .menu-nav div button {
        position: absolute;
        top: 15px;
        right: 40px;
        border: none;
        background-color: var(--white-color);
        padding: 10px;
        outline: none;
        display: block;
    }

    .header .menu-nav div button i,
    .header .menu-nav div button svg {
        font-size: 30px;
    }

    .header .menu-nav div ul {
        list-style: none;
        padding-left: 0 !important;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .header .menu-nav div ul li {
        border-right: none;
        border-bottom: 1px solid gray;
        padding-bottom: 5px !important;
        padding-right: 0px !important;
    }

    .header .menu-nav div ul li {
        margin-bottom: 30px !important;
    }

    .header .menu-nav div ul li:last-child {
        margin-bottom: 0 !important;
    }

    .header .menu-nav div ul li a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 18px;
        font-weight: normal;
        transition: ease-in-out .3s;
    }

    .header .menu-nav div ul li a.active,
    .header .menu-nav div ul li a:hover {
        color: var(--first-color);
    }

    /* Footer Mobile */
    .footer {
        margin-top: 30px;
        background: linear-gradient(to right, var(--first-color), var(--first-color-2));
        padding: 30px;
        box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
    }

    .footer .footer-head {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .footer-head .logo {
        display: flex;
        flex-direction: column;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 130px;
        margin-bottom: 10px;
    }

    .footer .footer-head .logo img {
        position: relative;
        height: 50px;
        width: 130px;
    }

    .footer .footer-head .logo span {
        position: absolute;
        bottom: -2px;
        right: -37px;
        font-size: 9px;
        font-family: var(--main-font);
        color: var(--white-color);
    }

    .footer .footer-body {
        display: block;
        text-align: start;
    }

    .footer .footer-toggle {
        margin-top: 10px !important;
    }

    .footer .footer-toggle h5 {
        color: var(--white-color);
        font-size: 20px;
    }

    .footer .footer-toggle button {
        width: 100%;
        border: none;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white-color);
        font-size: 18px;
    }

    .footer .footer-toggle .dropdown-list {
        display: block;
        list-style: none;
        padding-left: 20px;
        margin-bottom: 0 !important;
    }

    .footer .footer-toggle .dropdown-list li {
        margin-bottom: 5px !important;
    }

    .footer .footer-toggle .dropdown-list li:first-child {
        margin-top: 5px !important;
    }

    .footer .footer-toggle .dropdown-list li:last-child {
        margin-bottom: 0px !important;
    }

    .footer .footer-toggle .dropdown-list li a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 16px;
        transition: ease-in-out .3s;
    }

    .footer .footer-toggle .dropdown-list li a:hover {
        color: var(--second-color);
    }

    .footer .footer-foot {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid var(--white-color);
    }

    .footer .footer-foot ul {
        list-style: none;
        padding-left: 20px;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        text-align: start;
    }

    .footer .footer-foot ul li {
        color: var(--white-color);
    }

    .footer .footer-foot ul li a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 16px;
        transition: ease-in-out .3s;
    }

    .footer .footer-foot ul li a:hover {
        color: var(--second-color);
    }

    .footer .footer-foot .link-sociaux {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        padding-top: 10px;
    }

    .footer .footer-foot .link-sociaux li {
        margin-right: 25px !important;
    }

    .footer .footer-foot .link-sociaux li:last-child {
        margin-right: 0 !important;
    }

    .footer .footer-foot .link-sociaux li a svg,
    .footer .footer-foot .link-sociaux li a i {
        font-size: 30px;
    }

    .footer .footer-foot p {
        margin-top: 10px;
        text-align: center;
        color: var(--white-color);
        font-size: 15px;
    }

    /* Section Hero */
    .section-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 40px;
        background: linear-gradient(to right, var(--first-color), var(--first-color-2));
    }

    .section-hero p {
        color: var(--white-color);
        font-size: 28px;
        text-align: center;
        font-family: var(--main-font);
    }

    .section-hero .hero-action {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .section-hero .hero-action a {
        text-decoration: none;
        width: 250px;
        text-align: center;
        margin-bottom: 20px;
        padding: 10px;
        color: var(--white-color);
        font-size: 18px;
        text-transform: uppercase;
        border-radius: 20px;
        transition: ease-in-out .3s;
        font-family: var(--main-font);
    }

    .section-hero .hero-action a:first-child {
        background-color: var(--second-color);
    }

    .section-hero .hero-action a:first-child:hover {
        background-color: var(--second-color-2);
    }

    .section-hero .hero-action a:last-child {
        border: 2px solid var(--second-color);
    }

    .section-hero .hero-action a:last-child:hover {
        border: 2px solid var(--second-color-2);
        background-color: var(--second-color-2);
    }

    .section-hero img#child1 {
        position: absolute;
        height: 220px;
        right: -53px;
        bottom: -55px;
    }

    .section-hero img#child2 {
        position: absolute;
        height: 185px;
        left: -38px;
        bottom: -33px;
        transform: scaleX(-1);
    }

    /* Section About Us */
    .section-about-us {
        padding: 20px;
        margin-top: 10px;
    }

    .section-about-us .about-us-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .section-about-us .about-us-head h5 span {
        display: inline-block;
    }

    .section-about-us .about-us-body p {
        margin-top: 10px;
        font-size: 16px;
    }

    .section-about-us .about-us-body span {
        color: var(--first-color);
        font-weight: 700;
    }

    /* Section Create Talent */
    .create-talent-work {
        display: flex;
        flex-direction: column;
        padding: 0px;
        gap: 0px;
    }

    .section-create-talent {
        padding: 20px;
        margin-top: 10px;
        margin-bottom: 20px;
        background: linear-gradient(to right, var(--first-color), var(--first-color-2));
        border-radius: 20px;
        height: 100%;
    }

    .section-create-talent .create-content {
        border-radius: 20px;
        background: var(--white-color);
        padding: 20px 10px;
    }

    .section-create-talent .create-talent-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--black-color);
        font-weight: 700;
        font-family: var(--main-font);
        margin-bottom: 0 !important;
    }

    .section-create-talent .create-talent-head h5 a {
        text-decoration: none;
        color: var(--second-color);
        transition: ease-in-out .3s;
    }

    .section-create-talent .create-talent-head h5 a:hover {
        color: var(--second-color-2);
    }

    .section-create-talent .create-talent-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section-create-talent .create-talent-body p {
        margin-top: 10px;
        font-size: 16px;
    }

    .section-create-talent .create-talent-body .talent-skill {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 370px;
        width: 230px;
        padding: 10px;
        background-image: url(./../../img/people/talent.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 100px;
        box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
    }

    .section-create-talent .create-talent-body .talent-skill h5 {
        font-size: 22px;
        font-weight: 700;
        color: var(--second-color);
    }

    .section-create-talent .create-talent-body .talent-skill span {
        width: 95%;
        background-color: var(--second-color-2);
        opacity: .9;
        color: var(--white-color);
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-create-talent .create-talent-foot {
        margin-top: 20px;
        text-align: center;
    }

    .section-create-talent .create-talent-foot h5 {
        font-size: 22px;
    }

    .section-create-talent .create-talent-foot h5 span {
        color: var(--second-color);
        font-weight: 700;
    }

    .section-create-talent .create-talent-foot ul {
        padding: 0px 30px;
        margin-bottom: 20px !important;
        text-align: start;
    }

    .section-create-talent .create-talent-foot ul li {
        font-size: 16px;
    }

    .section-create-talent .create-talent-foot ul li span {
        color: var(--second-color);
    }

    .section-create-talent .create-talent-foot a {
        text-decoration: none;
        border-radius: 20px;
        padding: 10px;
        background-color: var(--second-color);
        color: var(--white-color);
        font-size: 18px;
        text-transform: uppercase;
        border-radius: 20px;
        transition: ease-in-out .3s;
        font-family: var(--main-font);
    }

    .section-create-talent .create-talent-foot a:hover {
        background-color: var(--second-color-2);
    }

    /* Section create work */
    .section-create-work {
        padding: 20px;
        margin-top: 10px;
        background: linear-gradient(to right, var(--second-color), var(--second-color-2));
        border-radius: 20px;
        height: 100%;
    }

    .section-create-work .create-content {
        border-radius: 20px;
        background: var(--white-color);
        padding: 20px 10px;
    }

    .section-create-work .create-work-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--black-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .section-create-work .create-work-head h5 a {
        text-decoration: none;
        color: var(--first-color);
        transition: ease-in-out .3s;
    }

    .section-create-work .create-work-head h5 a:hover {
        color: var(--first-color-2);
    }

    .section-create-work .create-work-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .section-create-work .create-work-body p {
        margin-top: 10px;
        font-size: 16px;
    }

    .section-create-work .create-work-body .work-skill {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 370px;
        width: 230px;
        padding: 10px;
        background-image: url(./../../img/people/business.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 100px;
        box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
    }

    .section-create-work .create-work-body .work-skill h5 {
        font-size: 22px;
        font-weight: 700;
        color: var(--first-color);
    }

    .section-create-work .create-work-body .work-skill span {
        width: 95%;
        background-color: var(--first-color-2);
        opacity: .9;
        color: var(--white-color);
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-create-work .create-work-foot {
        margin-top: 20px;
        text-align: center;
    }

    .section-create-work .create-work-foot h5 {
        font-size: 22px;
    }

    .section-create-work .create-work-foot h5 span {
        color: var(--first-color);
        font-weight: 700;
    }

    .section-create-work .create-work-foot ul {
        padding: 0px 30px;
        margin-bottom: 20px !important;
        text-align: start;
    }

    .section-create-work .create-work-foot ul li {
        font-size: 16px;
    }

    .section-create-work .create-work-foot ul li span {
        color: var(--first-color);
    }

    .section-create-work .create-work-foot a {
        text-decoration: none;
        border-radius: 20px;
        padding: 10px;
        background-color: var(--first-color);
        color: var(--white-color);
        font-size: 18px;
        text-transform: uppercase;
        border-radius: 20px;
        transition: ease-in-out .3s;
        font-family: var(--main-font);
    }

    .section-create-work .create-work-foot a:hover {
        background-color: var(--first-color-2);
    }

    /* How it Work */
    .section-how-work {
        padding: 20px;
        margin-top: 10px;
    }

    .section-how-work .how-work-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .section-how-work .how-work-head p {
        font-size: 16px;
    }

    .section-how-work .how-work-body>h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .section-how-work .how-work-body .global-step .choose {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    .section-how-work .how-work-body .global-step .choose button {
        padding: 10px;
        font-size: 18px;
        border-radius: 20px;
        width: 120px;
        transition: ease-in-out .3s;
    }

    .section-how-work .how-work-body .global-step .choose button:first-child {
        border: 2px solid var(--first-color);
        background-color: transparent;
        color: var(--black-color);
        margin-right: 30px;
    }

    .section-how-work .how-work-body .global-step .choose button:first-child.active {
        border: 2px solid var(--first-color);
        background-color: var(--first-color);
        color: var(--white-color);
        margin-right: 30px;
    }

    .section-how-work .how-work-body .global-step .choose button:first-child:hover {
        border: 2px solid var(--first-color-2);
        background-color: var(--first-color-2);
        color: var(--white-color);
    }

    .section-how-work .how-work-body .global-step .choose button:last-child {
        border: 2px solid var(--second-color);
        background-color: transparent;
        color: var(--black-color);
    }

    .section-how-work .how-work-body .global-step .choose button:last-child.active {
        border: 2px solid var(--second-color);
        background-color: var(--second-color);
        color: var(--white-color);
    }

    .section-how-work .how-work-body .global-step .choose button:last-child:hover {
        border: 2px solid var(--second-color-2);
        background-color: var(--second-color-2);
        color: var(--white-color);
    }

    .section-how-work .global-step #for-talent {
        display: none;
    }

    .section-how-work .global-step #for-talent.active {
        display: block;
    }

    .section-how-work .global-step #for-business {
        display: none;
    }

    .section-how-work .global-step #for-business.active {
        display: block;
    }

    .section-how-work .global-step .step {
        margin-bottom: 20px !important;
    }

    .section-how-work .global-step .step:first-child {
        margin-top: 20px !important;
    }

    .section-how-work .global-step .step:last-child {
        margin-bottom: 0px !important;
    }

    .section-how-work .global-step .step .step-description .step-number {
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .section-how-work .global-step .step .step-description .step-number span {
        font-size: 18px;
        margin-right: 10px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: var(--white-color);
    }

    .section-how-work .global-step #for-talent .step .step-description .step-number span {
        background-color: var(--first-color);
    }

    .section-how-work .global-step #for-business .step .step-description .step-number span {
        background-color: var(--second-color);
    }

    .section-how-work .global-step .step .step-description .step-number h5 {
        font-size: 18px;
        margin-bottom: 0 !important;
    }

    .section-how-work .global-step #for-talent .step .step-description .step-number h5 {
        color: var(--first-color);
    }

    .section-how-work .global-step #for-business .step .step-description .step-number h5 {
        color: var(--second-color);
    }

    .section-how-work .global-step .step .step-description p {
        margin-bottom: 0 !important;
        padding-left: 50px;
    }

    /* Partner sction */
    .section-partner {
        padding: 20px;
        margin-top: 10px;
    }

    .section-partner .partner-head {
        margin-bottom: 20px;
    }

    .section-partner .partner-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .section-partner .partner-body {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
    }

    .section-partner .partner-body img {
        height: 100px;
    }

    .section-partner .partner-body img:last-child {
        height: 80px;
        /* width: 100%; */
        max-width: 188px;
    }

    /* List skill section */
    .section-skill .skill-list-body {
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Matching Section */
    .section-matching {
        margin-top: 10px;
    }

    /* .section-matching .matching-head {
        margin-bottom: 20px;
        padding: 20px;
        margin-top: 10px;
        background: linear-gradient(to right, var(--second-color), var(--second-color-2));
        width: 100%;
    }

    .section-matching .matching-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--white-color);
        font-weight: 700;
        font-family: var(--main-font);
        margin-bottom: 0 !important;
    } */

    .section-matching .matching-body {
        padding: 0px 20px;
    }

    .section-matching .matching-body p {
        margin-bottom: 0 !important;
        font-size: 16px;
    }

    .section-matching .matching-body p span {
        color: var(--first-color);
    }

    .section-matching .matching-body img {
        width: 100%;
        height: 150px;
    }

    .section-matching .matching-body ul {
        padding: 20px 50px;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .section-matching .matching-body ul li:nth-child(1) {
        color: #F80000;
    }

    .section-matching .matching-body ul li:nth-child(2) {
        color: #00B1F5;
    }

    .section-matching .matching-body ul li:nth-child(3) {
        color: #F38900;
    }

    .section-matching .matching-body ul li:nth-child(4) {
        color: #F20079;
    }

    /* Page Login */
    .login {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: hidden;
        overflow-y: auto;
        height: 100vh;
        padding: 20px;
    }

    .login .login-head {
        margin-bottom: 20px;
    }

    .login .login-head .logo {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 303px;
    }

    .login .login-head .logo img {
        position: relative;
        width: 250px;
        height: 150px;
    }

    .login .login-head .logo span {
        position: absolute;
        bottom: 20px;
        right: 7px;
        font-size: 12px;
        font-weight: bold;
        font-family: var(--main-font);
        color: var(--black-color);
    }

    .login .login-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .login .login-body form .input-form {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-bottom: 20px;
        width: 250px;
        position: relative;
    }

    .login .login-body form .input-form label {
        text-transform: capitalize;
        font-size: 16px;
        font-weight: 700;
    }

    .login .login-body form .input-form input {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--black-color);
        outline: none;
        font-size: 16px;
    }

    .login .login-body form .input-form a {
        text-decoration: none;
        position: absolute;
        bottom: -30px;
        right: 0px;
        font-size: 14px;
        color: var(--second-color);
        transition: ease-in-out .3s;
    }

    .login .login-body form .input-form a:hover {
        color: var(--second-color-2);
    }

    .login .login-body form .input-button {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .login .login-body form .input-button button {
        width: 200px;
        padding: 10px 15px;
        color: var(--white-color);
        border: none;
        border-radius: 20px;
        background-color: var(--first-color);
        transition: ease-in-out .3s;
    }

    .login .login-body form .input-button button:hover {
        background-color: var(--first-color-2);
    }

    .login .login-foot {
        text-align: center;
        margin-top: 20px;
        font-size: 16px;
    }

    .login .login-foot p a {
        text-decoration: none;
        color: var(--first-color);
        transition: ease-in-out .3s;
    }

    .login .login-foot p a:hover {
        text-decoration: underline;
        color: var(--first-color-2);
    }

    /* Page Register */
    .register {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: hidden;
        overflow-y: auto;
        /* height: 100vh; */
        padding: 20px;
    }

    .register .register-head {
        margin-bottom: 20px;
    }

    .register .register-head .logo {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 303px;
    }

    .register .register-head .logo img {
        position: relative;
        width: 250px;
        height: 150px;
    }

    .register .register-head .logo span {
        position: absolute;
        bottom: 20px;
        right: 7px;
        font-size: 12px;
        font-weight: bold;
        font-family: var(--main-font);
        color: var(--black-color);
    }

    .register .register-head h5 {
        text-align: center;
        font-size: 20px;
        color: var(--first-color);
        font-weight: 700;
        font-family: var(--main-font);
    }

    .register .register-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0px !important;
    }

    .register .register-body .choose {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px 0;
    }

    .register .register-body .choose button {
        padding: 10px;
        font-size: 18px;
        border-radius: 20px;
        width: 120px;
        transition: ease-in-out .3s;
    }

    .register .register-body .choose button:first-child {
        border: 2px solid var(--first-color);
        background-color: transparent;
        color: var(--black-color);
        margin-right: 30px;
    }

    .register .register-body .choose button:first-child.active {
        border: 2px solid var(--first-color);
        background-color: var(--first-color);
        color: var(--white-color);
        margin-right: 30px;
    }

    .register .register-body .choose button:first-child:hover {
        border: 2px solid var(--first-color-2);
        background-color: var(--first-color-2);
        color: var(--white-color);
    }

    .register .register-body .choose button:last-child {
        border: 2px solid var(--second-color);
        background-color: transparent;
        color: var(--black-color);
    }

    .register .register-body .choose button:last-child.active {
        border: 2px solid var(--second-color);
        background-color: var(--second-color);
        color: var(--white-color);
    }

    .register .register-body .choose button:last-child:hover {
        border: 2px solid var(--second-color-2);
        background-color: var(--second-color-2);
        color: var(--white-color);
    }

    .register .register-body #for-talent .register-info .personal-info .body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
    }

    .register .register-body #for-talent .register-info .skill-info .body .skill-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 10px;
        column-gap: 20px;
        margin-bottom: 10px;
    }

    .register .register-body #for-talent .register-info .training-info .body .list-training-add .training-add .place,
    .register .register-body #for-talent .register-info .experience-info .body .list-xp-add .experience-add .place {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
        gap: 20px;
    }

    .register .register-body #for-talent .register-info .credential .credential-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .register .register-body form .input-button {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .register .register-body form .input-button button {
        width: 200px;
        padding: 10px 15px;
        color: var(--white-color);
        border: none;
        border-radius: 20px;
        transition: ease-in-out .3s;
    }

    .register .register-body #for-talent .input-button button {
        background-color: var(--first-color);
    }

    .register .register-body #for-talent .input-button button:hover {
        background-color: var(--first-color-2);
    }

    .register .register-body #for-business .input-group .place {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .register .register-body #for-business .input-button button {
        background-color: var(--second-color);
    }

    .register .register-body #for-business .input-button button:hover {
        background-color: var(--second-color-2);
    }

    /* .register .register-body #for-talent{
        display: none;
    }
    .register .register-body #for-talent.active{
        display: block;
    }
    .register .register-body #for-business{
        display: none;
    }
    .register .register-body #for-business.active{
        display: block;
    } */
    .register .register-foot {
        text-align: center;
        margin-top: 20px;
        font-size: 16px;
    }

    .register .register-foot p a {
        text-decoration: none;
        color: var(--first-color);
        transition: ease-in-out .3s;
    }

    .register .register-foot p a:hover {
        text-decoration: underline;
        color: var(--first-color-2);
    }

    /* Manifesto & Equipe */
    .section-teams .teams-body .members {
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        position: relative;
        justify-items: center;
    }

    /* Offre emploi */
    .section-jobs .jobs-body {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0px !important;
        /* border-top: 2px solid gray; */
        padding: 20px;
    }

    .section-jobs .jobs-body .jobs-filter {
        border-right: none;
    }

    .section-jobs .jobs-body .jobs-filter .input-form select {
        width: 100%;
        padding: 10px 15px;
        outline: none;
    }

    .section-jobs .jobs-body .jobs-lists {
        padding: 0px !important;
        width: 100%;
    }

    .section-jobs .jobs-body .jobs-lists .job-detail ul li {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    /* Talent */
    .section-talent {
        margin-top: 20px;
        padding: 20px;
    }

    /* Entreprise */
    .section-business {
        margin-top: 20px;
        padding: 20px;
    }

    /* Consulting */
    .consulting {
        margin-top: 20px;
        padding: 20px;
    }

    .consulting .consulting-body {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .consulting .consulting-body .theme .theme-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .consulting .consulting-body .theme .theme-content img#diag {
        object-fit: cover;
    }

    /* Contact */
    .section-contact {
        padding: 20px;
    }

    .section-contact .contact-head {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        align-items: flex-start;
        margin: 20px 0;
        gap: 40px;
    }

    .section-contact .contact-body {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .section-contact .contact-body .form-contact {
        /* border-bottom-left-radius: 0px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px; */
        width: 100%;
        max-width: none;
    }

    .section-contact .contact-body .maps iframe {
        width: 100%;
        height: 250px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        border-top-right-radius: 0px;
    }

    /* All Skill */
    .section-all-skill {
        padding: 20px;
    }

    .section-all-skill .all-skill-body {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /* Section recruitment */
    .section-recruitment {
        padding: 20px;
    }

    .section-recruitment .recruitment-head .recruitment-search .group-form .group-input {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 20px;
        gap: 20px;
    }

    .section-recruitment .recruitment-body .offer-list {
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    /* Section details offer */
    .section-detail-recruitment {
        padding: 20px;
    }
}

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

    /* Header */
    .header {
        background-color: var(--white-color);
        padding: 20px 15px;
        position: relative;
        z-index: 1000;
        display: block;
    }

    .header.sticky {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        position: fixed;
        width: 100%;
        animation: showNavbar .6s ease-in-out;
    }

    @keyframes showNavbar {
        from {
            top: -100%;
        }

        to {
            top: 0;
        }
    }

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

    .header .header-content .logo {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .header .header-content .logo img {
        position: relative;
        height: 50px;
        width: 130px;
    }

    .header .header-content .logo span {
        position: absolute;
        bottom: 0px;
        right: -35px;
        font-size: 9px;
        font-weight: bold;
        font-family: var(--main-font);
        color: var(--black-color);
    }

    .header .header-content .toggle-menu-nav {
        display: block;
    }

    .header .header-content .toggle-menu-nav button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .header .header-content .toggle-menu-nav button i,
    .header .header-content .toggle-menu-nav button svg {
        font-size: 30px;
    }

    .header .menu-nav {
        display: none;
        position: absolute;
        top: 0;
        right: -850px;
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(1px);
        height: 100vh;
        width: 100vw;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .header .menu-nav.show {
        display: block;
    }

    .header .menu-nav.open {
        right: 0;
        transition: right 0.3s ease;
    }

    .header .menu-nav div {
        position: absolute;
        right: 0;
        padding-top: 100px;
        padding-left: 30px;
        background-color: #000000;
        height: 100vh;
        width: 90vw;
    }

    .header .menu-nav div button {
        position: absolute;
        top: 15px;
        right: 40px;
        border: none;
        background-color: var(--white-color);
        padding: 10px;
        outline: none;
        display: block;
    }

    .header .menu-nav div button i,
    .header .menu-nav div button svg {
        font-size: 30px;
    }

    .header .menu-nav div ul {
        list-style: none;
        padding-left: 0 !important;
        margin-bottom: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .header .menu-nav div ul li {
        border-right: none;
        border-bottom: 1px solid gray;
        padding-bottom: 5px !important;
        padding-right: 0px !important;
        color: var(--white-color);
        font-size: 18px;
        font-weight: normal;
    }

    .no-border {
        border-bottom: none !important;
    }

    .header .menu-nav div ul li ul {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: start;
        position: relative;
        background-color: var(--black-color);
        padding: 10px !important;
        padding-left: 20px !important;
        width: 100%;
        /* height: 80px; */
        box-shadow: none;
    }

    .header .menu-nav div ul li {
        margin-bottom: 30px !important;
    }

    .header .menu-nav div ul li:last-child {
        margin-bottom: 0 !important;
    }

    .header .menu-nav div ul li a {
        text-decoration: none;
        color: var(--white-color);
        font-size: 18px;
        font-weight: normal;
        transition: ease-in-out .3s;
    }

    .header .menu-nav div ul li a.active,
    .header .menu-nav div ul li a:hover {
        color: var(--first-color);
    }

    /* Consulting */
    .consulting .consulting-body {
        margin-top: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        justify-items: center;
    }

    /* List skill section */
    .section-skill .skill-list-body {
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Contact */
    .section-contact {
        padding: 20px;
    }

    .section-contact .contact-head {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        align-items: flex-start;
        margin: 20px 0;
        gap: 40px;
    }

    .section-contact .contact-body {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .section-contact .contact-body .form-contact {
        /* border-bottom-left-radius: 0px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px; */
        width: 100%;
        max-width: none;
    }

    .section-contact .contact-head iframe {
        width: 100% !important;
        height: 500px;
        border: none;
        box-shadow: 0 0px 4px 1px rgba(0, 0, 0, 0.3);
    }

    /* All Skill */
    .section-all-skill {
        padding: 20px;
    }

    .section-all-skill .all-skill-body {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-recruitment {
        padding: 20px;
    }

    /* Matching page */
    .section-match {
        padding: 10px;
    }

    .section-match .match-body {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .create-talent-work {
        padding: 20px;
    }

    /* Page register */
    .register .register-body {
        padding: 0px !important;
    }


    /* Other default*/
    .edit-profil .personal-info .input-group {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
        width: 100%;
    }

    /* Equipe */
    .teams-b {
        /* padding: 20px; */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        position: relative;
        left: -8%;
    }

    .teams-gal {
        /* padding: 20px; */
        width: 100%;
        display: flex;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .teams-gal .post:nth-child(n) {
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .teams-gal .post:nth-child(2n) {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 0px;
    }

    .teams-gal .post:nth-child(1) {
        left: 0;
        z-index: -10;
        /* margin-left: 110px; */
    }

    .teams-gal .post:nth-child(2) {
        left: 0px;
        z-index: -11;
    }

    .teams-gal .post:nth-child(3) {
        left: 0px;
        z-index: -12;
    }

    .teams-gal .post:nth-child(4) {
        left: 0px;
        z-index: -13;
    }

    .teams-gal .post:nth-child(5) {
        left: 0px;
        z-index: -14;
    }

    .teams-gal .post:nth-child(n+6) {
        left: 0px;
        z-index: -15;
    }

    .teams-gal .post {
        max-width: 200px;
    }

    .teams-gal .post .profil {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 250px;
        height: 250px;
        position: relative;
    }

    .teams-gal .post .profil img {
        width: 96%;
        height: 96%;
        border-radius: 50%;
    }

    .teams-gal .post .profil .circle {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        z-index: -1;
        background-color: #F0733B;
        background: linear-gradient(to right, #F0733B, #EB5C4F);
    }

    .teams-gal .post:nth-child(n) .profil .title-post {
        left: 2%;
        top: 0;
    }

    .teams-gal .post:nth-child(2n) .profil .title-post {
        left: 2%;
        top: 0;
    }

    .teams-gal .post .profil .title-post {
        display: flex;
        position: absolute;
        padding: 15px 10px;
        font-size: 9px;
        width: 80px;
        height: 80px;
        text-align: center;
        min-width: 52.5px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        z-index: 1;
        color: white;
        box-shadow: 0 0px 9px 6px rgba(0, 0, 0, 0.3);
        background: linear-gradient(to right, #F0733B, #EB5C4F);
    }

    .teams-gal .post .profil-detail {
        text-align: start;
        margin: 5px 0;
        position: relative;
        left: 15%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .teams-gal .post .profil-detail h5 {
        color: #EB5C4F;
        font-weight: 700;
        margin-bottom: 0 !important;
        font-size: 16px;
    }

    .teams-gal .post .profil-detail h6 {
        color: #000000;
        font-weight: 300;
        font-size: 14px;
    }

}

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

    /* List skill section */
    .section-skill .skill-list-body {
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    /* Manifesto & Equipe */
    .section-teams .teams-body .members {
        padding: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        position: relative;
        justify-items: center;
    }

    /* All Skill */
    .section-all-skill {
        padding: 20px;
    }

    .section-all-skill .all-skill-body {
        margin-top: 30px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* Mobile end */
