/*
Theme Name: Academij
Theme URI: https://
Description: Thema voor de website van Academij.
Version: 0.1
Author: Bonsai media
Author URI: https://www.bonsaimedia.nl/
*/



/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

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



*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}





/* Variables */

:root {
	--main-blue: #017eff;
	--main-dark-blue: #07072d;
	--main-turquoise: #41d3be;
}





/* Global styles */

body {
	background: #fff;
	color: var(--main-dark-blue);
	font: 300 16px/28px neulis-sans, "Century Gothic", CenturyGothic, sans-serif;
}



h1, h2, h3, h4 {
	margin-bottom: 15px;
	color: var(--main-dark-blue);
	font-weight: 700;
}

h1 { margin-bottom: ; font-size: 44px; line-height: 48px; }
h2 { margin-bottom: ; font-size: 34px; line-height: 40px; }
h3 { margin-bottom: ; font-size: 26px; line-height: 32px; }

h1:only-child, h2:only-child, h3:only-child {
	margin-bottom: 0;
}


.text-center h1 svg {
	color: var(--main-blue)!important;
}



a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s;
}



strong {
	font-weight: 700;
}



img {
	max-width: 100%;
	height: auto;
}



hr {
	height: 1px;
	margin: 0 0 35px;
	background: #cadede;
	border: 0;
}



/* --- Input */

::placeholder {
	color: var(--main-dark-blue);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--main-dark-blue);
}

::-ms-input-placeholder {
	color: var(--main-dark-blue);
}



form {}

form p {}
form p:not(:last-child) {
	margin-bottom: 0;
}

form label, form legend {
	font-weight: 600;
	font-size: 14px;
}

form legend {
	margin-bottom: 10px;
}


input[type=text], input[type=number], input[type=email], input[type=tel], input[type=password], input[type=datepicker], input[type=submit], textarea, select, button {
	width: 100%;
	margin-bottom: 20px;
	padding: 13px 20px;
	background: #fff;
	color: var(--main-dark-blue);
	font: 300 16px/28px neulis-sans, "Century Gothic", CenturyGothic, sans-serif;
	text-align: left;
	border: 1px solid #cadede;
	border-radius: 28px;
	transition: all 0.2s;
	-webkit-appearance: none;
}
input[type=text]:focus, input[type=number]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=datepicker]:focus, textarea:focus, select:focus, button:focus {
	border-color: var(--main-turquoise);
}


textarea {
	height: 100px;
}


select {
	background: #fff url(img/chevron-down-select.svg) right 20px center/16px 9px no-repeat;
}


input[type=submit] {
	display: block;
	width: 100%;
	margin: 0;
	padding: 16px 30px;
	background: var(--main-turquoise);
	color: var(--main-dark-blue);
	font: 700 17px neulis-sans, "Century Gothic", CenturyGothic, sans-serif;
	text-align: center;
	border: 0;
	transition: all 0.2s;
}
input[type=submit]:hover {
	background: var(--main-dark-blue);
	color: #fff;
	cursor: pointer;
}





/* Global classes */

.left { float: left; }
.right { float: right; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }



.align-items-flex-start {
	align-items: flex-start;
}

.align-items-flex-end {
	align-items: flex-end;
}



.fluid {
	width: 100%;
	float: left;
}

.container {
	max-width: 1650px;
	margin: 0 auto;
	padding: 0 20px;
}



/* --- Text */

span.subtitle {
	display: inline-block;
	margin-bottom: 5px;
	color: var(--main-blue);
	font-weight: 400;
	font-size: 19px;
	/* line-height: 40px; */
}

span.intro {
	font-weight: 400;
	font-size: 18px;
	line-height: 32px;
}



/* --- Buttons */

a.button {
	position: relative;
	display: inline-block;
	margin: 0 15px 15px 0;
	padding: 7px 21px;
	background-color: var(--main-dark-blue);
	color: #fff;
	font-weight: 700;
	font-size: 17px;
	line-height: 40px!important;
	text-align: center;
	text-decoration: none;
	letter-spacing: 0.5px;
	border: 1px solid var(--main-dark-blue);
	border-radius: 28px;
	z-index: 0;
	cursor: pointer;
	transition: all 0.2s;
}
a.button:only-child, a.button:only-of-type {}
a.button:hover {
	background-color: var(--main-blue);
	border-color: var(--main-blue);
}



p + p:has(a.button:not(.teamviewer)) {
	margin-top: 45px;
}



a.button.teamviewer {
	padding-left: 54px;
	background-image: ur(img/teamviewer.svg);
	background-position: left center;
	background-repeat: no-repeat;
}



.text-center a.button {
	margin: 0 10px 20px;
}



a.button.black {
	background-color: var(--main-dark-blue);
	color: #fff;
	border-color: var(--main-dark-blue);
}
a.button.black:hover {
	background-color: var(--main-blue);
	border-color: var(--main-blue);
}



a.button.blue {
	background-color: var(--main-blue);
	color: #fff;
	border-color: var(--main-blue);
}
a.button.blue:hover {
	background-color: var(--main-dark-blue);
	border-color: var(--main-dark-blue);
}



a.button.turquoise {
	background-color: var(--main-turquoise);
	color: var(--main-dark-blue);
	border-color: var(--main-turquoise);
}
a.button.turquoise:hover {
	background-color: var(--main-dark-blue);
	color: #fff;
	border-color: var(--main-dark-blue);
}



a.button.white {
	background-color: #fff;
	color: var(--main-dark-blue);
	border-color: #fff;
}
a.button.white:hover {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}



a.button.border {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
a.button.border:hover {
	background: #fff;
	color: var(--main-dark-blue);
	border-color: var(--main-dark-blue);
}



/* --- Block */

.block {
	padding: 50px;
	background: #fff url(img/block-bg.png) center/cover no-repeat;
	border-radius: 16px;
}


.block.contactperson {
	padding: 30px 30px 20px;
	color: var(--main-dark-blue);
}

.block.contactperson h3 {
	color: var(--main-dark-blue);
}

.block.contactperson img {
	float: left;
	width: 90px;
	height: 90px;
	margin: 0 20px 30px 0;
	border-radius: 100%;
}

.block.contactperson .details {
	float: left;
	width: calc(100% - 110px);
	min-height: 90px;
	margin-bottom: 30px;
	padding-top: 17px;
}

.block.contactperson .details h4 {
	margin-bottom: 5px;
	color: var(--main-blue);
	font-weight: 500;
	font-size: 19px;
	line-height: 24px;
}



/* --- Slider */

.flickity-button {
	background: transparent!important;
	z-index: 2;
}
.flickity-button:disabled {}

.flickity-prev-next-button {
	width: 80px!important;
	height: 80px!important;
	margin-top: -40px;
	padding: 0!important;
	border-radius: 100px!important;
	transform: none!important;
}

.flickity-prev-next-button.previous {
	left: -40px!important;
	background: #fff url(img/arrow-left.svg) center no-repeat!important;
}

.flickity-prev-next-button.next {
	right: -40px!important;
	background: #fff url(img/arrow-right.svg) center no-repeat!important;
}

.flickity-prev-next-button .flickity-button-icon {
	display: none;
}


.flickity-viewport {
	overflow: visible!important;
}



/* --- Video */

.video-container {
	position: relative;
	height: 0;
	margin: 0;
	padding-bottom: 56.25%;
	padding-top: 0;
	background: var(--main-dark-blue);
	border-radius: 16px;
	overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* --- Accordion */

.accordion {
	float: left;
	width: 100%;
	margin: 0!important;
}

.accordion > li {
	float: left;
	width: 100%;
	min-height: 110px;
	margin-bottom: 15px;
	padding: 0 30px!important;
	background: #fff!important;
	border: 1px solid #cadede;
	border-radius: 8px;
	list-style: none!important;
}

.accordion > li.active {
	background: #cadede!important;
}

.accordion > li .accordion-control {
	position: relative;
	padding: 27px 66px 27px 0;
	cursor: pointer;
}
.accordion > li .accordion-control:before {
	position: absolute;
	top: 27px;
	right: -10px;
	width: 56px;
	height: 56px;
	background: #cadede url(img/plus.svg) center no-repeat;
	border-radius: 100%;
	transition: background 0.2s;
	content: " ";
}

.accordion li .accordion-control.open {}
.accordion li .accordion-control.open:before {
	background: var(--main-blue) url(img/minus.svg) center no-repeat;
	transform: rotate(180deg);
}

.accordion li .accordion-control h3 {
	margin-bottom: 10px;
	color: var(--main-dark-blue);
	font-weight: 500;
	font-size: 21px;
	line-height: 24px;
}

.accordion li .accordion-control h4 {
	margin-bottom: 0;
	color: var(--main-blue);
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
}

.accordion li .accordion-panel {
	display: none;
	padding-bottom: 30px;
}



/* --- Share */

.share {
	padding: 20px;
	background: #fff;
	border: 1px solid #cadede;
	overflow: hidden;
}

.share h6 {
	display: inline-block;
	margin: 0;
	color: var(--main-dark-blue);
	font-weight: 300;
	font-size: 16px;
	line-height: 56px;
}

.share ul {
	display: inline-block;
	margin: 0 0 0 5px!important;
}

.share ul li {
	display: inline-block;
	margin-left: 5px;
	padding: 0!important;
	background: none!important;
}

.share ul li a {
	display: block;
	width: 56px;
	height: 56px;
	background: var(--main-blue);
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 56px;
	border-radius: 100%;
	transition: all 0.15s ease-in-out;
}
.share ul li a:hover {}

.share ul li a svg {
	color: #fff;
}



/* --- Reference */

.reference {
	position: relative;
	display: block;
	padding: 380px 30px 40px;
	background-color: var(--main-dark-blue);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.2s;
}
.reference:hover {
	padding: 370px 30px 50px;
}

.reference h3 {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 35px;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	z-index: 1;
}

.reference h3 a {
	text-decoration: none!important;
}


.reference .cover {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 367px;
	background: url(img/shade.png) center top/cover no-repeat;
	z-index: 0;
}



/* ------ Tags */

.tags {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}

.tags .tag {
	float: left;
	margin: 0 10px 10px 0;
	padding: 4px 15px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 15px;
	line-height: 28px;
	border: 0;
	border-radius: 18px;
}

.tags .tag svg {
	color: var(--main-blue);
}



/* --- Joboffer */

.joboffer {
	transition: margin 0.2s;
}
.joboffer:hover {
	margin-top: -5px;
	margin-bottom: 5px;
}


.joboffer .block {
	padding: 45px 30px;
	background: #eaf4f4;
}

.joboffer .block h3 {
	margin-bottom: 50px;
	font-weight: 500;
	font-size: 21px;
	line-height: 24px;
	transition: color 0.2s;
}
.joboffer:hover h3 {
	color: var(--main-blue);
}

.joboffer .block svg {
	width: 30px;
	color: var(--main-blue);
	text-align: center;
}





/* Top */

#top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}

#top ul {}

#top ul li {
	position: relative;
	display: inline-block;
	margin-left: 25px;
}
#top ul li:first-child {
	margin-left: 0;
}

#top ul li a {
	display: inline-block;
	transition: all 0.2s;
	color: #fff;
}
#top ul li a:hover {
	color: var(--main-turquoise);
}

#top ul li a svg {
	color: var(--main-turquoise);
}


#top .container {
	height: 60px;
}

#top .row {
	height: 60px;
}





/* Header */

#header {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	z-index: 3;
}

#header .container {
	height: 110px;
	background: #fff;
	border-radius: 55px;
	box-shadow: 0 3px 36px 0 rgba(0, 0, 0, 0.08);
}

#header .row {
	height: 110px;
}


#header #logo {
	float: left;
	display: block;
	width: 344px;
	height: 60px;
}

#header #logo img {
	float: left;
}


#header a.button {
	margin: 0;
}



/* --- Nav */

#nav {
	font-weight: 700;
	font-size: 17px;
}

#nav ul {}

#nav ul li {
	position: relative;
	display: inline-block;
}

#nav ul li a {
	display: inline-block;
	color: var(--main-dark-blue);
	transition: all 0.2s;
}

#nav > ul > li > a {
	padding: 13px 15px;
	border: 1px solid #fff;
	border-radius: 999px;
}
#nav > ul > li > a:hover {
	border-color: #d9eaea;
}


#nav > ul > li.current-menu-item > a, #nav > ul > li.current-menu-ancestor > a {}

#nav > ul > li.menu-item-has-children {}

#nav > ul > li.menu-item-has-children > a {
	padding-right: 33px;
	background: url(img/chevron-down.svg) right 15px center no-repeat;
}




#nav ul li ul {
	position: absolute;
	top: 63px;
	left: -15px;
	display: none;
	width: 440px;
	padding: 22px 0 27px;
	background: #f6fafa;
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
	text-align: left;
	border: 1px solid #d9eaea;
	border-radius: 16px;
	z-index: 1;
}
#nav ul li:hover ul {
	display: block;
}

#nav ul li ul li {
	width: 100%;
	padding: 0 30px 0 45px;
	background: url(img/chevron-right.svg) 30px 12px no-repeat;
}
#nav ul li ul li.has-description {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d9eaea;
}

#nav ul li ul li a {}
#nav ul li ul li a:hover {
	color: var(--main-blue);
}

#nav ul li ul li a span {
	display: inline-block;
	color: #58768a;
	font-weight: 300;
	font-size: 15px;
	line-height: 24px;
}





/* Content */

#title {}

#title .col {}



#content {
	float: left;
	width: 100%;
	padding: 100px 0;
}


#content p {}
#content p:not(:last-child) {
	margin-bottom: 15px;
}
#content p:has(.subtitle):not(:last-child) {
	margin-bottom: 0;
}


#content ul, #content ol {
	margin-bottom: 15px;
}

#content ul li {
	padding-left: 20px;
	background: url(img/li.svg) 0 9px no-repeat;
}

#content ol li {}


#content blockquote {
	margin-bottom: 35px;
	padding-top: 45px;
	background: url(img/quote.svg) left top no-repeat;
	font-style: italic;
	font-weight: 500;
	font-size: 22px;
	line-height: 32px;
}



#main {}



#side {}

#side .sticky {
	position: sticky;
	top: 250px;
}

#side .block {
	margin-bottom: 15px;
}



#references {
	padding: 40px 0 80px;
}

#references #filter {
	margin-bottom: 20px;
}



#quote {}

#quote .block {
	height: 100%;
	min-height: 350px;
}

#quote .block strong {
	color: var(--main-blue);
	font-size: 19px;
}





/* Pagebuilder */

section {
	padding: 80px 0;
}



section .title {}

section .title h2 {
	margin-bottom: 35px;
}





section.banner {
	position: relative;
	width: 100%;
	padding: 300px 0 105px;
	background: var(--main-dark-blue) url(img/banner.jpg) center/cover no-repeat;
	color: #fff;
	font-size: 18px;
	line-height: 32px;
	border-radius: 0 0 120px 120px;
}

section.banner h1, section.banner h1 svg, section.banner h2, section.banner span.subtitle, section.banner span.intro, section.banner a.button.text {
	color: #fff;
}

section.banner span.intro {
	font-size: 24px;
	line-height: 40px;
}


section.banner .tags {
	margin-top: 10px;
}


section.banner .shade {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 280px;
	background: url(img/banner-shade.png) center/20px 280px repeat-x;
}





section.bar {
	margin-top: -120px;
	padding: 145px 0 25px;
	background: #eaf4f4;
}

section.bar ul {
	margin: 0!important;
}

section.bar ul li {
	float: left;
	margin-right: 30px;
	padding-left: 30px!important;
	background: url(img/li-check.svg) 0 5px no-repeat!important;
}

section.bar img {
	display: inline-block;
	margin: -3px 20px 0;
	vertical-align: middle;
}


section.bar a:not(.button) {
	color: var(--main-blue);
	text-decoration: underline;
}
section.bar a:not(.button):hover {
	text-decoration: none;
}





section.contentrow {}

section.contentrow a:not(.button) {
	color: var(--main-blue);
	text-decoration: underline;
}
section.contentrow a:not(.button):hover {
	text-decoration: none;
}


section.contentrow svg {
	color: var(--main-turquoise);
}





section.contentrow-blocks {
	padding: 10px 0;
}

section.contentrow-blocks + section:not(.contentrow-blocks)  {
	margin-top: 70px;
}

section.contentrow-blocks .block {
	height: 100%;
	min-height: 350px;
	background: #eaf4f4;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}





section.form {
	background: var(--main-dark-blue);
}





section.referenceslider {
	background: var(--main-dark-blue);
}

section.referenceslider h2 {
	color: #fff;
}

section.referenceslider .reference {
	background-color: #EAF4F4;
}

section.referenceslider .slider {
	margin-bottom: 25px;
}

section.referenceslider .slider .slide {
	float: left;
	width: calc(33.33333% - 20px);
	margin: 0 10px;
}



body.single-referentie section.referenceslider {
	background: #fff;
}

body.single-referentie section.referenceslider h2 {
	color: var(--main-dark-blue);
}





section.photoslider {
	padding: 0 0 40px;
	overflow: hidden;
}

section.photoslider .container {
	padding: 40px 20px;
	background: url(img/photoslider-bg.svg) left center/contain no-repeat;
}

section.photoslider .slider {
	margin: 0;
}

section.photoslider .slider .slide {
	float: left;
	width: auto;
	min-height: 100%;
	max-height: 415px;
	margin: 0 10px;
}

section.photoslider .slider .slide a {
	display: block;
	border-radius: 16px;
	overflow: hidden;
}

section.photoslider .slider .slide a img {
	width: 100%;
	height: auto;
	max-height: 415px;
}





section.partners {}

section.partners .partner {}

section.partners .partner .block {
	padding: 40px 30px;
	background: #fff;
	border: 1px solid #cadede;
}

section.partners .partner .block img {
	margin-bottom: 15px;
}

section.partners .partner .block a {
	color: var(--main-blue);
	text-decoration: underline;
}
section.partners .partner .block a:hover {
	text-decoration: none;
}





section.clientsslider {
	overflow: hidden;
}

/*
section.referenceslider + section.clientsslider {
	padding-top: 0;
}
*/

section.clientsslider .slider {}

section.clientsslider .slider .slide {
	float: left;
	width: 16.66666%;
	height: 160px;
	margin: 0 10px;
	padding: 30px 15px;
	line-height: 100px;
	text-align: center;
	border: 1px solid #d9eaea;
	border-radius: 8px;
}

section.clientsslider .slider .slide img {
	width: auto;
	max-height: 100px;
	vertical-align: middle;
}





section.joboffers {}





section.cta-block {
	background: var(--main-dark-blue);
	color: #fff;
}

section.cta-block h1, section.cta-block h2, section.cta-block h3 {
	color: #fff;
}





section.stats {
	padding: 70px 0 40px;
	background: var(--main-dark-blue);
	color: #fff;
	--grid-gutter: 180px;
}

section.stats .stat {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}

section.stats .stat span {
	display: inline-block;
	margin-bottom: 15px;
	color: var(--main-blue);
	font-size: 70px;
	line-height: 40px;
}





/* Footer */

#footer-top {
	position: relative;
	margin-bottom: -265px;
	z-index: 1;
}

#footer-top p {}
#footer-top p:not(:last-child) {
	margin-bottom: 30px;
}
#footer-top p:has(.subtitle):not(:last-child) {
	margin-bottom: 0;
}


#footer-top .block {
	height: 100%;
	min-height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}



#footer {
	position: relative;
	padding: 360px 0 40px;
	padding: 340px 0 40px;
	background: var(--main-dark-blue);
	color: #fff;
}


#footer h3 {
	margin-bottom: 20px;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	line-height: 28px;
}


#footer p {}
#footer p:not(:last-child) {
	margin-bottom: 30px;
}
#footer-top p:has(.subtitle):not(:last-child) {
	margin-bottom: 0;
}


#footer p svg {
	color: var(--main-turquoise);
}


#footer a {
	color: var(--main-blue);
	text-decoration: underline;
}
#footer a:hover {
	text-decoration: none;
}


#footer ul {}

#footer ul li {}

#footer ul li a {
	color: #fff;
	text-decoration: none;
}
#footer ul li a:hover {
	text-decoration: underline;
}


#footer .col {
	margin-top: 40px;
}
#footer .col:nth-child(2) {
	margin-top: 0;
}


#footer #socials {
	float: left;
	width: 100%;
	margin-top: 50px;
}

#footer #socials a {
	float: left;
	display: block;
	width: 56px;
	height: 56px;
	margin-right: 10px;
	background: #fff;
	color: var(--main-blue);
	font-size: 26px;
	line-height: 56px;
	text-align: center;
	border-radius: 100%;
	transition: all 0.2s;
}
#footer #socials a:hover {
	background: var(--main-blue);
	color: #fff;
}



#socket {
	padding: 44px 0;
	background: var(--main-dark-blue) url(img/footer-bg.svg) right bottom/contain no-repeat;
}

#socket ul {}

#socket ul li {
	display: inline-block;
	margin-right: 30px;
}

#socket ul li a {
	color: #fff;
}


#socket .col {
	margin-bottom: 0;
}





/* Plugins */

/* --- Gravity forms */

.gform_wrapper {
	padding: 50px;
	background: #fff url(img/block-bg.png) center/cover no-repeat;
	border-radius: 16px;
}

.block .gform_wrapper {
	padding: 0;
	background: none;
}


.gform_required_legend {
	display: none;
}


.gform_wrapper.gravity-theme .gfield_label {
	font-weight: 600!important;
	font-size: 14px!important;
}


.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	padding: 13px 20px!important;
	font-size: 16px!important;
}


.gform_wrapper.gravity-theme .gform_drop_area {
	background: #fff!important;
	border: 1px dashed #cadede!important;
	border-radius: 20px!important;
}


@media only screen and (max-width: 641px) {

	.gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
		line-height: 1!important;
	}

}



/* --- Translatepress */

.trp-shortcode-switcher {
	float: left;
}

.trp-shortcode-switcher__wrapper {
	float: right;
	margin-left: 10px;
}

.trp-language-switcher .trp-language-item {
	padding: 3px 13px!important;
}

.trp-language-switcher .trp-flag-image {
	width: 28px!important;
}





/* CMS */

img.alignright, a img.alignright { float: right; margin: 0 0 35px 35px; }
img.alignleft, a img.alignleft { float: left; margin: 0 35px 35px 0; }
img.aligncenter, a img.aligncenter { display: block; margin: 0 auto 35px; }





/* Responsive */

/* --- Max widths */

@media screen and (max-width: 1199px) {

	#top {
		background: var(--main-dark-blue);
	}

	#top .container {
		height: 40px;
	}

	#top .row {
		height: 40px;
	}


	#header {
		top: 40px;
	}

	#header .container {
		border-radius: 0 0 55px 55px;
	}











	#toggle-menu {
		position: absolute;
		top: 27px;
		right: 27px;
		width: 56px;
		height: 56px;
		background: var(--main-blue);
		cursor: pointer;
		border-radius: 100%;
		pointer-events: auto;
		z-index: 999;
	}
	#toggle-menu.open {}

	#toggle-menu span {
		position: absolute;
		left: 16px;
		display: block;
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 1px;
		transform: rotate(0deg);
		transition: transform 0.2s ease-in-out;
	}
	#toggle-menu span:nth-child(1) {
		top: 23px;
	}
	#toggle-menu span:nth-child(2) {
		top: 31px;
	}
	#toggle-menu.open span:nth-child(1) {
		top: 27px;
		transform: rotate(45deg);
	}
	#toggle-menu.open span:nth-child(2) {
		top: 27px;
		transform: rotate(-45deg);
	}


	#mobile-menu {
		display: none;
		position: fixed;
		top: 150px;
		left: 0;
		width: 100%;
		height: calc(100vh - 150px);
		padding: 40px 20px 140px;
		background: #fff;
		line-height: 42px;
		border-radius: 55px 55px 0 0;
		overflow-y: scroll;
		z-index: 3;
	}

	#mobile-menu ul {
		margin: 0;
		padding: 0;
		font-weight: 500;
		font-size: 18px;
	}

	#mobile-menu ul li {
		position: relative;
	}

	#mobile-menu ul li.menu-item-has-children {}
	#mobile-menu ul li.menu-item-has-children:before {
		position: absolute;
		top: 20px;
		right: 0;
		width: 11px;
		height: 6px;
		background: url(img/chevron-down.svg) right center no-repeat;
		transform: rotate(0deg);
		transition: transform 0.2s;
		content: " ";
	}

	#mobile-menu ul li.menu-item-has-children.open {}
	#mobile-menu ul li.menu-item-has-children.open:before {
		transform: rotate(180deg);
	}

	#mobile-menu ul li a {
		color: var(--main-dark-blue);
	}


	#mobile-menu ul li ul {
		display: none;
		margin: 8px 0;
		padding: 8px 20px;
		background: #f6fafa;
		font-size: 16px;
		line-height: 24px;
		border-radius: 20px;
	}

	#mobile-menu ul li ul li {
		padding: 8px 0;
	}

	#mobile-menu ul li ul li a {}







}



@media screen and (max-width: 989px) {

	.flickity-prev-next-button {
		width: 60px!important;
		height: 60px!important;
		margin-top: -30px;
	}

	.flickity-prev-next-button.previous {
		left: 0!important;
		background-size: 24px!important;
	}

	.flickity-prev-next-button.next {
		right: 0!important;
		background-size: 24px!important;
	}















	section.banner {
		padding: 250px 0 85px;
		padding: 230px 0 85px;
		border-radius: 0 0 60px 60px;
	}


	section.referenceslider .slider .slide {
		width: calc(50% - 20px);
		margin: 0 10px;
	}


	section.clientsslider .slider .slide {
		width: 20%;
	}


	section.cta-block .block {
		margin-bottom: 40px;
	}

}



@media screen and (max-width: 767px) {

	.block {
		padding: 40px;
	}



	section.photoslider .slider .slide {
		max-height: 200px;
	}

	section.photoslider .slider .slide img {
		height: 200px;
	}


	section.clientsslider .slider .slide {
		width: 25%;
	}

}



@media screen and (max-width: 767px) {

	h1 { font-size: 42px; line-height: 46px; }
	h2 { font-size: 32px; line-height: 38px; }
	h3 { font-size: 24px; line-height: 30px; }



	section.banner span.intro {
		font-size: 22px;
		line-height: 38px;
	}


	section.referenceslider .slider .slide {
		width: 100%;
		margin: 0;
	}


	section.clientsslider .slider .slide {
		width: 33.33333%;
	}



	.gform_wrapper {
		padding: 30px;
	}

}



@media screen and (max-width: 479px) {

	h1 { font-size: 40px; line-height: 44px; }
	h2 { font-size: 30px; line-height: 36px; }
	h3 { font-size: 22px; line-height: 28px; }



	section.banner span.intro {
		font-size: 20px;
		line-height: 36px;
	}


	section.clientsslider .slider .slide {
		width: 50%;
	}

}



/* --- Min widths */

@media screen and (min-width: 480px) {

}



@media screen and (min-width: 768px) {

}



@media screen and (min-width: 990px) {

}



@media screen and (min-width: 1200px) {

	#mobile-menu {
		display: none!important;
	}

	#toggle-menu {
		display: none!important;
	}

}



@media screen and (min-width: 1628px) {

}