.block_carreer_intro {
    font-size: 1.2rem;
}

.block_carreer_intro .section {
    display: flex;
    align-items: stretch;
}

.block_carreer_intro .blue-background {
    padding: 10rem calc((100% / 106 * 3) + 8rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    height: 100%;
    width: 100%;
}

.block_carreer_intro .blue-background > * {
    z-index: 3;
}

.block_carreer_intro .blue-background > .hexagons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.block_carreer_intro h1.white {
    color: #fff;
}

.block_carreer_intro h1 {
    font-size: calc(1em / 18 * 94);
    text-transform: uppercase;
    line-height: 1;
    font-weight: normal;
    margin: 0;
}

.block_carreer_intro h1 p {
    font: inherit;
}

.block_carreer_intro h1 strong {
    font-size: calc(1em / 94 * 156);
}

.block_carreer_intro .button_wrapper {
    display: flex;
    gap: 1em 1.5em;
    flex-wrap: wrap;
}

.block_carreer_intro .button_wrapper:not(:first-child) {
    margin-top: 10em;
}

.block_carreer_intro .button {
    display: inline-block;
    background-color: #fff;
    color: #002c76;
    padding: 0.5em 2rem;
    line-height: 1;
    font-size: calc(1em / 18 * 35);
    text-decoration: none;
    font-weight: 700;
    min-width: 8em;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.block_carreer_intro .button:hover {
    background-color: #6ab0e2;
    color: #fff;
    transform: scale(1.05);
}

.block_carreer_intro .button:first-child:hover:before {
    transform: translateX(-25%) translateY(1rem) scale(0.9);
}

.block_carreer_intro .button:first-child:before {
    content: url('../../../custom/images/carreer_arrow_1.svg');
    height: 4em;
    width: 2.25em;
    display: block;
    transform: translateX(-25%);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 3rem);
    transition: all 0.3s ease;
    transform-origin: center bottom;
}

.block_carreer_intro .hexagon {
    margin: auto;
    font-size: calc(1em / 18 * 28);
    background-color: #4675ba;
    width: 20em;
    height: 20em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
    line-height: 1.4;
    z-index: 9999;

    -webkit-clip-path: polygon(
        5% 25%,
        5% 75%,
        50% 100%,
        95% 75%,
        95% 25%,
        50% 0%
    );
    clip-path: polygon(5% 25%, 5% 75%, 50% 100%, 95% 75%, 95% 25%, 50% 0%);

    padding: 3vw;

    animation-name: hex_fly;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes hex_fly {
    from {
        transform: translateY(-1rem);
    }
    to {
        transform: translateY(1rem);
    }
}

@media screen and (max-width: 1280px) {
    .block_carreer_intro {
        font-size: calc(0.5rem + 0.5vw);
    }
}

@media screen and (max-width: 1024px) {
    .block_carreer_intro .blue-background {
        padding: 8rem;
    }

    .block_carreer_intro .section {
        display: flex;
        align-items: stretch;
        min-height: 0;
    }
}

@media screen and (max-width: 900px) {
    .block_carreer_intro .blue-background {
        padding: 5rem;
    }
}

@media screen and (max-width: 768px) {
    .block_carreer_intro .blue-background {
        padding: 3rem;
        flex-direction: column;
        gap: 3rem;
        justify-content: center;
        align-items: center;
    }

    .block_carreer_intro .blue-background > .md_12 {
        width: fit-content;
    }

    .block_carreer_intro .button,
    .block_carreer_intro .hexagon {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 450px) {
    .block_carreer_intro .blue-background > .md_12 {
        width: 100%;
    }
}
