@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* BANNER */

body {
    overflow-x: hidden;
}

section.careers-banner {
    position: relative;
    background-color: #3e4549 !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 40vh;
    z-index: 3;
}

section.careers-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

section.careers-banner .container h1 {
    position: relative;
    z-index: 20;
    color: #fff;
    padding-top: 3rem;
}

section.careers-banner .bg-overlay {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #34343430;
}

/* PROTAGONIST */

section.careers-protagonist {
    position: relative;
    z-index: 5;
    padding: 6rem 0;
    background: #FFF;
}

@media (width <=  767px) {
    section.careers-protagonist {
        padding: 4rem 0;
    }
}

section.careers-protagonist .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (width <= 1000px) {
    section.careers-protagonist .container {
        flex-direction: column;
    }
}

section.careers-protagonist .container .texts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 50%;
    margin-right: 3rem;
}

@media (width <= 1000px) {
    section.careers-protagonist .container .texts {
        width: 100%;
        margin-right: 0;
        margin-bottom: 3rem;
    }
}

section.careers-protagonist .container .texts h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0a6484;
    margin: 0 !important;
}

section.careers-protagonist .container .texts p {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #424242;
    line-height: 2.25rem;
    margin: 0 0 1rem 0 !important;
    text-align: justify;
}

section.careers-protagonist .container .texts a {
    display: flex;
    padding: 1.25rem;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: #0a6484;
    border: 1px solid #0a6484;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    width: fit-content;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 0.5rem;
}

section.careers-protagonist .container .texts a:hover {
    box-shadow: inset 0 -40px 0 #0a6484;
    color: #fff;
}

section.careers-protagonist .container .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-left: 3rem;
}

@media (width <= 1000px) {
    section.careers-protagonist .container .image {
        justify-content: flex-start;
        width: 100%;
        margin-left: 0;
    }
}

section.careers-protagonist .container .image img {
    position: relative;
    max-width: 100%;
}

section.careers-protagonist .container .image .box {
    position: absolute;
    z-index: -1;
    width: 20rem;
    height: 20rem;
    background: #0a6484;
    bottom: -2rem;
    right: -2rem;
}

/* JOURNEY */

section.careers-journey {
    position: relative;
    z-index: 5;
    padding-bottom: 6rem;
    background: #F8F8F8;
    display: flex;
    flex-direction: column;
}

@media (width <=  767px) {
    section.careers-journey {
        padding-bottom: 4rem;
    }
}

section.careers-journey .title {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6rem 0 4rem 0;
    background: #FFF;
    width: 100%;
}

@media (width <=  767px) {
    section.careers-journey .title {
        padding: 5rem 0 4rem 0;
    }
}

section.careers-journey .title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0a6484;
    margin: 0 !important;
}

section.careers-journey .image {
    position: relative;
    background: #F8F8F8;
    padding: 8rem 0 4rem;
    width: 100%;
}

section.careers-journey .image img.cloud {
    position: absolute;
    z-index: 50;
    top: -1px;
    left: 0;
    width: 100%;
}

section.careers-journey .image .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.careers-journey .image img.journey {
    position: relative;
    transform: translateY(-1px);
    max-width: 75%;
}

@media (max-width: 767px) {
    section.careers-journey .image img.journey {
        max-width: 100%;
    } 
}

section.careers-journey .text {
    position: relative;
    margin-top: 4rem;
    width: 100%;
}

section.careers-journey .text .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.careers-journey .text .container div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

@media (width <=  767px) {
    section.careers-journey .text .container div {
        width: 100%;
    }
}

section.careers-journey .text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #424242;
    line-height: 2.25rem;
    margin: 0 !important;
    text-align: center;
}

/* WAYS */

section.careers-ways {
    position: relative;
    z-index: 5;
    padding: 6rem 0;
    background: #FFF;
    min-height: 58rem;
}

section.careers-ways .left {
    position: relative;
    width: 40%;
}

@media (width <= 1000px) {
    section.careers-ways .left {
        width: 100%;
    }
}

section.careers-ways .left .title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

section.careers-ways .left .title h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0a6484;
    margin: 0 !important;
    text-transform: none !important;
}

section.careers-ways .left .title p {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #424242;
    line-height: 2.25rem;
    margin: 0 0 1rem 0 !important;
    text-align: justify;
}

section.careers-ways .dots {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

section.careers-ways .slick-arrow {
    background: none;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.careers-ways .slick-arrow:hover svg {
    fill: #0a6484;
}

section.careers-ways .slick-arrow:hover svg path {
    fill: #fff;
}

section.careers-ways .slick-arrow:hover svg rect {
    stroke: #0a6484;
}

section.careers-ways .slick-next {
    transform: rotate(180deg);
}

section.careers-ways .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 !important;
    margin: 1rem 0 0 0 !important; 
}

section.careers-ways .slick-dots li {
    transform: scale(0.8);
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.careers-ways .slick-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0a648450;
    border: none;
    color: #ffffff00 !important;
}

section.careers-ways .slick-dots .slick-active button {
    background: #0a6484;
}

section.careers-ways .right {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    padding: 2rem 0;
}

@media (width <= 1000px) {
    section.careers-ways .right {
        position: relative;
        width: 100%;
    }
}

@media (width <= 767px) {
    section.careers-ways .right {
        padding: 0;
    }
}

section.careers-ways .right .cards-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

section.careers-ways .right .cards-slider .slick-list {
    padding: 4rem 0;
    margin: 0 -1rem;
}

@media (width <= 1000px) {
    section.careers-ways .right .cards-slider .slick-list {
        padding: 0 0 2rem 0;
    }
}

section.careers-ways .right .card {
    position: relative;
    width: 20rem;
    height: 45rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #fff;
    border-radius: 10px;
    perspective: 1000px;
    margin: 0 1rem;
}

section.careers-ways .right .card .card-content {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(0deg);
    transition: transform 0.6s;
}

section.careers-ways .right .card:hover .card-content {
    transform: rotateY(180deg);
}

section.careers-ways .right .card .card-front,
section.careers-ways .right .card .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
    border-radius: 10px;
}

section.careers-ways .right .card .card-front {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding: 2.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.careers-ways .right .card .card-front span {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

section.careers-ways .right .card .card-front h2 {
    font-family: 'Inter', sans-serif;
    font-size: 4.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0 !important;
    text-transform: none !important;
}

@media (max-width: 767px) {
    section.careers-ways .right .card .card-front h2 {
        font-size: 4rem;
    }
}

section.careers-ways .right .card .card-front h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin: 0 !important;
    text-transform: none !important;
    text-shadow: 0 0 10px #00000020;
}

@media (max-width: 767px) {
    section.careers-ways .right .card .card-front h3 {
        font-size: 2.75rem;
    }
}

section.careers-ways .right .card .card-back {
    transform: rotateY(180deg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

section.careers-ways .right .card .card-back span {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

section.careers-ways .right .card .card-back h5 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0 !important;
    text-transform: none !important;
    text-shadow: 0 0 10px #00000020;
}

section.careers-ways .right .card .card-back p {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    line-height: 2.25rem;
    margin: 0 0 1rem 0 !important;
}

section.careers-ways .right .card[data-card="1"] .card-front {
    box-shadow: inset 0 -150px 100px #FF9900;
}

section.careers-ways .right .card[data-card="1"] .card-back {
    background: #FF9900;
}

section.careers-ways .right .card[data-card="2"] .card-front {
    box-shadow: inset 0 -150px 100px #53259E;
}

section.careers-ways .right .card[data-card="2"] .card-back {
    background: #53259E;
}

section.careers-ways .right .card[data-card="3"] .card-front {
    box-shadow: inset 0 -150px 100px #5BC6CD;
}

section.careers-ways .right .card[data-card="3"] .card-back {
    background: #5BC6CD;
}

section.careers-ways .right .card[data-card="4"] .card-front {
    box-shadow: inset 0 -150px 100px #D64894;
}

section.careers-ways .right .card[data-card="4"] .card-back {
    background: #D64894;
}

section.careers-ways .right .card[data-card="5"] .card-front {
    box-shadow: inset 0 -150px 100px #D72626;
}

section.careers-ways .right .card[data-card="5"] .card-back {
    background: #D72626;
}

/* FUTURE */

section.careers-future {
    position: relative;
    z-index: 5;
    padding: 6rem 0;
    background: #FFF;
}

@media (width <=  767px) {
    section.careers-future {
        padding: 4rem 0;
    }
}

section.careers-future .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (width <= 1000px) {
    section.careers-future .container {
        flex-direction: column-reverse;
    }
}

section.careers-future .container .texts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 50%;
    margin-left: 3rem;
}

@media (width <= 1000px) {
    section.careers-future .container .texts {
        width: 100%;
        margin-left: 0;
        margin-bottom: 1rem;
    }
}

section.careers-future .container .texts h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #0a6484;
    margin: 0 !important;
}

section.careers-future .container .texts p {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #424242;
    line-height: 2.25rem;
    margin: 0 0 1rem 0 !important;
    text-align: justify;
}

section.careers-future .container .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-right: 3rem;
}

@media (width <= 1000px) {
    section.careers-future .container .image {
        width: 100%;
        margin-right: 0;
    }
}

section.careers-future .container .image img {
    position: relative;
    max-width: 100%;
}

/* CTA */

section.careers-cta {
    position: relative;
    z-index: 5;
    padding: 6rem 0;
    background: #0a6484;
}

@media (width <=  767px) {
    section.careers-cta {
        padding: 4rem 0;
    }
}

section.careers-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.careers-cta .container .texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
    width: 60%;
}

@media (width <= 767px) {
    section.careers-cta .container .texts {
        width: 100%;
    }
}

section.careers-cta .container .texts h3 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 !important;
    text-transform: none !important;
}

section.careers-cta .container .texts a {
    display: flex;
    padding: 1.25rem;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    color: #fff;
    border: 1px solid #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    width: fit-content;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    margin-top: 0.5rem;
}

section.careers-cta .container .texts a:hover {
    box-shadow: inset 0 -40px 0 #fff;
    color: #0a6484;
}