:root {
    --font-primary: "Poppins", Arial, sans-serif;
}

a:focus {
    outline: none !important;
}

#NoActiveBanner {
    display: none;
}



/* =======================================
    HEADER STYE
======================================= */

.vc-header {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    height: 70px;
    background: #fff;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    box-shadow: 0 8px 32px #0000001a;
    position: relative;
    z-index: 9999;
    font-family: var(--font-primary);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

header.vc-header img,
.mobile-header img {
    width: 153px;
    height: 20px;
}


.menu-btn,
.search-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: #222;
}

.menu-btn {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 24px;
    height: 1px;
    background: #222;
    display: block;
}

.header-left::after {
    content: "";
    width: 1px;
    height: 24px;
    background: #d8d8d8;
    margin-left: -4px;
}

span.dynamic-header__logo-text {
    display: none;
}

.header-logo svg {
    width: 153px;
    height: 20px;
}

.header-link {
    color: #89B276;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.header-link:hover {
    color: #3f5f31;
    text-decoration: none;
}

.top-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 90px;
    gap: 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.top-link {
    display: inline-block;
    margin-top: 22px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .18px;
    line-height: 20.8px;
    font-family: var(--font-primary);
}

.top-link:hover {
    color: #000;
    text-decoration: none;
}

.share-menu {
    position: relative;
    display: inline-block;
}

.share-links {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    margin-top: 25px;
    position: absolute;
    z-index: 2;
}

.share-menu:hover .share-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-links a {
    display: block;
    margin-bottom: 15px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s ease;
    letter-spacing: .18px;
    line-height: 20.8px;
    font-family: var(--font-primary);
}

.share-links a:hover {
    text-decoration: underline;
}


/* ===================
 MOBILE HADER
=================== */

.menu-modal,
.search-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.4s ease,
        visibility 0s linear 0.7s;
    border-radius: 0 0 20px 20px;
}

.menu-modal.active,
.search-modal.active1 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        transform 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.4s ease;
}

.menu-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.5s ease 0.2s;
}

.menu-modal.active .menu-content,
.search-modal.active1 .menu-content {
    opacity: 1;
    transform: translateY(0);
}

.menu-btn {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: rgba(74, 74, 73, 0.2) 0px 0px 14px;
    height: 70px;
    padding: 0px 16px;
    z-index: 9999;
    position: relative;
    border-radius: 0 0 8px 8px;
}

button.close-menu,
button.close-search-menu {
    background: transparent;
    border: none;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    display: flex;
    align-items: center;
}

button.close-menu svg,
button.close-search-menu svg {
    margin-left: -25px;
}

.menu-content {
    display: flex;
    height: 100vh;
}

.menu-content .mobile-menu-left {
    background: #fafafa;
    width: 50%;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    row-gap: 100px;
}

.menu-content .mobile-menu-left .menu__left__top {
    display: grid;
    row-gap: 24px;
}

.menu-content .mobile-menu-left span {
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    text-transform: uppercase;
    font-family: var(--font-primary);
    color: #dc0814;
    letter-spacing: 0.18px;
}

.menu-content .mobile-menu-left .menu__left__top .menu__left__top__titles {
    display: grid;
    row-gap: 21px;
}

.menu-content .mobile-menu-left .menu__left__top h1 {
    color: #000;
    font-family: var(--font-primary);
    font-size: 86.4px;
    letter-spacing: 0.18px;
    margin: 0px;
    line-height: 108px;
    font-weight: 500;
    transition: color 0.4s ease, transform 0.4s ease;

}

.menu-content .mobile-menu-left .menu__left__top h1:hover {
    color: #dc0814;
    transform: translateX(20px);
}

.menu-content .mobile-menu-left .menu__left__top a:hover {
    text-decoration: none;
}


.menu-content .mobile-menu-left .menu-card {
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    height: 267px;
    overflow: hidden;
}

.menu-content .mobile-menu-left .menu-card .menu-card__image-wrapper {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

.menu-content .mobile-menu-left .menu-card .menu-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.menu-content .mobile-menu-left .menu-card .menu-card__content {
    padding: 27.5px 36px;
}

.menu-content .mobile-menu-left .menu-card .menu-card__content p {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    width: 200px;
}


.menu-content .mobile-menu-right {
    background: #fff;
    width: 50%;
    padding: 50px 30px;
}


.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0px;
}

.mobile-menu li {
    cursor: pointer;
    transition: transform 0.3s ease;
}

ul.sub-menu.active li {
    border-bottom: none;
    cursor: pointer;
}

.mobile-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.4s ease;
    letter-spacing: 0.18px;
    font-weight: 400;
    line-height: 26.1px;
}

.mobile-menu ul.sub-menu {
    display: none;
    background: transparent;
    box-shadow: none;
    list-style: none;
    opacity: 1;
    visibility: visible;
    height: auto;
    width: auto;
    position: relative;
}

.mobile-menu .sub-menu li a {
    padding-left: 20px;
    font-size: 18px;
    padding-bottom: 10px;
    padding-top: 8px;
    transition: transform 0.4s ease;
}

.mobile-menu .sub-menu.active {
    display: block !important;
    border-radius: 0px;
}

.mobile-menu span {
    display: inline-block;
    font-size: 20px;
    transition: 0.3s ease;
}

.mobile-menu li>a span {
    position: relative;
    padding-right: 22px;
}

.mobile-menu li>a span::after,
.mobile-menu li.open>a span::after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    font-size: 15px;
    color: #000;
}

.mobile-menu li>a span::after {
    content: "▼";
}

.mobile-menu li.open>a span::after {
    content: "▲";
}

nav ul li.open>ul.sub-menu {
    display: block !important;
}

.mobile-menu span img {
    display: none;
}

ul.mobile-menu li.language .ComboLingua {
    margin-left: 20px;
    padding: 9px 0px 9px;
    font-size: 18px;
    color: #000;
    background: transparent;
    border: none;
    letter-spacing: 0.18px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    outline: none;
    width: 95%;
}

ul.mobile-menu li.language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

ul.mobile-menu li.language .jam {
    margin: 12px 20px 0px 0px;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    color: #000;
    font-size: 15px;
}

ul.mobile-menu li.language .minus {
    display: none;
}

ul.mobile-menu li.language.activate .minus {
    display: block;
}

ul.mobile-menu li.language.activate .jam-plus {
    display: none;
}

.search-container {
    display: flex;
    justify-content: center;
    padding: 126px 40px 0px;
}

.search-container .search-content {
    width: 890px;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-container .search-content input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #000;
    font-size: clamp(22px, 3vw, 40px);
    font-family: var(--font-primary);
    font-weight: 400;
}

.search-container .search-content button {
    background: transparent;
    border: none;
    font-size: clamp(18px, 3.4vw, 20px);
    letter-spacing: .02em;
    line-height: 1.35;
    padding: 0px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-transform: uppercase;
    text-underline-offset: 3px;
    color: #dc0814;
}

/* =======================================
   END HEADER STYE
======================================= */


/* =======================================
   END HOME PAGE STYE
======================================= */
.home_banner {
    padding: 120px 20px 74px;
    text-align: center;
}

.home_banner h1.home_title {
    font-size: 80px;
    line-height: 1.1;
    font-weight: 400;
    margin: 0px;
    letter-spacing: 0.723px;
    font-family: var(--font-primary);
    color: #000;
}

.home_banner h2.home_sub_title {
    font-size: 20.25px;
    font-weight: 400;
    margin: 0px;
    line-height: 29.3625px;
    letter-spacing: 0.2025px;
    font-family: var(--font-primary);
    color: #000;
    padding: 45px 0px 27px;
}

.home_banner .home_link {
    padding: 25px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 27px;
}

.home_banner .home_link a {
    font-size: 18px;
    font-family: var(--font-primary);
    color: #000;
    line-height: 26.0938px;
    letter-spacing: 0.18px;
    text-decoration: underline;
}

.home_banner .home_link button.Invia_curriculum {
    background: transparent;
    padding: 18px 30px;
    border-radius: 100px;
    border: 1px solid #dc0814;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--font-primary);
    font-size: 18px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.home_banner .home_link button.Invia_curriculum a {
    color: #dc0814;
    text-decoration: none;
}

button.Invia_curriculum::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #dc0814;
    transition: left 0.4s ease;
    z-index: -1;
}

.home_banner .home_link button.Invia_curriculum a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

button.Invia_curriculum:hover::before {
    left: 0;
}


.warp .ad .search,
.warp .ad .job_top {
    background: #dc0814;
}


section.content .adtitle h1.home-title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.4;
    font-family: var(--font-primary);
    text-transform: lowercase;
}

section.content .adtitle h1.home-title::first-letter {
    text-transform: uppercase;
}

.warp .ad .GRID_HDR_CEL a:link,
.warp .ad .GRID_HDR_CEL a:visited {
    font-family: var(--font-primary);
    color: #e30613;
    font-size: 14px;
    font-weight: 500;
}

.warp .ad td.GRID_DAT_CEL.titleCell a {
    font-size: 18px;
    font-family: var(--font-primary);
    color: #e30613;
    line-height: 26.0938px;
    letter-spacing: 0.18px;
}

.warp .ad td.GRID_DAT_CEL.autoWidth,
.list_card span.pub-date,
.list_card span.business_unit,
.list_card span.location,
.warp .ad .textr .FORMLABLE,
.warp .ad .text.job-detail-content li,
.warp .ad .text.job-detail-content,
table.FORM.ScTableTitle .DISABLEDFIELD,
.warp .ad .NoRecordsMessage,
.warp .ad .FORMLABLE,
.inner .bt-privacy td.LABLE {
    color: #000;
    font-weight: 400;
    font-size: 16px !important;
    font-family: var(--font-primary) !important;
    line-height: 26.0938px;
    letter-spacing: 0.18px;
}

.email,
.email:hover {
    background: url(/images/email-icon-1.png) no-repeat left top;
}

.facebook,
.facebook:hover {
    background: url(/images/facebook-icon-1.png) no-repeat left top;
}

.twitter,
.twitter:hover {
    background: url(/images/tweeter-icon-1.png) no-repeat left top;
}

span.linkedin-icon:hover:after {
    background: url(/images/linkedin-1.png) no-repeat left top;
}

.homeshare .rssbutton {
    background: url(/images/rss-icon-1.png) top no-repeat;
    padding: 15px 20px 2px 20px;
}

.homeshare {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding-bottom: 50px;
}

.homeshare .home-cv-button a {
    top: 0px;
}

/* =======================================
   END HOME PAGE STYE
======================================= */


/* =======================================
   CARD PAGE STYE
======================================= */
.vacancy-list-tile {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 15px;
}

.warp .ad .list_card {
    min-height: 250px;
    width: 100%;
    height: 100%;
    margin: 0;
}

.warp .ad .list_card h2 {
    font-family: var(--font-primary);
    color: #000;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
}

div#vacancylist .col-md-4.col-sm-6.col-xs-12 {
    padding-right: 0px;
}

.warp .ad .list_card:hover {
    background: transparent;
}

.warp .ad .list_card a.button:hover,
.warp .ad .home-cv-button a:hover {
    background: transparent;
}

.warp .ad .list_card a.button,
.warp .ad .home-cv-button a {
    border-color: #e30613;
    border-radius: 100px;
    color: #e30613;
    font-size: 16px;
    padding: 12px 30px;
    letter-spacing: 0.18px;
    line-height: 21.6px;
    font-family: var(--font-primary);
    font-weight: 500;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
    position: relative;
    background-color: transparent;
}

.warp .ad .list_card a.button::before,
.warp .ad .home-cv-button a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e30613;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
}

.warp .ad .list_card a.button:hover,
.warp .ad .home-cv-button a:hover {
    color: #ffffff;
}

.warp .ad .list_card a.button:hover::before,
.warp .ad .home-cv-button a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.warp .ad section.content.jobs.job-detail .business_unit-inner .button {
    border-radius: 0px;
    background-color: transparent;
    padding: 8px 23px;
}


.warp .ad .button {
    display: inline-block;
    padding: 12px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #e30613;
    border-radius: 100px;

    color: #e30613;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 21.6px;
    letter-spacing: 0.18px;
    text-align: center;
    text-decoration: none;

    background-color: transparent;
    background-image: linear-gradient(to right, #e30613 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;

    transition: background-position 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    cursor: pointer;
    outline: none;
}

.warp .ad .button:hover {
    background-position: left bottom;
    color: #ffffff;
    border: 1px solid;
}

.warp .ad .search .box2 .button {
    display: inline-block;
    padding: 12px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 0px;

    color: #fff;
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 21.6px;
    letter-spacing: 0.18px;
    text-align: center;
    text-decoration: none;

    background-color: transparent;
    background-image: linear-gradient(to right, #fff 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;

    transition: background-position 0.4s ease-in-out, color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    cursor: pointer;
    outline: none;
}

.warp .ad .search .box2 .button:hover {
    background-position: left bottom;
    color: #e30613;
    border: 1px solid;
}

/* =======================================
   END CARD PAGE STYE
======================================= */

/* =======================================
    JOB DETAIL PAGE STYE
======================================= */
section.content.jobs.job-detail .job-top-inner .adtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0px;
    margin: 0;
}

.warp .ad .job_top {
    margin-top: 100px;
}

.warp .ad .job-top-inner .adtitle h1 *,
.warp .ad .job-top-inner .adtitle h1 {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.warp .ad .text.job-detail-content strong,
.warp .ad .text.job-detail-content h2 {
    font-weight: 500;
}

.warp .ad .goback a {
    color: #e30613;
    font-family: var(--font-primary);
    font-size: 16px;
    background: url(../images/back-arr.png) no-repeat left;
    font-weight: 500;

}

.warp .ad {
    padding-bottom: 0px;
}

/* =======================================
   END  JOB DETAIL PAGE STYE
======================================= */

/* =======================================
   FORM PAGE STYE
======================================= */
.warp .ad .job-top-inner .adtitle h1 {
    display: grid;
    place-items: center;
}

.warp .ad .msinner,
.warp .ad .inner {
    padding: 30px 0px;
}

section.content.myaccount.login-form .msinner.login-page td.FORMSINGLER a {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #e30613;
}

.warp .ad .no-cv .login-title a {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #e30613;
    font-weight: 500;
    padding-left: 20px;
}

section.content.myaccount.myjobalert .inner .ContainerButtons,
section.content.myaccount.changepwd .msinner .ContainerButtons,
.msinner.ResetPwd .recaptcha-container,
.inner .sendCV_AWL_cont .recaptcha-container,
section.content.myaccount.changepwd .msinner .recaptcha-container,
.inner .sendCV_AWL_cont .ContainerButtons {
    float: none;
    display: grid;
    place-items: center;
    width: 100%;
}

.warp .ad .inner .Error,
.warp .ad .msinner .error {
    font-weight: 500;
    font-family: var(--font-primary);
    width: 100%;
    display: block;
    text-align: center;
    margin-left: 8px;
}

section.content.myaccount.editcv .FORMTITLE span.titoloscheda,
section.content.myaccount.editcv .bt-privacy td.LABLE,
section.content.jobs.send-job .FORMTITLE span.titoloscheda,
.inner .FORMTITLE span.titoloscheda {
    padding-left: 0px;
    font-family: var(--font-primary) !important;
    color: #000;
}

section.content.myaccount.editcv .FORMTITLE span.titoloscheda,
.inner .FORMTITLE span.titoloscheda {
    font-weight: 500;
}

.inner .bt-privacy td.LABLE a {
    color: #e30613;
    font-weight: 500;
}

.inner .bt-privacy td.LABLE {
    padding-left: 15px !important;
}

section.content.myaccount.changepwd .msinner .ContainerButtons,
section.content.myaccount.changepwd .msinner .recaptcha-container {
    padding-left: 32%;
}

/* =======================================
   END FORM PAGE STYE
======================================= */


/* =======================================
   FOOTER STYE
======================================= */
footer.footer {
    background: #fafafa;
    padding: 0px 0px 30px;
    color: #333;
    height: auto;
    margin: 0;
    font-family: var(--font-primary);
}


.footer-lang {
    text-align: center;
    padding: 150px 0px 50px;
    display: none;
}

.footer-lang a {
    margin: 0 20px;
    color: #4A4A49;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}

.footer-lang a:first-of-type {
    font-weight: 500;
    text-decoration: underline;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 120px;
    display: none;
}

.footer-col {
    padding-right: 8px;
    border-right: 1px solid #ddd;
}

.footer-col:last-child {
    border-right: 0;
}

.footer-col h4 {
    color: #e30613;
    font-size: 16px;
    margin: 0px 0px 32px 0px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 15px;
}

.footer-col a {
    color: #4A4A49;
    text-decoration: none;
    font-size: 12px;
    transition: width 0.3s ease;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}

.footer-logo {
    margin-bottom: 40px;
    padding-right: 50px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: #4A4A49;
    text-decoration: none;
    font-size: 12px;
}

.footer-right {
    border-left: 1px solid #ddd;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 195px;
}

.footer-right p {
    color: #4A4A49;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 16.8px;
    letter-spacing: 0.12px;
}

.footer-right span {
    color: #4A4A49;
    font-weight: 500;
    font-size: 12px !important;
}

/* =======================================
   END FOOTER STYE
======================================= */
@media (max-width: 1300px) {
    .home_banner h1.home_title {
        font-size: 65px;
    }

    .menu-content .mobile-menu-left {
        width: 60%;
    }

    .menu-content .mobile-menu-right {
        width: 40%;
    }

    .menu-content .mobile-menu-left .menu__left__top h1 {
        font-size: 75.4px;
    }
}

@media (max-width: 1024px) {
    .home_banner h1.home_title {
        font-size: 55px;
    }

    /* =======================================
    HEADER STYE
======================================= */

    .top-bar {
        padding: 0px;
        gap: 15px;
    }

    .vc-header {
        max-width: 100%;
        height: 60px;
        border-radius: 8px;
        box-shadow: 0 4px 16px #0000001a;
        border: 1px solid hsla(210, 2%, 80%, .3);
        backdrop-filter: blur(20px);
        top: 12px;
    }

    .vc-header:has(.menu-modal.active),
    .vc-header:has(.search-modal.active1) {
        top: 0px;
    }

    .menu-modal.active,
    .search-modal.active1 {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 12px 12px 0px;
    }

    .menu-modal.active .menu-content,
    .search-modal.active1 .menu-content {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .mobile-header {
        height: 60px;
        border-radius: 8px;
        box-shadow: 0 4px 16px #0000001a;
        border: 1px solid hsla(210, 2%, 80%, .3);
        backdrop-filter: blur(20px);
    }

    a.top-link {
        display: none;
    }

    .menu-content .mobile-menu-left .menu__left__top h1 {
        font-size: 51.4px;
        line-height: 55px;
    }

    /* =======================================
    END HEADER STYE
======================================= */

    .home_banner {
        padding: 141px 20px 24px;
    }


    .home_banner h2.home_sub_title {
        font-size: 18px;
    }

    .home_banner .home_link a,
    .home_banner .home_link button.Invia_curriculum {
        font-size: 16px;
    }

    /* =======================================
    FOOTER STYE
======================================= */

    .footer-bottom .footer-logo svg {
        width: 600px;
    }

    .footer-menu {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        padding-top: 0px;
    }

    .footer-right {
        border-left: 0;
        padding-left: 0;
        max-width: 100%;
    }

    .footer-lang {
        text-align: right;
        padding: 80px 0px 80px;
    }

    .footer-logo {
        margin-bottom: 30px;
        padding-right: 0px;
    }

    /* =======================================
   END FOOTER STYE
======================================= */
}

@media (max-width: 767px) {

    .home_banner h1.home_title {
        font-size: 45px;
    }

    div#vacancylist .col-md-4.col-sm-6.col-xs-12 {
        padding: 0px;
    }

    .warp .ad .search .box2 .button {
        padding: 7px 30px;
    }

    .warp .ad .inner .divDateTimeDropDown select,
    .warp .ad .inner .sendCV_AWL_cont .divDateTimeDropDown select {
        width: 100%;
    }

    .homeshare {
        margin-top: 70px !important;
    }

    /* ===========================
     HEADER STYLE
    =========================== */
    .header-logo {
        font-size: 18px;
    }

    .header-link {
        display: none;
    }

    .menu-content {
        display: flex;
        flex-direction: column;
    }

    .menu-content .mobile-menu-left,
    .menu-content .mobile-menu-right,
    .menu-content .mobile-menu-left .menu-card .menu-card__content p {
        width: 100%;
    }

    .menu-content .mobile-menu-left .menu-card .menu-card__content p {
        font-size: 16px;
    }

    .menu-content .mobile-menu-left {
        padding: 20px 20px;
        row-gap: 30px;
    }

    .menu-content .mobile-menu-right {
        padding: 20px 20px;
    }

    .menu-content .mobile-menu-left .menu__left__top h1 {
        font-size: 24px;
        line-height: 28px;
    }

    .menu-content .mobile-menu-left .menu-card {
        height: auto;
    }

    .menu-content .mobile-menu-left .menu-card .menu-card__content {
        padding: 16px 24px;
    }

    .menu-content .mobile-menu-left .menu-card .menu-card__image-wrapper {
        display: none;
    }

    .menu-content .mobile-menu-left .menu__left__top .menu__left__top__titles,
    .menu-content .mobile-menu-left .menu__left__top {
        row-gap: 16px;
    }

    .mobile-menu li a {
        padding: 10px 0px;
    }

    ul.mobile-menu li.language .ComboLingua {
        margin-left: 0px;
    }

    ul.mobile-menu li.language .jam {
        margin: 12px 0px 0px 0px;
    }

    .search-container {
        padding: 126px 0px 0px;
    }

    /* ===========================
     END HEADER STYLE
    =========================== */

    /* =======================================
    FOOTER STYE
======================================= */
    .footer-bottom .footer-logo svg {
        width: 500px;
    }

    .footer-menu {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col {
        border-right: 0;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }

    .footer-links {
        gap: 12px;
    }

    /* =======================================
    END FOOTER STYE
======================================= */
}

@media (max-width: 575px) {

    /* =================================
     NORMAL ALL PAGES
    ================================= */
    .home_banner h1.home_title {
        font-size: 36px;
    }

    .warp .ad td.GRID_DAT_CEL.titleCell a {
        font-size: 15px;
        font-weight: 500;
    }

    .warp .ad td.GRID_DAT_CEL.autoWidth,
    .list_card span.pub-date,
    .list_card span.business_unit,
    .list_card span.location,
    .warp .ad .textr .FORMLABLE,
    .warp .ad .text.job-detail-content li,
    .warp .ad .text.job-detail-content,
    table.FORM.ScTableTitle .DISABLEDFIELD,
    .warp .ad .NoRecordsMessage,
    .warp .ad .FORMLABLE,
    .inner .bt-privacy td.LABLE {
        color: #000;
        font-weight: 400;
        font-size: 15px !important;
        font-family: var(--font-primary) !important;
        line-height: 26.0938px;
        letter-spacing: 0.18px;
    }

    section.content.jobs.job-detail .job-top-inner .adtitle {
        padding: 20px 0px;
    }

    /* =================================
     END NORMAL ALL PAGES
    ================================= */

    .warp .ad .job-top-inner .adtitle h1 *,
    .warp .ad .job-top-inner .adtitle h1,
    .warp .ad h1.home-title,
    section.content .adtitle h1.home-title {
        font-size: 22px;
    }

    .warp .ad .FORMLABLE {
        padding-right: 10px;
    }

    .warp .ad .msinner,
    .warp .ad .inner {
        padding: 10px 0px;
    }

    .inner .bt-privacy td.LABLE {
        padding-left: 0px !important;
    }

    .login-title a {
        padding-left: 5px;
    }

    /* =======================================
     FOOTER STYE
======================================= */
    .footer-lang {
        padding: 60px 0px 40px;
    }

    .footer-col h4 {
        margin: 0px 0px 15px 0px;
    }

    .footer-col li {
        margin-bottom: 5px;
    }

    .footer-bottom .footer-logo {
        display: grid;
        place-items: center;
    }

    .footer-bottom .footer-logo svg {
        width: 240px;
    }

    .footer-menu {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-links {
        justify-content: center;
    }

    .footer-right {
        align-items: center;
    }

    /* =======================================
    END FOOTER STYE
======================================= */
}

@media (max-width: 479px) {
    .home_banner h1.home_title {
        font-size: 36px;
    }

    section.content.myaccount.changepwd .msinner .ContainerButtons,
    section.content.myaccount.changepwd .msinner .recaptcha-container {
        padding-left: 0%;
    }

    section.content.myaccount.myjobalert .inner .col-xs-12 {
        padding: 0px;
    }
}