* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* GENERAL */
a {
    outline: none!important;
    text-decoration: none;
}
.wrapper {
    width: 100%;
    height: auto;
    background-color: #efefef;
    display: block;
}

/* NAVBAR */
.navBar {
    width: 100%;
    height: 50px;
}
.nav-container {
    width: 100%;
    height: 50px;
    background-color: #28a9e2;
}
.nav-container, .nav-link {
    display: flex;
    align-items: center;
}
.nav-link{
    margin-left: 10px;
}
.nav-link span {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 10px;
}
.nav-link img {
    max-width: 110px;
}

/* Contenedor */
.container1 {
    width: 65%;
    height: calc(100vh - 50px);
    background-color: #fff;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    background-image: url('../images/logo/blk-solo-logo.png');
    background-repeat: no-repeat;
    background-position: center;
}
.container2 {
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.95;
    overflow-y: scroll;
}
.text-container {
    text-align: justify;
}
.text-container div {
    width: 100%;
    padding: 0 0 25px 0;
}
.text-container div h1 {
    font-size: 3rem;
    font-weight: 700;
}
.text-container div ul li {
    padding-left: 20px;
}
.text-container div span {
    font-weight: 600;
}
.text-container div img {
    width: 150px;
    margin-top: 10px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    opacity: 80%;
}