/*!*******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!../dev/parea_idf/css/main.scss ***!
  \*******************************************************************************************************************************************************************************/
a, abbr, acronym, address, article, aside, audio, b, big, blockquote, body, canvas, caption,
center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure,
footer, form, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label,
legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small,
span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, time, th, thead, tr, tt, u,
ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body, html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/montserrat/Montserrat-VariableFont_wght.ttf");
}
body {
  font-family: "Montserrat";
  display: flex;
  flex-direction: column;
  color: clr(txt_prim);
  overflow-y: auto;
  gap: 10px;
}

body {
  font-size: 16px;
  line-height: 24px;
}

.header {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 166px;
  z-index: 20;
}
.header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #FFF;
  box-sizing: border-box;
  padding: 32px 24px 32px 24px;
  gap: 32px;
  z-index: 5;
}
.header .logo {
  display: inherit;
}
.header .logo img {
  width: 160px;
}
.header .searchbar {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 32px;
}
.header .searchfield {
  box-sizing: border-box;
  padding: 8px 16px 8px 16px;
  width: 100%;
  background-color: #F4F4F4;
  color: #AAA;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  line-height: 24px;
}
.header #burgermnu {
  display: none;
}
.header #burgermnu + label {
  display: block;
  cursor: pointer;
  width: 54px;
  height: 44px;
  background-image: url("img/burger_menu.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 54px 44px;
}
@media screen and (min-width: 1000px) {
  .header {
    position: initial;
    box-sizing: border-box;
    padding: 0px 256px 0px 256px;
    height: initial;
  }
  .header > div {
    flex-direction: row;
    gap: 72px;
    align-items: center;
    justify-content: left;
    box-sizing: border-box;
    padding-bottom: 32px;
    z-index: 0;
  }
  .header .searchbar {
    max-width: 717px;
  }
  .header #burgermnu + label {
    display: none;
  }
}

/* Menu activator */
body:has(#burgermnu:checked) .nav {
  transform: translateY(-1px);
}

.nav {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 24px 16px 24px;
  background-color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  transform: translateY(-130%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  width: 100%;
}
.nav a, .nav a:visited {
  text-decoration: none;
  color: #4D4D4D;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.nav a:hover {
  color: #9900E9;
}
.nav .separator {
  border-top: 1px solid #4D4D4D;
}
.nav li.follow-panel div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  padding: 16px 16px;
  border-radius: 5px;
  background-color: #9900E9;
  color: #FFF;
}
.nav li.follow-panel input[type=text] {
  box-sizing: border-box;
  padding: 8px 8px;
  border: none;
  border-radius: 5px;
  width: 100%;
  background-color: #FFF;
  color: #4D4D4D;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1000px) {
  .nav {
    box-sizing: border-box;
    flex-direction: row;
    gap: 16px;
    justify-content: start;
    padding: 16px 0px 16px 0px;
    position: initial;
    transform: initial;
    transition: initial;
    will-change: initial;
    height: initial;
    background-color: initial;
  }
  .nav .separator {
    border-left: 1px solid #4D4D4D;
  }
  .nav li.follow-panel {
    position: fixed;
    right: 0px;
    top: 130px;
    padding: 0px;
    height: 0px;
  }
  .nav li.follow-panel div {
    flex-direction: row;
    gap: 8px;
    padding: 64px 0px;
    border-radius: 5px 0px 0px 5px;
  }
  .nav li.follow-panel label {
    transform: rotate(-90deg);
  }
  .nav li.follow-panel input[type=text] {
    display: none;
  }
}

.headline {
  padding: 32px 24px 0px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 164px;
}
.headline .cblock {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.headline a,
.headline a:visited {
  display: block;
  text-decoration: none;
  color: #4D4D4D;
}
.headline img {
  width: 100%;
  border-radius: 5px;
}
.headline h1 {
  font-size: 38px;
  font-weight: 650;
  line-height: 41.7px;
}
.headline p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
@media screen and (min-width: 1000px) {
  .headline {
    padding: 32px 240px 0px 240px;
    flex-direction: row;
    gap: auto;
    margin-top: 0px;
  }
  .headline .cblock {
    flex: 2 1 0;
  }
  .headline h1 {
    font-size: 48px;
    font-weight: 650;
    line-height: 55.5px;
  }
  .headline img {
    width: 100%;
    border-radius: 5px;
  }
}

/* Extra gap */
div.headline ~ ul.postlist {
  padding-top: 64px;
}
@media screen and (min-width: 1000px) {
  div.headline ~ ul.postlist {
    padding-top: 32px;
  }
}

.section {
  padding: 32px 24px 32px 24px;
}
.section h1 {
  box-sizing: border-box;
  padding: 32px 0px 32px 0px;
  font-size: 28px;
  font-weight: 650;
  line-height: 31.2px;
  background: transparent url("img/headings_decoration.svg") center right no-repeat;
  background-size: contain;
}
@media screen and (min-width: 1000px) {
  .section {
    padding: 32px 240px 32px 240px;
  }
  .section h1 {
    display: inline-block;
    padding-right: 64px;
  }
}

.section.postlist ul {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.section.postlist ul li {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.section.postlist ul a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #4D4D4D;
}
.section.postlist ul h2 {
  font-size: 21.3px;
  font-weight: 650;
  line-height: 22px;
}
.section.postlist ul img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
.section.postlist ul .details {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  font-size: 16px;
  line-height: 24px;
}
.section.postlist ul .details div {
  flex-grow: 1;
}
.section.postlist ul .details div:first-child {
  color: #4D4D4D;
  text-align: left;
}
.section.postlist ul .details div:last-child {
  color: #BCBCBC;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .section.postlist ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section.postlist ul li {
    flex: 0 0 32%;
  }
  .section.postlist ul .details {
    flex-direction: row;
  }
  .section.postlist ul .details div:last-child {
    text-align: right;
  }
}

.banner {
  margin: 32px 24px 32px 24px;
  display: block;
  width: calc(100% - 48px);
  height: 0px;
  padding-bottom: 102.702%;
}
.banner.techcom {
  background: center/contain url("img/banners/techcom_mobile.jpg") no-repeat;
}
.banner.intecom {
  background: center/contain url("img/banners/intecom_mobile.jpg") no-repeat;
}
.banner.digicom {
  background: center/contain url("img/banners/digicom_mobile.jpg") no-repeat;
}
@media screen and (min-width: 1000px) {
  .banner {
    margin: 32px 240px 32px 240px;
    width: calc(100% - 480px);
    padding-bottom: 16.666%;
  }
  .banner.techcom {
    background: center/contain url("img/banners/techcom.jpg") no-repeat;
  }
  .banner.intecom {
    background: center/contain url("img/banners/intecom.jpg") no-repeat;
  }
  .banner.digicom {
    background: center/contain url("img/banners/digicom.jpg") no-repeat;
  }
}

.section.videolist ul {
  display: flex;
  padding-top: 32px;
  flex-direction: column;
  row-gap: 48px;
}
.section.videolist ul img {
  display: block;
  width: 100%;
  border-radius: 5px;
}
@media screen and (min-width: 1000px) {
  .section.videolist ul {
    flex-direction: row;
    justify-content: space-between;
  }
  .section.videolist ul li {
    flex: 0 0 32%;
  }
}

.footer {
  padding: 64px 24px 32px 24px;
  background-color: #9900E9;
  color: #FFF;
}
@media screen and (min-width: 1000px) {
  .footer {
    padding: 64px 240px 32px 240px;
  }
}
.footer .logo {
  width: 128px;
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .footer ul {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer ul ~ div {
  margin-top: 32px;
  text-align: center;
}
.footer ul a,
.footer ul ~ div a {
  color: #FFF;
  text-decoration: none;
}
.footer ul a:hover,
.footer ul ~ div a:hover {
  text-decoration: underline;
}
.footer ul.fnav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .social {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
}
.footer .social a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #ffffff;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer .social .linkedin {
  background-image: url("img/social_linkedin.svg");
}
.footer .social .facebook {
  background-image: url("img/social_facebook.svg");
}
.footer .social .twitterx {
  background-image: url("img/social_twitter.svg");
}

.section .companies-list {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 32px;
}
.section .companies-list li {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section .companies-list img {
  width: 100%;
  border-radius: 5px;
}
.section .companies-list p {
  display: block;
}
@media screen and (min-width: 1000px) {
  .section .companies-list {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    row-gap: 64px;
  }
  .section .companies-list img {
    min-width: 320px;
  }
}

.article {
  padding: 32px 0px 64px 0px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1000px) {
  .article {
    padding: 64px 480px 64px 480px;
  }
}
.article img {
  display: block;
  width: 100%;
  corner-radius: 5px;
}
.article h1 {
  font-size: 38px;
  font-weight: 650;
  line-height: 41.7px;
}
.article .details {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  font-size: 16px;
  line-height: 24px;
}
.article .details div {
  flex-grow: 1;
}
.article .details div:first-child {
  color: #4D4D4D;
  text-align: left;
}
.article .details div:last-child {
  color: #BCBCBC;
  text-align: right;
}
.article .acontent {
  font-size: 16px;
  line-height: 24px;
}
.article .acontent h2 {
  font-size: 21.3px;
  font-weight: 650;
  line-height: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.article .acontent h3 {
  font-size: 21.3px;
  font-weight: 650;
  line-height: 22px;
}
.article .acontent ul {
  list-style: disc;
  padding-left: 16px;
}
.article .acontent img {
  margin: 16px 0px 16px 0px;
}
.article .acontent a {
  text-decoration: none;
  color: #9900E9;
}
.article .acontent a:hover {
  text-decoration: underline;
}
.article .acontent p {
  margin-bottom: 16px;
}
.article .acontent b {
  font-weight: 600;
}

.section form {
  font-size: 16px;
  line-height: 24px;
}
.section form > div {
  padding: 8px 0px 8px 0px;
}
.section form > div.form-footer {
  display: flex;
  flex-direction: row;
  justify-content: end;
}
.section form ul.errorlist {
  list-style: none;
  padding: 0px;
  font-style: italic;
}
.section form input[type=text] {
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
}
.section form select {
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
}
.section form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
}
.section form input[type=submit] {
  background-color: #9900E9;
  color: #FFF;
}
.section form button {
  box-sizing: border-box;
  padding: 16px 64px 16px 64px;
  width: fit-content;
  background-color: #9900E9;
  color: #FFF;
  border: none;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.section .success {
  padding: 24px 64px 24px 64px;
  background-color: #9900E9;
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
  border-radius: 5px;
}

.section.page {
  padding: 32px 24px 128px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 128px;
  color: #4D4D4D;
  font-size: 16px;
  line-height: 24px;
}
.section.page img {
  display: block;
  width: 100%;
  corner-radius: 5px;
}
.section.page ul {
  list-style: disc;
  padding-left: 32px;
}
.section.page ol {
  list-style: decimal;
  padding-left: 32px;
}
.section.page h1 {
  font-size: 38px;
  font-weight: 650;
  line-height: 41.7px;
}
.section.page h2 {
  font-size: 21.3px;
  font-weight: 650;
  line-height: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section.page a, .section.page a:visited {
  text-decoration: none;
  color: #9900E9;
}
.section.page a:hover {
  text-decoration: underline;
}
.section.page b {
  font-weight: 600;
}
@media screen and (min-width: 1000px) {
  .section.page {
    padding: 64px 30% 128px 30%;
    margin-top: 0px;
  }
  .section.page.extended {
    padding: 64px 240px 128px 240px;
  }
}
