:root {
  --font-primary: 'univia-pro';
  --font-secondary: 'univia-pro';

  --primarycolor: #3D319E;
  --secondarycolor: #0F2A46;
  --thirdcolor: #E8E5FD;



  /* --mainblue: #2839DB; */
}

html
{
  font-size:62.5%;
}

.mobile {
  display: none;
}


body {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  line-height: 1.7em;
  color: var(--secondarycolor);
  background: white;
  margin: 0;
  padding: 0;
}

a
{
  color: var(--primarycolor);
}

h1, h2, h3
{
  color: var(--secondarycolor);
}

p {
  color: var(--secondarycolor);
}


header, section, footer {
  float: left;
  width: 100%;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container{
    max-width: 1380px;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.flex {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

@media screen and (min-width: 576px) {
  .container {
      max-width:540px;
  }
}

@media screen and (min-width: 768px) {
  .container {
      max-width:720px;
  }
}

@media screen and (min-width: 992px) {
  .container {
      max-width:960px;
      padding-left: 50px;
      padding-right: 50px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
      max-width:1140px;
  };
}

@media screen and (min-width: 1400px) {
  .container {
      max-width:1320px;
  }
}

@media screen and (min-width: 1600px) {
  .container {
      max-width:1380px;
  }
}

header
{
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 5000;
}

header .header_bar
{
  margin: 0px auto 0 auto;
  border-radius: 80px;
  background: #cac4fe;
  display: flex;
  align-items: middle;
  justify-content: flex-start;
  padding: 20px 50px;
}

header .header_bar .site-branding
{
  max-width: 140px;
  height: auto;
  width: 30%;
  text-align: left;
}

header .header_bar .site-nav
{
  width: 70%;
}

header .header_bar .site-branding img
{
  width: 100%;
  height: auto;
  display: block;
}

section.eyecandy h1
{
  font-size: 3.5em;
  line-height: 145%;
}

section.eyecandy .container
{
  padding-top: 200px;
  padding-bottom: 50px;
  background: var(--thirdcolor);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

section.eyecandy .blocks-white
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--secondarycolor);
  gap: 50px;
}

section.eyecandy .blocks-white .block
{
  background: #FFF;
  padding: 30px;
  border-radius: 40px;
}

section.eyecandy .blocks-white .block span
{
  padding: 5px 15px;
  border-radius: 80px;
  border: 1px solid var(--secondarycolor);
}

section.eyecandy .blocks-white .block p
{
  color: var(--primarycolor);
}

section.eyecandy .right .img-container
{
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
}

section.eyecandy .right .img-container img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

section.centertekst
{
  padding: 50px 0;
}

section.centertekst .container
{
  max-width: 80rem;
  text-align: center;
}

@media screen and (max-width: 576px) {

  section.eyecandy h1
  {
    font-size: 1.7em;
    margin: 40px 0;
  }

  header .header_bar .site-branding
  {
    width: 50%;
  }

  section.eyecandy .container
  {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
    padding-top: 50px;
  }

  section.eyecandy .blocks-white
  {
    grid-template-columns: 1fr;
  }
}
