* {
    margin: 0;
    padding: 0;
    transition: .2s all ease-in-out;
    /* font-family: "Poppins", sans-serif; */
    font-family: "Roboto Condensed", sans-serif;
}
html {
    scroll-behavior: smooth;
}
:root {
    --color1: #00B4C2;
    --color2: #374E59;
    --color3: #A0A0A0;
    --color4: #89928F;
    --color5: #E6E6E6;
    --color6: #282828;
    --color7: #505050;
    --color8: #B4B4B4;
    --color9: #DCDCDC;
    --color10: #eeeeee;
}
/* LIMITADOR */
.lmt-ctr {
    max-width: 88%;
    margin: 0 auto;
    height: inherit;
}
@media (max-width: 1800px) {
    .lmt-ctr {
        max-width: 95%;
    }
}
@media (max-width: 840px) {
    .lmt-ctr {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
}
/* CENTRADORES */
.cen-a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cen-ah {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cen-h {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cen-v {
    display: flex;
    justify-content: center;
}

/* FLEX */
.spc-btw {
    display: flex;
    justify-content: space-between;
}
.spc-ard {
    display: flex;
    justify-content: space-around;
}

/* LINEAS */
.line-g-0 {
    margin: 15px 0;
    height: 1px;
    width: 100%;
    background-color: var(--color7);
}
.line-a-0 {
    margin: 7px 0;
    height: 1px;
    width: 100%;
    background-color: var(--color1);
}
.line-gray-1 {
    margin: 25px 0 15px;
    height: 1px;
    width: 100%;
    background-color: var(--color7);
}
.line-gray-2 {
    height: 1px;
    width: 100%;
    background-color: var(--color7);
}

/* BOXES */
.bx-sh {
    box-shadow: 0px 4px 14px -2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 4px 14px -2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 4px 14px -2px rgba(0,0,0,0.2);
}
