/* -------------------------------------------------------------- */
/* MAIN ALL GENERAL */
body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

::selection {
    background-color: #AC1E22;
    color: #fff;
}
/* -------------------------------------------------------------- */
/* HEADER ALL GENERAL */
.header {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    background-color: #AC1E22;
}
.header-content {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
}
.header-logo {
    display: flex;
    justify-content: center;
}
.header-logo img {
    padding-top: 20px;

    width: 40%;
}

.header-links-top {
    display: flex;
    justify-content: center;

}
.header-link {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    margin: 25px 8px 25px 8px;
    

    box-shadow: inset 0 0 0 0 #FFFFFF;
    color: #FFFFFF;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
}

.header-link {
    color: #FFFFFF;
    position: relative;
    text-decoration: none;
}
.header-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 5px;
    background-color: #FFFFFF;
    bottom: 0;
    left: 0;
    transform-origin: middle;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.header-link:hover::before {
    transform-origin: middle;
    transform: scaleX(1);
}
/* -------------------------------------------------------------- */
/* HOMEPAGE IMAGE */
.mb-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0%;
}
.mb-content-1 h2 {
    font-family: 'Poppins', sans-serif;
    color:#C00000;
    font-weight: bolder;
    font-size: 25px;
}
.homepage-image {
    padding-bottom: 50px;
}
/* MOBILE */
@media only screen and (max-width: 600px) {
    .homepage-image {
        width: 100%;
    }
}
/* DESKTOP */
@media only screen and (min-width: 601px) {
    .homepage-image {
        width: 35%;
    }
}

/* -------------------------------------------------------------- */
/* FOOTER */
.footer-social {
    display: flex;
    justify-content: center;

}
.footer-social a {
    text-decoration: none;
    color: #AC1E22;
}
.fa-brands {
    padding: 15px 10px 0px 10px;
}

.footer-cr{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding-top: 0px;
}
.cr-ignore {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #C00000;
    font-weight: 600;

    text-decoration: none;
    cursor: default;
    pointer-events: none;
}
