/*

	Design & Development:
	
	Thrane.nu
	Spangevej 19
	DK-8700 Horsens
	Denmark
	
	http://thrane.nu

*/


:root {

    --color-tt-green: 27,59,41;
    --color-tt-green-light: 166,178,170;
    --color-tt-blue: 36,55,70;
    --color-tt-blue-light: 120,146,165;
    
    
    --color-tt-white: 255,255,255;
    --color-tt-black: 0,0,0;
    --color-tt-grey: 91,91,91;
    --color-tt-grey-light: 242,242,242;
}



html {
	background-color: rgba(var(--color-tt-light),0.60);
}
body {
	background-color: rgba(var(--color-tt-green-light),0.50);
}
.row {
	margin: 0;
}

.p:last-of-type {
	margin-bottom: 0;
}

@media(max-width: 575.98px) {
    .t4-sticky {
        position:relative !important;
        top: 0!important
    }
}

/* Header */
#t4-header {
	background-color: rgba(var(--color-tt-green),0.70);
    border-bottom: 0 none transparent;
	display: block;
    min-height: 50px;
	position: fixed!important;
	width: 100%;
	top: 0;
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
	z-index: 50;
	/*
	-webkit-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
	box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.3);
	*/
}
.not-at-top #t4-header.t4-sticky {
	background-color: rgba(var(--color-tt-green),0.90);
	-webkit-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
	-moz-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
	box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
}
.frontpage #t4-header {
	background-color: rgba(var(--color-tt-green),0.00);
}
.frontpage.not-at-top #t4-header.t4-sticky {
	background-color: rgba(var(--color-tt-green),0.70);
	-webkit-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
	-moz-box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
	box-shadow: 0px -2px 4px 3px rgba(0,0,0,0.0);
}
#t4-header {
	margin-top: 0px;
}

#t4-header .logo {
	padding: 10px 10px 10px 15px;
	flex: 0 1 50%;
}
#t4-header .vertical-menu {
	flex: 1 1 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 50px;
	padding: 0 6px 0 0;
	line-height: 1;
}
#t4-header .logo img {
    height: 30px;
    width: auto;
	transition:            all .2s ease-out;
}

#t4-header .logo img.light {
	opacity: 0;
	display: none;
}

.frontpage #t4-header .logo img.light {
	opacity: 1;
	display: block;
	transition:            all .2s ease-out;
}
.frontpage #t4-header .logo img.dark {
	opacity: 0;
	display: none;
	transition:            all .2s ease-out;
}
.frontpage.not-at-top #t4-header .logo img.light {
	opacity: 0;
	display: none;
	transition:            all .2s ease-out;
}
.frontpage.not-at-top #t4-header .logo img.dark {
	opacity: 1;
	display: block;
	transition:            all .2s ease-out;
}



body.theme-defaultblue #t4-header {
	background-color: rgba(var(--color-tt-green),0.70);
}
body.theme-defaultblue.not-at-top #t4-header.t4-sticky {
	background-color: rgba(var(--color-tt-green),0.90);
}


/* Header EO */

p:last-of-type {
	margin-bottom: 0;
}
h1, h2, h3, h4 {
	color: rgba(var(--color-tt-green),1.00);
}


.t4-content {
	padding-top: 0;
}

.t4-main-body {
	padding-top: 0;
	padding-bottom: 0;
	background-color: rgba(var(--color-tt-white),1.00);
}

.com-content-article__body {
    margin-top: 0!important;
    margin-bottom: 0!important;
	padding: 0 30px 30px 30px;
}
.category-desc {
    border: 0 none transparent;
	padding: 0 30px 30px 30px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
}



/* Call to action Menu */
.calltoaction-menu {
	position: absolute;
	right: 80px;
	top: 19px;
	width: auto;
	display: none;
}
.calltoaction-menu a,
.calltoaction-menu a:focus {
	text-decoration: none;
	color: rgba(var(--color-tt-white),1.00);
	padding: 12px 15px;
	line-height: 1;
	display: inline-block;
	font-weight: 500;
	font-size: 18px;
	margin: 0 5px;
	transition: all .3s ease-out;
}

.calltoaction-menu a:hover {
	text-decoration: none;
	color: rgba(var(--color-tt-white),1.00);
	background-color: rgba(var(--color-tt-green),0.80);
}
.calltoaction-menu .current.active a {
	color: rgba(var(--color-tt-white),1.00);
	background-color: rgba(var(--color-tt-green),0.80);
}


.frontpage .calltoaction-menu a {
	color: rgba(var(--color-tt-green),1.00);
}
.frontpage .calltoaction-menu a:hover {
	color: rgba(var(--color-tt-white),1.00);
	background-color: rgba(var(--color-tt-green),0.80);
}
.frontpage.not-at-top .calltoaction-menu a {
	color: rgba(var(--color-tt-white),1.00);
}


/* Call to action Menu EO */



/* Off-Canvas menu */
.sm-logo.sm-logo {
	background-color: rgba(var(--color-black),1.00);
    padding: 30px;
	padding-bottom: 30px;
    text-align: center!important;
}
.sm-logo img {
    width: 100%;
    height: auto;
}

.sm-parent .menu-icon3 span {
	right: 0;
	left: auto;
	background-color: rgba(var(--color-tt-green),1.0);
	transition:            all .2s ease-out;
}
.sm-parent .menu-icon3 span {
	background-color: rgba(var(--color-tt-white),1.0);
	transition:            all .2s ease-out;
}
.frontpage .sm-parent .menu-icon3 span {
	background-color: rgba(var(--color-tt-green),1.0);
	transition:            all .2s ease-out;
}
.frontpage.not-at-top .sm-parent .menu-icon3 span {
	background-color: rgba(var(--color-tt-white),1.0);
	transition:            all .2s ease-out;
}
.sm-parent .menu-icon3 span:nth-child(1) {
	width: 30px;
	transition:            all .2s ease-out;
}
.sm-parent .menu-icon3 span:nth-child(2) {
	width: 22px;
	transition:            all .2s ease-out;
}
.sm-parent .menu-icon3 span:nth-child(3) {
	width: 14px;
	transition:            all .2s ease-out;
}

.sm-parent:hover .menu-icon3 span:nth-child(1) {
	width: 14px;
}
.sm-parent:hover .menu-icon3 span:nth-child(2) {
	width: 22px;
}
.sm-parent:hover .menu-icon3 span:nth-child(3) {
	width: 30px;
}

.sm-open-144 .sm-pusher::after{
	background-color: rgba(var(--color-tt-green),1.0);
	opacity: 0.6;
}

.sm-level a {
	display: block;
}

body.theme-defaultblue .sm-parent .menu-icon3 span {
	background-color: rgba(var(--color-tt-white),1.0);
}
body.theme-defaultblue.sm-open-144 .sm-pusher::after{
	background-color: rgba(var(--color-tt-blue),1.0);
	opacity: 0.6;
}
body.theme-defaultblue .sm-btn-144 .menu-icon3 span {
	background-color: rgba(var(--color-tt-white),1.0);
}
/* Off-Canvas menu EO */



.convertforms.contactform h2 {
	font-weight: 700;
	margin-bottom: 0;
}
.convertforms.contactform .cf-label h5 {
	display: inline-block;
	margin: 0;
	font-size: 16px;
}
.convertforms.contactform .cf-form-wrap {
	padding: 0;
}


/* Article */

.pricewrap {
    flex-wrap: wrap;
    display: flex;
    flex-basis: 0;
    margin: 0 -15px;
}
.pricewrap > div {
	flex: 0 1 50%;
    padding: 15px;
}
.pricewrap h3 {
    padding-top: 0!important;
}

.table.table-sm {
    width: 100%!important;
    max-width: 100%;
    color: rgba(var(--color-tt-white),1.00);
    background-color: rgba(var(--color-tt-medium),1.00);
    border-radius: 10px;
    border: 0 none transparent!important;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 15px;
}

.table.table-sm thead tr {
    background-color: rgba(var(--color-tt-dark),1.00);
}
.table.table-sm thead h3 {
    margin: 0;
    padding: 0;
    color: rgba(var(--color-tt-white),1.00);
}
.table.table-sm tr td:nth-child(2),
.table.table-sm tr td:nth-child(3) {
    text-align: right;
    width: 100px;
}
.table.table-sm > thead > tr:first-of-type > th,
.table.table-sm > tbody > tr:first-of-type > th,
.table.table-sm > tfoot > tr:first-of-type > th,
.table.table-sm > thead > tr:first-of-type > td,
.table.table-sm > tbody > tr:first-of-type > td,
.table.table-sm > tfoot > tr:first-of-type > td {
    border: 0 none transparent;
}
.table.table-sm > thead > tr > th,
.table.table-sm > tbody > tr > th,
.table.table-sm > tfoot > tr > th,
.table.table-sm > thead > tr > td,
.table.table-sm > tbody > tr > td,
.table.table-sm > tfoot > tr > td {
    padding: 10px;
    border: 0 none transparent;
    color: rgba(var(--color-tt-white),1.00);
	transition:            all .2s ease-out;
}
.table.table-sm > thead > tr:hover > th,
.table.table-sm > tbody > tr:hover > th,
.table.table-sm > tfoot > tr:hover > th,
.table.table-sm > thead > tr:hover > td,
.table.table-sm > tbody > tr:hover > td,
.table.table-sm > tfoot > tr:hover > td {
    padding: 10px;
    border: 0 none transparent;
    color: rgba(var(--color-tt-dark),1.00);
    font-weight: 600;
}
.table.table-sm > tbody > tr:hover {
    background-color: rgba(var(--color-tt-light),1.00);
}
.table.table-sm tr:nth-child(2n) {
    background-color: rgba(var(--color-tt-dark),1.00);
	transition:            all .2s ease-out;
}
.table.table-sm tr:nth-child(2n):hover {
    background-color: rgba(var(--color-tt-light),1.00);
}




.com-content-article__body strong {
	font-weight: 600;
}

.page-header-main {
    background-color: rgba(var(--color-tt-blue-dark),1.00);
	min-height: 50vw;
	position: relative;
	margin: 0 -16px 40px -16px;
	text-align: center;
	position: relative;
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.page-header-main .container {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 5vw 20px 5vw;
}
.page-header-main .container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-tt-green-light),0.80);
    z-index: 1;
}




.page-header-main .container > * {
    z-index: 2;
}
.page-header-main h1 {
	margin: 0;
	font-size: 6.0vw;
    color: rgba(var(--color-tt-green),1.00);
}
.page-header-main h2 {
	margin: 0 0 0 0;
	font-weight: 300;
	font-size: 4.3vw;
    color: rgba(var(--color-tt-green),1.00);
}

body.theme-defaultblue .page-header-main h1 {
    color: rgba(var(--color-tt-white),1.00);
}
body.theme-defaultblue .page-header-main h2 {
    color: rgba(var(--color-tt-white),1.00);
}

.page-header-main .topimage {
	overflow: hidden;
}
.page-header-main .topimage img {
	width: 200%;
	height: auto;
	max-width: none;
}

body.projects.view-article .page-header-main {
	min-height: 80vw;
}	
body.projects.view-article .page-header-main img {
	max-height: 32vw;
}

.item-image {
	width: 100%;
	margin-bottom: 50px!important;
}
figure.pull-left.item-image {
    margin-right: 0;
}
figure.pull-right.item-image {
    margin-left: 0;
}
 


figure figcaption {
    color: rgba(var(--color-tt-dark),1.00)!important;
    background-color: rgba(var(--color-tt-light),1.00);
    color: #adb5bd;
    font-size: 13px;
    letter-spacing: 0;
    padding: 10px 12px;
    text-transform: none;
    text-align: left;
    text-shadow: 0 0 0 rgba(0, 0, 0, .0);
}

.item-page .article-info {
	padding-left: 30px;
	margin-bottom: 10px;
}
.item-page .article-info .icon-calendar {
	margin-right: 5px;
}
.item-page .article-info i {
	margin-right: 5px;
}
/* Article EO */






/* Intro */
#t4-intro {
    background-color: rgba(var(--color-tt-white),1.00);
	margin: 0;
	padding: 50px 40px;
	text-align: center;
	font-size: 18px;
}
#t4-intro h2 {
	margin-top: 0;
}
/* Intro EO */






/* Content Wrap  */

.contentwrapper {
    flex-wrap: wrap;
	display: flex;
	margin: 0 -15px;
}
.contentwrapper > div {
	flex: 0 1 50%;
	padding: 15px;
}

/* Content Wrap EO */



/* Projects */
.jnwp-news-wall-wrapper {
	max-width: 100%;
}
.jnwp-news-wall-inner {
	margin: 0 -15px;
}
.jnwp-news-wall-inner .jux-content-inner {
	/*min-height: 430px;*/
}
.jnwp-wall-item {
	padding: 15px;
}
.jux-controls.filter-button {
	padding: 0;
}
.jux-controls button.active,
.jux-controls button.active:hover,
.jux-mashup .jux-filters button.active ,
.jux-mashup .jux-filters button.active:hover {
	color: rgba(var(--color-tt-white),1.00);
    background-color: rgba(var(--color-tt-green),1.00);
    border-color: rgba(var(--color-tt-green),1.00);
}
.jux-controls button:hover,
.jux-controls button.show-all,
.jux-controls button.show-all:hover,
.jux-mashup .jux-filters button:hover,
.jux-mashup .jux-filters button.show-all,
.jux-mashup .jux-filters button.show-all:hover {
	color: rgba(var(--color-tt-green),1.00);
    background-color: rgba(var(--color-tt-green-light),1.00);
    border-color: rgba(var(--color-tt-green-light),1.00);
}



.jux-content-inner .item-image {
    width: 100%;
    margin-bottom: 0 !important;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    position: relative;
}
.jux-content-inner .item-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.jux-content-inner h2 {
    font-size: 22px;
    margin-top: 0;
}
.jux-content-inner .introtext {
	padding: 15px;
}
.jux-controls .jux-filters-group {
    float: none;
    margin-right: 10px;
    margin-bottom: 7px;
}
.jux-controls button {
	margin-bottom: 5px;
}


body.contact .filter-extra {
	display: none;
}
body.contact .jux-content-inner .item-image {
    width: 100%;
    margin-bottom: 0 !important;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
}
body.contact .jux-content-inner .item-image img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

body.contact figure.item-image {
	width: 100%;
	float: none;
	margin: 0!important;
	padding: 0;
}

body.contact .jux-mashup .jux-container {
	margin: 0 -15px;
	width: auto;
}
body.contact .jux-mashup .jux-container .mix {
    width: 100%!important;
    padding: 15px;
}
body.contact .jux-mashup h2 {
	font-size: 22px;
	margin-top: 0;
}
body.contact .jux-mashup figure.item-image {
	width: 100%;
	float: none;
	margin: 0!important;
	padding: 0;
	background-color: #FF0000;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
body.contact .jux-mashup figure.item-image img {
	width: 100%;
	height: auto;
}

body.contact .jux-mashup .introtext {
	padding: 15px;
}
body.contact .jux-mashup .introtext p {
	margin: 0;
}
body.contact .jux-mashup .introtext p:first-of-type {
	margin-top: 15px;
}
body.contact .jux-mashup .jux-reset {
	display: none;
}
body.contact .jux-mashup .item-content {
	height: 100%;
    background-color: rgba(var(--color-tt-grey-light),1.00);
}

/* Projects EO */



/* Content */
.contactperson.desktop {
	display: none;
}
.contactperson .wrapper {
	color: rgba(var(--color-tt-green),1.00);
    background-color: rgba(var(--color-tt-green-light),1.00);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
}
.contactperson img {
	width: 100%;
	height: auto;
}
.contactperson h3 {
	margin: 0 0 15px 0;
}
.contactperson h4 {
	font-weight: 600;
	font-size: 18px;
	margin: 16px 0 2px 0;
}
.contactperson p:first-of-type {
	margin-top: 15px;
	margin-bottom: 0;
}
.contactperson i,
.contactpersons i {
	margin-right: 6px;
}
.contactperson a,
.contactpersons a {
	text-decoration: none;
}
.contactperson a:hover,
.contactpersons a:hover {
	text-decoration: underline;
}

.moduletable.contactpersons figure.item-image {
	margin: 0!important;
	float: none;
}
.moduletable.contactpersons .introtext {
	background-color: rgba(var(--color-tt-grey-light),1.00);;
}
.moduletable.contactpersons .introtext p:first-of-type {
	margin-top: 15px;
	margin-bottom: 0;
}
.moduletable.contactpersons .introtext h2 {
	margin-bottom: 2px;
}


/* Content EO */


/* Projects */
.projectinfo.desktop {
	display: none;
}
.projectinfo .wrapper {
	color: rgba(var(--color-tt-green),1.00);
    background-color: rgba(var(--color-tt-green-light),1.00);
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.projectinfo h3 {
	margin: 0 0 15px 0;
}
.projectinfo p:first-of-type {
	margin-top: 15px;
	margin-bottom: 0;
}
/* Projects EO */


/* Search */
body.search .page-header-main {
	margin-bottom: 0;
}
body.search #search-form {
	margin: 0;
}
body.search .formwrapper {
	margin: 0 -16px;
}
body.search .js-finder-search-query {
    border-radius: 0;
    font-size: 22px;
    padding: 12px 20px;
    width: 100%;
    max-width: 100%;
}
body.search .form-control-feedback {
    display: none;
}

body.search .searchfield {
	flex: 1 1 100vw;
}
body.search .searchbutton {
	flex: 1 1 100vw;
	margin-left: 0!important;
}
body.search .searchbutton button {
	width: 100vw;
	height: 60px;
	border: 0 none transparent;
	background-color: rgba(var(--color-tt-green),1.00);
	transition:            all .2s ease-out;
}
body.search .searchbutton button:hover {
	background-color: rgba(var(--color-tt-green),0.8);
}
body.search .searchbutton button i {
    color: rgba(var(--color-tt-white),1.00);
    font-size: 24px;
}

mark,
.mark {
    color: rgba(var(--color-tt-white),1.00);
	background-color: rgba(var(--color-tt-green),1.0);
}

body.search #search-results {
	padding: 0 30px 50px 30px;
	margin-top: 0;
	border: 0 none transparent;
}
body.search .result__item+.result__item {
    border-top: 1px solid rgba(var(--color-tt-grey),0.40);
    margin-top: 1.5em;
    padding-top: 1.5em;
}
.result__title-link {
	text-decoration: none;
	font-weight: 700;
	color: rgba(var(--color-tt-green),1.0);
}
.result__title-link:hover {
	text-decoration: underline;
	color: rgba(var(--color-tt-green),1.0);
}

.awesomplete {
    width: 100%;
}

.awesomplete > ul {
  text-shadow: none;
  background: linear-gradient(to bottom right, #fff, #fffc);
  border: 1px solid rgba(var(--color-tt-green),1.00);
  border-radius: 0;
  margin: -1px 0 0 0;
  box-shadow: .05em .2em .6em #0003;
}
.awesomplete > ul li {
  padding: 12px 48px;
}
.awesomplete > ul:before {
  content: "";
  border: inherit;
  background: #FFF;
  border-bottom: 0;
  border-right: 0;
  width: 0;
  height: 0;
  padding: .4em;
  position: absolute;
  top: -8px;
  left: 48px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
	transition:            all .2s ease-out;
}
.awesomplete > ul > li:hover {
  color: #000;
	background: rgba(var(--color-tt-grey-light),1.00);
}
.awesomplete mark {
	background: rgba(var(--color-tt-green-light),1.00);
    color: rgba(var(--color-tt-black),1.00);
	transition:            all .2s ease-out;
	border-radius: 4px;
}

.awesomplete li:hover mark {
	background: rgba(var(--color-tt-green),1.00);
    color: rgba(var(--color-tt-white),1.00);
}

.awesomplete li[aria-selected="true"] mark {
	color: inherit;
	background: rgba(var(--color-tt-green),1.00);
}
.awesomplete > input {
	border: 0 none rgba(var(--color-tt-grey-light),1.00);
	transition:            all .1s ease-out;
}
.awesomplete > input:focus {
	background: rgba(var(--color-tt-green-light),1.00);
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0 none rgba(var(--color-tt-grey-light),1.00);
}


#search-query-explained {
	display: none;
}
#search-result-empty {
	padding-bottom: 35px;
}

.moduletable.menusearch {
	padding: 20px;
	margin-top: 20px;
}
.moduletable.menusearch .js-finder-search-query {
    border-radius: 5px;
    font-size: 18px;
    padding: 10px 10px;
    width: 260px;
    max-width: 100%;
	background: rgba(var(--color-tt-green-light),1.00);
	border: 0 none transparent;
}


.moduletable.popupsearch .form-control {
	max-width: 100%;
}
.moduletable.popupsearch input {
    font-size: 30px;
    padding: 15px;
	border: 1px solid rgba(var(--color-tt-green),1.00);
	text-align: center;
	border-radius: 0;
}

.searchpopup .fa-magnifying-glass {
	padding: 0!important;
}
/* Search EO */


/* Gallery */
.gallerywrapper {
	padding: 30px 0 30px 0;
	clear: both;
}
ul.fields-container {
	list-style: none;
	padding: 0;
}
.gallery-items.grid {
	grid-template-columns: repeat(var(--columns), 1fr);
	grid-template-columns: 100%!important;
}
.tf-gallery-wrapper .gallery-items {

}

/* Gallery EO */




/* Contact Form */
#t4-contact {
    padding: 50px 30px;
	font-size: 15px;
    color: rgba(var(--color-tt-white),1.00);
    background-color: rgba(var(--color-tt-dark),1.00);
    margin-top: 30px;
}
#t4-contact .convertforms {
    margin-top: 20px;
}
#t4-contact .convertforms .cf-form-wrap {
    padding: 0!important;
}
#t4-contact h3 {
	margin-top: 0;
}
#t4-contact p:last-of-type {
	margin-bottom: 0;
}
#t4-contact  a {
    color: rgba(var(--color-tt-white),1.00);
	font-weight: 700;
	text-decoration: none;
}
#t4-contact  a:hover {
    color: rgba(var(--color-tt-white),1.00);
	text-decoration: underline;
}
#t4-contact .cf-control-group {
    padding: 0px;
}
#t4-contact .cf-fields {
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: auto;
    grid-gap: 10px;
    padding: 0px;
    margin: 0!important;
	
}

#t4-contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}
#t4-contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
}
#t4-contact .cf-control-group.message {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 5;
}
#t4-contact .cf-control-group.send {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 6;
    grid-row-end: 6;
}
#t4-contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 5;
    grid-row-end: 5;
}  
#t4-contact .cf-control-group.consent .cf-checkbox-group {
    justify-content: flex-end;
}


#t4-contact .cf-control-group.consent label {
    color: rgba(var(--color-tt-white),1.00)!important;
    font-weight: 300;
}
#t4-contact .cf-control-group.consent label a {
    color: rgba(var(--color-tt-white),1.00);
    text-decoration: underline;
}
#t4-contact .cf-control-group.consent label a:hover {
    text-decoration:  none;
}
#t4-contact .cf-control-group.consent .cf-checkbox-group {
    justify-content: center;
}
#t4-contact .cf-control-group.message textarea {
    height: 90px;
}
#t4-contact .cf-control-group.send button {
	font-family: var(--heading-font-family);
	color: rgba(var(--color-tt-dark),1.00);
	background-color: rgba(var(--color-tt-light),1.00);
	font-weight: 700;
	text-transform: uppercase;
}

#t4-contact .convertforms.cf-success.cf-success-hideform .cf-fields,
#t4-contact .convertforms.cf-success.cf-success-hideform .cf-footer {
    display: none;
}

.convertforms.cf-success .cf-response {
	color: rgba(var(--color-tt-white),1.00);
    background-color: transparent!important;
	line-height: 1.4;
}

.checkbox_styled {
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
}
.checkbox_styled + label::before {
    content: "";
    display: inline-block;
    background: rgba(var(--color-tt-white),1.00);
    border-radius: 3px;
    border: 1px solid rgba(var(--color-tt-green),1.00);
    height: 14px;
    width: 14px;
    position: absolute;
    top: 2px;
    left: 0;
}
.checkbox_styled:checked + label::after {
    height: 14px;
    width: 14px;
    background-color: transparent;
    position: absolute;
    left: 0px;
    top: -3px;
    border-radius: 0px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    content: "\f00c";
    color: rgba(var(--color-tt-c03),1.00);
    font-size: 18px;
}
.checkbox_styled + label {
    cursor: pointer;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    padding-left: 20px!important;
}
/* Contact Form EO */


/* Slogan */
#t4-slogan {
	background-color: rgba(var(--color-tt-green),1.00);
	padding: 30px 25px;
	margin: 0;
}
#t4-slogan > div {
    flex-wrap: wrap;
	display: flex;
}
#t4-slogan > div > div {
	flex: 0 1 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#t4-slogan img {
	width: 175px;
	margin-bottom: 20px;
}
#t4-slogan .slogan {
	text-align: center;
}
#t4-slogan .slogan h4 {
	color: rgba(var(--color-tt-white),1.00);
	margin: 0;
	font-size: 24px;
}
/* Slogan EO */



/* Footer */
#t4-footer {
	font-size: 13px;
	font-weight: 400;
	color: rgba(var(--color-tt-green),1.00);
	background-color: rgba(var(--color-tt-green-light),1.0);
	border-top: 0 none transparent;
	padding: 50px 75px 100px 75px;
	margin: 0;
}
#t4-footer a {
	text-decoration: none;
	color: rgba(var(--color-tt-green),1.00);
}
#t4-footer a:hover {
	text-decoration: underline;
}
#t4-footer > div {
    flex-wrap: wrap;
	display: flex;
}
#t4-footer > div > div.contact {
	flex: 1 1 100%;
}
#t4-footer > div > div.some {
	flex: 1 1 100%;
	margin-top: 30px;
}
#t4-footer h3 {
	font-size: 22px;
	margin: 0 0 15px 0;
	padding: 0;
	border: 0 none transparent;
	text-transform: none;
	color: rgba(var(--color-tt-green),1.00);
}
#t4-footer .contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
	columns: 1;
	max-width: 100%;
}
#t4-footer .contact ul li {
	line-height: 1.6;
	margin-bottom: 20px;
}
#t4-footer .some ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#t4-footer .some ul li {
	display: inline-block;
	font-size: 32px;
	margin-right: 13px;
	line-height: 1;
}
/* Footer EO */






/* Call to action */
body.frontpage #t4-call-to-action {
	padding: 0 20px;
	position: relative;
	margin-top: -42px;
}
body.frontpage #t4-call-to-action .mod-list {
    flex-wrap: wrap;
	display: flex;
}
body.frontpage #t4-call-to-action .mod-list > div {
	flex: 0 1 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}
body.frontpage #t4-call-to-action h2 {
	background-color: rgba(var(--color-tt-green),1.00);
	display: inline-block;
	text-align: center;
	font-size: 25px;
	margin: 0;
    transition: transform 0.7s cubic-bezier(0.2, 3, 0.4, 1);
}
body.frontpage #t4-call-to-action h2 a {
	display: inline-block;
	text-decoration: none;
	padding: 25px;
	width: 375px;
	height: 84px;
	color: rgba(var(--color-tt-white),1.00);
}
body.frontpage #t4-call-to-action h2:hover {
    transform: scale(1.05);
}

#t4-call-to-action {
	margin: 0;
	padding: 30px;
}
#t4-call-to-action .mod-list {
    flex-wrap: wrap;
	display: flex;
	justify-content: center;
}
#t4-call-to-action .mod-list > div {
	flex: 0 1 100%;
}

#t4-call-to-action .ctaItemWrap {
	padding: 15px;
}
#t4-call-to-action .ctaItem {
    flex-wrap: wrap;
	display: flex;
	background-color: rgba(var(--color-tt-grey-light),1.00);
	height: 100%;
	align-items: flex-start;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 100%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 100%;
	height: 100%;
}
#t4-call-to-action .ctaContent h3 {
	background-color: rgba(var(--color-tt-green-light),1.00);
	margin: 0;
	padding: 0 25px;
	min-height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: rgba(var(--color-tt-green),1.00);
}
#t4-call-to-action .ctaContent h3 a {
	text-decoration: none;
}

body.theme-defaultblue #t4-call-to-action .ctaContent h3 {
	color: rgba(var(--color-tt-white),1.00);
	background-color: rgba(var(--color-tt-green),1.00);
}

#t4-call-to-action .ctaText {
	text-align: right;
	padding: 30px;
	font-size: 18px;
}
#t4-call-to-action .ctaText a {
	text-decoration: none;
	display: block;
}
#t4-call-to-action .ctaText a:hover {
	text-decoration: underline;
}
#t4-call-to-action .ctaText i {
	margin-left: 6px;
}
#t4-call-to-action .ctaText p {
	margin-bottom: 8px;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 3/2;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */








/* Projects Featured */

.featuredprojects {
    flex-wrap: wrap;
	display: flex;
	padding: 15px;
	margin: 0 -15px;
}
body.frontpage .featuredprojects {
	background-color: rgba(var(--color-tt-grey-light),1.00);
	margin: 0;
}
.featuredprojects > div {
	flex: 0 1 100%;
	padding: 15px;
}
.featuredprojects a {
	text-decoration: none;
}
.featuredprojects h2 {
	font-size: 22px;
	margin-top: 0;
}
.featuredprojects .item-image {
    width: 100%;
    margin-bottom: 0!important;
    overflow: hidden;
	aspect-ratio: 3/2;
	position: relative;
}
.featuredprojects .item-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.featuredprojects .content {
	background-color: rgba(var(--color-tt-white),1.00);
	height: 100%;
}
.featuredprojects .introtext {
	padding: 15px;
}

.featuredheader {
	position: relative;
	margin-bottom: -12px;
	padding-left: 50px;
	font-size: 36px;
}
/* Projects Featured EO */



/* Samtykke */

.samtykkebox .eb {
	font-family: var(--body-font-family);
	font-size: 16px;
	color: var(--body-text-color);
}
.samtykkebox .eb-dialog {
	background-color: rgba(var(--color-tt-white),1.00)!important;
}
.samtykkebox .eb-content h3 {
	margin-top: 0px!important;
	font-weight: 700;
}
.samtykkebox .eb-content.rstbox-content h3 {
    margin-top: 0;
}
.samtykkebox .eb a {
	color: rgba(var(--color-tt-medium),1.00);
    text-decoration: underline;
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
.samtykkebox .eb a:hover {
	color: rgba(var(--color-tt-dark),1.00);
    text-decoration: none;
}
.samtykkebox .button {
	text-align: center;
}
.samtykkebox .eb-btn {
	display: inline-block;
	height: auto;
	width: 100%;
	padding: 8px 24px 6px 24px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.42857143;
	color: rgba(255,255,255,1.00);
	background-color: rgba(var(--color-tt-medium),1.00)!important;
	background-image: none;
	border: 0 none #cccccc;
	border-radius: 6px;
	margin-top: 15px;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075);
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
.samtykkebox .eb-btn:hover {
	color: rgba(var(--color-tt-white),1.00)!important;
	background-color: rgba(var(--color-tt-dark),1.00)!important;
    opacity: 1;
	border-radius: 6px;
}
/* Samtykke EO */








a, a:focus {
    color: rgba(var(--color-tt-dark),1.0);
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
	text-decoration: underline;
}
a:hover {
    color: rgba(var(--color-tt-dark),1.0);
	text-decoration: none;
}



.container {
    width: 100%!important;
	max-width: 100%!important;
	margin: auto;
	padding: 0;
}	
.moduletable {
    border: 0 none transparent;
    padding: 0;
    border-radius: 0;
    margin: 0;
}
.linkbutton {
	font-family: var(--heading-font-family);
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(var(--color-tt-white),1.00)!important;
    background-color: rgba(var(--color-tt-medium),1.00);
    border-radius: 5px;
    padding: 7px 16px 6px 16px;
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
    display: inline-block;
    text-decoration: none!important;
}
.linkbutton:hover {
    color: rgba(var(--color-tt-white),1.00);
    background-color: rgba(var(--color-tt-dark),1.0);
    text-decoration: none;
}
.linkbutton i {
	margin-right: 8px;
}


/* Slider */
#t4-slider {
	margin: 0;
}
#t4-slider  .container {
	margin: 0 0 -60px 0;
}
#t4-slider .n2-ss-item-content {
	width: calc(100vw + 60px);
}
.sliderbutton i {
	margin-left: 8px;
}
#t4-slider .sliderbutton {
	transition: 		all .2s ease-out;
	-moz-transition: 	all .2s ease-out;
	-webkit-transition: all .2s ease-out;
	-o-transition: 		all .2s ease-out;
}
/* Slider EO */	


/* Article + Sidebar */	
.com-content-article__body.sidebar {
    flex-wrap: wrap;
	display: flex;
}
.com-content-article__body.sidebar .articleBodyMain {
	flex: 0 1 100%;
}
.com-content-article__body.sidebar .articleBodySidebar {
	flex: 0 1 100%;
	padding-left: 0;
	flex-wrap: wrap;
	display: flex;
	align-content: flex-start;
}
/* Article + Sidebar EO */	




/*
.com-content-article__body [type="t4.row"] {
	margin: 0 -15px;
}
.com-content-article__body [type="t4.row"] .col {
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	padding: 0px 15px 20px 15px;
}

*/



/* Office */

.mod-list.office {
    flex-wrap: wrap;
	display: flex;
}
.mod-list.office > div {
	flex: 0 1 100%;
	margin-bottom: 50px;
}
.mod-list.office p {
	margin-bottom: 2px;
}
.mod-list.office .middle p:first-of-type,
.mod-list.office .bottom p:first-of-type {
	margin-top: 20px;
}
.mod-list.office a {
	text-decoration: none;
}
.mod-list.office a:hover {
	text-decoration: underline;
}
.mod-list.office i {
	margin-right: 5px;
	width: 20px;
}
.mod-list.office h3 {
	border: 0 none transparent;
}
/* Office EO */





/* -----------------------------------------------------------------------------

  Media Query: min-width: 576px - from 576px to 767px (inclusive)
  
----------------------------------------------------------------------------- */

@media (min-width: 576px) {
	
/* Header */
#t4-header {
	margin-top: 0;
}
/* Header EO */	



/* Footer */
#t4-footer > div > div.some {
	flex: 1 1 100%;
	margin-top: 30px;
}
#t4-footer h3 {
	font-size: 22px;
	margin: 0 0 15px 0;
	padding: 0;
	border: 0 none transparent;
	text-transform: none;
}
#t4-footer .contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
	columns: 3;
	max-width: 80%;
}
#t4-footer .contact ul li {
	line-height: 1.6;
	margin-bottom: 20px;
}
/* Footer EO */


/* Office */
.mod-list.office > div {
	flex: 0 1 50%;
}
/* Office EO */

body.contact figure.item-image {
	width: 35%;
	float: left;
	margin: 0 40px 0 0!important;
	padding: 0;
}

	
}








/* -----------------------------------------------------------------------------

  Media Query: min-width: 768px - from 768px to 991px (inclusive)
  
----------------------------------------------------------------------------- */

@media (min-width: 768px) {

body {
	margin: 0 auto!important;
	padding: 0 30px;
}	

.t4-content {
	padding-top: 0;
	margin: 0 -30px;
}

.com-content-article__body {
	padding: 0 75px 75px 75px;
}
.category-desc {
	padding: 0 75px 25px 75px;
}



figure.pull-left.item-image {
    margin-right: 40px;
}
figure.pull-right.item-image {
    margin-left: 40px;
}

#t4-header {
    border-bottom: 0 none transparent;
	display: block;
    min-height: 80px;
	position: fixed!important;
	width: 100%;
	top: 0;
	margin: 0;
}
#t4-header .logo {
	padding: 20px 10px 0 30px;
	flex: 0 1 30%;
}

#t4-header .vertical-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height: 80px;
	padding: 0 20px 0 0;
}
#t4-header .logo img {
    height: 40px;
}

/* Header EO */	

#t4-slider {
	padding-top: 0;
}
	
/* Navigation Menu */	
#t4-header .mainnav {
	padding-right: 25px;
}
#t4-header .t4-navbar {
	display: flex;
	justify-content: flex-end;
	height: 100px;
}
	


li.nav-item {
	position: relative;
}
.nav-link {
	display: block;
	text-decoration: none;
	position: relative;
	z-index: 10;
	overflow: hidden;
	border-radius: inherit;
	transition: all 0.2s ease-in-out;
}
.nav-link::before {
	content: "";
	position: absolute;
	inset-block-start: 100%;
	inset-inline-start: -100%;
	block-size: 100%;
	inline-size: 100%;
	background: rgba(var(--color-tt-medium),1.0);
	z-index: -1;
	transition: all 0.2s ease-in-out;
}

.nav-link:hover {
	color: rgba(var(--color-tt-white),1.0);
}

.nav-link:hover::before {
	inset-block-start: 0;
	inset-inline-start: 0;
}

li.nav-item:has(+ li:hover) .nav-link::before {
	inset-inline-start: 100%;
}


/* Main Menu Items */
#t4-header .nav > li > a,
#t4-header .nav > li > .separator,
#t4-header .nav > li > span {
	padding: 10px 12px 10px 12px;
	margin: 0 10px 0 0;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	height: 40px;
	transition: all .2s ease-out;
	border-radius: 8px;
}

/* Color Main Menu Items */
#t4-header .nav > li > a,
#t4-header .nav > li > span {
    color: rgba(var(--color-tt-white),1.0);
}
/* Color on Hover on Main Menu Items */
#t4-header .nav > li > a:hover, 
#t4-header .nav > li > a:focus,
#t4-header .nav > li > .separator:hover, 
#t4-header .nav > li > .separator:focus,
#t4-header .nav > li > span:hover, 
#t4-header .nav > li > span:focus {
	background-color: rgba(var(--color-tt-medium),0.0);
    color: rgba(var(--color-tt-white),1.0);
}
	


#t4-header .nav > .open > a,
#t4-header .nav > .open > a:hover,
#t4-header .nav > .open > a:focus,
#t4-header .nav > .open > .separator,
#t4-header .nav > .open > .separator:hover,
#t4-header .nav > .open > .separator:focus,
#t4-header .nav > .open > span,
#t4-header .nav > .open > span:hover,
#t4-header .nav > .open > span:focus {
	background-color: rgba(var(--color-tt-medium),1.0);
    color: rgba(var(--color-tt-white),1.0);
}

/* Color on Active Main Menu Item */
#t4-header .nav > .active > a,
#t4-header .nav > .active > .separator,
#t4-header .nav > .active > span {
	background-color: rgba(var(--color-tt-medium),1.0);
    color: rgba(var(--color-tt-white),1.0);
}
/* Color Hover on Active Main Menu Item */
#t4-header .nav > .active > a:hover,
#t4-header .nav > .active > a:focus {
	background-color: rgba(var(--color-tt-medium),0.0);
    color: rgba(var(--color-tt-white),1.0);
}
/* Color on Current Main Manu Item */
#t4-header .nav > .current > a {
	background-color: rgba(var(--color-tt-medium),1.0);
    color: rgba(var(--color-tt-white),1.0);
}
/* Color on Hover on Current Main Menu Item */
#t4-header .nav > .current > a:hover,
#t4-header .nav > .current > a:focus {
	background-color: rgba(var(--color-tt-c03),0.0);
    color: rgba(var(--color-tt-white),1.0);
}
/* Arrow when submenues are present */
#t4-header .nav > .dropdown > a .item-caret::before,
#t4-header .nav > .dropdown > .separator .item-caret::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: rgba(var(--color-tt-white),1.0);
	position: absolute;
	top: auto!important;
	right: 4px!important;
	bottom: 4px!important;
	border: none!important;
}
#t4-header .nav > .dropdown > a .item-caret,
#t4-header .nav > .dropdown > .separator .item-caret {
	height: 0;
	width: 0;
}
/* Color on Caret on Active Main Menu Item */
#t4-header .nav > .active > a .item-caret::before, 
#t4-header .nav > .active > .separator .item-caret::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: rgba(var(--color-tt-white),1.0);
	position: absolute;
	top: auto!important;
	right: 4px!important;
	bottom: 4px!important;
	border: none!important;
}	
/* Hover on submenues */
#t4-header .nav > .open > a .item-caret::before,
#t4-header .nav > .open > .separator .item-caret::before {
	border-bottom-color: var(--color-primary-light)!important;
    border-top-color: var(--color-primary-light)!important;
}

/* Hover on Arrow when submenues are present */
#t4-header .nav > .dropdown > a:hover .item-caret::before,
#t4-header .nav > .dropdown > a:focus .item-caret::before,
#t4-header .nav > .dropdown > .separator:hover .item-caret::before,
#t4-header .nav > .dropdown > .separator:focus .item-caret::before {
	border-top-color: var(--color-primary-light)!important;
	border-bottom-color: var(--color-primary-light)!important;
}	
/* Dropdown */
#t4-header .nav .dropdown-menu {
	background-color: rgba(var(--color-tt-medium),1.0);
    border: 0px none rgba(0, 0, 0, 0.00);
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.176);
    font-size: 14px;
    left: 0;
    list-style: outside none none;
    margin: 0;
    min-width: 160px;
    padding: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    z-index: 1000;
    border-radius: 0 8px 8px 8px;
}

#t4-header .nav .dropdown-menu li:first-of-type > a {
    border-top-right-radius: 8px;
}
#t4-header .nav .dropdown-menu li:last-of-type > a {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}




/* Width of submenus */
#t4-header .nav .navbar,
#t4-header .nav ul.navbar-nav{
	width: 100%!important;
}

/* Padding on Dropdown */
#t4-header .nav .mega-inner,
#t4-header .nav .mega-col-nav {
	padding: 0;
}

/* Padding on submenu items */
#t4-header .nav .dropdown-menu li > a {
	padding: 9px 15px 8px 15px;
	text-decoration: none;
}
/* Color on submenu items */
#t4-header .nav .dropdown-menu li > a {
	color: rgba(var(--color-tt-white),1.0);
	transition:            all .2s ease-out;
	-moz-transition:       all .2s ease-out;
	-webkit-transition:    all .2s ease-out;
	-o-transition:         all .2s ease-out;
}
/* Hover on submenu items */
#t4-header .nav .dropdown-menu li > a:hover,
#t4-header .nav .dropdown-menu li > a:focus {
	background-color: rgba(var(--color-tt-dark),1.0);
    color: rgba(var(--color-tt-white),1.0);
}


/* Color on hover on active dropdown parent */
#t4-header .nav > li.dropdown.show > a:hover {
	background-color: rgba(var(--color-tt-medium),0.0);
    color: rgba(var(--color-tt-white),1.0);
}	
/* Color on active dropdown parent */
#t4-header .nav > li.dropdown.show > a {
	background-color: rgba(var(--color-tt-medium),1.0);
    color: rgba(var(--color-tt-white),1.0);
    border-radius: 8px 8px 0 0;
}	
/* Hover on Arrow when submenues are present */
#t4-header .nav > li.dropdown.show > a .item-caret::before {
	border-top-color: var(--color-primary-light)!important;
	border-bottom-color: var(--color-primary-light)!important;
}		
/* Color on Active dropdown item */
#t4-header .nav > li.dropdown .current.active a {
	background-color: rgba(var(--color-tt-dark),1.0);
    color: rgba(var(--color-tt-white),1.0);
}	
/* Navigation Menu EO */		
	


/* Article + Sidebar */	
.com-content-article__body.sidebar .articleBodyMain {
	flex: 0 1 100%;
}
.com-content-article__body.sidebar .articleBodySidebar {
	flex: 1 1 100%;
	padding-left: 0;
	margin: 0 -15px;
}
.com-content-article__body.sidebar .articleBodySidebar > div {
	flex: 1 1 50%;
	padding: 0 15px;
}

/* Article + Sidebar EO */	

	
/* Category */
.featuredprojects > div {
	flex: 0 1 50%;
}
/* Category EO */
	



body.contact .jux-mashup .jux-container .mix {
    width: 50%!important;
}



/* Search */
body.search .js-finder-search-query {
    font-size: 30px;
    padding: 15px 50px;
    width: 100%;
    max-width: 100%;
}
body.search .searchfield {
	flex: 1 1 100px;
}
body.search .searchbutton {
	flex: 0 1 75px;
}
body.search .searchbutton button {
	width: 75px;
	height: 75px;
}
body.search .searchbutton button i {
    font-size: 30px;
}
body.search #search-results {
	padding: 0 75px 50px 75px;
}
.awesomplete > input,
.awesomplete > input:focus {
	border-bottom: 1px solid rgba(var(--color-tt-grey-light),1.00);
}
/* Search EO */





.page-header-main {
	min-height: 20vw;
	margin: 0 -16px 50px -16px;
}
.page-header-main h1 {
	font-size: 3.5vw;
	transition: 		all .2s ease-out;
}
.page-header-main h2 {
	font-size: 1.0vw;
}	
.page-header-main img {
	max-height: 16vw;
}	
.page-header-main .container {
	padding: 100px 5vw 20px 5vw;
}
	

body.projects.view-article .page-header-main {
	min-height: 40vw;
	margin: 0 -16px 50px -16px;
}	
body.projects.view-article .page-header-main img {
	max-height: 32vw;
}


/* Intro */
#t4-intro {
	padding: 75px 100px;
}
/* Intro EO */


/* Slider */
#t4-slider {
	margin: 0;
}
#t4-slider  .container {
	margin: -15px 0 -80px 0;
}

#t4-slider .n2-ss-item-content {
	width: calc(100vw + 60px);
}
/* Slider EO */






.featuredheader {
	padding-left: 100px;
	font-size: 40px;
}




/* Content */

.contactperson.desktop {
    display: block;
}
.contactperson.mobile {
	display: none;
}
/* Content EO */


/* Projects */

.projectinfo.desktop {
    display: block;
}
.projectinfo.mobile {
	display: none;
}
/* Projects EO */


/* Slogan */
#t4-slogan {
	padding: 30px 75px;
}
#t4-slogan > div > div {
	flex: 1 1 35%;
	justify-content: flex-start;
}
#t4-slogan .slogan {
	flex: 1 1 65%;
	justify-content: flex-end;
}
#t4-slogan img {
	margin-bottom: 0;
}
/* Slogan EO */


/* Footer */

/* Footer EO */


/* Gallery */
.gallerywrapper {
	padding: 50px 0 30px 0;
	clear: both;
}
.gallery-items.grid {
	grid-template-columns: repeat(2, 1fr)!important;
}

/* Gallery EO */
	
/* Contact Form */
#t4-contact {
	margin-left: -30px;
	margin-right: -30px;
	padding: 50px 100px;
}
#t4-contact .cf-fields {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

#t4-contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}
#t4-contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
}
#t4-contact .cf-control-group.message {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 5;
}
#t4-contact .cf-control-group.send {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 6;
    grid-row-end: 6;
}
#t4-contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 5;
    grid-row-end: 5;
}  
/* Contact Form EO */	

.item-image {
	width: 35%;
	margin-bottom: 15px!important;
}
	

.ma-search-input-grid .col1 {
	-ms-flex: 0 1 60%;
	flex: 0 1 60%;
	margin-bottom: 15px;
}
.ma-search-input-grid .col2 {
	-ms-flex: 0 1 40%;
	flex: 0 1 40%;
	margin-bottom: 15px;
	padding-left: 15px;
}
.ma-search-input-grid .col2 .col-submit {
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
}
.ma-search-input-grid .col2 .col-clear {
	-ms-flex: 0 1 110px;
	flex: 0 1 110px;
}
.ma-search-input-grid .col2 .col-submit button {
	width: 100%;
}
.ma-search-input-grid .col2 .col-clear button {
	width: 110px;
}	





.page-header-main h1 {
	font-size: 3.5vw;
	transition: 		all .2s ease-out;
}
.page-header-main h2 {
	font-size: 1.4vw;
}		

	



/* Call to action */


body.frontpage #t4-call-to-action {
	padding: 0 50px;
}
body.frontpage #t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
body.frontpage #t4-call-to-action h2 {
	font-size: 25px;
}
body.frontpage #t4-call-to-action h2 a {
	width: 300px;
}


#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 40%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 60%;
}
#t4-call-to-action .ctaImage img {
	width: 125%;
	max-width: 125%;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 1/1;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	
	


/*
.com-content-article__body [type="t4.row"] .col {
	-ms-flex: 1 1 50%;
	flex: 1 1 50%;
}	
*/	
	




	
}





/* -----------------------------------------------------------------------------

  Media Query: min-width: 992px - from 992px to 1199px (inclusive)
  
----------------------------------------------------------------------------- */

@media (min-width: 992px) {


.calltoaction-menu {
	display: block;
}

/* Article + Sidebar */	
.com-content-article__body.sidebar .articleBodyMain {
	flex: 0 1 65%;
}
.com-content-article__body.sidebar .articleBodySidebar {
	flex: 0 1 35%;
	padding-left: 50px;
}
.com-content-article__body.sidebar .articleBodySidebar > div {
	flex: 0 1 100%;
	padding: 0;
}
/* Article + Sidebar EO */	



/* Contact Form */	
#t4-contact {
	padding: 50px 100px;
}
#t4-contact .convertforms {
    margin-top: 0;
}
#t4-contact .container {
    flex-wrap: wrap;
	display: flex;
}
#t4-contact .moduletable.text {
	flex: 1 1 50%;
	padding-right: 30px;
}
#t4-contact .moduletable.form {
	flex: 1 1 50%;
}	
#t4-contact .cf-fields {
    display: grid;
    grid-template-columns: auto ;
    grid-template-rows: auto;
    grid-gap: 10px;
    padding: 0px;
    margin: 0!important;
}

#t4-contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}
#t4-contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
}
#t4-contact .cf-control-group.message {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 5;
}
#t4-contact .cf-control-group.send {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 7;
    grid-row-end: 7;
}
#t4-contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 6;
    grid-row-end: 6;
    justify-self: end;
}

#t4-contact .cf-control-group.consent .cf-checkbox-group {
    justify-content: flex-end;
}
#t4-contact .cf-control-group.send button {
    height: auto;
}
/* Contact Form EO */	

	

.gallery-items.grid {
	grid-template-columns: repeat(4, 1fr)!important;
}
	
	
/* Call to action */
body.frontpage #t4-call-to-action {
	padding: 0 30px;
}
body.frontpage #t4-call-to-action .mod-list > div {
	flex: 0 1 25%;
}
body.frontpage #t4-call-to-action h2 a {
	width: 300px;
}

body.frontpage #t4-call-to-action h2 {
	margin: 0 15px;
}

#t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 100%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 100%;
}
#t4-call-to-action .ctaImage img {
	width: 100%;
	max-width: 100%;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 3/2;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	
	



/* Footer */
#t4-footer > div > div.contact {
	flex: 1 1 70%;
}
#t4-footer > div > div.some {
	flex: 1 1 30%;
	margin-top: 0;
}
/* Footer EO */
	
	

body.contact .jux-mashup .jux-container .mix {
    width: 33.33%!important;
}



}






/* -----------------------------------------------------------------------------

  Media Query: min-width: 1200px -  - from 1200px to 1399px (inclusive)
  
----------------------------------------------------------------------------- */

@media (min-width: 1200px) {


/* Article + Sidebar */	
.com-content-article__body.sidebar .articleBodyMain {
	flex: 0 1 70%;
}
.com-content-article__body.sidebar .articleBodySidebar {
	flex: 0 1 30%;
	padding-left: 50px;
}
/* Article + Sidebar EO */	



#t4-contact .moduletable.text {
	flex: 1 1 40%;
}
#t4-contact .moduletable.form {
	flex: 1 1 60%;
}	
#t4-contact .cf-control-group.name {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 1;
    grid-row-end: 1;
}
#t4-contact .cf-control-group.email {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 2;
    grid-row-end: 2;
}

#t4-contact .cf-control-group.message {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 3;
}
#t4-contact .cf-control-group.send {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 3;
}
#t4-contact .cf-control-group.consent {
    grid-column-start: 1;
    grid-column-end: 1;
    grid-row-start: 3;
    grid-row-end: 3;
    justify-self: end;
}

/* Category */
.blog-items > div {
	flex: 0 1 33.33%;
}
/* Category EO */


/* Call to action */

body.frontpage #t4-call-to-action {
	padding: 0 50px;
}
body.frontpage #t4-call-to-action h2 a {
	width: 300px;
}


#t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaImage img {
	width: 32vw;
	max-width: 32vw;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 1/1.35;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	


/* Intro */
#t4-intro {
	padding: 100px 150px;
}
/* Intro EO */

/* Category */
.featuredprojects > div {
	flex: 0 1 33.33%;
}
/* Category EO */


/* Office */
.mod-list.office > div {
	flex: 0 1 33.33%;
}
/* Office EO */


body.contact figure.item-image {
	width: 25%;
}


body.contact .jux-mashup .jux-container .mix {
    width: 25%!important;
}


}




/* -----------------------------------------------------------------------------

  Media Query: min-width: 1400px - from 1400px and up
  
----------------------------------------------------------------------------- */

@media (min-width: 1400px) {

	
/* Article + Sidebar */	
.com-content-article__body.sidebar .articleBodyMain {
	flex: 0 1 75%;
}
.com-content-article__body.sidebar .articleBodySidebar {
	flex: 0 1 25%;
	padding-left: 50px;
}
/* Article + Sidebar EO */	

#t4-person .container > .text {
	-ms-flex: 0 1 calc(66.66vw - 60px);
	flex: 0 1 calc(66.66vw - 60px);
	padding-right: 10vw
	
}
#t4-person .container > .image {
	-ms-flex: 0 1 calc(33.33vw - 30px);
	flex: 0 1 calc(33.33vw - 30px);
	height: calc(33.33vw - 60px);
}
	
/* Contact Form */
#t4-contact {
	padding: 50px 150px;
}
/* Contact Form EO */

/* Intro */

/* Intro EO */

/* Projects Featured */

.featuredprojects > div {
	flex: 0 1 25%;
}

/* Projects Featured EO */


/* Call to action */
body.frontpage #t4-call-to-action {
	padding: 0 100px;
}
body.frontpage #t4-call-to-action h2 a {
	width: 375px;
}

#t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaImage img {
	width: 32vw;
	max-width: 32vw;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 1/1.12;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	


/* Office */
.mod-list.office > div {
	flex: 0 1 25%;
}
/* Office EO */

}



/* -----------------------------------------------------------------------------

  Media Query: min-width: 1680px - from 1680px and up
  
----------------------------------------------------------------------------- */

@media (min-width: 1680px) {

/* Call to action */
#t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaImage img {
	width: 100%;
	max-width: 100%;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 1/0.9;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	
	

/* Intro */
#t4-intro {
	padding: 150px 250px;
}
/* Intro EO */



body.contact .jux-mashup .jux-container .mix {
    width: 20%!important;
}

}



/* -----------------------------------------------------------------------------

  Media Query: min-width: 1920px - from 1920px and up
  
----------------------------------------------------------------------------- */

@media (min-width: 1920px) {

body .t4-wrapper {
max-width: 1920px !important;
margin: auto;
}

/* Header */	
#t4-header {
	max-width: 1980px;
}
/* Header EO */		



	


.page-header-main {
	height: 383.0px;
	min-height: 383.0px;
	overflow: hidden;
}
.page-header-main h1 {
	font-size: 67px;
}
.page-header-main h2 {
	font-size: 27px;
}	
/*
.page-header-main img {
	max-height: 307.0px
}	
*/
body.projects.view-article .page-header-main {
	height: 768.0px;
	min-height: 768.0px;
}



/* Call to action */
#t4-call-to-action .mod-list > div {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaImage {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaItem .ctaContent {
	flex: 0 1 50%;
}
#t4-call-to-action .ctaImage img {
	width: 100%;
	max-width: 100%;
}
#t4-call-to-action .ctaImage {
	aspect-ratio: 3/2.4;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Call to action EO */	

	
}
