*,
*:after,
*:before {
  box-sizing: border-box;
}

@font-face {
  font-family: ALEXBRUSH;
  src: url(fonts/AlexBrush-Regular.ttf);
}

:root {
  --header-outer-height: 235px;
  --header-inner-height: 70px;
  --header-height-difference: calc(
    var(--header-outer-height) - var(--header-inner-height)
  );
  --header-bg: #fff;
  --header-nav-font: #fff;
  --body-bg: #f2f5f7;
  --accordion-label-bg: #4a744a;
  --accordion-label-bg-hover: #2d462d;
  --accordion-label-font: #fff;
  --headline-font: #2d462d;
  --body-font: #4a744a;
  --button: #4a744a;
  --button_hover: #2d462d;
}

h1 {
  font-family: 'ALEXBRUSH';
  color: var(--headline-font);
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0 10 10 0;
  margin: 0 10 10 0;
}

h2 {
  font-family: 'ALEXBRUSH';
  color: var(--headline-font);
  letter-spacing: 0.1em;
  padding: 0 10 10 0;
  margin: 0 10 10 0;
}

p {
  /*font-family: 'ALEXBRUSH';
  font-size: 1.5em;*/

}

body {
  font-family: sans-serif;
  background-color: var(--body-bg);
  line-height: 1.5;
  /*letter-spacing: 0.1em;*/
  min-height: 300vh;
  position: relative;
}


/* Sticky header */
.header-outer {
  /* Make it stick */
  height: var(--header-outer-height);
  position: sticky;
  top: calc(
    var(--header-height-difference) * -1
  ); /* Multiply by -1 to get a negative value */
  display: flex;
  align-items: center;

  /* Other */
  background-color: var(--header-bg);
  background-image: url(../img/header.jpg);
  background-size: auto 100%;
  box-shadow: 0 2px 10px 0 rgba(0,0,0, 0.1);
}

.header-inner {
  /* Make it stick */
  height: var(--header-inner-height);
  position: sticky;
  top: 0;

  /* Other */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Styling of other elements */
.header-logo img {
  display: block;
  height: calc(var(--header-inner-height) - 30px);
}
.header-logo {
  font-size: 0.9rem;
  color: white;
}

.header-navigation {
  display: flex;
  flex-wrap: wrap;
}

.header-navigation a,
.header-navigation {
  font-size: 1.125rem;
  color: var(--header-nav-font);
  margin-left: 1.75rem;
  position: relative;
  font-weight: 500;
}

.header-navigation a {
  font-size: 1.125rem;
  color: inherit;
  text-decoration: none;
}

.header-navigation {
  border: 0;
  background-color: transparent;
  padding: 0;
}

.header-navigation a:hover:after,
.header-navigation button:hover:after {
  transform: scalex(1);
}

.header-navigation a:after{
  transition: 0.25s ease;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentcolor;
  transform: scalex(0);
  position: absolute;
  bottom: -2px;
  left: 0;
}

.main {
  margin-top: 3rem;
}

.free_content{
  margin:auto;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.free_content p{
	/*padding: 1em 1em 1em 1em;*/
  text-align: left;
}

.offet_anchor{
  visibility: hidden;
  height: 0px;
  position: absolute;
  margin: -100px;
}

.responsive-wrapper {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

table.profile{
  color: var(--headline-font)
}

td {
  vertical-align: top;
  border-bottom: 1px dotted var(--body-font);
}


@media (min-width: 800px) {
  .header-navigation a {
    display: inline-block;
  }
}

@media (max-width: 800px) {
  .hide_4_mobile {
    display: none;
  }
}
