/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400;500;700&display=swap');

/* Variables */
:root {
  --color-primary: #d61303;
  --color-secondary: #F2F2F2;
  --color-tertiary: #474C48;
}

/* Override */
.swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.nav-link {
  font-weight: 500;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 1rem;
  color: #6c757d !important;
}
.active>.nav-link, .nav-link:hover {
  color:#ffff !important;
  border-bottom: solid 1px var(--color-primary);
}

/* Global */
body {
  font-family: 'Montserrat', sans-serif;
  color: #000000;
}
a {
  color: #111;
}
.swiper-container {
  color: #fff;
  width: 100%;
  height: 300vh;
}
.swiper-slide {
  background: #fff;
  display: block;
}
.font-weight-semibold {
  font-weight: 500;
}
.btn-default {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.5s ease;
}
.btn-default:hover {
  border: 1px solid var(--color-primary);
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transform: translate(0, -5px);
}
.btn-default.reverse:hover {
  color: var(--color-primary);
}
.bg-secondary-custom {
  background-color: var(--color-secondary);
}
.bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: #000000;
}
.bg-overlay-darken {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #000000;
}
.bg-glass {
  background-color: rgb(52, 58, 64, 0.5);
}

@media (max-width: 667px) {
  .lead {
    font-size: 1rem;
  }
  p {
    margin-bottom: 0.5rem;
  }
  .h1, h1 {
    font-size: 2rem; /* originally 2.5rem */
  }
  .h3, h3 {
    font-size: 1.25rem; /* originally 1.75rem */
  }
  .h5, h5 {
    font-size: 1rem; /* originally 1.25rem */
  }
  .btn-default {
    padding: 0.2rem 1rem;
  }
}