/* 	==================================================================================================================
	default styles
	================================================================================================================== */

@import url("../../../../css/main.css");

/* 	==================================================================================================================
	dotfive // variables - Still no full browser support as of 23/01/2019, replace usage when that happens
	================================================================================================================== */

/* 	==================================================================================================================
	dotfive // variables // palette
	================================================================================================================== */

:root {
	--navy								 :	#091421;
	--red								 :	#c42c11;
	--white								 :	#ffffff;
	--grey								 :	#8293A8;
	--form-elements						 :	#6a6d73;
	--red-lighten						 :	#ea5754;
	--navy-lighten						 :	#182638;
	--red-darken						 :	#9c1f1d;
	--alt-body							 :	#333333;
	--black								 :	#000000;
}

/* 	==================================================================================================================
	dotfive // fonts
	================================================================================================================== */

@font-face {
	font-family: FreightSans;
	font-weight: normal;
	src: url("../fonts/Freight/FreightSans_Book.ttf");
}

@font-face {
	font-family: FreightSans;
	font-weight: lighter;
	src: url("../fonts/Freight/FreightSans_Light.ttf");
}

@font-face {
	font-family: FreightSans;
	font-weight: 500;
	src: url("../fonts/Freight/FreightSans_Medium.ttf");
}

@font-face {
	font-family: FreightSans;
	font-weight: 900;
	src: url("../fonts/Freight/FreightSans_Bold.ttf");
}

/* 	==================================================================================================================
	dotfive // basic config - break points at: 320, 480, 720, 960, 1200, 1440, 1800
	// max width 1400
	================================================================================================================== */

html {
	-webkit-font-smoothing: antialiased;
	scroll-behavior: smooth;
}

body {
	background-color: #091421;
	color: #8293A8;
	font-size: 1.8rem;
	font-family: "Lato", sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	text-align: left;
}

main > h1:first-of-type {
	display: none;
}

p {
	margin: 1rem 0 2rem;
}

@media only screen and (min-width: 1440px) {
	body {
		font-size: 2rem;
	}
}

/* 	==================================================================================================================
	dotfive // headings
	================================================================================================================== */

h1,
h2,
h3,
.big_intro.card p:first-child,
.header_video_launcher.card p:first-child,
.big_header.card p:first-child,
.case_study.layout > .content-row:nth-child(2) p:first-child,
.case_study_no_video.layout > .content-row:nth-child(2) p:first-child,
.vacancy.layout > .content-row p:first-child {
	font-family: FreightSans;
}

h1,
h3 {
	color: #ffffff;
}

h1 {
	font-size: 3.6rem;
	font-weight: 300;
	margin-bottom: 4rem;
	line-height: 4.4rem;
}

h2,
.big_intro.card p:first-child,
.header_video_launcher.card p:first-child,
.big_header.card p:first-child,
.case_study.layout > .content-row:nth-child(2) p:first-child,
.case_study_no_video.layout > .content-row:nth-child(2) p:first-child,
.vacancy.layout > .content-row p:first-child,
.engaging_white_type_c.card h3,
div#messages div.error > div::before,
div#messages div.info > div::before {
	color: #c42c11;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	margin: 2rem 0;
	line-height: 2.4rem;
}

h3,
.blog_page.layout > .row:nth-of-type(2) .block h2,
.engaging_white_type_c.card h2 {
	font-size: 3rem;
	font-weight: 300;
	margin: 2rem 0 4rem;
	line-height: 3.6rem;
}

@media only screen and (min-width: 960px) {
	h1 {
		font-size: 4rem;
		line-height: 5.2rem;
	}
	
	h2,
	.big_intro.card p:first-child,
	.header_video_launcher.card p:first-child,
	.big_header.card p:first-child,
	.case_study.layout > .content-row:nth-child(2) p:first-child,
	.case_study_no_video.layout > .content-row:nth-child(2) p:first-child,
	.vacancy.layout > .content-row: p:first-child,
	.engaging_white_type_c.card h3,
	div#messages div.error > div::before,
	div#messages div.info > div::before {
		font-size: 1.8rem;
	}
	
	h3,
	.blog_page.layout > .row:nth-of-type(2) .block h2,
	.engaging_white_type_c.card h2 {
		font-size:3.4rem;
		line-height: 4.2rem;
	}
}

@media only screen and (min-width: 1800px) {
	h1 {
		font-size: 6rem;
		line-height: 7.2rem;
	}
	
	h3,
	.blog_page.layout > .row:nth-of-type(2) .block h2,
	.engaging_white_type_c.card h2 {
		font-size: 3.6rem;
		line-height: 4.4rem;
	}
}

/* 	==================================================================================================================
	dotfive // cards // max-width, gutters and padding
	================================================================================================================== */

.card {
	flex-direction: column;
}

.content-row {
	padding-left: 2.6rem;
	padding-right: 2.6rem;
	margin: 0 auto;
	max-width: 125.2rem;
}

.layout > .content-row,
.card {
	padding-top: 10rem;
	padding-bottom: 10rem;
}

@media only screen and (min-width: 720px) {
	.layout > .content-row,
	.card {
		padding-top: 8.8rem;
		padding-bottom: 8.8rem;
	}
	
	.content-row {
		padding-left: 8.2rem;
		padding-right: 8.2rem;
		max-width: 136.4rem;
	}
}

@media only screen and (min-width: 1200px) {
	.content-row {
		padding-left: 11.4rem;
		padding-right: 11.4rem;
		max-width: 142.8rem;
	}
}

@media only screen and (min-width: 1440px) {
	.content-row {
		padding-left: 20rem;
		padding-right: 20rem;
		max-width: 160rem;
	}
}

@media only screen and (min-width: 1600px) {
	.content-row {
		padding-left: 22.8rem;
		padding-right: 22.8rem;
		max-width: 165.6rem;
	}
	
	.case_study.layout > .content-row,
	.case_study_no_video.layout > .content-row,
	.blog.layout > .content-row,
	.blog_page.layout > .content-row,
	.blog_posts.layout > .content-row,
	.legal.layout > .content-row {
		max-width: unset;
		padding: 8.8rem calc((100% - 120rem) / 2);
	}
}

/* 	==================================================================================================================
	dotfive // anchors and buttons
	================================================================================================================== */

a {
	color: #ffffff;
	text-decoration: none;
	font-size: inherit;
	font-family: "Lato", sans-serif;
	transition: all .5s ease;
	cursor: pointer;
}

.engaging_white_type_b.card a {
	color: #333333;
}

.featured_blog_post a,
.big_intro.card a,
.engaging_white.card a,
.call_to_action_banner.card a,
.header_video_launcher.card a,
.video_banner.card a,
form[name=Contact] div.footer a {
	display: inline-block;
	margin-top: 4rem;
	background: #c42c11;
	padding: 1rem 3.2rem;
	font-size: 1.9rem;
}

.featured_blog_post a:hover,
.big_intro.card a:hover,
.engaging_white.card a:hover,
.call_to_action_banner.card a:hover,
.header_video_launcher.card a:hover,
.video_banner.card a:hover,
form[name=Contact] div.footer a:hover {
	background-color: #9d220e;
}

.featured_blog_post a:disabled,
.big_intro.card a:disabled,
.engaging_white.card a:disabled,
.call_to_action_banner.card a:disabled,
.header_video_launcher.card a:disabled,
.video_banner.card a:disabled,
form[name=Contact] div.footer:disabled {
	background-color: #d3624e;
}

@media only screen and (min-width: 720px) {
	.featured_blog_post a,
	.big_intro.card a,
	.engaging_white.card a,
	.call_to_action_banner.card a,
	.header_video_launcher.card a,
	.video_banner.card a,
	form[name=Contact] div.footer a {
		padding: 1rem 4rem;
	}
}

main section a.sectionScroll,
.case_study.layout > .content-row:nth-child(1) a,
.case_study_no_video.layout > .content-row:nth-child(1) a {
	position: fixed;
	margin: 0;
	padding: 0;
	top: calc(100vh - 62px);
	left: calc(50% - 20px);
	width: 62px;
	height: 32px;
	cursor: pointer;
	font-size: 40px;
	text-indent: -9999px;
	z-index: 2;
}

main section a.sectionScroll::before,
main section a.sectionScroll::after,
.case_study.layout > .content-row:nth-child(1) a::before,
.case_study.layout > .content-row:nth-child(1) a::after,
.case_study_no_video.layout > .content-row:nth-child(1) a::before,
.case_study_no_video.layout > .content-row:nth-child(1) a::after {
	content: "";
	display: block;
	position: absolute;
	margin: 0;
	top: 12px;
	left: 0;
	right: 0;
	height: 10px;
	width: 40px;
	background: #c42c11;
	border-radius: 2px;
	transform: rotate(45deg);
	transition: all .5s ease;
}

main section a.sectionScroll::after,
.case_study.layout > .content-row:nth-child(1) a::after,
.case_study_no_video.layout > .content-row:nth-child(1) a::after {
	bottom: 12px;
	left: 22px;
	transform: rotate(-45deg);
}

main section a.sectionScroll:hover:before,
main section a.sectionScroll:hover:after,
.case_study.layout > .content-row:nth-child(1) a:hover:before,
.case_study.layout > .content-row:nth-child(1) a:hover:after {
	background: #9c1f1d;
}

/* 	==================================================================================================================
	dotfive // lists
	================================================================================================================== */

ul {
	margin: 2rem 0;
}

li {
	margin: 1rem 0;
	margin-left: 3rem;
}

li::marker {
	color: #c42c11;
}

/* 	==================================================================================================================
	dotfive // messages
	================================================================================================================== */

div#messages {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 90vh;
}

div#messages > div {
	background-color: #091421;
	padding: 6.4rem 3.2rem;
}

div#messages div.info {
	display: block !important;
	visibility: visible !important;
	height: auto !important;
}

div#messages div.error > div::before,
div#messages div.info > div::before {
	display: block;
	margin-top: 0;
}

div#messages div.error > div::before {
	content: "ERROR";
}

div#messages div.info > div::before {
	content: "SUCCESS";
}

/* 	==================================================================================================================
	dotfive // Animated background video
	================================================================================================================== */

main section#video {
	background: url(../images/mobile.png) no-repeat center center;
	background-size: cover;
}

main section#video {
	overflow: hidden;
	position: fixed;
	z-index: 1;
	height: 100vh;
	min-height: 500px;
	width: 100vw;
	margin-top: -100vh;
	max-width: unset;
}

main section#video > video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background: url(../images/desktop.png) no-repeat;
	background-size: cover;
	display: none;
}

main section#video ~ div#blocks,
main section#video ~ #blocks > div.layout > div.row {
	z-index: 2;
	position: relative;
}

main section#video ~ div#blocks {
	margin-top: 100vh;
}

main section#video ~ #blocks > div.layout > div.row {
	background-color: #091421;
}

@media only screen and (min-width: 720px) {
	main section#video {
		background: url(../images/tablet.png) no-repeat center center;
	}
}

@media only screen and (min-width: 960px) {
	main section#video > video {
		display: block;
	}
}

/* 	==================================================================================================================
	dotfive // Backgrounds colors
	================================================================================================================== */

.red_testimonial.card,
.case_study.layout > .content-row:nth-child(6),
.case_study_no_video.layout > .content-row:nth-child(6) {
	background-color: #c42c11;
	color: #ffffff;
}

.blog_posts.layout > .content-row:nth-child(2),
.blog_page.layout > .row:nth-of-type(2),
.blog_page.layout > .row:nth-of-type(2) .block,
.blog_page.layout > .row:nth-of-type(3),
.blog_page.layout > .row:nth-of-type(4),
.engaging_white.card,
.engaging_white_type_b.card,
.engaging_white_type_c.card,
.case_study.layout > .content-row:nth-child(2),
.case_study.layout > .content-row:nth-child(3),
.case_study.layout > .content-row:nth-child(5),
.case_study.layout > .content-row:nth-child(7),
.case_study_no_video.layout > .content-row:nth-child(2),
.case_study_no_video.layout > .content-row:nth-child(3),
.case_study_no_video.layout > .content-row:nth-child(5),
.case_study_no_video.layout > .content-row:nth-child(7),
.contact_details.card,
.legal.layout > .content-row:nth-child(1),
.clients_grid.card {
	background-color: #ffffff;
	color: #333333;
}

/* 	==================================================================================================================
	dotfive // header
	================================================================================================================== */

header {
	position: fixed;
	z-index: 899;
	top: 0;
	left: 0;
	right: 0;
	transition: all .5s ease;
}

body.menu_active header {
	-webkit-filter: blur(0.5rem);
	-moz-filter: blur(0.5rem);
	-ms-filter: blur(0.5rem);
	-o-filter: blur(0.5rem);
	filter: blur(0.5rem);
}

header.active {
	background: #091421;
}

header .container {
	padding: 2rem 3rem;
	display: flex;
	flex-flow: row;
	justify-content: space-between;
}

header .logo {
	display: block;
}

header .logo object {
	width: 20rem;
	transition: all .5s ease;
	pointer-events: none;
	max-height: 5.2rem;
}

header.active .logo object {
	width: 15rem;
	max-height: 4rem;
}

header #menu-icon {
	font-size: 3rem;
	color: #c42c11;
}

header #menu-icon:hover,
header #menu-icon:active,
header #menu-icon:focus {
	color: #ffffff;
}

/* 	==================================================================================================================
	dotfive // nav
	================================================================================================================== */

nav {
	background: #c42c11;
	position: fixed;
	width: 90%;
	right: -90%;
	bottom: 0;
	overflow-y: auto;
	top: 0;
	color: #ffffff;
	z-index: 998;
	padding-left: calc(8.33333% / 2);
	padding-right: calc(8.33333% / 2);
	transition: all .5s ease;
	-webkit-filter: blur(0rem);
	-moz-filter: blur(0rem);
	-ms-filter: blur(0rem);
	-o-filter: blur(0rem);
	filter: blur(0rem);
}

body.menu_active nav {
	right: 0%;
}

nav p {
	margin-bottom: 0.5rem;
}

nav #close {
	position: absolute;
	top: 2rem;
	right: 3rem;
	font-size: 3rem;
}

nav ul {
	margin-top: 5rem;
	list-style-type: none;
}

nav ul li {
	margin: 0;
}

nav ul a {
	font-size: 2rem;
	padding: 1.5rem 2rem;
	display: block;
}

nav ul a:hover,
nav ul a:active,
nav ul a:focus {
	color: #000000;
}

nav ul li a.selected {
	text-decoration: underline;
	text-underline-position: under;
}

nav hr {
	margin: 2rem 0;
	border-color: #ea5754;
}

nav .content {
	padding: 2rem;
}

nav .content p:first-of-type {
	margin-top: 5.5rem;
}

nav .content a:first-of-type h3 {
	margin-bottom: 0;
}

nav .content a h3 {
	margin-top: 0;
	font-size: 2.5rem;
}

nav .content a#email {
	font-size: 2.5rem;
}

nav .content-image {
	margin-top: 1.6rem;
}

nav object {
	width: 5rem;
	height: 5rem;
	float: right;
	margin: 0 2rem 2rem 0;
}

.overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990;
	display: none;
	transition: all .5s ease;
}

body.menu_active .overlay {
	display: block;
}

@media only screen and (min-width: 480px) {
	nav {
		width: 80%;
		right: -80%;
	}
}

@media only screen and (min-width: 960px) {
	nav {
		width: 40%;
		right: -40%;
	}
}

@media only screen and (min-width: 1200px) {
	nav {
		width: 32.5%;
		right: -32.5%;
		max-width: 450px;
	}
}

/* 	==================================================================================================================
	dotfive // widgets // grid
	================================================================================================================== */

section.grid {
	display: flex;
	flex-flow: column;
	padding: 1rem;
	row-gap: 1rem;
}

section.grid > div {
	position: relative;
	background-position: center center;
	background-size: cover;
	width: 100%;
	min-height: 30rem;
}

section.grid img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

section.grid a {
	background: rgba(0,0,0,.7);
	transition: all .5s ease;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	text-align: center;
	padding: 0rem 3.2rem;
}

section.grid a:hover {
	background: rgba(0,0,0,.7);
}

section.grid .static a {
	background: #091421;
}

section.grid .static.odd a {
	background: #c42c11;
}

section.grid .static:hover a {
	background: #000000;
}

section.grid a h2 {
	margin: 0.5rem 0 1rem 0;
	color: #ffffff;
}

section.grid a h3 {
	transition: all .5s ease;
	width: 100%;
	margin: 1.5rem 0;
	line-height: 1;
	font-size: 2.6rem;
}

section.grid a p {
	background: #c42c11;
	padding: 1rem 4rem;
	display: inline-block;
	transition: all .5s ease;
	color: #ffffff;
	font-size: 1.5rem;
	margin: 1rem;
}

section.grid a p:hover,
section.grid a p:focus,
section.grid a p:active {
	background: #9c1f1d;
}

@media only screen and (min-width: 480px) {
	section.grid a {
		padding: 0rem 1rem;
	}
}

@media only screen and (min-width: 720px) {
	section.grid {
		display: grid;
		grid-template-columns: 33.33% 33.33% 33.33%;
		grid-template-rows: 25vw 25vw;
		display: -ms-grid;
		-ms-grid-columns: 33.33% 33.33% 33.33%;
		-ms-grid-rows: 25vw 25vw;
		row-gap: unset;
		padding: 1.151515%;
	}
	
	section.grid > div {
		margin: 1vw;
		height: unset;
		width: unset;
		min-height: unset;
	}
	
	section.grid > div:first-child {
		grid-row: 1 / 3;
		-ms-grid-row-span: 2;
	}
	
	section.grid > div:nth-child(2) {
		-ms-grid-column: 2;
	}
	
	section.grid > div:nth-child(3) {
		-ms-grid-column: 3;
	}
	
	section.grid > div:nth-child(4) {
		-ms-grid-column: 2;
		-ms-grid-row: 2;
	}
	
	section.grid > div:nth-child(5) {
		-ms-grid-column: 3;
		-ms-grid-row: 2;
	}
	
	section.grid > div:not(.static) a {
		opacity: 0;
	}
	
	section.grid > div:hover a {
		opacity: 1;
	}
	
	section.grid a h3 {
		font-size: 1.9rem;
	}
	
	section.grid a p {
		font-size: 1.4rem;
	}
}

@media only screen and (min-width: 960px) {
	section.grid a h3 {
		margin: 1rem 10rem 1.5rem 0;
		font-size: 2.5vw;
	}
	
	section.grid .static a h3,
	section.grid div:hover a h3 {
		margin-right: 0;
	}
}

@media only screen and (min-width: 1440px) {
	section.grid {
		grid-template-rows: 24.5vw 24.5vw;
		-ms-grid-rows: 24.5vw 24.5vw;
	}
	
	section.grid > div {
		margin: .5vw;
	}
	
	section.grid a h2 {
		font-size: 1.2vw;
	}
	
	section.grid a p {
		font-size: 1.2vw;
	}
}

/* 	==================================================================================================================
	dotfive // widgets // cookieconsent
	================================================================================================================== */

div[widget=cookieconsent] {
	display: block;
	min-height: 4.2rem;
	background: #c42c11;
	padding: 0 3.2rem;
}

div[widget=cookieconsent] div[component=content] {
	margin: 0 auto;
	max-width: 140rem;
	padding: 1rem 3.2rem 1rem 0;
	color: #ffffff;
	font-size: inherit;
}

div[widget=cookieconsent] div[component=content] a {
	font-weight: bold;
	transition: all .5s ease;
	padding: 0;
}

div[widget=cookieconsent] div[component=content] a:hover {
	opacity: 0.7;
}

div[widget=cookieconsent] div[component=clear] {
	right: 0;
	top: 1rem;
	width: 2.4rem;
	height: 2.4rem;
	position: absolute;
}

div[widget=cookieconsent] div[component=clear]:before {
	cursor: pointer;
	position: absolute;
	color: #fff;
	content: "\f057";
	font: normal normal normal 2rem/1 FontAwesome;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: normal;
	font-style: normal;
	font-size: 2.4rem;
	display: inline-block;
	line-height: 1;
	transition: all .5s ease;
}

div[widget=cookieconsent] div[component=clear]:hover:before {
	opacity: 0.7;
}

/* 	==================================================================================================================
	dotfive // widgets // Vimeo modal
	================================================================================================================== */

div[widget=dialog] > div[component=window] div[component=close] {
	font: normal normal normal 20px/1 FontAwesome;
	font-size: 3.2rem;
}

div[widget=dialog] > div[component=window] div[component=close]::before {
	content: "\f00d";
}

/* 	==================================================================================================================
	dotfive // Layout // Case study
	================================================================================================================== */

.case_study.layout .content-row,
.case_study_no_video.layout .content-row {
	position: relative;
}

.case_study.layout > .content-row:nth-child(1),
.case_study_no_video.layout > .content-row:nth-child(1) {
	max-width: unset;
	height: 100vh;
	width: 100vw;
	padding: 0;
	overflow: hidden;
	z-index: 1;
}

.case_study.layout > .content-row:nth-child(1) .block:last-child,
.case_study_no_video.layout > .content-row:nth-child(1) .block:last-child { 
	height: 100%;
	width: 100%;
	position: fixed;
}

.case_study.layout > .content-row:nth-child(1) img,
.case_study_no_video.layout > .content-row:nth-child(1) img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case_study.layout > .content-row:nth-child(n+2),
.case_study.layout .call_to_action_banner.card,
.case_study_no_video.layout > .content-row:nth-child(n+2),
.case_study_no_video.layout .call_to_action_banner.card {
	z-index: 3;
}

.case_study.layout .call_to_action_banner.card,
.case_study_no_video.layout .call_to_action_banner.card {
	background-color: #091421;
}

.case_study.layout > .content-row:nth-child(2),
.case_study_no_video.layout > .content-row:nth-child(2) {
	padding-bottom: 10rem;
}

.case_study.layout > .content-row:nth-child(2) h1,
.case_study_no_video.layout > .content-row:nth-child(2) h1 {
	color: #091421;
}

.case_study.layout > .content-row:nth-child(2) .block:last-child,
.case_study_no_video.layout > .content-row:nth-child(2) .block:last-child {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.case_study.layout > .content-row:nth-child(3),
.case_study_no_video.layout > .content-row:nth-child(3) {
	padding-top: 0;
	gap: 5rem;
}

.case_study.layout > .content-row:nth-child(3) .block:last-child,
.case_study_no_video.layout > .content-row:nth-child(3) .block:last-child {
	margin-top: auto;
}

.case_study.layout > .content-row:nth-child(4) {
	flex-direction: column-reverse;
	background-color: #000000;
}

.case_study.layout > .content-row:nth-child(4) .block:first-child {
	position: relative;
	height: 0;
	width: 100%;
	padding-top: 28.125%;
	padding-bottom: 28.125%;
	overflow: hidden;
	margin-right: auto;
}

.case_study.layout > .content-row:nth-child(4) .block:first-child iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.case_study.layout > .content-row:nth-child(4) .block:last-child {
	margin: auto;
}

.case_study_no_video.layout > .content-row:nth-child(4) {
	background-color: #000000;
}

.case_study.layout > .content-row:nth-child(5),
.case_study.layout > .content-row:nth-child(7),
.case_study_no_video.layout > .content-row:nth-child(5),
.case_study_no_video.layout > .content-row:nth-child(7) {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.case_study.layout > .content-row:nth-child(5) .block:last-child,
.case_study_no_video.layout > .content-row:nth-child(5) .block:last-child {
	margin: auto;
}

.case_study.layout > .content-row:nth-child(5) img,
.case_study_no_video.layout > .content-row:nth-child(5) img {
	padding: 4.2rem;
}

.case_study.layout > .content-row:nth-child(6) .block,
.case_study_no_video.layout > .content-row:nth-child(6) .block {
	margin-left: auto;
}

.case_study.layout > .content-row:nth-child(7) h3,
.case_study_no_video.layout > .content-row:nth-child(7) h3 {
	color: #091421;
}

.case_study.layout > .content-row:nth-child(7) img,
.case_study_no_video.layout > .content-row:nth-child(7) img {
	padding: 4.2rem;
}

.case_study.layout > .content-row:nth-child(7) .block:last-child,
.case_study_no_video.layout > .content-row:nth-child(7) .block:last-child {
	margin: auto;
}

.case_study.layout > .content-row:nth-child(9),
.case_study.layout > .content-row:nth-child(9) section.grid,
.case_study_no_video.layout > .content-row:nth-child(9),
.case_study_no_video.layout > .content-row:nth-child(9) section.grid {
	padding: 0;
}

.case_study.layout > .content-row:nth-child(9),
.case_study_no_video.layout > .content-row:nth-child(9) {
	background-color: #091421;
	overflow: hidden;
	max-width: unset;
}

.case_study.layout > .content-row:nth-child(9) section.grid div,
.case_study_no_video.layout > .content-row:nth-child(9) section.grid div {
	margin: 0;
}

@media only screen and (min-width: 720px) {
	.case_study.layout > .content-row:nth-child(2),
	.case_study_no_video.layout > .content-row:nth-child(2) {
		flex-direction: row;
	}
	
	.case_study.layout > .content-row:nth-child(2) .block:last-child,
	.case_study_no_video.layout > .content-row:nth-child(2) .block:last-child {
		justify-content: flex-end;
	}
	
	.case_study.layout > .content-row:nth-child(4) {
		flex-direction: row;
		gap: 5rem;
	}
	
	.case_study.layout > .content-row:nth-child(4) .block:first-child {
		padding-bottom: 0;
	}
	
	.case_study.layout > .content-row:nth-child(5),
	.case_study.layout > .content-row:nth-child(7),
	.case_study_no_video.layout > .content-row:nth-child(5),
	.case_study_no_video.layout > .content-row:nth-child(7) {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	
	.case_study.layout > .content-row:nth-child(9) section.grid,
	.case_study_no_video.layout > .content-row:nth-child(9) section.grid {
		display: grid;
		grid-template-rows: 20vw;
		grid-template-columns: 50vw 50vw;
	}
	
	.case_study.layout > .content-row:nth-child(9) section.grid div:first-child,
	.case_study_no_video.layout > .content-row:nth-child(9) section.grid div:first-child {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
	}
}

/* 	==================================================================================================================
	dotfive // Layout // Legal
	================================================================================================================== */

.legal.layout .content-row:nth-child(1) .block {
	display: flex;
	flex-direction: column;
}

.legal.layout h1 {
	color: #091421;
	margin-bottom: 9rem;
}

/* 	==================================================================================================================
	dotfive // Layout // Vacancy
	================================================================================================================== */

.vacancy.layout > .content-row .block {
	display: flex;
	flex-direction: column;
}

.vacancy.layout > .content-row p,
.vacancy.layout > .content-row ul {
	font-size: 2.2rem;
}

.vacancy.layout > .content-row ul {
	margin-top: 0;
}

.vacancy.layout > .content-row h2:not(:first-child) {
	margin: 4rem 0 0;
}

/* 	==================================================================================================================
	dotfive // widgets // contact
	================================================================================================================== */

div.field.required div.fieldname::after {
	content: "*";
	color: #c42c11;
}

form[name=Contact] div[widget=textbox],
form[name=Contact] div[widget=textarea] {
	width: 100%;
	display: block;
	color: #6a6d73;
	font-size: 1.6rem;
	min-width: 10rem;
	border: 0.1rem solid #6a6d73;
	background: none;
	transition: all 0.5s ease;
	position: relative;
	line-height: 2.4rem;
}

div.field.invalid div[widget=textbox],
div.field.invalid div[widget=textarea] {
	border-color: #c42c11;
}

form[name=Contact] div[widget=textbox]:hover,
form[name=Contact] div[widget=textbox][focused=true],
form[name=Contact] div[widget=textarea]:hover,
form[name=Contact] div[widget=textarea][focused=true] {
	border-color: #ffffff;
	color: #ffffff;
}

form[name=Contact] div[widget=textarea] {
	min-height: 10rem;
	height: 100%;
	padding: 0;
}

form[name=Contact] div[widget=textarea] > div[widget~=scrollbox] {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: none;
}

div[widget~=textarea] div[widget~=scrollbox] > div[component=content] {
	left: 15px;
	top: 10px;
	bottom: 10px;
	right: 15px;
	overflow: hidden;
}

form[name=Contact] input[type=text] {
	width: 100%;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	font-family: inherit;
	background: none;
	border: none;
	padding: 1rem 1.5rem;
	min-height: 2rem;
	height: auto;
}

form[name=Contact] div[component=textbox][contenteditable=true] {
	position: relative;
	background: none;
	min-height: 100%;
}

form[name=Contact] span.required {
	display: none;
}

form[name=Contact] .field {
	margin: 0 0 1.5rem, 0;
}

form[name=Contact] div.field .fieldname {
	margin-bottom: 0.8rem;
}

form[name=Contact] div.field:nth-child(6) .fielddata {
	height: calc(100% - 3rem);
}

form[name=Contact] div.footer a {
	margin: 1.5rem 0;
	line-height: unset;
}

@media only screen and (min-width: 600px) {
	form[name=Contact] {
		display: grid;
		grid-template-columns: repeat(2, 50%);
		grid-template-rows: repeat(4, 9.1rem) 7.6rem 9.1rem;
		display: -ms-grid;
		-ms-grid-columns: (50%)[2];
		-ms-grid-rows: (9.1rem)[4] 7.6rem 9.1rem;
	}
	
	form[name=Contact] .field {
		margin-left: 1.5rem;
	}
	
	form[name=Contact] div.field:nth-child(1),
	form[name=Contact] div.field:nth-child(2),
	form[name=Contact] div.field:nth-child(3),
	form[name=Contact] div.field:nth-child(4),
	form[name=Contact] div.field:nth-child(5) {
		-ms-grid-column: 2;
	}
	
	form[name=Contact] div.field:nth-child(2) {
		-ms-grid-row: 2;
	}
	
	form[name=Contact] div.field:nth-child(3) {
		-ms-grid-row: 3;
	}
	
	form[name=Contact] div.field:nth-child(4) {
		-ms-grid-row: 4;
	}
	
	form[name=Contact] div.field:nth-child(5) {
		-ms-grid-row: 5;
		margin-bottom: 0;
	}
	
	form[name=Contact] div.field:nth-child(6) {
		margin: 0;
		grid-column: 1 / 2;
		grid-row: 1 / 6;
		-ms-grid-row-span: 5;
	}
	
	form[name=Contact] div.footer {
		grid-column: 1 / 2;
		grid-row: 6 / 7;
		-ms-grid-row: 6;
		-ms-grid-column-span: 2;
	}
}

/* 	==================================================================================================================
	dotfive // Layouts // contact
	================================================================================================================== */

.contact.layout > .content-row:nth-of-type(2) {
	padding-top: 0;
}

@media only screen and (min-width: 960px) {
	.contact.layout > .content-row:first-of-type {
		padding-top: 23.6rem;
		padding-bottom: 4rem;
	}
}

/* 	==================================================================================================================
	dotfive // Layout // Blog Page
	================================================================================================================== */

.blog_page.layout > .row:nth-of-type(1) {
	gap: 4rem;
	min-height: 90vh;
	color: #ffffff;
}

.blog_page.layout > .row:nth-of-type(1) .block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog_page.layout > .row:nth-of-type(1) .block:last-child {
	padding-right: 5rem;
}
	
.blog_page.layout > .row:nth-of-type(1) ul {
	list-style-type: none;
}

.blog_page.layout > .row:nth-of-type(1) li {
	position: relative;
}

.blog_page.layout > .row:nth-of-type(1) li::before {
	color: #ffffff;
	content: "\e8df";
	font-family: 'Material Icons';
	position: absolute;
	left: -30px;
	top: 3px;
}

.blog_page.layout > .row:nth-of-type(2) {
	background: linear-gradient(to bottom, #091421 21rem, #ffffff 0);
	padding: 0;
}

.blog_page.layout > .row:nth-of-type(2) .block {
	margin: 0 auto;
	max-width: 111.5rem;
	padding-left: 3.2rem;
	padding-right: 3.2rem;
	padding-top: 4rem;
}

.blog_page.layout > .row:nth-of-type(3) {
	padding-top: 0;
	padding-bottom: 0;
}

.blog_page.layout > .row:nth-of-type(3) .block {
	max-width: 111.5rem;
	display: flex;
	justify-content: center;
}

.blog_page.layout > .row:nth-of-type(3) img {
	width: 100%;
	max-width: 78rem;
	height: auto;
	margin-top: 3.2rem;
	margin-bottom: 6.4rem;
}

.blog_page.layout > .row:nth-of-type(4) {
	padding-top: 0;
	padding-bottom: 6.4rem;
}

.blog_page.layout > .row:nth-of-type(4) .block {
	margin: 0 auto;
	max-width: 111.5rem;
	padding-left: 8rem;
	padding-right: 8rem;
}

.blog_page.layout > .row:first-child ~ .row .block {
	line-height: 3.2rem;
	font-size: 2.4rem;
}

.blog_page.layout .block h2 {
	color: #333333;
	margin: 0 0 6.4rem;
	text-transform: unset;
}

.blog_page.layout > .row:first-child ~ .row .block p {
	margin-bottom: 3.2rem;
}
	
.blog_page.layout .block blockquote {
	line-height: 36px;
	font-size: 32px;
	color: #c42c11;
	padding: 24px;
	border-left: 8px solid #c42c11;
}

.blog_page.layout .block a {
	color: #c42c11;
}

@media only screen and (min-width: 720px) {
	.blog_page.layout > .row:nth-of-type(1) {
		gap: 10rem;
	}
	
	.blog_page.layout > .row:nth-of-type(2) {
		padding-top: 8.8rem;
		padding-bottom: 8.8rem;
		padding-left: 8.2rem;
		padding-right: 8.2rem;
	}

	.blog_page.layout > .row:nth-of-type(2) .block {
		border-radius: 0.4rem;
		padding-left: 8rem;
		padding-right: 8rem;
	}
}

@media only screen and (min-width: 1200px) {
	.blog_page.layout > .row:nth-of-type(2) {
		padding-left: 11.4rem;
		padding-right: 11.4rem;
	}
}

@media only screen and (min-width: 1440px) {
	.blog_page.layout > .row:nth-of-type(2) {
		padding-left: 20rem;
		padding-right: 20rem;
	}
}

@media only screen and (min-width: 1600px) {
	.blog_page.layout > .row:nth-of-type(2) {
		padding-left: 22.8rem;
		padding-right: 22.8rem;
	}
}

/* 	==================================================================================================================
	dotfive // Card // Big intro
	================================================================================================================== */

.big_intro.card p:not(:first-child),
.big_intro.card li {
	font-size: 2.2rem;
}

/* 	==================================================================================================================
	dotfive // Cards // Red testimonial
	================================================================================================================== */

.red_testimonial.card .content-row {
	gap: 5.5rem;
}

.red_testimonial.card p {
	margin-bottom: 0;
}

.red_testimonial.card blockquote {
	margin-bottom: 4rem;
	font-size: 3.4rem;
	font-family: FreightSans;
}

.red_testimonial.card blockquote::before {
	content: "\201C";
	display: inline-block;
	margin-left: -2.2rem;
	margin-right: 1.1rem;
}

.red_testimonial.card blockquote:after {
	content: "\201D";
	display: inline-block;
	margin-left: 0.7rem;
}

.red_testimonial.card .block:nth-of-type(2) {
	align-self: center;
}

.red_testimonial.card img {
	max-height: 6.3rem;
	width: auto;
}

/* 	==================================================================================================================
	dotfive // Card // Featured projects
	================================================================================================================== */

.featured_projects.card {
	padding: 0;
}

.featured_projects.card .row:nth-child(2) {
	max-width: unset;
	padding-right: 0;
	padding-left: 0;
}

.featured_projects.card .row .block {
	width: 100%;
}

/* 	==================================================================================================================
	dotfive // Card // Projects grid
	================================================================================================================== */

.projects_grid.card {
	padding: 0;
	background-color: #ffffff;
}

.projects_grid.card .row {
	max-width: unset;
	padding-right: 0;
	padding-left: 0;
}

.projects_grid.card .row .block {
	width: 100%;
}

@media only screen and (min-width: 720px) {
	
	.projects_grid section.grid {
		grid-template-rows: 40vw repeat(6, 30vw);
		-ms-grid-rows: 40vw (30vw)[5];
	}
	
	.projects_grid section.grid > div:first-child {
		grid-row: 1 / 2;
		grid-column: 1 / 4;
		-ms-grid-row-span: 1;
		-ms-grid-column-span: 3;
	}
	
	.projects_grid section.grid > div:nth-child(2) {
		-ms-grid-column: 1;
		-ms-grid-row: 2;
	}
	
	.projects_grid section.grid > div:nth-child(3) {
		-ms-grid-column: 2;
		-ms-grid-row: 2;
	}
	
	.projects_grid section.grid > div:nth-child(4) {
		-ms-grid-column: 3;
		-ms-grid-row: 2;
	}
	
	.projects_grid section.grid > div:nth-child(5) {
		-ms-grid-column: 1;
		-ms-grid-row: 3;
	}
	
	.projects_grid section.grid > div:nth-child(6) {
		grid-column: 2 / 4;
		-ms-grid-column: 2;
		-ms-grid-column-span: 2;
		-ms-grid-row: 3;
	}
	
	.projects_grid section.grid > div:nth-child(7) {
		-ms-grid-column: 1;
		-ms-grid-row: 4;
	}
	
	.projects_grid section.grid > div:nth-child(8) {
		-ms-grid-column: 2;
		-ms-grid-row: 4;
	}
	
	.projects_grid section.grid > div:nth-child(9) {
		-ms-grid-column: 3;
		-ms-grid-row: 4;
	}
	
	.projects_grid section.grid > div:nth-child(10) {
		-ms-grid-column: 1;
		-ms-grid-row: 5;
	}
	
	.projects_grid section.grid > div:nth-child(11) {
		-ms-grid-column: 2;
		-ms-grid-row: 5;
	}
	
	.projects_grid section.grid > div:nth-child(12) {
		-ms-grid-column: 3;
		-ms-grid-row: 5;
	}
	
	.projects_grid section.grid > div:nth-child(13) {
		-ms-grid-column: 1;
		-ms-grid-row: 6;
	}
	
	.projects_grid section.grid > div:nth-child(14) {
		-ms-grid-column: 2;
		-ms-grid-row: 6;
	}
	
	.projects_grid section.grid > div:nth-child(15) {
		-ms-grid-column: 3;
		-ms-grid-row: 6;
	}
	
	.projects_grid section.grid > div:nth-child(16) {
		grid-column: 1 / 4;
		-ms-grid-column: 1;
		-ms-grid-column-span: 3;
		-ms-grid-row: 7;
	}
}

/* 	==================================================================================================================
	dotfive // Card // Engaging white
	================================================================================================================== */

.engaging_white.card h3 {
	color: #091421;
}

.engaging_white.card .row div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* 	==================================================================================================================
	dotfive // Cards // Engaging white type b
	================================================================================================================== */

.engaging_white_type_b.card .content-row {
	gap: 3rem;
}

/* 	==================================================================================================================
	dotfive // Cards // Engaging white type b // variants
	================================================================================================================== */

.vacancies_-_rewards.engaging_white_type_b.card {
	padding-top: 0;
	padding-bottom: 0;
}
	
/* 	==================================================================================================================
	dotfive // Cards // Engaging white type c
	================================================================================================================== */

.engaging_white_type_c.card h2 {
	text-transform: none;
	color: #091421;
}

.engaging_white_type_c.card h3 {
	margin: 4rem 0 0;
}

.engaging_white_type_c.card h3:first-of-type {
	font-weight: bold;
}
	
/* 	==================================================================================================================
	dotfive // Card // Call to action
	================================================================================================================== */

.call_to_action_banner.card {
	text-align: center;
}

.call_to_action_banner.card h3 {
	margin: 0 0 4rem;
}

.call_to_action_banner.card a,
.call_to_action_banner.card p {
	margin: 0;
}

/* 	==================================================================================================================
		dotfive // Cards // Header video launcher
	================================================================================================================== */

.header_video_launcher.card {
	height: 85rem;
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.header_video_launcher.card p {
	margin: 0;
}

.header_video_launcher.card p:not(:first-child):not(:last-child) {
	color: #ffffff;
	font-size: 2.2rem;
	font-family: FreightSans;
	line-height: 3.2rem;
	letter-spacing: 0.05rem;
	font-weight: normal;
}

.header_video_launcher.card a {
	line-height: unset;
}

/* 	==================================================================================================================
	dotfive // Cards // Big header
	================================================================================================================== */

.big_header.card .block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 55vh;
}

/* 	==================================================================================================================
	dotfive // Card // Engage image type a and type b
	================================================================================================================== */

.engage_image_type_a.card .block,
.engage_image_type_b.card .block {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.engage_image_type_a.card .block {
	order: 2;
}

.engage_image_type_a.card .block:last-of-type {
	order: 1;
}

.engage_image_type_a.card h2,
.engage_image_type_a.card h3,
.engage_image_type_a.card p,
.engage_image_type_b.card h2,
.engage_image_type_b.card h3,
.engage_image_type_b.card p {
	margin-top: 0;
}

.engage_image_type_a.card img,
.engage_image_type_b.card img {
	max-width: 55rem;
	width: 100%;
}

@media only screen and (min-width: 720px) {
	.engage_image_type_a.card .block {
		order: unset;
	}
	
	.engage_image_type_a.card .block:last-of-type {
		padding-right: 5%;
	}
	
	.engage_image_type_b.card .block:first-of-type {
		padding-left: 5%;
	}
	
	.engage_image_type_a.card img,
	.engage_image_type_b.card img {
		width: auto;
	}
	
	.engage_image_type_a.card img {
		padding-right: 4rem;
	}
	
	.engage_image_type_b.card img {
		padding-left: 4rem;
	}
}

/* 	==================================================================================================================
	dotfive // Cards // Principle grid
	================================================================================================================== */

.principle_grid.card {
	background-color: #ffffff;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.principle_grid.card .row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2rem;
}

.principle_grid.card .block {
	position: relative;
	display: flex;
	flex-basis: 100%;
	width: 100%;
	min-height: 25rem;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0 6rem;
	align-items: center;
	overflow: hidden;
}

.principle_grid.card .block:not(:first-child) {
	background: #c42c11;
	color: #ffffff;
}

.principle_grid.card h2 {
	transition: all 0.5s ease-in-out;
	color: #ffffff;
}

.principle_grid.card h3 {
	color: #091421;
}

.principle_grid.card p {
	position: absolute;
	margin: 0;
	padding-right: 6rem;
	opacity: 0;
	transition: all 0.5s ease-in-out;
	top: 100%;
}

.principle_grid.card .block:not(:first-child):hover {
	background: #000000;
	opacity: 1;
}

.principle_grid.card .block:not(:first-child):hover p {
	top: 45%;
	opacity: 1;
}

.principle_grid.card .block:not(:first-child):hover h2 {
	-ms-transform: translateY(-3rem);
	transform: translateY(-3rem);
}

@media (min-width: 960px) {
	.principle_grid.card .row {
		padding: 0;
	}
	
	.principle_grid.card .block {
		height: 21vw;
		flex-basis: 30%;
		margin: 1rem;
		padding: 0 3rem;
		max-width: 43.8rem;
		height: 28.6rem;
	}
	
	.principle_grid.card h2 {
		font-size: inherit;
	}
	
	.principle_grid.card p {
		padding-right: 3rem;
	}

	.principle_grid.card .block:not(:first-child):hover p {
		top: 50%;
	}
}

@media (min-width: 1200px) {
	.principle_grid.card .block {
		padding: 0 6rem;
	}
	
	.principle_grid.card p {
		padding-right: 6rem;
	}
}

/* 	==================================================================================================================
		dotfive // Cards // Video banner
	================================================================================================================== */

.video_banner.card .content-row {
	justify-content: center;
}

.video_banner.card {
	text-align: center;
}

.video_banner.card h3 {
	margin: 0 0 4rem;
}

.video_banner.card a {
	margin-top: 0;	
	margin-bottom: 4rem;	
	line-height: unset;
}

.video_banner.card p {
	margin: 0;
}

/* 	==================================================================================================================
	dotfive // Cards // Contact details
	================================================================================================================== */

.contact_details.card .row {
	width: 100%;
	gap: 2rem;
}

.contact_details.card p {
	margin: 0;
}

.contact_details.card a {
	color: #333333;
}

/* 	==================================================================================================================
	dotfive // Cards // Featured blog post
	================================================================================================================== */

.featured_blog_post {
	color: #ffffff;
	padding: 0;
}

.featured_blog_post > div.row {
	align-items: center;
	min-height: 90vh;
	gap: 3rem;
	padding-top: 12.8rem;
	padding-bottom: 12.8rem;
}

.featured_blog_post div.block:first-child {
	display: flex;
	justify-content: flex-end;
	flex-flow: column;
}

.featured_blog_post ul {
	list-style-type: none;
}

.featured_blog_post li {
	position: relative;
}

.featured_blog_post li::before {
	color: #ffffff;
	content: "\e8df";
	font-family: 'Material Icons';
	position: absolute;
	left: -30px;
	top: 3px;
}

@media (min-width: 720px) {
	.featured_blog_post > div.row {
		gap: 6rem;
	}
	
	.featured_blog_post div.block:first-child {
		justify-content: center;
	}
}

/*  ==================================================================================================================
	dotfive // widget // scrollerpanel
	================================================================================================================== */

.scrollerpanel {
	position: relative;
}

.scrollerpanel .panels {
	display: flex;
	flex-direction: column;
	gap: 10rem;
}

.scrollerpanel .panel {
	height: 100%;
	width: 100%;
}

.scrollerpanel .panel-content {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.scrollerpanel .panels .panel img {
	width: 100%;
}

.scrollerpanel .panel div.text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	color: #333333;
}

.scrollerpanel .panels a {
	pointer-events: none;
	position: relative;
	min-height: 25rem;
}

.scrollerpanel .panels div.text::after {
	content: 'READ POST';
	margin-top: 2rem;
	background-color: #c42c11;
	border-radius: 0.4rem;
	order: 4;
	width: fit-content;
	padding: 1.2rem 6rem;
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 500;
	pointer-events: all;
	transition: all 0.5s ease;
}

.scrollerpanel .panels div.text:hover:after {
	background-color: #9d220e;
}

.scrollerpanel .panels .panel h3 {
	order: 1;
	color: #333333;
	margin: 0;
}

.scrollerpanel .panels .panel p {
	order: 2;
}

.scrollerpanel .panels .panel-content span {
	order: 3;
	color: #c42c11;
	font-weight: 500;
	line-height: 24px;
	padding-left: 32px;
	position: relative;
}

.scrollerpanel .panels .panel-content span::before {
	display: block;
	content: "\e8df";
	font-family: 'Material Icons';
	position: absolute;
	width: 24px;
	height: 24px;
	left: 0;
}

@media only screen and (min-width: 720px) {
	.scrollerpanel .panel-content {
		flex-direction: row;
		justify-content: space-between;
		gap: 5rem;
	}
	
	.scrollerpanel .panels .panel img {
		width: 55%;
		align-self: flex-start;
	}
	
	.scrollerpanel .panels a::after {
		bottom: 2rem;
		left: calc(55% + 5rem);
	}
} 

@media only screen and (min-width: 960px) {
	.scrollerpanel .panel-content {
		gap: 10rem;
	}
	
	.scrollerpanel .panels a::after {
		left: calc(55% + 10rem);
	}
} 

/* 	==================================================================================================================
	dotfive // Cards // Stylish video
	================================================================================================================== */

.stylish_video.card .content-row:last-child .block {
	position: relative;
	height: 0;
	width: 100%;
	padding-top: 28.125%;
	padding-bottom: 28.125%;
	overflow: hidden;
	margin-right: auto;
}

.stylish_video.card iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 720px) {
	.stylish_video.card .content-row:last-child .block {
		padding-bottom: 11.125%;
	}
	
	.stylish_video.card .content-row:first-of-type .block {
		padding-right: 3rem;
	}
	
	.stylish_video.card iframe {
		padding-right: 3rem;
		padding-bottom: 1rem;
	}
}

/* 	==================================================================================================================
	dotfive // Cards // Technology grid
	================================================================================================================== */

.technologies_grid.card .row {
	width: 100%;
}

.technologies_grid.card .list-panels,
.technologies_grid.card .block {
	text-align: center;
}

.technologies_grid.card .list-panels {
	display: flex;
	flex-flow: row wrap;
	margin: 2rem auto 0 auto;
	max-width: 114rem;
}

.technologies_grid.card P {
	margin: 1rem 0 2rem 0;
}

.technologies_grid.card .panel {
	width: calc(100% / 3);
}

.technologies_grid.card img {
	width: 100%;
}

@media (min-width: 720px) {
	.technologies_grid.card .panel {
		width: calc(100% / 6);
	}
}

/* 	==================================================================================================================
	dotfive // Cards // Clients grid
	================================================================================================================== */

.clients_grid.card .row {
	width: 100%;
	justify-content: center;
}

.clients_grid.card .list-panels,
.clients_grid.card .block {
	text-align: center;
}

.clients_grid.card .list-panels {
	display: flex;
	flex-flow: row wrap;
	margin: 2rem auto 0 auto;
}

.clients_grid.card P {
	margin: 0;
}

.clients_grid.card .panel {
	width: calc(100% / 3);
}

.clients_grid.card img {
	width: 100%;
}

@media (min-width: 720px) {
	.clients_grid.card .panel {
		width: calc(100% / 6);
	}
}

/* 	==================================================================================================================
	dotfive // footer
	================================================================================================================== */

footer {
	padding: 1rem calc(8.33333% / 2);
	background: #091421;
	position: relative;
	z-index: 2;
	transition: all .5s ease;
}

footer div {
	max-width: 140rem;
	margin: 0 auto;
}

footer.active {
	background: #c42c11;
}

footer a.logo {
	display: block;
	height: 3rem;
	float: left;
}

footer a.logo object {
	margin-right: 1.5rem;
	pointer-events: none;
	width: 3rem;
	height: 3rem;
}

footer span {
	color: #ffffff;
	display: inline-block;
	height: 3rem;
	line-height: 3rem;
	font-size: 1.6rem;
}

footer .footer-nav ul li:before {
	content: "";
	display: none;
}

footer .footer-nav ul li a {
	display: block;
	padding: 1rem 0.5rem;
}

@media only screen and (min-width: 840px) {
	footer {
		padding: 1rem 8.33333%;
	}
}
