/* roboto-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/roboto-v47-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("./fonts/roboto-v47-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
  position: relative;
  background-image: url("./images/bg.webp");
  font-family: "Roboto";
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

.btn-primary {
  --color: #004aad;
  background-color: var(--color);
  border-color: var(--color);
  border-radius: 0px;
}
.btn-primary:hover {
  --color: #003a89;
}

.form-control {
  border-radius: 0px;
}

label {
  font-size: 0.9em;
}

.msg-okay {
  font-weight: bold;
  color: green;
}

.msg-error {
  font-weight: bold;
  color: red;
}

.contact {
  max-width: 600px;
}

article {
  height: 100%;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem;
}

.template-index article {
  background: none;
  justify-content: center;
}

.navbar {
  font-size: 1.4rem;
  align-items: end;
  text-shadow: 1px 1px white;
}
@media (max-width: 768px) {
  .navbar {
    justify-content: center;
  }
}
.navbar .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.navbar a {
  color: black;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.container {
  min-height: 80vh;
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
h1 {
  font-size: 2rem;
  line-height: normal;
  text-align: center;
}

.template-index h1 {
  font-size: 8em;
  color: white;
  /*text-shadow: 1px 1px black;*/
}
@media (max-width: 768px) {
  .template-index h1 {
    font-size: 6em;
  }
}

h2 {
  font-size: 1.5rem;
}

p {
  font-family: "Roboto";
}

section {
  width: 100%;
}
section ~ section {
  margin-top: 4rem;
}

.image-right {
  float: right;
  margin: 0 0 2.5rem 2.5rem;
  max-width: 40%;
}

.image-left {
  float: left;
  margin: 0 2.5rem 2.5rem 0;
  max-width: 40%;
}/*# sourceMappingURL=style.css.map */