/* Fonts */

@font-face {
    font-family: apexNew;
    src: url(../fonts/ApexNew-Book.eot);
    src: url(../fonts/ApexNew-Book.eot#iefix) format("embedded-opentype"),url(../fonts/ApexNew-Book.woff2) format("woff2"),url(../fonts/ApexNew-Book.woff) format("woff");
    font-weight: 400;
}
@font-face {
    font-family: apexNewMedium;
    src: url(../fonts/ApexNew-Medium.eot);
    src: url(../fonts/ApexNew-Medium.eot#iefix) format("embedded-opentype"),url(../fonts/ApexNew-Medium.woff2) format("woff2"),url(../fonts/ApexNew-Medium.woff) format("woff");
    font-weight: 400;
}
@font-face {
    font-family: apexNewBold;
    src: url(../fonts/ApexNew-Bold.eot);
    src: url(../fonts/ApexNew-Bold.eot#iefix) format("embedded-opentype"),url(../fonts/ApexNew-Bold.woff2) format("woff2"),url(../fonts/ApexNew-Bold.woff) format("woff");
    font-weight: 600;
}


/* Variables */

 :root {
    /* Colors */
    --primary-dark: #161E61;
    --primary-light: #fff;
    --background-dark: #161E61;
    --background-light: #286AB7;
    --accent: #7B5980;
    /* Grid gaps */
    --gap-small: 30px;
    --gap-medium: 60px;
    --gap-large: 184px;
  }


/* Animations */

@keyframes slideUp {
    from {
        transform: translateY(40px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Wrapper  */

body {
    font-family: apexNew, Arial, sans-serif;
    font-size: 21px;
    line-height: 36px;
    color: var(--primary-dark);
}

#wrapper {
    width:100%;
    padding-bottom:100px;
}

/* Tapography */

.boldText, b {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
}

h1 {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    color: var(--primary-light);
    font-size: 48px;
    line-height: 62px;    
    padding: 0;
    margin-top: 0;
    margin-bottom: 50px;
}

h2, h2:last-child {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    color: var(--primary-dark);
    font-size: 36px;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 30px;
}

h3 {
    font-family: apexNew, Arial, Helvetica, sans-serif;
    color: var(--primary-light);
    font-size: 32px;
    line-height: 42x;
    margin: 0px;
}

h4 {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    color: var(--primary-light);
    font-size: 28px;
    line-height: 30x;
    margin: 0px;
}

h5 {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    color: var(--primary-light);
    font-size: 26px;
    line-height: 32x;
    margin: 0px;
}

h5.text-light {
    color: var(--primary-light);
    margin-bottom: 15px;
}

h5.text-dark {
    color: var(--primary-dark);
    margin-top: 50px;
}

strong, .label, .value {
    font-size: 21px;
    line-height: 32px;    
    margin-bottom: 6px;
}

strong, .label {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
}

.value  {
    margin-bottom: 0px;
    font-family: apexNew, Arial, Helvetica, sans-serif;
}

.value a, .contact a {
    color: var(--primary-light);
    font-family: apexNew, Arial, Helvetica, sans-serif;
}

p {
    font-family: apexNew, Arial, Helvetica, sans-serif;
    font-size: 21px;
    line-height: 32px;    
    margin-bottom: 30px;
}

a {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 21px;
    line-height: 32px;
    transition: all .2s ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

li {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    line-height: 32px;
    font-size: 21px;
    letter-spacing: 0.2px;
    position: relative;
    margin-left: 26px;
    margin-bottom: 12px;
}

li:last-child {
    margin-bottom: 0;
}

main li:before {
    content: '';
    position: absolute;
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: -26px;
    width: 8px;
    height: 8px;
    top: 11px;
    margin-right: 18px;
    background-color: var(--background-dark)
}

/* Buttons */

.button {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    border: none;
    background-color:var(--accent);
    font-size: 21px;
    line-height: 21px;
    border-radius: 4px;
    min-width:221px;
    padding-left:20px;
    padding-right:20px;
    height: 75px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light)!important;
    transition: all .2s ease;
}

.button:hover {
    background-color: var(--background-dark);
    color:#fff;
    text-decoration: none;
}

.button.more {
    background-color: var(--background-light);
}

.button.more:hover {
    background-color: var(--background-dark);
}

.button.more.jobabo-mobile {
    display: none;
}

.button.more.jobabo-mobile.fr {
    font-size: 20px;
}

.whatsappButton {
    background-color: #89a22e;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

/* Header & Hero */

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding:15px 0px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    width: 117px;
}

header h1 {
    font-family: apexNewBold, Arial, Helvetica, sans-serif;
    font-size: 28px;
    line-height: 28px;
    color: var(--primary-dark);
    hyphens: auto;
    opacity:0;
    transition: all .2s ease; 
}

.header-wrap {
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#fixed-header {
    position: fixed;
    top: -117px;
    opacity: 0;
    z-index: 9999;
    padding:10px 0px;
    transition: top 0.3s ease, opacity 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-light);
}

#fixed-header .logo a img {
    width: 117px;
}

#fixed-header h1 {
    font-family: apexNewBold, Arial, sans-serif;
    font-size:28px;
    line-height: 28px;
    hyphens: auto;
    color: var(--primary-dark)
}

#fixed-header.active {
    top: 0px;
    opacity: 1;
}

.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: translateY(-10px);
    animation: slideDown 0.6s ease-out forwards;
}

.banner:is(:hover, :focus-visible, :target, :has(:not(:empty))) {
    animation: slideDown 0.6s ease-out forwards;
}

.banner img {
    display: block;
    width:100%;
    height:auto;
}


/* Layout */

.content {
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding: 0px 20px;
    box-sizing: border-box;
}

section {
    margin-bottom: 60px;
}

section.benefits-wrap {
    margin-bottom: 30px;
}

.grid-2-small-gap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-small);
}

.grid-2-large-gap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-large);
}

.grid-3-medium-gap {
    display: flex;
    gap: var(--gap-medium);
    justify-content: space-between;
}

@media screen and (max-width: 900px) {
    .grid-2-small-gap,.grid-2-large-gap,.grid-3-medium-gap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 40px;
    padding: 40px;
    background-color: var(--background-light);
    color: var(--primary-light)!important;
}

.container a {
    text-decoration: underline;
}

.container a:hover {
    color: var(--primary-light);
}

.contact.standalone {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0px;
}

.contact.contact.standalone .info {
    width: 410px;
}

.contact.standalone img {
    width: 410px!important;
    height: auto!important;
}

@media screen and (max-width: 900px) {
    .contact.standalone {
        flex-direction: column;
    }
    .contact.standalone img {
        width: 100%!important;
    }
    .contact.contact.standalone .info {
        width: 100%;
    }
}


/* Title Section */

section.title-wrap {
    padding: 60px 40px;
    background-color: var(--background-dark);
    margin-top: -125px;
    position: relative;
    z-index: 2;
    transform: translateY(40px);
    animation: slideUp 0.6s ease-out forwards;
}



/* Benefits and Slick Slider Overrides */

#benefits {
    background-color: var(--background-light);
    margin-bottom: 110px;
}

.slick-slider {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.slick-slide {
    padding: 0px 30px;
    display: flex!important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: var(--gap-small);
    color: var(--primary-light);
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

.front, .back {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Hide second p in front */
.front p:nth-of-type(2) {
    display: none;
}

/* Hide first p in back */
.back p:first-of-type {
    display: none;
}

.front img {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.back {
    transform: translateY(100%);
}

.slide.flipped .front {
    opacity: 0;
    pointer-events: none;
}

.slide.flipped .back {
    transform: translateY(0);
}

.slick-slide:hover {
    background-color: var(--background-dark);
}

.slick-slide .text {
    text-align: center;
}

.slick-slide .text b {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 28px;
    color: var(--primary-light);
}

.slick-slide .text p {
    font-family: apexNew, Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 36px;
    color: var(--primary-light);
    margin: 0 auto;
}

.slick-slide .back .text p {
    width: 80%;
}

.slick-prev, .slick-prev:hover, .slick-prev:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23286AB7' stroke-width='1.5' class='bi bi-chevron-left' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E") !important;
}


.slick-next, .slick-next:hover, .slick-next:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23286AB7' stroke-width='1.5' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E") !important;
}



.slick-prev, .slick-next {
    width: 64px;
    height: 64px;
    background-color: white!important;
    background-repeat: no-repeat !important;
    background-size: 20px !important;
    background-position: center !important;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--background-dark)!important;
}

.slick-prev {
    left: -64px;
}

.slick-next {
    right: -65px;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

.slick-prev.slick-disabled, .slick-next.slick-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.slick-dots li {
    margin: 0px 2px;
}

.slick-dots li button:before {
    opacity: 1;
    content:"";
    width:14px;
    height:14px;
    background-color: var(--primary-light);
    border: solid 1px var(--background-light);
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: var(--background-light);
}

.slick-dots {
    bottom: -50px; 
}

/* Contact */

.image img {
    display: block;
    width:100%!important;
    height:auto!important; 
}

.info {
    background-color: var(--background-dark);
    color: var(--primary-light)!important;
    padding:30px;
    text-align: center;
    min-height: 270px;
}

.info p, .info a {
   margin:0px;
   line-height: 40px;
   font-family: apexNew, Arial, Helvetica, sans-serif;
}

.info p b {
    position: relative;
    bottom: -8px;
}

.info a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:16px;
    transition: all .2s ease; 
    line-height: 31px; 
}

.info a:hover {
    color: var(--background-light);
    text-decoration: none;
}

.info a:hover sv * {
    fill: var(--background-light) !important;
}

/* Contact Form */
.formContainer {
    transition: all .2s ease;
    margin-top: 40px; 
}

.hidden {
    opacity: 0;
    height: 0;
    margin-top: 0px;  
}

.thankYouMessage {
    display: none;
}

.thankYouMessage h2 {
    margin-bottom: 40px;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap:30px;
}

.field {
    position: relative;
    width: 100%;
}

.field label {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 12px;
    display: none;
    transition: all .2s ease;
    padding: 0px 10px;
}

.field label.shown {
    display: block;
}

.field input{
    font-family: apexNew,Arial, sans-serif;
    width: 100%;
    height: 56px;
    padding: 20px 30px;
    border-radius: 4px;
    box-sizing: border-box;
    border: none;
    font-size: 18px;
    border: solid 1px var(--background-dark);
}

.field input::placeholder, .field  textarea::placeholder{
    font-family: apexNew,Arial, sans-serif;
}

.field textarea {
    width: 100%;
    height: 120px;
    padding: 20px 30px;
    border-radius: 4px;
    box-sizing: border-box;
    border: none;
    font-size: 18px;
    font-family: apexNew,Arial, sans-serif;
    border: solid 1px var(--background-dark);
}

#contactForm .button {
    background-color: var(--background-light);
    cursor: pointer;
    width: 221px;
}


/* Apply Process Desktop */

.timeline-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: calc(100% - 40px);
    margin: 100px 20px 110px;
}

.timeline-mobile {
    display: none!important;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timeline-step .icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--background-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2; /* Ensures the icon is above the line */
}

.timeline-step.first .icon {
    width: 62px;
    height: 48px;
    border-radius: 0;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="58" height="43.5" viewBox="0 0 58 43.5"><path id="envelope-fill_12_" data-name="envelope-fill (12)" d="M.181,7.637A7.25,7.25,0,0,1,7.25,2h43.5a7.25,7.25,0,0,1,7.069,5.637L29,25.251ZM0,11.777V37.529l21.036-12.9ZM24.509,26.759.692,41.357A7.25,7.25,0,0,0,7.25,45.5h43.5A7.251,7.251,0,0,0,57.3,41.352l-23.817-14.6L29,29.5Zm12.456-2.124L58,37.529V11.777Z" transform="translate(0 -2)" fill="%23286ab7"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.timeline-step.first .label {
    font-size: 18px;
    bottom: 50px !important;
}

.timeline-step.last .icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-image: url(../images/icons/checked.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.timeline-step.last .label {
    font-size: 18px;
    bottom: 60px !important;
    top: auto !important;
}

.timeline-step .label {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: var(--primary-dark);
    position: absolute;
    min-width: 140px;
}

.timeline-step:nth-child(odd) .label {
    top: 40px;
}

.timeline-step:nth-child(even) .label {
    bottom: 30px;
}

.timeline-line {
    width: 88%;
    position: absolute;
    top: 46%;
    left: 6%;
    height: 4px;
    background-color: var(--background-light);
    z-index: 0; /* Ensure the line stays behind the icons */
}

/* Apply Buttons & Tooltip if WhatsApp button is given */
.applyButtonContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
}

.tooltipContent {
    display: none;
    position: absolute;
    bottom: 50px;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 1000;
    flex-direction: column;
    gap: 8px;
}

.mobileTooltipWrapper {
    position: relative;
}

.mobileTooltipWrapper.active .tooltipContent {
    display: flex;
}

@media (min-width: 901px) {
    .mobileTooltipWrapper,
    .mobileSingleButton {
        display: none;
    }

    .desktopButtons {
        display: flex;
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .desktopButtons {
        display: none;
    }

    .mobileTooltipWrapper,
    .mobileSingleButton {
        display: block;
    }

    .tooltipContent {
        display: none;
        position: absolute;
        bottom: 105px;
        right: 0;
        background: white;
        border: 1px solid #ccc;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        padding: 10px;
        z-index: 1000;
        flex-direction: column;
        gap: 8px;
        min-width: 320px;
    }

    .tooltipContent::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 20px solid white;
    }

    .mobileTooltipWrapper {
        position: relative;
    }

    .mobileTooltipWrapper.active .tooltipContent {
        display: flex;
    }

    .tooltipContent .button {
        width: 100% !important;
        margin: 0 !important;
    }

    .mobileSingleButton {
        width: 100%;
    }

    .mobileSingleButton .applyButton {
        width: 100%;
    }

    .tooltipToggle {
        min-width: 320px;
    }

    .footer-sticky .applyButtonContainer {
        justify-content: center;
    }
}

/* Apply Process Mobile */

#timeline-container-mobile {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 3rem;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.timeline-point {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    gap: 50px;
    left: 12px;
    height: 60px;
}

.icon-first {
    width:62px;
    height:48px;
    border-radius: 0;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="58" height="43.5" viewBox="0 0 58 43.5"><path id="envelope-fill_12_" data-name="envelope-fill (12)" d="M.181,7.637A7.25,7.25,0,0,1,7.25,2h43.5a7.25,7.25,0,0,1,7.069,5.637L29,25.251ZM0,11.777V37.529l21.036-12.9ZM24.509,26.759.692,41.357A7.25,7.25,0,0,0,7.25,45.5h43.5A7.251,7.251,0,0,0,57.3,41.352l-23.817-14.6L29,29.5Zm12.456-2.124L58,37.529V11.777Z" transform="translate(0 -2)" fill="%23286ab7"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

}

.icon-last {
    width: 60px;
    height: 60px;
    background-color: transparent;
    background-image: url(../images/icons/checked.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.timeline-point.first, .timeline-point.last {
    position: relative;
    left: -6px;
    padding-bottom:10px;
    gap: 30px;
}

.timeline-point.first .label, .timeline-point.last .label {
    font-family: apexNewMedium, Arial, Helvetica, sans-serif;
}

.timeline-point.first {
    padding-bottom:10px;
}

.timeline-point.last {
    padding-top:40px;
}

.timeline-point.small .dot {
    width: 22px;
    height: 22px;
    background-color: var(--background-light);
    border-radius: 50%;
}

.timeline-point .label {
    width:75%;
    font-size: 21px;
    margin: 0px;
    color: var(--primary-dark);
    font-family: apexNew, Arial, sans-serif;
}

.timeline-line-vertical {
    position: absolute;
    left: 21px;
    top: 65px;
    bottom: 65px;
    width: 4px;
    background-color: var(--background-light);
    z-index: 0;
}

/* Collapsing intermediate steps */
.middle-steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 1000px; /* Large enough to show all steps */
    opacity: 1;
}

.middle-steps-container.collapsed {
    max-height: 0; /* Hide content */
    opacity: 0;
    pointer-events: none;
}

/* Toggle button */
.collapse-toggle {
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.3s ease;
    stroke: var(--background-light);
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.collapse-toggle:before {
    content:"";
    width: 22px;
    height: 22px;
    background-color: var(--background-light);
    border-radius: 50%;
    position: absolute;
    left:12px;
}

.collapse-toggle .chevron-icon {
    transition: transform 0.3s ease;
}

.collapse-toggle[aria-expanded="true"] {
    top: 100%;
    margin-top: 30px;
}

.collapse-toggle[aria-expanded="true"]:before {
    display: none;
}

@media screen and (max-width: 1260px) {
    .timeline-desktop {
        display: none;
    }

    .timeline-mobile {
        display: flex!important;
    }
}


.chevron-icon, .close-icon {
    width:68px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    cursor: pointer;
}

.chevron-icon svg, .close-icon svg {
    width: 36px;
    height: 18px;
}


/* Iframes */

#video, #map {
    position: relative;
    padding-bottom: 56.6%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}

#video iframe, #map iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: all!important;
}

.kununu {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}


/* Modal */
.ui.dimmer {
    background-color: rgba(100, 100, 100, .9);
    z-index: 20000;
}

.ui.modal {
    border-radius: 0px;
}

.ui.modal #map {
    margin: 40px 40px 0px;
}

.ui.modal>.close {
    width:34px;
    height:34px;
    border:solid 2px black;
    border-radius: 100px!important;
    position: absolute;
    top: 24px;
    right: 40px;
    padding:0px;
}

.ui.modal>.close:before, .ui.modal>.close:after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 45%;
    left: 5px;
    transform-origin: center;
}

.ui.modal>.close:before {
    transform: rotate(45deg);
}

.ui.modal>.close:after {
    transform: rotate(-45deg);
}

.ui.modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

#jobabo-modal-desktop, #jobabo-modal-mobile, #formContainer {
    width: 90%;
    height: 90%;
    padding: 0px;
}

#formContainer {
    padding: 40px;
    max-width: 1320px;
    margin: 0 auto;
}

@media only screen and (min-width: 1200px) {
    .ui.modal {
        width: 900px;
        height: auto;
        padding: 40px 0px;
        margin: 0;
    }
}

@media only screen and (max-width: 750px) {
    .ui.modal #map{
        margin: 40px 20px 20px;
    }
    .ui.modal>.close {
        top: 4px;
        right:5px;
    }
}


/* Similar Jobs */

.similarJobs {
    padding-bottom:60px;
}

.similarJobs-wrapper {
    display: flex;
    gap:30px;
    margin-bottom: 60px 
}

@media screen and (max-width: 900px) { 
    .similarJobs-wrapper {
        flex-direction: column;
        margin: 0 -20px 60px;
    }
}

.similarJobs-wrapper .job {
    padding: 20px;
    width: 100%;
    position: relative;
    background-color: var(--primary-light);
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.similarJobs-wrapper .job .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-family: apexNew, Arial, Helvetica, sans-serif;
    color:var(--background-dark);
}

.similarJobs-wrapper .job img {
    width: 100%;
    height: auto;
}

.similarJobs-wrapper .job h3 {
    font-family: apexNew, Arial, Helvetica, sans-serif;
    color:var(--background-dark);
    margin-top:20px;
}

.similarJobs-wrapper .job:hover {
    background-color: var(--background-light);
    text-decoration: none;
}

.similarJobs-wrapper .job:hover h3, .similarJobs-wrapper .job:hover .text {
    color: var(--primary-light);
}

/* Footer */

.footer {
    background-color: var(--background-dark);
    color: var(--primary-light);
    padding: 60px 0px;
}

.footer p {
    font-size:16px;
    line-height: 24px;
}

.footer a {
    font-family: apexNew, Arial, sans-serif;
    color:#fff;
}

.footer a:hover {
    text-decoration: none;
    color: var(--background-light);
}

.footer .col:nth-of-type(2) {
    text-align: center;
}

.footer .social-icons a {
    margin: 0px 40px;
}

.footer .col:nth-of-type(3) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.footer b {
    font-family: apexNewBold,Arial, Helvetica, sans-serif;
}

.footer a svg {
    height: auto;
    width: 40px;
}
.footer a svg > * {
    fill:#fff;
    transition: all .2s ease;
}
.footer a:hover svg > * {
    fill:var(--background-light)
}

/* Sticky Footer */

.footer-sticky {
    width: 100%;
    background-color: var(--primary-light);
    position: fixed;
    bottom: 0;
    z-index: 1000;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    min-height: 72px;
}

.footer-sticky .content {
    height:100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-sticky .content a {
    color: var(--primary-dark);
}

.footer-sticky .content .cta {
    display: flex;
    gap: 40px;
    justify-content: start;
    align-items: center;
}

.footer-sticky .content .cta a {
    display: flex;
    gap: 15px;
    justify-content: start;
    align-items: center;
}

.footer-sticky .content .cta a:hover {
    text-decoration: none;
    color: var(--background-light);
}

.ui.popup.share a {
    margin:5px;
    transition: all .2s ease;
}

.ui.popup.share {
    width:260px;
    margin-bottom:20px;
    margin-top:20px;
}

.ui.popup.share .wrap {
    display: flex!important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ui.popup.share a svg {
    width:30px;
    height:30px;
}

.ui.popup.share a svg > * {
    transition: all .2s ease;
}

.ui.popup.share a svg * {
    fill: var(--background-dark);
}

.ui.popup.share a:hover svg * {
    fill: var(--background-light);
}

#social-icon-popup {
   
    display: none;
}

#follow  {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
#follow .row {
    display: flex;
    gap: 80px;
    justify-content: flex-end;
}

#follow div {
    text-align: right;
}

#follow a svg {
    width: 45px;
    height: 45px;
    transition: all 0.3s;
}

#follow a:hover svg * {
    fill: var(--background-light);
}

.full-width {
    margin: 40px auto 0;
}

.mobile {
    display: none;
}

/* Media Queries */

@media screen and (max-width: 900px) {
    .desktop {
        display: none!important;
    }

    .mobile {
        display: block!important;
    }

    body {
        line-height: 28px;
        font-size: 18px;
    }

    .slick-slide {
        justify-content: center;
    }

    h1 {
        line-height: 40px;
        font-size: 34px;
        margin-bottom: 20px;
    }

    h2 {
        line-height: 32px;
        font-size: 28px;
        margin-bottom: 30px;
    }

    h3 {
        line-height: 31px;
        font-size: 21px;
    }

    .similarJobs-wrapper .job h3 {
        font-size: 28px;
        line-height: 38px;
    }

    h5.text-dark {
        text-align: center;
        font-size: 21px;
    }

    p, li, ul {
        line-height: 28px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    strong, .label, .value, .container a {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    #wrapper {
        padding-bottom: 72px;
    }

    .logo a img {
        width: 90px!important;
    }

    .header-wrap {
        gap: 20px;
    }

    #fixed-header h1 {
        font-size: 24px;
        line-height: 24px;
    }

    .button {
        width: 100%;
    }

    .button.more.jobabo-mobile {
        margin-top: 20px;
        display: flex!important;
        justify-content: center;
        align-items: center;
        gap: 15px;

    }

    .button.more svg {
        width: 30px;
        height: 30px;
    }

    .footer-sticky .button {
        width: 70%;
        height: 52px;
    }

    section {
        margin-bottom: 30px;
    }

    section.title-wrap {
        margin-top: 0px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 30px 20px;
    }

    .contact {
        margin-left: -20px;
        margin-right: -20px;
    }

    #benefits {
        margin-bottom: 90px;
    }

    .slick-slider {
        margin-left: 0;
        margin-right: 0;
    }

    .slick-slide {
        padding:30px 20px;
    }

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

    #video, #map {
        margin-left: -20px;
        margin-right: -20px;
        margin-bottom: 40px;
    }

    .similarJobs {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .footer {
        padding: 40px 0px;
    }

    .footer .grid-3-medium-gap {
        flex-direction: column;
    }

    .cta {
        order: 1;
        display: flex;
        justify-content: center;
        width:100%;
    }

    .cta .social-icons {
        width:100%;
        display: flex;
        justify-content: center;
        gap: 40px;
    }

    .social {
        order: 2;
    }

    .footer .social-icons a {
        margin:0px;
    }

    .adress {
        order: 3;
    }

    .full-width {
        margin-top: 20px;
    }

    .full-width a {
        margin-left: 0px!important;
    }

    .ui.popup.share {
        width:300px;
    }

    .ui.popup.share a.whatsapp {
        display: inline-block;
    }

    #follow {
        flex-direction: row;
        gap: 20px;
    }

    #follow .row {
        gap: 20px;
    }

    #follow .row a svg {
        width:40px;
        height: 40px;
    }


    .footer-sticky .content {
        display: block;
        height:auto;
        text-align: center;
    }

    .footer-sticky .content .cta {
        display: none;
    }

    .footer-sticky .content .button {
        margin: 10px auto;
    }

    .kununu {
        margin-top: 0px;
        gap: 20px;
    }

    .kununu img {
        width: 81px;
    }

    .container {
        gap: 10px;
    }

    .label {
        width:70%;
        hyphens: auto;
    }
}

.grecaptcha-badge {
    display: none !important;
}
