/* ------------------------------ */
/* ----- Typography / Colors ---- */
/* ------------------------------ */

@font-face {
  font-family: 'Hurme';
  font-weight: normal;
  font-style: normal;
  src: url('/wp-content/themes/privacy_child/fonts/hurme_regular.woff2') format('woff2'),
       url('/wp-content/themes/privacy_child/fonts/hurme_regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Hurme';
  font-weight: bold;
  font-style: normal;
  src: url('/wp-content/themes/privacy_child/fonts/hurme_bold.woff2') format('woff2'),
       url('/wp-content/themes/privacy_child/fonts/hurme_bold.woff') format('woff');
  font-display: swap;
}


/* ------------------------------ */
/* ---------- Variables --------- */
/* ------------------------------ */

:root {
  /* Brand Fonts */
  --brand-font: 'Hurme';

  /* Brand Colors*/
  --brand-color: #223c58;
  --brand-dark: #111E2C;
  --brand-white: #ffffff;
  
  /* Font Styling */
  --font-size-5: 48px;
  --font-size-4: 40px;
  --font-size-3: 26px;
  --font-size-2: 20px;
  --font-size-1: 16px;
  --font-size-standard: 18px;
  --line-height-2: 1.3;
  --line-height-1: 1.6;

  /* Hover & Transition */
  --opacity-1: .7;
  --transition-delay: .15s;
  --transition-4: 1s;
  --transition-3: .75s;
  --transition-2: .5s;
  --transition-1: .25s;

  /* Box shadow */
  --box-shadow: 0 2px 12px 0 rgba(36,50,66,.1);

  /* Spacing */
  --spacing-8: 100px;
  --spacing-7: 80px;
  --spacing-6: 60px;
  --spacing-5: 40px;
  --spacing-4-5: 35px;
  --spacing-4: 30px;
  --spacing-3: 20px;
  --spacing-2: 15px;
  --spacing-1: 10px;
}


/* ------------------------------ */
/* ----------- General ---------- */
/* ------------------------------ */

::selection {
  background: var(--brand-color);
  color: var(--brand-white);
}

::-moz-selection {
  background: var(--brand-color);
  color: var(--brand-white);
}

html {
  font-size: 20px;
}

body {
  font-family: var(--brand-font);
  font-size: var(--font-size-standard);
  line-height: var(--line-height-1);
  color: var(--brand-color);
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 {
  font-weight: bold;
  line-height: var(--line-height-2);
}

h2:first-child, h3:first-child, h4:first-child, .section > .section__title:first-child h2, .section > .section__title:first-child h3, .section > .section__title:first-child h4 {
  margin-top: 0;
}

h1 {
  font-size: var(--font-size-5);
  margin-top: 0;
}

h2, h3, .section__title h2, .section__title h3, .section__text + .section__text h2:first-child, .section__text + .section__text h3:first-child {
  margin-top: var(--spacing-7);
}

h2 {
  font-size: var(--font-size-4);
  margin-bottom: var(--spacing-3);
}

h3 {
  font-size: var(--font-size-3);
  margin-bottom: var(--spacing-3);
}

h4, .typography--h4 {
  font-size: var(--font-size-standard);
  line-height: var(--line-height-1);
  font-weight: bold;
  margin-bottom: 0;
}

h4, .section__title h4, .section__text + .section__text h4:first-child {
  margin-top: var(--spacing-7);
}

.typography--lead {
  font-size: var(--font-size-2);
  margin-bottom: var(--spacing-3);
}

.typography--copy {
  font-size: var(--font-size-standard);
}

a {
  color: var(--brand-color);
  text-decoration: none;
}

a.full {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 100%;
  text-indent: -30000px;
  z-index: 10;
  text-decoration: none;
  text-align: left;
}

a.full > span {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px,1px,1px,1px);
  border: 0;
  overflow: hidden;
}

a.full::before, a.full::after {
  display: none;
}

section p a:not(.full), section li a:not(.full), label a {
  position: relative;
  text-decoration: underline;
  -webkit-transition: var(--transition-1);
  -o-transition: var(--transition-1);
  transition: var(--transition-1);
}

.no-touchevents section p a:not(.full):hover, .no-touchevents section li a:not(.full):hover, .no-touchevents label a:hover {
  opacity: var(--opacity-1);
}

p, main ul {
  margin: 0 0 var(--spacing-2);
}

p:last-child, ul:last-child {
  margin-bottom: 0;
}

b, strong {
  font-weight: bold;
}

main p + ul {
  margin-top: calc(var(--spacing-1) * -1);
}

main ul li {
  position: relative;
  padding-left: 1.25rem;
}

main ul li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 10px;
  height: 2px;
  background-color: var(--brand-color);
}

strong, b {
  font-weight: bold;
}

span[class$="--hide-text"] {
  position: absolute;
  height: 1px;
  width: 1px;
  clip: rect(1px,1px,1px,1px);
  border: 0;
  overflow: hidden;
}

h1, h2, h3, h4, main p, main ul, main a, main span {
  max-width: var(--width-content);
}

.section--fullwidth h1, .section--fullwidth h2, .section--fullwidth h3, .section--fullwidth h4, main .section--fullwidth p, main .section--fullwidth ul, main .section--fullwidth a, main .section--fullwidth span {
  max-width: 100%;
}

.section--color {
  background-color: var(--brand-color);
}

.section--light {
  background-color: var(--brand-grey);
}



/* ------------------------------ */
/* ----------- Layout ----------- */
/* ------------------------------ */

.site_wrapper {
  margin: 0 auto;
}

.section {
  position: relative;
  padding-top: var(--spacing-7);
}

.section:last-child {
  padding-bottom: var(--spacing-8);
}

.section > div, .inside {
  margin: 0 auto;
  max-width: 890px;
  padding: 0 1.5rem;
}

.section > div, .section__row > .row > div > div {
  padding-top: 3rem;
}

.section > div:first-child, .section__row > .row > div > div:first-child {
  padding-top: 0;
}

.section > div:last-child, .section__row > .row > div > div:last-child {
  padding-bottom: 0;
}



/* ------------------------------ */
/* ------------ Title ----------- */
/* ------------------------------ */

.section__title {
  padding-top: 0 !important;
}

.section__title + div {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section__title + .section__title {
  padding-top: var(--spacing-5) !important;
}


/* Footer */
footer {
  padding-bottom: var(--spacing-3);
  font-size: var(--font-size-1);
  text-align: center;
}

footer ul li {
  display: inline-block;
}

footer ul li:nth-child(2) {
  margin: 0 5px;
}

footer a {
  position: relative;
  display: inline-block;
}

footer a::before, footer a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
}

footer a::before {
  background-color: rgba(34,60,88,.1);
}

footer a::after {
  background-color: #223c58;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  transition: transform .5s,-webkit-transform .5s;
}

.no-touchevents footer a:hover::after {
  -webkit-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}



/* ------------------------------ */
/* -------- Media Queries ------- */
/* ------------------------------ */

@media all and (max-width: 1599.98px) and (min-width: 1400px) {


}


@media all and (max-width: 1399.98px) and (min-width: 1240px) {



}


@media all and (max-width: 1239.98px) {  



}


@media all and (max-width: 991.98px) {

  

}


@media all and (max-width: 767.98px) {

  h1 br, h2 br, h3 br {
    content: "";
  }

  h1 br::after, h2 br::after, h3 br::after {
    content: " ";
  }

}


@media all and (max-width: 359.98px) {



}