* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Sofia Sans Extra Condensed", sans-serif;
}
Clear fix hack .clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
header,
footer {
    clear: both;
}
/******************************************
/* HEADER
/*******************************************/
header{
    display: flex; 
    align-items: center;
    justify-content: space-between;
    height: auto; 
    width: 100%;
    background: rgb(95, 107, 126);
}
header a{ 
    font-size: 12px;
    text-decoration: none;
    margin-left: 10px; 
    font-size: 18px;
    color: white; 
}
header button{
     width: 100px; 
     margin-right: 10px; 
     height: 30px; 
     border-radius: 10%;
     font-size: 18px; 
     color: rgb(95, 107, 126);
     background: white;
}
/******************************************
/* MAIN CONTENT
/*******************************************/
main{
    height: auto;  
    padding: 50px ; 
    background: rgb(95, 107, 126); 
}
main section{
    width: 100%; 
    display: block;
}

main h1{
    text-align: center;   
    width: 100%;
    padding: 20px; 
    font-size: 60px;
    color: white; 
}
main h4{
    width: 80%; 
    padding: 30px;
    margin-left: 6rem;
    font-size: 25px;
    color: white; 
}

main img{
    width: 5rem; 
    margin: 10px 40%; 
}
main span{
    text-align: center;
    display: block;  
    font-size: 1rem;
    color: rgb(57, 59, 71); 
    margin: 50px 5px; 
}
/******************************************
/* SECTION 1
/*******************************************/

.secUno{
    height: auto;  
    padding: 30px 50px; 
    text-align: center;
}

.secUno h2{
    font-size: 40px; 
    text-align: center;
    margin-top: 30px 
}

.secUno p{
    font-size: 25px;
    display: block; 
    margin: 0 auto; 
    font-weight: 350;
    width: 60%; 
}
/******************************************
/*SECTION 2
/*******************************************/

.secDos{
     height: auto; 
    display: flex; 
    background: rgb(215, 218, 222);
}
.secDos .dosDos{
    flex: 1; 
    margin: 40px; 
}
.blankbox-1{
    margin: 30px; 
    background: rgb(95, 107, 126);
}
.dosDos h3{
    text-align: center;
    font-size: 24px;
    margin: 0; 
}
.dosDos p{
    margin: 5px;
    font-size: 24px; 
}
.dosDos ul{
    border: 2px solid rgb(150, 147, 147); 
    list-style: none;
    text-align: center;
    font-size: 24px;
    margin: 40px 110px ; 
    width: 180px; 
}
.dosDos li{
    margin-top: 5px;  
}
/******************************************
/* SECTION 3
/*******************************************/

.secTres{
    height: auto;  
    align-items: center;
}
.tresUno{
    /* margin: 15px;  */
    padding: 5rem; 
}
.tresDos{ 
    padding: 0 50px; 
}
.tresDos h2{
    font-size: 40px; 
    text-align: center;
    margin: 0; 
}
.tresDos p{
    font-size: 24px; 
    padding: 10px; 
    text-align: center;
}
.tresDos ul{
    list-style: none;
    text-align: center;
    font-size: 24px;
    margin: 40px 40%;
    width: 180px; 
}
.tresDos li{
    border: 1px solid rgb(150, 147, 147); 
    font-size: 24px;
}
/******************************************
/* FOOTER
/*******************************************/

footer{
    height: auto; 
    column-gap: 100px;
    background: rgb(24, 29, 37);
    padding: 10px; 
}
.oneFoot{
    margin-top: 10px; 
    display: flex; 
}
.twoFoot{
    flex: 1; 
     color: white; 
     line-height: 1.5; 
}
.twoFoot a{
    color: white; 
    font-style: normal;
    text-decoration: none;
    display: block;
    text-align: right;
}
.twoFoot p{
    text-align: right;
    font-weight: bold;
}
.footEater{
    display: block; 
    width: 80px; 
    margin: 2px 10px; 
    word-spacing: 10px;
}
.fourFoot{
    border-top: 2px solid white; 
    color: white; 
    padding: 10px; 
    display: flex; 
    align-items: center;
    font-weight: bold;
}
.fourFoot img{
    margin-left: auto;   
}

/* ========================================
   MEDIA QUERY — 1024px
   Small Laptop
======================================== */

@media screen and (max-width: 1024px) {

    header {
        padding: 15px 25px;
    }

    main {
        padding: 40px 30px;
    }

    main h1 {
        font-size: 50px;
    }

    main h4 {
        width: 90%;
        margin: 0 auto;
        padding: 25px;
    }

    .secUno p {
        width: 75%;
    }

    .secDos {
        gap: 20px;
        padding: 20px;
    }

    .secDos .dosDos {
        margin: 25px 10px;
    }

    .dosDos ul {
        margin: 30px auto;
    }

    .tresUno {
        padding: 4rem 2rem;
    }

    .tresDos ul {
        margin: 30px auto;
    }

    footer {
        padding: 15px;
    }
}


/* ========================================
   MEDIA QUERY — 768px
   Tablet
======================================== */

@media screen and (max-width: 768px) {

    /* ---------------- HEADER ---------------- */

    header {
        background: rgb(95, 107, 126);
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    header nav {
        display: flex;
        gap: 20px;
    }

    header a {
        color: white;
    }

    header button {
        background: white;
        color: rgb(95, 107, 126);
    }


    /* ---------------- MAIN ---------------- */

    main {
        background: rgb(95, 107, 126);
        padding: 40px 25px;
    }

    main h1 {
        font-size: 45px;
        padding: 15px;
        color: white;
    }

    main h4 {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
        font-size: 22px;
        text-align: center;
        color: white;
    }

    main img {
        display: block;
        margin: 20px auto;
    }


    /* ---------------- SECTION UNO ---------------- */

    .secUno {
        background: white;
        color: black;
    }

    .secUno h2,
    .secUno p {
        color: black;
    }

    .secUno p {
        width: 80%;
    }


    /* ---------------- SECTION DOS ---------------- */

    .secDos {
        background: rgb(215, 218, 222);
        flex-direction: column;
        padding: 30px;
    }

    .secDos .dosDos {
        width: 100%;
        margin: 20px 0;
    }

    .dosDos h3,
    .dosDos p,
    .dosDos li {
        color: black;
    }

    .blankbox-1 {
    background: black;
    width: 80%;
    height: 120px;
    min-height: 0;
    margin: 20px auto;
}

    .dosDos ul {
        margin: 30px auto;
    }


    /* ---------------- SECTION TRES ---------------- */

    .secTres {
        background: white;
        color: black;
    }

    .tresUno {
        padding: 4rem 2rem;
    }

    .tresDos {
        padding: 0 25px;
    }

    .tresDos h2,
    .tresDos p,
    .tresDos li {
        color: black;
    }

    .tresDos ul {
        margin: 30px auto;
    }


    /* ---------------- FOOTER ---------------- */

    footer {
        background: rgb(24, 29, 37);
    }

    .oneFoot {
        flex-direction: column;
        gap: 30px;
    }

    .twoFoot {
        width: 100%;
        color: white;
    }

    .twoFoot p,
    .twoFoot a {
        color: white;
        text-align: left;
    }

    .fourFoot {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        color: white;
    }

    .fourFoot img {
        margin-left: 0;
    }
}



/* ========================================
   MEDIA QUERY — 600px
   Mobile
======================================== */

@media screen and (max-width: 600px) {

    /* ---------------- HEADER ---------------- */

    header {
        background: rgb(95, 107, 126);
        padding: 15px;
    }

    /* Hide navigation on mobile */
    header nav {
        display: none;
    }

    header button {
        background: white;
        color: rgb(95, 107, 126);
    }


    /* ---------------- MAIN ---------------- */

    main {
        background: rgb(95, 107, 126);
        padding: 30px 15px;
    }

    main h1 {
        font-size: 36px;
        padding: 10px;
    }

    main h4 {
        width: 100%;
        margin: 0;
        padding: 15px 5px;
        font-size: 19px;
        text-align: center;
    }

    main img {
        max-width: 100%;
        height: auto;
        margin: 20px auto;
    }

    main span {
        margin: 30px 5px;
    }


    /* ---------------- SECTION UNO ---------------- */

    .secUno {
        background: white;
        color: black;
        padding: 40px 20px;
    }

    .secUno h2,
    .secUno p {
        color: black;
    }

    .secUno h2 {
        font-size: 32px;
    }

    .secUno p {
        width: 100%;
        font-size: 20px;
    }


    /* ---------------- SECTION DOS ---------------- */

    .secDos {
        background: rgb(215, 218, 222);
        padding: 25px 15px;
    }

    .secDos .dosDos {
        width: 100%;
        margin: 15px 0;
    }

    .dosDos h3,
    .dosDos p,
    .dosDos li {
        color: white;
    }

    .dosDos p {
        font-size: 20px;
    }

    .blankbox-1 {
        display: none; 
        margin: 20px 0;
        min-height: 130px;
        width: 100%;
        height: 100px;
        margin: 15px auto;
    }

    .dosDos ul {
        width: 160px;
        margin: 25px auto;
        font-size: 20px;
    }


    /* ---------------- SECTION TRES ---------------- */

    .secTres {
        background: white;
        color: black;
    }

    .tresUno {
        padding: 3rem 20px;
    }

    .tresDos {
        padding: 0;
    }

    .tresDos h2 {
        font-size: 32px;
        color: black;
    }

    .tresDos p {
        font-size: 20px;
        color: black;
    }

    .tresDos li {
        color: black;
    }

    .tresDos ul {
        width: 160px;
        margin: 25px auto;
    }


    /* ---------------- FOOTER ---------------- */

    footer {
        background: rgb(24, 29, 37);
        padding: 20px;
    }

    .oneFoot {
        flex-direction: column;
    }

    .twoFoot {
        width: 100%;
        color: white;
    }

    .twoFoot p,
    .twoFoot a {
        color: white;
        text-align: left;
    }

    .footEater {
        width: 100%;
        margin: 15px 0;
    }

    .fourFoot {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        color: white;
    }

    .fourFoot p {
        color: white;
    }

    .fourFoot img {
        margin-left: 0;
    }
}