* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html {
    width: 100%;
    /* min-height: 1500px; */
    background-color: #000;
}

.main-container {
    width: 100%;
    /* min-height: 1500px; */

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: flex-start;
    /* background-color: blue; */
}

.main-container > nav {
    width: 100%;
    height: 100px;

    display: flex;
    flex-direction: row;

    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff;
}

.main-container > nav > a {
    width: 100px;
    height: 100%;

    color: #850711;
    text-decoration: none;
    font-family: "Nunito";
    /* font-family: "Abhaya Libre"; */
    /* font-weight: bold; */
    text-align: center;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: center;

    background-color: #fff;
    transition: 0.3s linear;
}

.main-container > nav > a.disabled {
    cursor: default;
}

.main-container > nav > a.disabled:hover {
    box-shadow: none !important;
}

.main-container > nav > a.active {
    color: #850711;
    -webkit-box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
    -moz-box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
    box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
}

.main-container > nav > a:hover {
    color: #850711;
    -webkit-box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
    -moz-box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
    box-shadow: inset 0px 15px 0px 0px rgba(133,7,17,1);
    transition: 0.3s linear;
}

.show-grid {
    background-color: #e0e;
    border: 1px black solid;
}

footer {
    width:100%;
    height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    background-color: #850711;
}

footer > .footer-data {
    width:100%;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #850711;
}

footer > .footer-data > .direction {
    width: 50%;
    color: #fff;
    text-align: center;
}

footer > .footer-data > .contact {
    color: #fff;
    text-align: center;
}

footer > .footer-data > .contact > p > a {
    color: #fff;
    text-align: center;
}

footer > .developed-by {
    width: 100%;
    height: 80px;
    color: #000;
    background-color: #fff;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    padding: 10px;
}

footer > .developed-by > a {
    color: #850711;

}

.whatsapp {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: green;
    border: 1px black solid;
    color: white;
    cursor: pointer;
    text-decoration: none;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.whatsapp > i {
    font-size: 25px;
}

.social {
    width: 60px;
    height: 150px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    position: fixed;

    left: 0px;
    top: 350px;
    z-index: 1;
}

.social > a {
    width: 60px;
    height: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: white;
}

.social > .facebook {
    background-color: #0000cc;
    font-size: 25px;
    transition: 0.4s linear;
}

.social > .facebook:hover {
    background-color: white;
    color: #0000cc !important;
    font-size: 25px;
    transition: 0.4s linear;
}

.social > .instagram {
    background-color: #C13584;
    font-size: 25px;
    transition: 0.4s linear;
}

.social > .instagram:hover {
    background-color: white;
    color: #C13584 !important;
    font-size: 25px;
    transition: 0.4s linear;
}

.social > .phone {
    background-color: black;
    font-size: 25px;
    transition: 0.4s linear;
}

.social > .phone:hover {
    background-color: white;
    color: black !important;
    font-size: 25px;
    transition: 0.4s linear;
}

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

    .hide-lg {
        display: none !important;
    }

}

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

    .hide-md {
        display: none !important;
    }

}

@media screen and (max-width: 700px) {
    .social {
        top: 300px;
    }

}

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

    .hide-sm {
        display: none !important;
    }

    .main-container > nav {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: row;

        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fff;
    }

    .main-container > nav > .logo {
        width: 100%;
        height: 200px;

        display: flex;
        flex-direction: row;

        align-items: center;
        justify-content: center;
        background-color: #fff;
    }

    .main-container > nav > a {
        width: 20%;
        height: 70px !important;
    }

    footer {
        height: 250px;
    }

}

@media screen and (max-width: 390px) {
    .main-container > nav > a {
        font-size: 15px;
    }

    footer {
        height: 250px;
    }
}