/* -------------------------------------------------------------- */
/* 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: wrap;
    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);
}
/* -------------------------------------------------------------- */
/* ABOUT */
@media only screen and (max-width: 600px) { 
    .about-content {
        padding: 40px 12% 40px 12%;
    }
}
@media only screen and (min-width: 601px) {
    .about-content {
        padding: 40px 35% 40px 35%;
    }
}
.about-content {
    display: flex;
    justify-content: center;
}
.about-title {
    font-family: 'Open Sans', sans-serif;
    color: #C00000;
    font-weight: 800;

    padding-right: 20px;
}

.about-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #000;
    font-weight: 600;
}
/* ABOUT IMG */
.row {
  display: -ms-flexbox; 
  display: flex;
  -ms-flex-wrap: wrap; 
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  -ms-flex: 25%; 
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
* {
    box-sizing: border-box;
}
/* -------------------------------------------------------------- */
/* 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;
}
