:root {
  --primary: #ca1524;
  --light: #ffffff;
  --dark: #000a18;
}

* {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: myriad-pro, sans-serif;
  background-color: var(--light);
}

h1,
h2,
h3 {
  line-height: 1;
  text-align: center;
}

h1 {
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 500;
  color: var(--primary);
}

h2 {
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.8rem, 5vw, 2rem);
  font-weight: 300;
}

p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--dark);
}

a {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  transition: all 0.2s ease-out;
}
a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.wrapper {
  width: 100%;
  padding: 0 10vw;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.logo_container {
  margin-top: 5dvh;
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
}

.logo {
  width: clamp(14rem, 20vw, 20rem);
}

.content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex-grow: 1;
}

.title {
  margin-bottom: 40px;
}

.contact__details {
  color: var(--dark);
  margin-bottom: 2rem;
  text-align: center;
  p {
    font-size: clamp(1.8rem, 5vw, 2rem);
  }
  a {
    font-weight: 600;
  }
}


.footer {
  height: 80px;
}
.footer__divider {
  width: 100%;
  height: 1px;
  background-color: var(--dark);
}
.footer__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer__content--clear {
  text-align: right;
}
.footer__content--copyright, .footer__content--clear {
  min-width: 100px;
}
.footer__content--copyright span, .footer__content--copyright a, .footer__content--clear span, .footer__content--clear a {
  font-size: inherit;
}

.background {
  position: absolute;
  opacity: 50%;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -20;
}
.background__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 600px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */