@import url("/css/variables.css");

html,
body {
  scroll-behavior: smooth;
}

body.content {
  width: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  color: var(--grey);
  line-height: var(--lineHeight);
  font-size: var(--m);
  font-family: var(--sofiaPro);
  font-weight: 100;
}

.content h1,
.content h2,
.content h3,
.content h4 {
  font-family: var(--alice);
  color: var(--black);
}

.content h1 {
  font-size: var(--xxl);
}

.content h2 {
  font-size: var(--xl);
}

.content h3 {
  color: var(--primary);
}

.content a {
  color: currentColor;
  text-decoration: underline var(--primary);
  text-underline-offset: 3px;
}

.content button,
.content .btn {
  position: relative;
  display: inline-block;
  padding: 11px 12px 12px;
  line-height: 1;
  font-size: var(--s);
  font-family: var(--sofiaPro);
  font-weight: 100;
  color: var(--white);
  background: var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--ease);
  border: 1px solid var(--primary);
  border-radius: 4px;
}
.content .btn-white {
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
}

@media(hover:hover) {
  .content button:hover,
  .content .btn:hover {
    color: var(--primary);
    background: transparent;
  }
  .content .btn-white:hover {
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
  }
  .content a:hover {
    text-decoration: none;
  }
}

@font-face {
  font-family: "Alice";
  src: url("/fonts/alice-regular-webfont.woff2") format("woff2"),
       url("/fonts/alice-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofiapro-light-webfont.woff2") format("woff2"),
       url("/fonts/sofiapro-light-webfont.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofia_pro_regular_az-webfont.woff2") format("woff2"),
       url("/fonts/sofia_pro_regular_az-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sofia Pro";
  src: url("/fonts/sofia_pro_bold_az-webfont.woff2") format("woff2"),
       url("/fonts/sofia_pro_bold_az-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: "Sofia Pro";
    src: url("/fonts/sofia_pro_regular_italic_az-webfont.woff2") format("woff2"),
         url("/fonts/sofia_pro_regular_italic_az-webfont.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}