/* ========================================================== */
/*                          MAIN CSS                          */
/* ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;0,900;1,300&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}

.page-content {
  background-color: var(--primary);
  color: var(--white);
  padding-bottom: 0.25rem;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.text-shadow-dark {
  text-shadow: 0 0 4px #343434;
}

.main-neader { text-shadow: 0 0 7px black; }

@media (min-width: 992px) {
  .main-neader { font-size: 3.5rem; }
}

.hero-section {
  position: relative;
  background-image: url('img/hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section > .hero-content {
	min-height: 40rem;
}

.bg-transparent-white {
  background-color: rgba(255, 255, 255, 0.35);
}

.bg-transparent-more-whiter {
  background-color: rgba(255, 255, 255, 0.15);
}

.section {
	margin-top: 5rem;
	margin-bottom: 5rem
}


.inner-radius {
  border-radius: 0.5rem;
}
.outer-radius {
  border-radius: 0.75rem;
  border: 1px solid white;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .outer-radius {
    border-radius: 1.5rem;
    border: 1px solid white;
    padding: 1rem;
  }
  .inner-radius {
    border-radius: 1rem;
  }
}
