/* colors */
.color-red {
  color: #e1000f;
}

/* html */
html {
  scroll-behavior: auto;
}

/* body */
body {
  font-family: body;
  font-weight: 400;
  color: #3b3b3b;
  padding-top: 60px;
}
@media (min-width: 768px) {
  body {
    padding-top: 64px;
  }
}

/* tipography */
h1 {
  font-family: headings;
  font-weight: 700 !important;
}

h2 {
  margin-bottom: 1rem;
  font-family: headings;
  font-weight: 700 !important;
}
h2 span {
  display: block;
}
h2 sup {
  font-size: 1rem;
  vertical-align: 0.5rem;
}
h2 i {
  font-style: normal;
}

.font-light {
  font-weight: 100;
}

.font-regular {
  font-weight: 400;
}

.font-bold {
  font-weight: 700;
}

/* buttons */
.btn {
  font-weight: 700;
  border-radius: 46px;
  padding: 12px 20px;
  border: none;
}
.btn.btn-primary {
  background-color: #e1000f;
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #b4000c;
  color: #fff;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #3b3b3b;
}
.btn.btn-secondary:hover {
  background-color: #700008;
  color: #fff;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
  background-color: #eff3f6;
  padding: 0 0.5rem;
  border: 0;
}
@media (min-width: 768px) {
  header {
    padding: 0 1rem;
    height: 64px;
  }
}
header .hamburger {
  transform: scale(0.65);
  padding: 0;
  padding-top: 8px;
}
@media (min-width: 768px) {
  header .hamburger {
    display: none;
  }
}
header .brand {
  display: block;
}
header .brand img {
  display: block;
  height: 32px;
}
@media (min-width: 768px) {
  header .brand img {
    height: 36px;
  }
}
header .nav .nav-link {
  padding: 0.5rem 0.75rem;
  color: #3b3b3b;
}
header .nav .nav-link:hover {
  color: #e1000f;
}
@media (max-width: 768px) {
  header .nav {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: #eff3f6;
    z-index: 1999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }
  header .nav.open {
    left: 0;
  }
  header .nav .nav-link {
    font-size: 2rem;
  }
}

/* section */
section {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 3rem;
  }
}
section.main-banner {
  padding: 0;
  width: 100%;
  overflow: hidden;
}
section.main-banner .banner-video {
  width: 100%;
  height: auto;
  display: block;
}
section.section-0 .form-select {
  background-color: #f8fafc;
  border-radius: 46px;
  padding: 12px 20px;
  border: none;
}
section.section-0 .form-select:focus {
  box-shadow: none;
}
section.section-0 #map {
  width: 100%;
  margin-top: 1rem;
  height: 40vh;
}
@media (min-width: 768px) {
  section.section-0 #map {
    margin-top: 0;
    height: 60vh;
  }
}
section.section-0 #map .store-marker {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
section.section-0 #map .store-marker .pin {
  width: 24px;
  height: 24px;
  background: #e1000f;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
}
section.section-0 #map .store-marker .pin:after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 7px;
}
section.section-0 #map .leaflet-popup-content {
  font-family: body;
  font-weight: 400;
  font-size: 0.8rem;
  color: #3b3b3b;
}
section.section-0 #map .leaflet-popup-content .store-name {
  font-family: headings;
  font-weight: 700;
  font-size: 0.9rem;
  color: #e1000f;
  margin-bottom: 0.25rem;
}
section.section-0 #map .leaflet-popup-content .store-address {
  font-family: body;
  font-weight: 400;
  font-size: 0.8rem;
  color: #787878;
  margin-bottom: 0.25rem;
}
section.section-0 #map .leaflet-popup-content .store-data {
  font-family: body;
  font-weight: 400;
  font-size: 0.8rem;
  color: #787878;
}
section.section-1 {
  background-color: #bfcfbe;
}
section.section-1 .section-image {
  width: 100%;
  padding-bottom: 50%;
  margin-bottom: 2rem;
  background-image: url("../pics/clean-lubs-sm.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  section.section-1 .section-image {
    height: 100%;
    padding-bottom: 100%;
    margin-bottom: 0;
    background-image: url("../pics/clean-lubs.jpg");
    background-position: bottom center;
  }
}
section.section-2 {
  background-color: #dde7ed;
}
section.section-2 .section-image {
  width: 100%;
  padding-bottom: 50%;
  margin-bottom: 2rem;
  background-image: url("../pics/siliconas-sm.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  section.section-2 .section-image {
    height: 100%;
    padding-bottom: 100%;
    margin-bottom: 0;
    background-image: url("../pics/siliconas.jpg");
    background-position: bottom center;
  }
}
section.section-3 {
  background-color: #e1000f;
  color: #fff;
}
section.section-3 .section-image {
  width: 100%;
  padding-bottom: 50%;
  margin-bottom: 2rem;
  background-image: url("../pics/trabaroscas-sm.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  section.section-3 .section-image {
    height: 100%;
    padding-bottom: 100%;
    margin-bottom: 0;
    background-image: url("../pics/trabaroscas.jpg");
    background-position: bottom center;
  }
}
section.section-4 .form-control {
  background-color: #f8fafc;
  border-radius: 46px;
  padding: 12px 20px;
  border: 1px solid #f8fafc;
}
section.section-4 .form-control:focus {
  box-shadow: none;
  border-color: #e1000f;
}
section.section-4 .form-control.form-textarea {
  border-radius: 23px;
}

/* footer */
footer {
  width: 100%;
  background-color: #3b3b3b;
  color: #fff;
  padding: 0 1rem 0 0.7rem;
}
@media (min-width: 768px) {
  footer {
    padding: 2rem 1rem;
  }
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  footer .container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
footer .social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  footer .social-links {
    justify-content: start;
  }
}
footer .social-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}
footer .social-links a:hover {
  color: #e1000f;
}
footer .legal-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  footer .legal-links {
    align-items: end;
  }
}
footer .legal-links a {
  color: #fff;
  text-decoration: none;
}
footer .legal-links a:hover {
  color: #e1000f;
}

/*# sourceMappingURL=common.css.map */
