@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;700;800&display=swap');

/* typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
small,
li,
label,
.intro-text {
    font-family: 'Manrope', sans-serif;
}

#hero {
    background: #f8f8f8;
}

h1 {
    color: #000;
    font-size: 4rem;
    line-height: 4rem;
    text-transform: uppercase;
    font-weight: 800;
}
.catalog {
    max-width: 90%;
}

#content {
    padding-top: 5rem;
}

#content h2 {
    text-transform: uppercase;
    font-size: 2rem;
    margin-top: 3.5rem;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #444;
}

#cta {
    margin-bottom: 3rem;
}

#cta h2 {
    margin-bottom: 0;
    font-weight: 700;
}

#cta h3 {
    margin: 1rem 0;
}
.footer-logo {
    width: 240px;
}

#bg-map {
    padding: 2rem 0;
    margin-bottom: 2rem;
    background: rgb(2, 0, 36);
    background: linear-gradient(190deg, rgba(2, 0, 36, .9) 0%, rgba(245, 245, 245, .2) 0%, rgba(211, 211, 211, .6) 55%);
}
#bg-map h2 {
    font-weight: 800;
    text-transform: uppercase;
}
.catalog {
    margin-bottom: -120px;
}

.button.success {
    background: #8EFF88 ;
    color: #000;
    border-radius: 8px;
}
.download-btn:hover {
    background: #2FF326;
}

.shadow {
    -webkit-box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.1); 
    box-shadow: 0px 4px 15px 0px rgba(0,0,0,0.1);
}
.hollow {
    border: 1px solid #000 !important;
    border-radius: 8px;
    color: #000 !important;
}
.form-fields {
    height: 45px;
    border-radius: 8px;
    background: #f8f8f8;
}
form h4 {
    font-weight: 700;
}
/* Small only */
@media screen and (max-width: 39.9375em) {}

/* Medium and up */
@media screen and (min-width: 40em) {
    .footer-logo {
        max-width: 240px;
    }
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up */
@media screen and (min-width: 64em) {
    .intro-text {
        font-size: 1.2rem;
        line-height: 1.4;
    }    
    h1 {
        font-size: 5rem;
        line-height: 5rem;
    }
    .catalog {
        max-width: 100%;
    }
    #content h2 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-top: 1rem;
    }
    
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: lightslategray;
    opacity: 1; /* Firefox */
  }
  
  :-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightslategray;
  }
  
  ::-ms-input-placeholder { /* Microsoft Edge */
    color: lightslategray;
  }