/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;500&display=swap'); */

@font-face {
  font-family: "Poppins extralight";
  src: url("font/poppins-extralight-webfont.woff2") format("woff2"),
  url("font/poppins-extralight-webfont.woff") format("woff");
}

@font-face {
  font-family: "Poppins regular";
  src: url("font/poppins-regular-webfont.woff2") format("woff2"),
  url("font/poppins-regular-webfont.woff") format("woff");
}

:root {
  --color-corporate: #e9204f;
  --color-shade-darkest: #000;
  --color-shade-medium: #00000080;
  --color-shade-lightest: #fff;
}

html {
  height: 100%;
  overflow-x: hidden;
}

.body {
  -webkit-align-items: center;
  align-items: center;
  color: var(--color-shade-darkest);
  font-family: 'Poppins extralight', Helvetica, Arial, sans-serif;
  font-weight: 200;
  line-height: 1.6;
  margin: 0 auto;
  max-width: calc(80% + 10vw);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: var(--color-corporate);
  text-decoration: none;
  word-break: break-word;
}

a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

strong {
  font-family: 'Poppins regular', Helvetica, Arial, sans-serif;
  font-weight: 500;
}

.body--home {
  background: url(bg_body.jpg) 40% 0 no-repeat;
  background-size: cover;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;

}

.content {
  margin-bottom: auto;
  margin-top: auto;
  padding: 5vw 2em 15vh;
}

.content__title {
  color: var(--color-corporate);
  font-family: 'Poppins regular', Helvetica, Arial, sans-serif;
  font-size: calc(2rem + 1.5vw);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.content__title span {
  white-space: nowrap;
}

.content__headline {
  font-size: calc(1rem + 1.5vw);
  font-weight: 200;
  line-height: 1.2;
  margin: 2em 0 .5em;
  text-transform: uppercase;
}

.content__text {
  font-size: calc(1.08rem + 1.2vw);
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: .5em;
  opacity: .9;
  text-transform: uppercase;
}

.content__separator {
  font-size: calc(2rem + 1.5vw);
  text-align: center;
  border-top: 1px solid var(--color-shade-medium);
}

.content__separator::before {
  content: '❧';
  background-color: var(--color-shade-lightest);
  top: -0.75em;
  display: inline-block;
  position: relative;
  padding: 0 1em;
  color: var(--color-shade-medium);
}

.footer {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding: 0 2em 10vh;
  width: 100%;
}

.footer__title {
  font-size: calc(1rem + 1vw);
  font-weight: 200;
  margin-bottom: .5em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: baseline;
  align-items: baseline;
}

.footer__link {
  font-family: 'Poppins regular', Helvetica, Arial, sans-serif;
  font-size: calc(.8rem + .5vw);
  display: inline-block;
  margin-top: 2em;
}

.footer__social {
  display: -webkit-flex;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__social li {
  margin-right: 1rem;
  -webkit-flex-basis: 2rem;
  flex-basis: 2rem;
}

.footer__social-link {
  display: block;
  margin-right: 1rem;
  margin-right: calc(1rem - 1vw);
  width: calc(3rem - 1.4vw);
  min-width: 2rem;
}
