* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.5s;
    font-family: var(--font-text);
}
html, body {
    scroll-behavior: smooth;
    background-color: #202020;
    width: 100%;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: #ededed transparent;
}
a {
    text-decoration: none;
    color: var(--color-white);
}
a:hover {
    text-decoration: none;
    color: var(--color-white);
}
h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 0px;
}
    /* *ScrolBar */
body::-webkit-scrollbar {
    width: 8px;
    background-color: transparent;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--color-white);
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: #202020;
}
    /* *Selection */
*::selection {
    background-color: rgb(192, 189, 189);
    color: #202020;
}
*::-moz-selection {
    background-color: rgb(192, 189, 189);
    color: #202020;
}
:root {
    --font-text: 'Open Sans', sans-serif;
    --font-title: 'Poppins', sans-serif;
    --color-orange: rgb(211, 30, 6);
    --color-orange-active: rgb(180, 22, 1);
    --color-white: #ededed
}
main {
    width: 100%;
    height: 100%;
}
            /* NAVEGATION */
header {
    animation: fadein 2s;
    width: 100%;
    height: auto;
    position: fixed;
    padding: 25px 50px;
    z-index: 2;
}
header .navegation{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
}
header .options {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
header .menuToggle {
    display: block;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
}
header .menuToggle a {
    text-decoration: none;
    color: var(--color-white);
    transition: color 0.3s ease;
}
header .menuToggle a:hover {
    color: var(--color-orange);
}
header .menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}
header .menuToggle span {
    display: block;
    width: 31px;
    height: 2px;
    margin-bottom: 7px;
    position: relative;
    background-color: var(--color-white);
    border-radius: 10px;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
header .menuToggle span:first-child {
    transform-origin: 0% 0%;
}
header .menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}
header .menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background-color: var(--color-white);
}
header .menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
header .menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}
header .menuToggle input:checked ~ ul {
    transform: none;
}
header .menuToggle .menu {
    position: absolute;
    width: 220px;
    margin: -100px 0 0 -51px;
    opacity: 0.9;
    padding: 50px;
    padding-top: 125px;
    background-color: #202020;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    border-radius: 0 0 50px 0;
}
header .menuToggle .menu li {
    display: block;
    padding: 5px 0;
    font-size: 22px;
}
            /* FOOTER */
footer {
    width: 100%;
    height: 140px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer a {   
    color: #202020;
}
footer a:hover {
    color: var(--color-orange);
}
footer .fa-brands:hover {
    color: var(--color-orange);
}
footer .group1 {
    width: 100%;
    height: 50%;
    /* background-color: rgb(158, 155, 155); */
    background-color: #202020;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .group1 h5, h4 {
    color: var(--color-white);
}
footer .group1 .subgroup1  {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
footer .group1 .subsubgroup1 {
    display: flex;
    flex-direction: row;
    gap: 60px;
}
footer .group1 .subsubgroup1 .item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .group1 .subsubgroup1 .item a:hover {
    color: #202020;
}
footer .group1 .subsubgroup1 .item1 {
    padding-right: 50px;
    border-right: 2px solid var(--color-white);
}
footer .group1 .subsubgroup1 .color-red {
    color: rgb(199, 11, 11);
}
footer .group1 .subsubgroup2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
footer .group1 .subsubgroup2 .fa-brands {
    font-size: 1.5rem;
    color: var(--color-white);
}
footer .group2 {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .group2 .subgroup1 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
footer .group2 .subgroup2 div {
    position: absolute;
    right: 10px;
}
footer .group2 .subgroup2 a {
    color: #202020;
}
footer .group2 .subgroup2 p {
    font-size: 0.9rem;
}
            /* ANIMATIONS */
.item-hover {
    cursor: pointer;
    transition: 0.25s;
}
.item-hover:hover {
    transform: translateY(-0.25em);
    color: var(--color-orange);
}
.item-hover:active {
    transform: translateY(-0.5em);
    color: var(--color-orange-active);
}
            /* ANIMATIONS */
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
            /* MEDIA SCREEN */
@media (max-width: 1000px) {
    footer {
        text-align: center;
    }
    footer .group1 .subgroup1 {
        padding-top: 10px;
        flex-direction: column;
    }
    footer .group1 .subsubgroup1 {
        gap: 30px;
    }
    footer .group1 .subsubgroup2 {
        gap: 15px;
        padding-bottom: 10px;
    }
    footer .group2 .subgroup1 {
        flex-direction: column;
        gap: 0;
    }
    footer .group2 .subgroup2 {
        display: none;
    }
}
@media (max-width: 1280px) {
    footer .group1 .subsubgroup1 .item1 {
        padding-right: 20px;
    }
}
@media (max-width: 1230px) {
    footer {
        text-align: center;

    }
    footer .group1 .subsubgroup2 div {
        display: none;
    }
}
@media (max-width: 880px) {
    footer {
        height: 190px;
    }
}
@media (max-width: 570px) {
    footer {
        height: 200px;
    }
    footer .group1 .subsubgroup1 .item1 {
        padding-right: 10px;
    }
    footer .group1 {
        height: 60%;
    }
    footer .group2 {
        height: 40%;
    }
}