.stc-page .padding {
    padding-left: var(--padding-left);
    padding-right: var(--padding-left);
}

.stc--apply {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    display: flex;
    z-index: 3;
}

.stc--apply a {
    padding: .75rem 0;
    padding-left: var(--padding-left);
    padding-right: var(--padding-left);
    background-color: var(--color-blue);
    color: var(--color-white);
    width: fit-content;
    border-radius: 0 2rem 2rem 0;
}

.stc--apply p {
    margin: auto 0 auto 1rem;
}

.stc--picture {
    width: 100%;
    height: 100vw;
    margin-top: -78px;
}

.stc--title {
    margin-top: .5rem;
}

.stc--title > *,
.stc--title-info *,
.stc--description > *,
.stc--details > *,
.stc--carreers > * {
    grid-column: 1/-1;
}

.stc--title-details {
    margin: 1rem 0 ;
}

.stc--title-details > ul {
    display: flex;
    margin: .3rem 0 0 -.25rem;
}

.stc--title-details li {
    margin-right: .25rem;
}

.stc--title-info {
    border-top: 1px solid var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
    padding: .75rem 0 .5rem;
}

.stc--title-info li {
    margin-bottom: .5em;
}

.stc--description {
    margin: 2rem 0 .75rem;
}

.stc--descritpion-gallery {
    display: flex;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    overflow-y: hidden;
    overflow-x: auto;
    margin-top: 2rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.stc--descritpion-gallery::-webkit-scrollbar {
    display: none;
}

.stc--descritpion-gallery figure {
    min-width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    height: calc(100vw - 1rem);
    scroll-snap-align: center;
    align-self: flex-start;
}

.subjects-block > li:last-of-type > * {
    margin-bottom: 0;
}

.stc--details {
    margin: 1rem 0 2rem;
}

.stc--details > article {
    margin-bottom: 2rem;
    grid-column: 1/-1;
}

.stc--details li {
    margin-bottom: .5em;
}

.stc--carreers {
    margin-bottom: 2rem;
}

.stc--carreers li {
    margin-top: .5em;
}

.stc--related {
    margin-top: 6rem;
    border-top: 1px solid var(--color-blue);
    padding-top: 1rem;
}

.stc--related > h5,
.stc--related > a {
    grid-column: 1/-1;
}

.stc--related > h5 {
    margin-bottom: 1rem;
}

.stc--related > a {
    margin: 3rem 0 6rem;
}



/* TABLET */
@media only screen and (min-width: 720px) {
    .stc--picture {
        height: 50vh;
    }

    .stc--title-info li {
        grid-column: span 3;
        margin-bottom: 1rem;
    }

    .stc--description h4 {
        margin: 2rem auto 3rem;
    }

    .stc--descritpion-gallery figure {
        min-width: 80vw;
        max-width: 80vw;
        height: 50vw;
    }
}


/* DESKTOP */
@media only screen and (min-width: 1024px) {
    .stc--picture {
        height: 70vh;
    }

    .stc--title > h1 {
        grid-column: 1/-4;
    }

    .stc--title-details {
        grid-column: 1/-4;
        margin-top: .5rem;
    }

    .stc--descritpion-gallery figure {
        min-width: 50vw;
        max-width: 50vw;
        height: 40vw;
    }

    .stc--details {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
    }

    .stc--details > article {
        margin-bottom: 4rem;
        grid-column: span 1;
    } 

    .stc--carreers h4 {
        grid-column: 1/4;
        grid-row: 1;
    }

    .stc--carreers div {
        grid-column: 4/-1;
        grid-row: 1;
    }

    .stc--carreers li {
        margin-top: 0;
        margin-bottom: .5em;
    }
}


@media (hover: hover) {

}