/*section header */
section#header-section .title-container {
    width: 80%;
    height: 25rem;
    position: absolute;
    top: 18rem;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 5rem;
}
section#header-section .title-container .big-title{
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 3rem;
}
section#header-section .title-container .small-title{
    font-size: 40px;
    color: #000000;
    text-align: center;
    display: block;
}

section#header-section .image-banner {
    max-height: 25rem;
}

@media screen and (max-width: 1050px) {
    section#header-section .title-container {
        top: 13rem;
        height: 20rem;
    }

    section#header-section .title-container .big-title{
        font-size: 40px;
    }
    section#header-section .title-container .small-title{
        font-size: 34px;
    }

    section#header-section .image-banner {
        max-height: 18rem;
    }
}

@media screen and (max-width: 900px) {
    section#header-section .title-container {
        top: 12rem;
        height: 20rem;
    }

    section#header-section .title-container .big-title{
        font-size: 32px;
        margin-bottom: 3.5rem;
    }
    section#header-section .title-container .small-title{
        font-size: 26px;
    }
    section#header-section .image-banner {
        max-height: 15rem;
    }
}

@media screen and (max-width: 750px) {
    section#header-section .title-container {
        top: 11rem;
        height: 17rem;
        padding: 4rem;
    }

    section#header-section .title-container .big-title{
        font-size: 26px;
        margin-bottom: 2.5rem;
    }
    section#header-section .title-container .small-title{
        font-size: 20px;
    }
    section#header-section .image-banner {
        max-height: 13rem;
    }
}

@media screen and (max-width: 550px) {
    section#header-section .title-container {
        top: 9rem;
        height: 13rem;
        padding: 3rem;
    }

    section#header-section .title-container .big-title{
        font-size: 20px;
    }
    section#header-section .title-container .small-title{
        font-size: 16px;
    }
    section#header-section .image-banner {
        max-height: 11rem;
    }
}

@media screen and (max-width: 450px) {
    section#header-section .title-container {
        top: 8rem;
        height: 10rem;
        padding: 2rem;
    }

    section#header-section .title-container .big-title{
        font-size: 16px;
        margin-bottom: 2rem;
    }
    section#header-section .title-container .small-title{
        font-size: 12px;
    }
    section#header-section .image-banner {
        max-height: 11rem;
    }
}

@media screen and (max-width: 450px) {
    section#header-section .title-container .big-title{
        font-size: 14px;
    }
    section#header-section .title-container .small-title{
        font-size: 10px;
    }
    section#header-section .image-banner {
        max-height: 9rem;
    }
}

/*Section content */
section#section-content {
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}
section#section-content .content-container {
    width: 85%;
}

.content-row {
    display: flex;
    justify-content: center;
    gap: 0;
}

.container-group-left {
    max-width: 250px;
}

.container-group-right {
    max-width: 210px;
}

section#section-content .content-container .content-group {
    min-height: 8rem;
    text-align: center;
}
section#section-content .content-container .content-group p {
    text-align: left;
}
section#section-content .content-container .title {
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}
section#section-content .content-container .btn-redirect {
    border: solid 1px #8B8B8B;
    border-radius: 15px;
}
section#section-content .content-container .link-to-register {
    color: #000000;
    text-decoration: none;
}
.icon-image {
    width: 64px;
    height: 64px;
}
@media screen and (max-width: 750px) {
    section#section-content {
        margin-top: 10rem;
        padding-bottom: 2rem;
    }
    section#section-content .content-container .col-12 {
        padding-bottom: 2rem;
    }
}
