main {
    padding: 0 !important;
    margin-top: 96px !important;
}
.content {
    padding: 6rem 2rem;
    max-width: 98rem;
    margin: auto;

    h1 {
        text-align: left;
    }


    h1::after {
        margin-left: 0;
        left: 0;
    }
}

.banner {
    background-image: linear-gradient(30deg, rgb(0 0 0 / .6) 0%, #fff0 50%, #fff0 100%), url(https://cdn.davinci.thinkion.com.ar/dvcdn/upload_images/8e9969f6572edcd3dddd496787f0679c.jpg) !important;
    background-position: center center !important;
    .pink-button {
        background-color: #fddc1f;
        border-color: #fddc1f;
        color: #000;

        &:hover {
            background-color: transparent;
            color: #fddc1f !important;
        }
    }
}

.promotion {
    background-color: #222427;
    margin: 0 auto;

    ul {
        li {
            max-width: 100%;
            width: 100%;

            article {
                color: #fff;
                text-align: left;

                h1 {
                    font-size: 2.2rem;
                    margin: 0;
                    padding: 24px 0 .5rem;
                    position: relative;
                    text-align: left;
                    padding: 0;
                }

                h1::after {
                    display: none;
                }

                p {
                    font-size: 1.4rem;
                    line-height: 1.2em;
                    color: #fff;
                }

                a {
                    font-size: 1.4rem;
                    color: #fff;
                    padding: 1rem 1.6em;
                    display: inline-block;
                    border-radius: 3rem;
                    border: 2px solid #fff;
                    background-color: transparent;
                    cursor: pointer;
                    font-family: "Roboto", sans-serif;
                    font-weight: 700;
                    text-decoration: none !important;
                }
            }
        }
    }
}

.career_list {
    background-color: #f3f3f3;
    padding: 6rem 0;

    section {
        margin: 0 auto;
        max-width: 122rem;
        padding: 0 2rem;
        position: relative;
        width: 100%;

        ul {
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
            justify-content: space-between;

            li {
                display: flex;
                flex-direction: column;
                background: #fff;
                position: relative;
                border-radius: 18px;
                box-shadow: 0 14px 28px 0 rgba(0, 0, 0, .1);
                margin-bottom: 2rem;

                a {
                    padding-bottom: 9rem;
                    height: 100%;
                    color: #4a5565;

                    img {
                        max-width: 100%;
                        width: 100%;
                        border-top-left-radius: 18px;
                        border-top-right-radius: 18px;
                    }

                    article {
                        text-align: center;
                        padding: 3rem 2rem;

                        h2 {
                            color: #000;
                            font-size: 2.6rem;
                            font-family: "Montserrat", sans-serif;
                            margin-top: 2rem;
                            margin-bottom: 1rem;
                            font-weight: 800;
                            line-height: 1.1em;
                        }

                        .pink-button {
                            display: block;
                            position: absolute;
                            bottom: 3rem;
                            left: 50%;
                            transform: translate(-50%, 0);
                            white-space: nowrap;
                            background-color: rgba(0, 0, 0, 0);
                            color: #db0f80 !important;
                            padding: 1rem 2.2em;

                            &:hover {
                                background-color: #db0f80;
                                color: #fff !important;
                            }
                        }

                    }
                }
            }
        }

    }
}

@media screen and (max-width: 629px) {
    .promotion {
        ul {
            li {
                padding: 4rem 2rem;

                article {
                    text-align: center;

                    div {
                        h1 {
                            text-align: center;
                            margin: 0;
                            padding: 24px 0 .5rem;
                        }

                        h1::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 50%;
                            margin-left: -27px;
                            height: 4px;
                            width: 54px;
                            border-top: 4px solid;
                        }
                    }

                    a {
                        margin-top: 2rem;
                    }
                }
            }

            li:nth-child(1) {
                h1::before {
                    border-top-color: #db0f80;
                }
            }

            li:nth-child(2) {
                padding-top: 0;

                h1::before {
                    border-top-color: #564bfd;
                }
            }
        }
    }
}

@media screen and (min-width: 630px) {
    .promotion {
        ul {
            li {
                flex: 0 0 100%;
                text-align: left;
                padding: 2rem;

                article {
                    border-left: 4px solid;
                    padding-left: 2rem;
                    display: flex;
                    align-items: center;

                    div {
                        flex: 1 0;
                    }
                }
            }

            li:nth-child(1) {
                article {
                    border-color: #db0f80;
                }
            }

            li:nth-child(2) {
                padding-bottom: 3rem;
                padding-top: 0;

                article {
                    border-color: #564bfd;
                }
            }
        }
    }
}

@media screen and (min-width: 768px) {
    .career_list {
        section {
            ul {
                li {
                    flex: 0 0 48%;
                    max-width: 48%;
                }
            }
        }
    }
}

@media screen and (min-width: 992px) {

    .content,
    .career_list {
        padding: 8rem 2rem;
    }

    .career_list {
        section {
            ul {
                li {
                    flex: 0 0 32%;
                    max-width: 32%;
                }
            }
        }
    }

    .promotion {
        ul {
            margin: 0 auto;
            max-width: 124rem;
            padding: 0;
            flex-wrap: nowrap;
            display: flex;

            li {
                flex: 1 1 auto;
                padding: 4rem 2rem 5rem 2rem;

                article {
                    height: 100%;

                    div {
                        height: 100%;
                        padding-right: 3rem;
                    }
                }
            }

            /* Resetear los paddings específicos de 768px para que use el padding general de 992px */
            li:nth-child(2) {
                padding: 4rem 2rem 5rem 2rem;
            }
        }
    }
}