* {
    margin: 0;
    padding: 0;
}

html {
    background-color: #F9F9FB; 
}

body{
    font-family: 'Montserrat', sans-serif !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

.navbar{
    padding: 1rem 0;
    background-color: white;
}

.navbar-brand{
    margin-left: 16px;
}

.container-fluid{
    margin: 0 1rem;
    justify-content: space-between !important;
}

.nav-shadow {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.nav-item{
    font-weight: 300;
    font-size: 16px;
}

.fakeLogo {
    visibility: hidden;
}

.active{
    color: #B01D1A !important;
    font-weight: 500 !important;
}

.content-container{
    width: 100%;
}

.banner{
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url(../images/WinterBanner.jpg);
    background-size: cover;
    background-position: 60%;
    display: flex;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.2);
}

.banner-text{
    position: relative;
    margin-left: 5vw;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.banner-text h1 {
    letter-spacing: 10px;
    font-weight: bold;
    font-size:60px;
}

.banner-text a {
    text-decoration: none;
}

.banner-text button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    height: 55px;
    width: 200px;
    font-weight: bold;
    transition: 0.3s
    }

.banner-text button:hover{
    background-color: white;
    color: black;
    transform: translateY(-2px);
}

.card-svg{
    filter: invert(16%) sepia(47%) saturate(4768%) hue-rotate(347deg) brightness(97%) contrast(99%);
    max-height: 80px;
    margin-top: 2rem;
}

.card {
    border: 0;
    background-color: #d9d9d9;
    text-align: center;
    margin-bottom: 0 !important;
    min-width: 340px;
}

.card-title {
    font-weight: bold;
}

.card-text {
    padding: 0 7%;
    width: 325px;
    margin: 0 auto;
}

.card-body{
    margin-bottom: 15px;
}

.brands {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}

.brands-title {
    margin: 40px 0;
    text-align: center;
}

.brands-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: clamp(0px, 20vw, 20%);
    margin-right: clamp(0px, 20vw, 20%);
}

.brand {
    margin: auto;
    flex-basis: 21%;
    flex-grow: 1;
    max-width: 360px;
    min-width: 175px;
}

.footer{
    margin-top: 30px;
    background-color: #d9d9d9;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-top: 50px;
    padding-bottom: 30px;
    flex-wrap: wrap;
}

.footer-urls{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.footer-links{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-links li a{
    font-size: 14px;
}

.footer-socials{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials-img{
    margin: 20px;
}

.footer-newsletter{
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.newsletter-title{
    font-weight: 400;
    margin: 0 10px 10px;
    text-align: center;
}

#newsletter-inputs{
    display: flex;
    flex-direction: row;
    margin: 10px 15px 0;
}

#newsletter {
    display: flex;
    flex-direction: row;
}

.form-control {
    height: 40px;
    min-width: 200px;
    border-color: #ffffff;
    border-radius:0;
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid #B01D1A;
}

.btn {
    min-height: 40px; 
    border-radius:0;
    background: #0000009a;
    color: #fff;
    font-weight:600;
}

.btn:hover {
    background: #B01D1A; 
    color: #ffffff;
}

.aboutUs-title{
    text-align: center;
    margin: 5vh;
}

.aboutUs-history{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 9%;
}

.aboutUs-img{
    width: 100%;
    max-width: 600px;
    height: auto;
}

.aboutUs-text{
    max-width: 600px;
    margin: 30px;
}

.bold{
    font-weight: 600;
}

.contact-banner{
    position: relative;
    width: 100%;
    height: 35vh;
    background-image: url(../images/contacto.jpg);
    background-size: cover;
    background-position: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
}

.contact-banner::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.2);
}

.contact-banner h1{
    position: relative;
    font-weight: 800;
    font-size: 3rem;
    letter-spacing: 3px;
    padding-bottom: 20px;
}

.contact-content{
    margin-left: clamp(0px, 20vw, 10%);
    margin-right: clamp(0px, 20vw, 10%);
    display: flex;
    flex-direction: column;
}

.contact-content h4 {
    font-weight: 300;
    font-size:larger;
    margin: 30px 0;
}

.contact-divs{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    flex-basis: 50%;
}

.contact-form input{
    border-color: #00000023;
}

.contact-form textarea{
    resize: none;
    height: 200px !important;
    border-color: #00000023;
}

.contact-form button{
    max-width: 100px;
}

.contact-info{
    display: flex;
    flex-direction: column;
    margin-left : 20px;
}

.contact-info a {
    margin-bottom: 1rem;
    color: black;
}

.store {
    height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.store img {
    max-height: 15vh;
}

.store-card {
    border-radius: 10px;
    margin: 0 10px 7%;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.store-card p { 
    margin: 0 5px;
}

.store-card h1 {
    color: #B01D1A;
    margin: 40px 70px;
}

.store-card-text {
    margin: 30px 0 60px;
}

#subscribe-success {
    display: none;
    margin: 0 10px 10px;
}

@media (max-width: 992px) {
    .fakeLogo {
        display: none;
    }
}

@media (max-width: 508px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .store-card h1 {
        margin: 40px;
    }
}