.container-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 32px 0;
}

.container-title img {
    width: 64px;
    height: 64px;
}

.container-title .title-section {
    font-family: 'Santander Headline';
    font-weight: 400;
    font-size: 48px;
    line-height: 100%;
}

.container-title .desc-section {
    font-family: 'Santander Text';
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #767676;
    margin: 0;
}

@media(max-width: 991px){
    .container-title img {
        width: 40px;
        height: 40px;
    }
    
    .container-title .title-section {
        font-size: 32px;
        padding: 0;
    }

    .container-title .desc-section {
        font-size: 18px;
    }
}