body {
    background-image: url(Alianzas.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    font-style: normal;
}
header {
    display: flex;
    justify-content: space-around;
    min-height: 80px;
    background-color: #1D1D1B;
    color: #FFFFFF;
    align-items: center;
    padding: 20px;
    font-weight: 600;
}
.logo {
    display: flex;
    height: 80px;
}
img {
    margin-right: 20px;
}
li {
    display: inline-block;
    text-align: left;
    margin-right: 50px;
}
a {
    display: flex;
    color: #FFFFFF;
    justify-content: center;
    text-decoration: none;
    padding: 20px;
}
a:hover {
    background-color: #1068A7;
    justify-content: center;
    transition: .5s;
}
.menu-barra {
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check {
    display: none;
}
h1 {
    font-size: 50px;
    color: #FFFFFF;
    text-shadow: 0 0 20px #FFFFFF;
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}
h2 {
    font-size: 30px;
    color: #FFFFFF;
    text-shadow: 0 0 20px #FFFFFF;
    text-align: center;
}
.aliados {
    display: flex;
    justify-content: center;
    align-items: center;
}
.aspel {
    display: flex;
    justify-content: center;
    height: 200px;
}
.aspel a:hover {
    background: none;
    padding: 0;
    margin: 0;
}
.contapaqi {
    display: flex;
    justify-content: center;
    height: 130px;
}
.contapaqi a:hover {
    background: none;
    padding: 0;
    margin: 0;
}
.national-soft {
    display: flex;
    justify-content: center;
    height: 150px;
}
.national-soft a:hover {
    background: none;
    padding: 0;
    margin: 0;
}
footer {
    display: flex;
    justify-content: space-around;
    text-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    background-color: #1D1D1B;
    color: #FFFFFF;
    width: 100vw;
}
.company {
    display: block;
}
.company p {
    max-width: 500px;
    margin: 10px auto;
    font-size: 14px;
    font-style: italic;
}
.creator {
    padding: 10px 0;
    text-align: center;
}
.creator p {
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.creator span {
    text-transform: uppercase;
}

/**laptop grande**/
@media screen and (min-width: 1200px) {
    .titulo {
        justify-content: center;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        justify-content: center;
    }
    .aspel {
        height: 160px;
        margin-top: 20px;
    }
    .contapaqi {
        height: 120px;
        margin-top: 20px;
    }
    .national-soft {
        height: 150px;
        margin-top: 20px;
    }
    footer {
        position: absolute;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**laptop chica 01**/
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    header {
        padding: 10px;
    }
    nav ul li a {
        font-size: 12px;
        padding: 10px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        justify-content: center;
    }
    .aspel {
        height: 100px;
        margin-top: 20px;
    }
    .contapaqi {
        height: 80px;
        margin-top: 20px;
    }
    .national-soft {
        height: 100px;
        margin-top: 20px;
    }
    footer {
        position: absolute;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular**/
@media screen and (max-width: 767px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        flex-wrap: wrap;
    }
    .aspel {
        height: 150px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contapaqi {
        height: 90px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .national-soft {
        height: 100px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 97vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}


/**celular grande**/
@media screen and (max-width: 425px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        flex-wrap: wrap;
    }
    .aspel {
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contapaqi {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .national-soft {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular mediano**/
@media screen and (max-width: 375px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        flex-wrap: wrap;
    }
    .aspel {
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contapaqi {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .national-soft {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**celular pequeño**/
@media screen and (max-width: 320px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -1000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        justify-content: center;
        flex-wrap: wrap;
    }
    .aspel {
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .contapaqi {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .national-soft {
        height: 80px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    footer {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 10px;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}

/**tablet-ipad**/
@media screen and (min-width: 768px) and (max-width: 991px) {
    .logo {
        padding: 20px;
        height: 50px;
    }
    .menu-barra {
        display: block;
    }
    header {
        padding: 10px;
    }
    ul {
        position: fixed;
        background-color: #1D1D1B;
        width: 100%;
        height: 90vh;
        top: 80px;
        right: -2000px;
        justify-content: center;
        text-align: center;
        transition: all .5s;
    }
    nav ul li {
        display: block;
        margin: 50px;
        line-height: 30px;
    }
    nav ul li a {
        font-size: 20px;
    }
    #check:checked ~ ul {
        right: 0;
    }
    .titulo {
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    body {
        background-size: cover;
        background-position: center;
    }
    .aliados {
        justify-content: center;
        flex-wrap: wrap;
    }
    .aspel {
        height: 100px;
        margin-bottom: 20px;
    }
    .contapaqi {
        height: 80px;
        margin-bottom: 20px;
    }
    .national-soft {
        height: 80px;
        margin-bottom: 20px;
    }
    footer {
        position: absolute;
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100vw;
    }
    .company {
        margin-top: 0;
        align-items: center;
    }
    .company p {
        font-size: 10px;
        text-align: center;
        width: 250px;
    }
    .creator {
        padding: 10px;
        align-items: center;
    }
    .creator p {
        text-align: center;
        font-size: 10px;
        width: 200px;
    }
}