/*!
    Theme Name: CLEAN
*/
.card {
  display: flex;
  flex-direction: column;
  margin: 5px 0;
  padding: 20px;
  box-sizing: border-box;
  max-width: 420px;
}
.card.webinar-card .contents .image {
  position: relative;
}
.card.webinar-card .contents .image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.card.webinar-card .contents .image::after {
  content: "";
  position: absolute;
  left: calc(50% - 15px);
  top: calc(50% - 20px);
  border-top: 20px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid white;
}
.card .header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px;
  height: 20px;
}
.card .header .focus-areas {
  font-size: 18px;
}
.card a.contents:hover {
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.25);
}
.card .contents {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  position: relative;
  background: white;
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.13);
  transition: all 0.15s ease-in-out;
  text-decoration: unset;
  font-weight: normal;
}
.card .contents.inline {
  height: 250px;
}
.card .contents .image {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card .contents .image.logo {
  background-size: contain;
  margin: 20px;
}
.card .contents .image.inline {
  position: absolute;
  width: 100%;
  z-index: 0;
}
.card .contents .body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 30px;
  z-index: 1;
}
.card .contents .body.inline {
  color: white;
}
.card .contents .body.inline::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: background-image 0.25s ease-in-out;
}
.card .contents .body.inline:hover::before {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.card .contents .body.inline:hover .description {
  opacity: 1;
}
.card .contents .body .title {
  display: flex;
}
.card .contents .body .title h3, .card .contents .body .title h5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 1.3rem;
  line-height: 1.5rem;
}
.card .contents .body .title .date {
  margin-right: 20px;
}
.card .contents .body .description {
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.card .contents .body .description > * {
  padding: 0;
  margin: 0;
}
.card .contents .body .description.inline {
  -webkit-line-clamp: 4;
  transition: opacity 0.15s ease-in-out;
  opacity: 0;
  flex: 1;
}
.card .contents .body .link {
  margin-top: 20px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.card-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 420px));
  grid-gap: 16px;
  justify-content: center;
}

.case-list {
  display: flex;
  flex-direction: column;
}
.case-list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.case-list .item:first-child {
  margin: 0 0 10px 0;
}
.case-list .item:last-child {
  margin: 10px 0 0 0;
}
.case-list .item:only-child {
  margin: 0;
}
.case-list .item .image {
  flex: 0 0 95px;
  height: 95px;
  border-radius: 100%;
  margin-right: 15px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.08);
  background-size: cover;
  background-position: center;
}
.case-list .item .info {
  flex: 1 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-list .item .info .title {
  font-weight: normal;
}
.case-list .item .info .subtitle {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.case-list .item:hover .image {
  box-shadow: 2px 5px 5px rgba(19, 19, 19, 0.25);
}
.case-list .item:hover .info {
  text-shadow: 0px 0px 20px rgba(19, 19, 19, 0.25);
  text-decoration: underline;
}

.contact-list {
  display: flex;
  flex-direction: column;
}
.contact-list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.contact-list .item:first-child {
  margin: 0 0 10px 0;
}
.contact-list .item:last-child {
  margin: 10px 0 0 0;
}
.contact-list .item:only-child {
  margin: 0;
}
.contact-list .item .image {
  flex: 0 0 95px;
  height: 95px;
  border-radius: 100%;
  margin-right: 15px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.08);
  background-size: cover;
  background-position: center;
}
.contact-list .item .info {
  flex: 1 0 150px;
  display: flex;
  flex-direction: column;
}
.contact-list .item .info .name {
  font-size: 1rem;
}
.contact-list .item .info .title {
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.contact-list .item .info .contact-item {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
}

.date-box {
  display: inline-block;
  width: 60px;
  text-align: center;
  color: white;
}
.date-box .day {
  background-color: var(--e-global-color-primary);
  font-size: 37px;
  line-height: 55px;
  font-weight: bold;
}
.date-box .month {
  background-color: var(--e-global-color-accent);
  font-size: 15px;
  line-height: 24px;
  font-weight: bold;
}

.dropdown {
  display: inline-block;
  position: relative;
  flex: 1 1 auto;
}
.dropdown > .header {
  display: flex;
  box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.08);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  background-color: white;
}
.dropdown > .header:hover {
  box-shadow: 0px 10px 15px rgba(19, 19, 19, 0.25);
}
.dropdown > .header:hover > .arrow > img {
  opacity: 1;
}
.dropdown > .header:hover > .value {
  opacity: 1;
}
.dropdown > .header > .value {
  padding: 20px;
  flex: 1 0 auto;
  opacity: 0.6;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.dropdown > .header > .value > .icon {
  flex: 0 0 18px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
}
.dropdown > .header > .value > .icon > img {
  max-height: 18px;
  max-width: 18px;
}
.dropdown > .header > .value > .text {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
}
.dropdown > .header > .arrow {
  padding: 17px 20px;
  background-color: #eee;
  display: flex;
  align-items: center;
}
.dropdown > .header > .arrow > img {
  width: 20px;
  opacity: 0.3;
}
.dropdown > .open {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: 0px 10px 15px rgba(19, 19, 19, 0.25);
  padding-top: 58px;
}
.dropdown > .open:hover {
  display: block;
}
.dropdown > .open > .list {
  background-color: white;
}
.dropdown > .open > .list > .item {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: black;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
}
.dropdown > .open > .list > .item.selected {
  background-color: #fafafa;
}
.dropdown > .open > .list > .item:hover {
  background-color: #bad4d6;
}
.dropdown > .open > .list > .item > .icon {
  flex: 0 0 18px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
}
.dropdown > .open > .list > .item > .icon > img {
  max-height: 18px;
  max-width: 18px;
}
.dropdown:active > .open {
  display: block;
}

.search {
  display: flex;
  box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.08);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  background-color: white;
}
.search:hover {
  box-shadow: 0px 10px 15px rgba(19, 19, 19, 0.25);
}
.search:hover > .arrow > img {
  opacity: 1;
}
.search:hover > .value {
  opacity: 1;
}
.search > .value {
  flex: 1 0 auto;
  opacity: 0.6;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.search > .value > .icon {
  flex: 0 0 18px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
}
.search > .value > .icon > img {
  max-height: 18px;
  max-width: 18px;
}
.search > .value > .text {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  border: none;
  padding: 20px;
  width: 100%;
}

.focus-areas {
  display: flex;
  align-items: center;
}
.focus-areas .item {
  width: 1.2em;
  height: 1.2em;
  position: relative;
  text-align: center;
}
.focus-areas .item img {
  transition: all 0.15s ease-in-out;
  max-width: 1em;
  max-height: 1em;
}
.focus-areas .item:hover img {
  transform: scale(1.2);
}
.focus-areas .item .tooltip {
  display: block;
  position: absolute;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  padding: 7px 15px;
  border-radius: 5px;
  bottom: calc(100% + 5px);
  white-space: nowrap;
  z-index: 1001;
  font-size: 1rem;
}
.focus-areas .item:not(:hover) .tooltip {
  display: none;
}

.icon-box {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3) !important;
  border-radius: 2px;
  position: relative;
  text-align: center;
  margin: auto;
  background: white;
  transition: all 0.1s ease-in-out;
}
.icon-box:hover {
  transform: scale(1.025);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2) !important;
}
.icon-box:hover .icon-box-icon {
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
.icon-box .title {
  font-weight: bold;
  color: var(--e-global-color-primary);
}
.icon-box .description {
  font-weight: normal;
  color: #8a8a8a;
  text-align: left;
  margin-top: 10px;
  font-size: 0.9rem;
}
.icon-box .icon-box-icon {
  position: absolute;
  top: -35px;
  right: -35px;
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-in-out;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-box .icon-box-icon > img {
  flex: 0 0 60%;
  filter: invert(100%);
}

.item-type {
  flex: 1;
  text-transform: uppercase;
}
.item-type .text {
  display: inline-flex;
  text-decoration: none;
  white-space: nowrap;
}
.item-type .icon {
  margin-right: 5px;
  max-height: 17px;
  flex: 0 0 17px;
}

.page-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px;
}
.page-banner > h1 {
  margin-top: 100px;
  color: #247d83;
  text-align: center;
  max-width: 90vw;
  font-size: calc(30px + 1vw);
  max-width: 1140px;
  text-align: left;
  padding: 0 10px;
}
.page-banner > .extra {
  margin-top: 40px;
}

.project-list {
  display: flex;
  flex-direction: column;
}
.project-list .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.project-list .item:first-child {
  margin: 0 0 10px 0;
}
.project-list .item:last-child {
  margin: 10px 0 0 0;
}
.project-list .item:only-child {
  margin: 0;
}
.project-list .item .image {
  flex: 0 0 95px;
  height: 95px;
  border-radius: 100%;
  margin-right: 15px;
  margin-bottom: 15px;
  box-shadow: 0px 0px 10px rgba(19, 19, 19, 0.08);
  background-size: cover;
  background-position: center;
}
.project-list .item .info {
  flex: 1 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-list .item .info .title {
  font-weight: normal;
}
.project-list .item .info .subtitle {
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.project-list .item:hover .image {
  box-shadow: 2px 5px 5px rgba(19, 19, 19, 0.25);
}
.project-list .item:hover .info {
  text-shadow: 0px 0px 20px rgba(19, 19, 19, 0.25);
  text-decoration: underline;
}

.webelement-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.webelement-list > .item {
  flex: 1;
}
.webelement-list > .item > img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.tilbud-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
}
.tilbud-filters > .filter {
  flex: 1 1 40%;
  min-width: 250px;
  padding: 20px;
  max-width: 450px;
  display: flex;
}

.tilbud-item {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.tilbud-item .tilbud-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px;
  height: 20px;
}
.tilbud-item .tilbud-header .focus-areas {
  font-size: 18px;
}
.tilbud-item .tilbud-card {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background: white;
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.13);
  transition: all 0.15s ease-in-out;
  text-decoration: unset;
  font-weight: normal;
}
.tilbud-item .tilbud-card:hover {
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.25);
}
.tilbud-item .tilbud-card .tilbud-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.tilbud-item .tilbud-card .tilbud-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 30px;
}
.tilbud-item .tilbud-card .tilbud-body .tilbud-title {
  display: flex;
  font-size: 25px;
}
.tilbud-item .tilbud-card .tilbud-body .tilbud-title .tilbud-date {
  margin-right: 20px;
}
.tilbud-item .tilbud-card .tilbud-body .tilbud-teaser {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.nyhed-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
}
.nyhed-filters > .filter {
  flex: 1 1 40%;
  min-width: 250px;
  padding: 20px;
  max-width: 450px;
  display: flex;
}

.nyhed-item {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.nyhed-item .nyhed-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px;
  height: 20px;
}
.nyhed-item .nyhed-header .focus-areas {
  font-size: 18px;
}
.nyhed-item .nyhed-card {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background: white;
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.13);
  transition: all 0.15s ease-in-out;
  text-decoration: unset;
  font-weight: normal;
}
.nyhed-item .nyhed-card:hover {
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.25);
}
.nyhed-item .nyhed-card .nyhed-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.nyhed-item .nyhed-card .nyhed-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 30px;
}
.nyhed-item .nyhed-card .nyhed-body .nyhed-title {
  display: flex;
  font-size: 25px;
}
.nyhed-item .nyhed-card .nyhed-body .nyhed-title .nyhed-date {
  margin-right: 20px;
}
.nyhed-item .nyhed-card .nyhed-body .nyhed-teaser {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.webinar {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.webinar #modal {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
.webinar #modal .modal-window {
  position: fixed;
  background: white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  transform: translate(calc(50vw - 50%), calc(50vh - 50%));
  padding: 30px;
  border-radius: 5px;
  max-width: min(80vw, 640px);
}
.webinar #modal .modal-window .close {
  text-align: center;
  margin-top: 20px;
}
.webinar .info {
  flex: 30%;
  padding: 20px;
}
.webinar .info .focus-areas {
  font-size: 25px;
}
.webinar .info #video-teaser {
  overflow: hidden;
}
.webinar .info #video-teaser #signed-in {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.webinar .info #video-teaser #company-indicator {
  font-weight: bold;
  padding: 0 40px;
}
.webinar .info #video-signin {
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
}
.webinar .info #video-signin table {
  margin: auto;
}
.webinar .info #video-signin table input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 300px;
  height: 30px;
  margin: 5px;
  max-width: 30vh;
}
.webinar .info #video-signin button {
  margin-top: 20px;
}
.webinar .info #video-signin .why {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8em;
  color: var(--e-global-color-primary);
  cursor: pointer;
  user-select: none;
}
.webinar .video {
  flex: 50%;
  position: relative;
  min-height: 360px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 800px) {
  .webinar .video {
    margin: 50px;
  }
}
.webinar .video #video-thumbnail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}
.webinar .video #video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.webinar .video #video-thumbnail::after {
  content: "";
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: url("/wp-content/themes/clean-theme/assets/icons/lock.png");
  background-size: cover;
}
.webinar .video #video-content {
  width: 100%;
  overflow: hidden;
}

.videnbank-archive .pagination {
  margin-top: 20px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.videnbank-archive .pagination a {
  display: inline-block;
  text-align: center;
  font-weight: normal;
  text-decoration: none;
  margin: 2px;
  flex: 0 0 25px;
}
.videnbank-archive .pagination a[disabled] {
  filter: grayscale(1);
  opacity: 0.3;
}
.videnbank-archive .pagination a.arrow {
  flex: 0 0 45px;
  font-size: 1.4em;
}
.videnbank-archive .pagination a.selected {
  font-weight: bold;
}

.medlem-container {
  max-width: 1300px;
  margin: auto;
}

.medlem-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.medlem-filters > .filter {
  flex: 1 1 30%;
  min-width: 250px;
  padding: 20px;
  max-width: 450px;
  display: flex;
}

.medlem-item {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: 20px;
  box-sizing: border-box;
}
.medlem-item .medlem-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 15px;
  height: 20px;
}
.medlem-item .medlem-header .focus-areas {
  font-size: 18px;
}
.medlem-item .medlem-card {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  background: white;
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.13);
  transition: all 0.15s ease-in-out;
  text-decoration: unset;
  font-weight: normal;
}
.medlem-item .medlem-card:hover {
  box-shadow: 0px 0px 27px rgba(19, 19, 19, 0.25);
}
.medlem-item .medlem-card .medlem-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.medlem-item .medlem-card .medlem-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 30px;
}
.medlem-item .medlem-card .medlem-body .medlem-title {
  display: flex;
  font-size: 25px;
}
.medlem-item .medlem-card .medlem-body .medlem-title .medlem-date {
  margin-right: 20px;
}
.medlem-item .medlem-card .medlem-body .medlem-teaser {
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

@font-face {
  font-family: petersburg-web;
  src: url(https://use.typekit.net/af/ef9113/0000000000000000000100c7/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("woff2"), url(https://use.typekit.net/af/ef9113/0000000000000000000100c7/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("woff"), url(https://use.typekit.net/af/ef9113/0000000000000000000100c7/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3) format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
html {
  --e-global-color-primary: #247d83;
  --e-global-color-secondary: #074f5f;
  --e-global-color-text: #000;
  --e-global-color-accent: #ff5d01;
  --e-global-typography-primary-font-family: "Exo";
  --e-global-typography-primary-font-size: 24px;
  --e-global-typography-text-font-family: "Exo";
  --e-global-typography-text-font-size: 18px;
  --e-global-typography-text-font-weight: 400;
  font-family: var(--e-global-typography-text-font-family), sans-serif;
  font-size: 18px;
}

body {
  margin: 0;
}

body > .header {
  position: fixed;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0em 0.15em 2em rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease-in-out;
}
body > .header.small {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
}
body > .header .content {
  max-width: 1300px;
  margin: auto;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body > .header .logo > a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
body > .header .logo > a > img {
  max-height: 100%;
  max-width: 100%;
}
body > .header .button.blivmedlem {
  display: none;
  font-size: 15px;
  padding: 8px 15px;
}
@media screen and (min-width: 600px) {
  body > .header .button.blivmedlem {
    display: block;
  }
}
body > .header .semitrans {
  opacity: 0.5;
}
body > .header .semitrans:hover {
  opacity: 1;
}
body > .header .menu {
  flex: 1 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
}
body > .header .menu .root {
  position: relative;
}
body > .header .menu .root > .item {
  font-size: 15px;
  padding: 8px 15px;
  text-decoration: none;
  font-weight: bold;
  color: black;
  border-radius: 50px;
  text-transform: uppercase;
  position: relative;
  z-index: 101;
}
body > .header .menu .root > .item:hover {
  color: white;
  background-color: #247d83;
}
body > .header .menu .root .sub-menu-buffer {
  width: 100%;
  top: 50%;
  height: 32px;
  display: none;
  position: absolute;
  z-index: 100;
}
body > .header .menu .root .sub-menu-buffer:after {
  top: 12px;
  left: calc(50% - 10px);
  position: absolute;
  content: "";
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
body > .header .menu .root:hover .sub-menu-buffer {
  display: block;
}
body > .header .menu .root .sub-menu {
  display: none;
  background: white;
  position: absolute;
  top: 40px;
  z-index: 99;
  box-shadow: -2.5px 2.5px 7px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  padding: 10px;
  width: 224px;
  left: 0;
}
body > .header .menu .root .sub-menu > .item {
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: black;
}
body > .header .menu .root .sub-menu > .item:hover {
  color: rgba(0, 0, 0, 0.518);
}
body > .header .menu .root:hover .sub-menu {
  display: flex;
}
body > .header .menu-mobile {
  display: flex;
  align-items: center;
  color: #336699;
  position: relative;
  padding: 10px;
  cursor: pointer;
}
body > .header .menu-mobile .item {
  padding: 12px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  color: black;
}
body > .header .menu-mobile .item:hover {
  color: rgba(0, 0, 0, 0.518);
}
body > .header .menu-mobile > .icon {
  width: 30px;
  pointer-events: none;
}
body > .header .menu-mobile .dropdown-buffer {
  width: 50px;
  left: 0;
  top: 50%;
  height: 32px;
  display: none;
  position: absolute;
  z-index: 100;
}
body > .header .menu-mobile .dropdown-buffer:after {
  top: 12px;
  left: calc(50% - 10px);
  position: absolute;
  content: "";
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}
body > .header .menu-mobile:hover .dropdown-buffer {
  display: block;
}
body > .header .menu-mobile > .dropdown-menu {
  display: none;
  background: white;
  position: absolute;
  top: 55px;
  z-index: 99;
  box-shadow: -2.5px 2.5px 7px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  padding: 10px;
  width: calc(100vw - 40px);
  max-width: 350px;
  right: 0;
  max-height: calc(100vh - 200px);
  overflow: auto;
}
body > .header .menu-mobile:hover > .dropdown-menu {
  display: flex;
}
@media screen and (min-width: 1000px) {
  body > .header .menu {
    display: flex;
  }
  body > .header .menu-mobile {
    display: none;
  }
}

body > .footer {
  text-align: center;
  color: white;
}
body > .footer > .newsletter {
  padding: 60px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
body > .footer > .newsletter > h2 {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
body > .footer > .bottom {
  background: #074f5f;
  padding: 20px;
}
body > .footer > .bottom > .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1300px;
  margin: auto;
}
body > .footer > .bottom > .content > div {
  padding: 15px;
  box-sizing: border-box;
  align-items: center;
}
body > .footer > .bottom > .content > .left {
  text-align: left;
  display: flex;
  justify-content: center;
  flex: 0 1 234px;
}
body > .footer > .bottom > .content > .center {
  flex: 1 1 auto;
}
body > .footer > .bottom > .content > .right {
  text-align: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 0 1 212px;
  align-items: flex-end;
}
body > .footer > .bottom > .content > .right > img {
  width: 100%;
}
body > .footer > .bottom > .content > .center .linkedin-link {
  margin-top: 10px;
  padding: 5px;
  width: 38px;
  height: 38px;
}
body > .footer > .bottom > .content > .center .linkedin-link > img {
  max-width: 60%;
  max-height: 60%;
  margin-top: 6px;
}

.button,
button,
.elementor-widget-button a.elementor-button {
  all: unset;
  font-weight: bold;
  display: inline-block;
  padding: 10px 30px;
  background: var(--e-global-color-primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 transparent;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.button.accent,
button.accent,
.elementor-widget-button a.elementor-button.accent {
  background: var(--e-global-color-accent);
}
.button:hover,
button:hover,
.elementor-widget-button a.elementor-button:hover {
  text-decoration: none;
  color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--e-global-typography-primary-font-family), sans-serif;
  font-style: inherit;
  font-weight: 500;
  overflow-wrap: break-word;
  color: currentColor;
  margin: 0;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  font-weight: inherit;
}

h1 {
  font-size: 2em;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.67em;
}

a {
  font-weight: bold;
  font-style: inherit;
  overflow-wrap: break-word;
  color: currentColor;
}

a:hover {
  color: currentColor;
  text-decoration: underline;
}

pre.xdebug-var-dump {
  white-space: break-spaces;
}

.hidden {
  display: none !important;
}

blockquote {
  font-size: 24px;
  margin: 0;
}

blockquote,
blockquote * {
  color: var(--e-global-color-primary);
  font-family: "petersburg-web", serif;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid currentColor;
  opacity: 0.2;
}

/*# sourceMappingURL=style.css.map */
