/**
 * @file
 * Styles rules
 *
 * Theme styles rules.
 */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  height: 100%;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5rem;
  scroll-padding-top: 150px !important;
}
html, body {
  position: relative;
  font-family: var(--font-inter);
  color: var(--color-dark);
  background-color: var(--color-white);
}
body {
  overflow-x: hidden;
}

/**
 * Image
 */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/**
 * Text
 */

h1, h2, h3, h4 {
  position: relative;
  font-family: var(--font-europa);
  font-weight: 700;
}
h1 {
  font-size: var(--heading-size-xl);
  margin: 0;
  line-height: 150%;
  font-weight: 700;
}
h2 {
  font-size: var(--heading-size-m);
  line-height: 130%;
  margin-top: 0;
  margin-bottom: 48px;
}
h3 {
  font-size: var(--heading-size-s);
}
h4 {
  font-size: var(--heading-size-xs);
}
p {
  font-size: var(--content-size);
}
@media all and (min-width: 750px){
  h1 {
    line-height: auto;
  }
}
::selection {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/**
 * Links
 */

a {
  color: var(--color-brand--1);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/**
 * Toolbar Fixed Styles
 */

.toolbar a {
  font-family: "Source Sans Pro","Lucida Grande",Verdana,sans-serif;
  font-weight: normal;
}

/**
 * Table
 */

table {
  border-collapse: collapse;
  width: 100%;
}
table td,
table th {
  border: 1px solid #ddd;
  padding: 8px;
}
table tr:first-child td {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: var(--color-primary--2);
  color: var(--color-neutral--4);
  font-weight: 700;
}




/**
 * CTA
 */

.cta {
  margin: 0;
}
.cta a {
  display: flex;
  padding: 18px 32px 16px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 0 60px 0 0;
  width: fit-content;
}
.cta--style-red a {
  color: var(--color-white);
  background-color: var(--color-primary--1);
}
.cta--style-red a:hover {
  background-color: var(--color-primary--5);
  text-decoration: none;
}
.cta--style-white a {
  color: var(--color-primary--1);
  background-color: var(--color-white);
}
.cta a::after {
  content: '';
  width: 27px;
  height: 27px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.cta--style-white a::after {
  background-image: url('../images/arrow_red.svg');
}
.cta--style-red a::after {
  background-image: url('../images/arrow_white.svg');
}


blockquote {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  background: #F4F4F4;
  margin: 0;
}
