@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.container-jumbotron-subpage {
    padding-top: 10%;
    padding-bottom: 5%;
    background-image: url("/assets/images/bg/bg_subpage.webp");
    background-size: cover;
    background-repeat: no-repeat;
}
.parent-jumbotron-subpage {
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child-text-jumbotron-subpage {
    width: 85%;
}
.img-jumbotron-subpage {
    width: 100%;
}
.text-welcome {
    color: white;
    font-size: 30px;
}
.title-jumbotron-subpage {
    color: white;
    font-size: 28px;
    line-height: 39px;
    font-weight: 700;
    margin-bottom: 35px;
    font-family: "Poppins", sans-serif;
}
.sub-title {
    color: white;
    margin-bottom: 30px;
    font-weight: 300;
}
.text-brand {
    color: #fcd201;
}
.description-jumbotron-subpage {
    color: white;
    font-family: "Poppins", sans-serif;
    margin-top: 10px;
}
@media only screen and (max-width: 575.98px) {
    .container-jumbotron-subpage {
        /* padding-left: 3%; */
        /* padding-right: 3%; */
        padding-top: 25%;
        padding-bottom: 22%;
    }
    .parent-jumbotron-subpage {
        display: grid;
    }
    .child-text-jumbotron-subpage {
        width: auto;
    }
    .title-jumbotron-subpage {
        font-size: 26px;
        margin-bottom: 20px;
        margin-top: 20px;
        line-height: 32px;
    }
    .description-jumbotron-subpage {
        text-align: left;
    }
    .img-jumbotron-subpage {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .container-jumbotron-subpage {
        /* padding-left: 5%; */
        /* padding-right: 3%; */
        padding-top: 15%;
        padding-bottom: 6%;
    }
    .child-text-jumbotron-subpage {
        width: auto;
    }
    .title-jumbotron-subpage {
        font-size: 42px;
    }
    .paragraf-jumbotron-subpage {
        text-align: left;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .container-jumbotron-subpage {
        /* padding-left: 5%; */
        /* padding-right: 3%; */
        padding-top: 15%;
        padding-bottom: 6%;
    }
    .title-jumbotron-subpage {
        font-size: 29px;
    }
}
