:root {
    --color-primary: #142850;
    --color-secondary: #FF3C00;
    --color-text: #2F2F2F;
    --grey-light: #F6F8FC;
    --blocks-margin: 40px;
    --font-family-title: 'Montserrat', sans-serif;

    @media (min-width: 750px) {
        --blocks-margin: 100px;
    }
}

* {
    scroll-margin-top: 100px;
}

/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/open-sans-v44-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v44-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/montserrat-v31-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

button {
    border: none;
    backgorund: none;
    cursor: pointer;
}

html {
    font-size: 62.5%;
}

body {
    line-height: normal;
    -webkit-font-smoothing: antialiased;
    color: var(--color-text);
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
}
@media (max-width: 750px) {
    body {
        font-size: 1.6rem;
    }
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

.container {
    margin: 0 auto;
    max-width: 1240px;

    &.is-thin {
        max-width: 700px;
    }

    &.has-margin-bottom {
        margin-bottom: 120px;

        @media (max-width: 750px) {
            margin-bottom: 100px;
        }
    }
}

.section {
    padding: 40px 20px;

    &.has-bg-grey {
        background-color: var(--grey-light);
    }
}

h1, h2, h3, h4 {
    display: flex;
    align-items: center;
    gap: 20px;
    text-wrap: balance;

    &.has-text-align-center {
        justify-content: center;
    }
}

h1 {
    font-size: 3.4rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-family-title);
    line-height: normal;
}
h2 {
    justify-content: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-family-title);
    line-height: normal;
    text-align: center;

    + p {
        margin-top: 20px;
    }

    &.has-bars {
        gap: 60px;

        &:before, &:after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #DEE3ED;
        }

        @media (max-width: 750px) {
            gap: 17px;
        }
    }
}
h3, .title-3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-family-title);
    line-height: normal;
}
h4, .title-4 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-family-title);
    line-height: normal;

    &:not(:last-child) {
        margin-bottom: 20px;
    }
}
.title-item {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-family-title);
    line-height: normal;

    &:not(:last-child) {
        margin-bottom: 20px;
    }
}

.has-text-align-center {
    text-align: center;
}
.has-text-dark {
    color: var(--color-text);
}

.flex {
    flex: 1;
}

@media (min-width: 750px) {
    .section {
        padding: 120px 80px;
        &.has-bg-grey {
            padding-top: 100px;
            padding-bottom: 100px;
        }
    }

    h1, h2, h3, h4 {
        gap: 30px;
    }

    h1 {
        font-size: 5.4rem;
    }
    h2, .title-2, .title-2-desktop.title-2-desktop {
        font-size: 4.4rem;
    }
    h3, .title-3, .title-3-desktop.title-3-desktop {
        font-size: 3.2rem;
        font-weight: 600;
    }
    h4, .title-4, .title-4-desktop.title-4-desktop {
        font-size: 2.4rem;
    }
    .title-item {
        font-size: 2.8rem;
    }
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

    &.is-centered {
        justify-content: center;
    }

    &:not(:first-child) {
        margin-top: 40px;
    }
}
.button {
    position: relative;
    padding: 12px 25px;
    font-family: var(--font-family-title);
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color .15s;

    @media (min-width: 750px) {
        font-size: 2rem;
        padding: 15px 30px;
    }
}
.button.is-secondary {
    background-color: var(--color-secondary);
    color: #FFF;

    &:hover {
        background-color: #E53600;
    }
}
.button.is-outline-secondary {
    color: var(--color-secondary);
    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        border: 2px solid var(--color-secondary);
    }

    &:hover {
        background-color: var(--grey-light);
    }
}

.link {
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    
    &:hover {
        text-decoration: underline;
        font-weight: bold;
    }
}

.navbar {
    display: flex;
    height: 80px;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background-color: var(--color-secondary);
    z-index: 8000;
}
.navbar-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 30px;
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    gap: 11px;

    i {
        width: 44px;
        height: 4px;
        background-color: #fff;
        border-radius: 10px;
        transition: transform .15s ease-in-out;
    }
}
.navbar-burger.is-active {
    i:first-child {
        transform: translateY(15px) rotate(45deg);
    }
    i:last-child {
        transform: translateY(-15px) rotate(-45deg);
    }
    i:nth-child(2) {
        transform: scale(0);
    }
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;

    img {
        width: 80px;
        height: 80px;
    }
}

.navbar-menu ul {
    list-style-type: none;
    text-align: center;
    margin: 0;
    padding: 0;
}
.navbar-menu a {
    position: relative;
    display: inline-block;
    padding: .3em;
    font-size: 3.2rem;
    color: #FFF;
    font-weight: 600;
    text-decoration: none;

    &:hover:after, &.is-active:after {
        transform: none;
        transform-origin: top left;
    }

    &:after {
        content: '';
        position: absolute;
        bottom: .2em;
        left: .3em;
        right: .3em;
        height: 2px;
        background-color: #fff;
        transform: scaleX(0);
        transition: transform .15s ease-in-out;
        transform-origin: top right;
    }
}

@media (max-width: 960px) {
    .navbar-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-secondary);
        z-index: 5000;
        transform: translateX(-100%);
        transition: transform .15s ease-in-out;
    }
    .navbar-menu.is-active {
        transform: none;
        transition: transform .2s ease-out;
    }
}

@media (min-width: 961px) {
    .navbar {
        justify-content: center;
        padding: 0 20px;
    }
    .navbar-logo {
        margin-right: 60px;
    }
    .navbar-burger {
        display: none;
    }
    .navbar-menu {
        flex: 1;
        display: flex;
        max-width: 1020px;

        ul {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;

            a {
                padding: 20px;
                line-height: 1;

                &:after {
                    left: 20px;
                    right: 20px;
                    bottom: 10px;
                }
            }
        }
    }
}

.pagehead {
    padding-bottom: 100px;

    .buttons {
        margin-top: 40px;
    }

    + .section:not(.has-bg-grey) {
        padding-top: 0;
    }
    .title-4 {
        margin-top: 40px;
        justify-content: flex-start;

        @media (max-width: 750px) {
            margin-top: 20px;
        }
    }
}
.pagehead-image {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;

    img {
        width: 100%;
    }
}
.pagehead-body {
    p:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (min-width: 960px) {
    .pagehead {
        padding-top: 150px;
        padding-bottom: 150px;
    }

    .pagehead-container {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto 1fr;
        grid-column-gap: 60px;
        grid-row-gap: 40px;
    }
    .pagehead-image {
        grid-row-end: span 2;
        max-width: 38vw;
        align-self: flex-start;
        margin: 0;

        img {
            width: auto;
        }
    }
}

.threecols, .twocols {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;

    &:not(:first-child) {
        margin-top: var(--blocks-margin);
    }
    &:not(:last-child) {
        margin-bottom: var(--blocks-margin);
    }

    @media (min-width: 1380px) {
        &.has-large-gap {
            grid-gap: 80px;
        }
        &.has-larger-gap {
            grid-row-gap: 80px;
            grid-column-gap: 100px;
        }
    }
}

.twocols {
    @media (min-width: 980px) {
        grid-template-columns: 1fr 1fr;
    }
}

.threecols {
    @media (min-width: 1180px) {
        grid-template-columns: 1fr 1fr 1fr;
    }

    @media (min-width: 1440px) {
        &.is-item-grid {
            grid-column-gap: 50px;
            grid-row-gap: 80px;
        }
    }
}

.card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 0 10px 0 #DEE3ED;

    @media (min-width: 750px) {
        padding: 30px;
    }
}

.cardimg {
    border-radius: 30px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 0 10px 0 #DEE3ED;
}
.cardimg-image {
    img {
        aspect-ratio: 2;
        object-fit: cover;
        width: 100%;
    }
}
.cardimg-body {
    padding: 20px 20px 30px 20px;

    h3 {
        margin-bottom: 10px;
    }
    p:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media (min-width: 1240px) {
    .cardimg {
        display: grid;
        grid-template-columns: 20fr 38fr;
    }
    .cardimg-image {
        img {
            aspect-ratio: auto;
            height: 100%;
        }
    }
    .cardimg-body {
        display: flex;
        flex-direction: column;
        padding: 40px 20px 30px 30px;
    }
}

.homecard-content {
    margin-top: 40px;
    padding-bottom: 20px;

    h4 {
        font-size: 2rem;
        margin-bottom: 0 !important;
        color: var(--color-text);
        font-weight: bold;

        &:not(:first-child) {
            margin-top: 20px;
        }
    }

    @media (min-width: 750px) {
        h4 {
            font-size: 2.4rem;
            margin-bottom: 5px !important;

            &:not(:first-child) {
                margin-top: 40px;
            }
        }
    }
}

.clientitem {
    max-width: 280px;
    justify-self: center;
}
.clientitem-image {
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #DEE3ED;
    background-color: #fff;
    overflow: hidden;
}
.clientitem-body {
    h4 {
        color: var(--color-text);
    }
}

.contactinfos {
    margin-top: 20px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-gap: 60px;
    grid-template-columns: 1fr;

    h3, p {
        &:not(:last-child) {
            margin-bottom: 20px;
        }
    }
}
.contactinfos-illu {
    width: 240px;
    margin: 0 auto 40px auto;
}
.contactinfos-coord {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;

    &:hover {
        color: var(--color-secondary);
    }

    img {
        width: 30px;
        height: 30px;
    }

    &:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media (min-width: 920px) {
    .contactinfos {
        margin-top: 80px;
        max-width: 900px;
        grid-template-columns: 1fr 1fr;
        grid-gap: 100px;

        > div:first-child {
            grid-column: 2;
        }
        > div:last-child {
            grid-column: 1;
            grid-row: 1;
        }

        .buttons {
            margin-top: 60px;
            justify-content: flex-start;
        }
    }
    .contactinfos-illu {
        width: 100%;
        margin-bottom: 45px;
    }
    .contactinfos-coord {
        font-size: 2.4rem;

        img {
            width: 40px;
            height: 40px;
        }
    }
}

.contactsection {
    @media (max-width: 749px) {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.footer-logo {
    display: none;
}

.footer-menu {
    background: linear-gradient(80deg, #112345 35.73%, #142850 67.55%);

    ul {
        padding: 0;
        margin: 0 0 40px 0;
        list-style-type: none;

        a {
            color: #F6F8FC;
            font-size: 1.4rem;
            line-height: 2.1;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }
}
.footer-menu-title {
    display: inline-block;
    color: #FFF;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;

    &:hover {
        text-decoration: underline;
    }

    &:not(:last-child) {
        margin-bottom: 10px;
    }
}

@media (min-width: 900px) {
    .footer-logo {
        display: block;
        margin-top: -25px;
    }
    .footer-menu-cols {
        max-width: 900px;
        display: flex;
        justify-content: space-between;

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

.footer-bottom {
    padding-top: 5px;
    padding-bottom: 8px;
    background-color: var(--color-secondary);

    ul {
        padding: 0;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        list-style-type: none;
        max-width: 900px;

        a {
            color: #FFF;
            font-size: 1.4rem;
            text-decoration: none;
            
            &:hover {
                text-decoration: underline;
            }
        }
    }

    @media (min-width: 480px) {
        ul {
            justify-content: flex-end;
            gap: 50px;
        }
    }
}

.content {
    h2:not(:last-child) {
        margin-bottom: 30px;
    }
    p:not(:last-child) {
        margin-bottom: 20px;
    }
    ul:not([class]) {
        padding-left: 30px;
    }
}

.serviceitems {
    margin: 80px 0;
    padding: 0;
    list-style-type: none;
}

.serviceitem {
    position: relative;

    &:not(:last-child) {
        margin-bottom: 80px;
    }
}
.serviceitem-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: auto;
}
.serviceitem-title, .serviceitem-subtitle {
    padding-left: 80px;
}
.serviceitem-title {
    margin-bottom: 5px;
}
.serviceitem-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

@media (min-width: 1240px) {
    .serviceitems {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 140px;
        grid-row-gap: 120px;
        margin-top: 120px;
        margin-bottom: 150px;
    }
    .serviceitem-icon {
        width: 100px;
    }
    .serviceitem-title, .serviceitem-subtitle, .serviceitem-content {
        padding-left: 130px;
    }
}

.formationhead {
    h1 {
        margin-bottom: 20px;
    }
}
.formationhead-right {
    padding: 40px 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 60px;
    background-color: var(--grey-light);

    h1 {
        color: var(--color-text);
    }
}

@media (min-width: 750px) {
    .formationhead-right {
        margin-left: -80px;
        margin-right: -80px;
        padding: 40px 80px;
    }
}

@media (min-width: 1200px) {
    .formationhead {
        display: flex;
        align-items: flex-start;
        gap: 100px;

        h1 {
            margin-bottom: 30px;
        }
    }
    .formationhead-right {
        width: 500px;
        padding: 30px 40px 24px 40px;
        flex-shrink: 0;
        margin: 0;
        border-radius: 30px;
    }
}

.attributes {
    list-style-type: none;
    padding: 0;
}
.attribute {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-text);
    font-size: 1.6rem;
    font-weight: 700;

    &:not(:last-child) {
        margin-bottom: 30px;
    }
}
.attribute-icon {
    width: 30px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 750px) {
    .attribute {
        gap: 30px;
        font-size: 2.4rem;
        font-weight: 600;
    }
}

.page-content {
    margin-bottom: 100px;

    h1 {
        margin-bottom: 40px;
    }

    .title-4 {
        text-align: left;
        justify-content: flex-start;
        color: var(--color-text);

        &:not(:first-child) {
            margin-top: 60px;
            @media (max-width: 750px) {
                margin-top: 40px;
            }
        }
        &:not(:last-child) {
            margin-bottom: 10px;
        }
    }
    p + ul {
        margin-top: -20px;
    }

    @media (max-width: 750px) {
        margin-bottom: 80px;
    }
}
.page-wrapper {
    @media (min-width: 750px) {
        padding-top: 150px;
    }
}

.clientcard {
    .title-item:not(:last-child) {
        margin-bottom: 5px;
    }
    .title-4 {
        color: var(--color-text);
    }
    .clientitem-image {
        width: 100px;
        margin: 10px auto 40px auto;
        background-color: var(--grey-light);
        border: none;

        @media (min-width: 750px) {
            width: 150px;
            margin-top: 0;
        }
    }
}

.contact-cols {
    margin-top: 20px;
    margin-bottom: 100px;
}
.contact-form {
    margin: 60px 0 100px 0;
}

@media (min-width: 960px) {
    .contact-cols {
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        grid-gap: 40px;
    }
    .contact-text {
        max-width: 400px;
    }
    .contact-form {
        margin: 0;
        grid-row-end: span 2;

        textarea.form-input {
            height: 300px;
        }
    }
    .contact-coords {
        grid-column: 1;
        grid-row: 2;
    }
}

.form-field {
    margin-bottom: 40px;
    
    &.has-error {
        .form-label {
            color: #F00;
        }
        .form-input {
            border-color: #F00;
        }
    }
}
.form-error {
    color: #F00;
    font-size: 1.4rem;
    padding-left: 10px;
}
.form-success {
    margin-bottom: 40px;
    color: #6fa308;
}
.form-label {
    display: block;
    padding-left: 10px;
    margin-bottom: 5px;
    color: var(--color-text);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    .required {
        color: var(--color-secondary);
    }
}
.form-input {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #DEE3ED;
    background: var(--grey-light);
    color: var(--color-text);
    font-size: 1.6rem;
    font-weight: 400;

    &:focus {
        outline: none;
        border-color: var(--color-secondary);
    }
}

@media (min-width: 750px) {
    .form-label {
        font-size: 1.8rem;
    }
    .form-field {
        margin-bottom: 50px;
    }
    .form-input {
        font-size: 1.8rem;
    }
}

.homeinterface {
    margin: 0 auto;
    max-width: 1010px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;

    h2 {
        text-align: left;
    }
}
.homeinterface-image {
    img {
        display: block;
        width: 100%;
    }
}

@media (min-width: 960px) {
    .homeinterface {
        grid-template-columns: 43fr 54fr;
        grid-column-gap: 40px;
    }
    .homeinterface-image {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
}

.homefil {
    position: relative;
    max-width: 320px;
    margin: 40px auto;
    padding: 0;
    height: 1240px;
    background: url(../images/fil-mobile.svg) no-repeat top left;
    list-style-type: none;
    counter-reset: fil;

    li {
        position: absolute;
        padding: 30px 16px 25px 26px;
        border-radius: 30px;
        background: #FFF;
        box-shadow: 0 0 10px 0 #DEE3ED;
        counter-increment: fil;


        &:nth-child(1) {
            top: 50px;
            left: 40px;
            width: 280px;
        }
        &:nth-child(2) {
            top: 350px;
            left: 50px;
            width: 260px;
        }
        &:nth-child(3) {
            top: 650px;
            left: -3px;
            width: 327px;
        }
        &:nth-child(4) {
            top: 850px;
            left: 90px;
            width: 222px;

            .title-4:before {
                color: #8E5D95;
            }
        }
        &:nth-child(5) {
            top: 1048px;
            left: 50px;
            width: 270px;

            .title-4:before {
                color: #FF3C00;
            }
        }

        .title-4 {
            position: relative;
            margin-bottom: 10px;
            padding-left: 34px;

            &:before {
                content: counter(fil, decimal-leading-zero);
                position: absolute;
                top: 0;
                left: 0;
                color: #5E6AD2;
            }
        }
    }

    @media (min-width: 750px) {
        li {
            &:nth-child(1) {
                width: 330px;
            }
            &:nth-child(2) {
                width: 320px;
            }
            &:nth-child(3) {
                width: 387px;
            }
            &:nth-child(4) {
                width: 250px;
            }
            &:nth-child(5) {
                width: 310px;
            }

            .title-4 {
                padding-left: 42px;
            }
        }
    }

    @media (min-width: 1180px) {
        margin: 100px 0 50px 0;
        aspect-ratio: 124/45;
        width: 100%;
        max-width: none;
        height: auto;
        background-image: url(../images/fil-desktop.svg);
        background-position: center;
        background-size: 100%;

        li {
            transform: translate(-50%, -50%);

            &:nth-child(1) {
                left: 13%;
                top: 20%;
            }
            &:nth-child(2) {
                left: 26%;
                top: 76%;
            }
            &:nth-child(3) {
                left: 51%;
                top: 23%;
            }
            &:nth-child(4) {
                left: 74%;
                top: 79%;
            }
            &:nth-child(5) {
                left: 87%;
                top: 16%;
            }
        }
    }
}

.breadcrumb {
    padding: 8px 0;
    background-color: var(--grey-light);

    ol {
        margin: 0 auto;
        padding: 0 65px;
        display: flex;
        align-items: center;
        list-style-type: none;
        max-width: 1280px;
        gap: 37px;

        li {
            position: relative;

            &:not(:last-child) {
                &:after {
                    content: '/';
                    position: absolute;
                    right: -18px;
                    transform: translateX(50%);
                }
            }
        }

        a {
            color: var(--color-secondary);
            text-decoration: none;
            
            &:hover {
                color: #000;
            }
        }
    }

    @media (max-width: 750px) {
        display: none;
    }
}

.backbuttonmobile {
    padding: 20px 20px 0 20px;

    a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--color-secondary);
        font-size: 2rem;
        font-weight: 600;
        text-decoration: none;
        line-height: 1;

        &:before {
            content: '';
            width: 40px;
            height: 40px;
            background: url(../images/back-arrow-circle.svg);
        }
    }

    @media (min-width: 751px) {
        display: none;
    }
}

.popup {
    padding: 0 5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.70);
    transition: opacity .25s;

    .form {
        margin-top: 40px;
    }

    &[aria-hidden='true'] {
        visibility: hidden;
        opacity: 0;
        transition: opacity .1s;

        .popup-inner {
            transform: scale(.96);
        }
    }
}
.popup-inner {
    position: relative;
    border-radius: 8px;
    background: #FFF;
    transition: transform .25s ease-out;
    max-width: 800px;
}
.popup-inner-body {
    padding: 70px 15px 10px 15px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: url(../images/close-button.svg) #FFF;
    border-radius: 50%;
}

@media (min-width: 750px) {
    .popup-inner-body {
        padding: 80px 100px;
    }
}