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


  * {
    margin: 0;
  }
  
  body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
    margin-top: 60px;
  }
  
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
  }

  input, button, textarea, select {
    font: inherit;
  }

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }

    h1 {
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        font-style: normal;
      }
    

  h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  }

  #root, #__next {
    isolation: isolate;
  }

  .intro {
    padding:0 30px;
  }
  
  section {
   background-position: center;
    background-size: cover;
  } 
  
.textframe {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
 
}



.textframe > div {
    width:50%;
}

@media screen and (max-width: 1023px) {
    .textframe {
        padding: 40px 0;
    }

    .textframe > div {
        width:80%;
    }
}

/*
[data-content-element-type-alias="tekstramme"] {
    display:flex!important;
    background:red;
    height:100%;
}*/
/*
[data-content-element-type-alias="umbBlockGridDemoRichTextBlock"], [data-content-element-type-alias="umbBlockGridDemoHeadlineBlock"] {
    background:blue;
    max-width:50%;
}
*/
header {
    position: fixed;
    top:0px;
    z-index:9999;
    padding:15px;
    width:100%;
    background-color:#000;
    color:#fff;
}

h2 {
    font-size:24px;
    margin-bottom:15px;
    line-height: 120%;
}

header img {
    max-width:300px;
    margin-left:30px;
}

.icon {
    width: 60px;
    margin-bottom: 20px;

}

footer {
    display: flex;
    padding:50px;
    width:100%;
    background-color:#000;
    color:#fff;
}

footer .container {
    display: flex;
    flex-direction: column;
    margin:auto;
    width:100%;
    max-width:1440px;
}

footer .row {
    display: flex;
    width:100%;
    flex-direction: row;
    align-items: flex-start;
}



footer .row div {
    min-width:20%;
    margin-right:50px;
}



footer .logo img {
    margin-bottom:30px;
    width:300px;
}

footer a {
  color:#fff;
}

@media screen and (max-width: 767px) { 
    footer .row {
        flex-direction: column;
    }

    footer .row div {
        width:100%;
        margin-right:0;
        margin-bottom:30px;
    }

    footer {
        display: flex;
        padding:50px 30px;
    }

    footer .logo img {
        margin-bottom:0px;

}