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

:root {
  --primary-color: #000000;
  --secondary-color: #0D47A1;
  --linear-color: rgba(13, 71, 161, 0.88);
  --grey: #E5E5E5;
  --darker-grey: #F1F1F1;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Roboto Condensed", sans-serif;
}

h1,
h2 {
  margin: 0;
}

h2 {
  font-weight: normal;
}

p {
  text-align: justify;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
}

nav {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1em;

  background-color: #fff;
  border-bottom: 1px solid var(--grey);
}

nav .brand {
  width: 80%;
}

nav .links {
  display: none;
}

nav .links.mobile.is-active {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: grid;
  justify-content: center;
  align-items: center;

  background-color: #fff;

  text-align: center;
  font-size: 1.5em;
}

nav a:hover {
  color: var(--secondary-color);
}

header {
  margin-top: 17.5%;
}

#contact {
  margin-top: -10vh;
  padding: 30% 5%;

  color: white;
  background: var(--secondary-color);
  clip-path: polygon(0 10vh, 100% 0%, 100% 100%, 0% 100%);

  text-align: center;
}

#contact p {
  text-align: center;
}

#contact a {
  padding: 1em;
  border: 1px solid #fff;
  border-radius: 10px;
}

#contact a:hover {
  color: var(--secondary-color);
  background-color: #fff;
}

footer {
  color: var(--secondary-color);

  text-align: center;
}

footer p {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  nav {
    width: 100%;
  justify-content: space-between;
  }

  nav .brand {
    width: initial;
  }

  nav .links.mobile {
    display: none;
  }

  nav .links {
    margin-right: 2em;
    display: block;
  }

  nav .links a {
    padding: 0 1em;
  }

  nav .burger {
    display: none;
  }

  header {
    margin-top: 1%;
  }

  #contact {
    padding: 5%;
  }
}