@charset "UTF-8";

/* CSS Document */

* {
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: Verdana, Geneva, sans-serif;
	background-color: var(--sg-white);
	overflow-x: hidden;
	color: #FFF;
}

:root {
	--sg-grey: #90878c;
	--sg-white: #ffffff;
	--sg-darkgrey: #191919;
	--sg-midgrey: #555555;
	--t-blue: #101920;
	--t-green: #32cd33;
	--t-orange: #FC4C01;
}

h1 {
	font-size: 50px;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	font-family: Rockwell, "Rockwell Extra Bold", sans-serif;
}

h2 {
	font-size: 16px;
	line-height: 28px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

h3 {
	font-size: 18px;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

h4 {
	font-size: 28px;
	line-height: normal;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}

h5 {
	font-size: 16px;
	line-height: 30px;
	font-style: normal;
	font-weight: normal;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
}


.link {
	display: inline-block;
	cursor: pointer;
}

.link::after {
	content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--t-orange);
    transition: width .3s;
}

.link:hover::after {
	width: 100%;
}

.link-contact {
	display: inline-block;
	cursor: pointer;
}

.link-contact::after {
	content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--t-orange);
    transition: width .3s;
}


.link-contact:hover::after {
	width: 0;
}

/* Header */

header {
	display: block;
	position: fixed;
	width: 100%;
	height: 80px;
	margin: 0;
	top: 0;
	z-index: 10;
	transition: all 0.3s ease-in-out;
  	-webkit-transition: all 0.3s ease-in-out;
  	-moz-transition: all 0.3s ease-in-out;
	background-color: rgba(252,76,1,0.50);
}

.header-holder {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-content: flex-start;
}

.header-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 0 5vw;
	flex-direction: row;
}

.header-logo {
	flex: 1 1 auto;
	flex-basis: 50%;
	display: flex;
	align-items: center;
}

.header-logo img {
	display: block;
	height: 80px;
	float: left;
}

.header-mobile-links {
	display: none;
}

.header-mobile-links {
	flex: 1 1 auto;
	flex-basis: 50%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	min-width: 25px; 
}
	
.header-nav-icon {
	display: block;
   	width: 30px;
   	height: 16px;
   	cursor: pointer;
   	position: absolute;
}
	
.header-nav-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--sg-darkgrey);
	opacity: 1;
	position: absolute;
	border-radius: 1px 1px 1px 1px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
	
.header-nav-icon span:nth-child(1) {
	top: 0px;
	width: 25px;
	margin-left: 5px;
}

.header-nav-icon span:nth-child(2) {
	top: 8px;
}

.header-nav-icon span:nth-child(3) {
	top: 8px;
}

.header-nav-icon span:nth-child(4) {
	top: 16px;
	width: 25px;
	margin-left: 5px;
}
	
/* Nav */
	
nav {
	width: 100%;
	height: 50vh;
	position: fixed;
	left: 0;
	top: 0;
	padding: 0;
	display: block;
	color: #161314;
	background: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out 0s;
	-o-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
	z-index: -2;
}
	
.nav-holder {
	width: 100%;
	height: 100%;
	display: flex;
	position: relative;
	margin: 0;
	padding: 0;
}
	
.nav-wrapper {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 0 10vw;
	align-items: center;
}
	
.nav-links {
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
	
.nav-links ul {
	margin: 0;
	padding: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
	
.nav-links ul li {
	display: flex;
	padding-bottom: 3vh;
	justify-content: center;
}
	
.nav-links ul li:nth-child(5) {
	padding-bottom: 0;
}
	
.nav-links ul li a {
	text-decoration: none;
	color: var(--sg-darkgrey);
}

.nav-contact {
	height: 15vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
}

.nav-contact ul {
	margin: 0;
	padding: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.nav-contact ul li {
	display: inline-flex;
	padding-right: 5vh;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #000000;
}

.nav-contact ul li h3 {
	text-decoration: none;
	color: #000000;
}

.nav-contact ul li:nth-child(2){
	padding-right: 0;
}
	
/* Open Nav */

html .nav-open {
	overflow: hidden;
}

body .nav-open {
	overflow: auto;
}

.nav-open nav {	
	display: block;
	opacity: 1;
	z-index: 5;
}

.nav-open .header-nav-icon span {
	background: #161314;
}

body .nav-open {
	 position: fixed;
}

.nav-open .header-nav-icon span:nth-child(1) {
	opacity: 0;
}

.nav-open .header-nav-icon span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 10px;
}

.nav-open .header-nav-icon span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 10px;
}

.nav-open .header-nav-icon span:nth-child(4) {
	opacity: 0;
}

.nav-open .header .header-logo span {
	opacity: 0;
}

.nav-up {
  top: -80px;
}

/* Slider */ 

.css-slider-wrapper {
	display: flex;
	background: #FFF;
	overflow: hidden;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	height: 60vh;
}

.slider {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  	justify-content: center;
  	align-content: center;
  	-webkit-transition: -webkit-transform 1600ms;
  	transition: -webkit-transform 1600ms, transform 1600ms;
  	-webkit-transform: scale(1);
  	transform: scale(1);
}

.slide-1 {
	background-image: url("_images/Slide_1.jpg");
	background-size: cover;
	background-position: center;
  	left: 0;
}

.slide-2 {
  	background-image: url("_images/Slide_2.jpg");
	background-size: cover;
	background-position: center;
  	left: 100%
}
.slide-3 {
 background-image: url("_images/Slide_3.jpg");
	background-size: cover;
	background-position: center;
  left: 200%
}
.slide-4 {
  	background-image: url("_images/Slide_4.jpg");
	background-size: cover;
	background-position: center;
 	left: 300%;
}
.slide-5 {
  	background-image: url("_images/Slide_5.jpg");
	background-size: cover;
	background-position: center;
 	left: 400%;
}
.slide-6 {
  	background-image: url("_images/Slide_6.jpg");
	background-size: cover;
	background-position: center;
 	left: 500%;
}
.slide-7 {
  	background-image: url("_images/Slide_7.jpg");
	background-size: cover;
	background-position: center;
 	left: 600%;
}
.slide-8 {
  	background-image: url("_images/Slide_8.jpg");
	background-size: cover;
	background-position: center;
 	left: 700%;
}

.slider {
  	display: flex;
  	justify-content: flex-start;
}

.slider-content {
	display: flex;
	margin: 0 10vw;
	max-width: 1200px;
	padding-right: 10%;
	flex-direction:column; 
	border: 0;
}

.slider h1 {
  color: #101920;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
  margin-top: 0;
	opacity: 0;
}

.slider h3 {
  -webkit-transform: translateX(500px);
  transform: translateX(500px);color: #101920;
	opacity: 0;
}

.slider > img {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(500px);
  transform: translateX(500px);
}

.slide-1 > img {
  right: 0;
}

.slider h1 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1s; /* Safari */
  transition-delay: 1s;
}
.slider h3 {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1.4s; /* Safari */
  transition-delay: 1.4s;
}
.slider > img {
  -webkit-transition: opacity 800ms, -webkit-transform 800ms;
  transition: transform 800ms, opacity 800ms;
  -webkit-transition-delay: 1.2s; /* Safari */
  transition-delay: 1.2s;
}

.slider-pagination {
  position: absolute;
  bottom: 30px;
  width: 575px;
  margin-left: 10vw;
  z-index: 2;
  display: flex;
  align-items: center;
}

.slider-pagination label {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background: #101920;
  margin: 0 10px;
  cursor: pointer;
}

.slide-radio1:checked ~ .slider-pagination .page1,
.slide-radio2:checked ~ .slider-pagination .page2,
.slide-radio3:checked ~ .slider-pagination .page3,
.slide-radio4:checked ~ .slider-pagination .page4,
.slide-radio5:checked ~ .slider-pagination .page5,
.slide-radio6:checked ~ .slider-pagination .page6,
.slide-radio7:checked ~ .slider-pagination .page7,
.slide-radio8:checked ~ .slider-pagination .page8 {
  width: 14px;
  height: 14px;
  border: 2px solid #FC4C01;
  background: transparent;
}

.slide-radio1:checked ~ .slider {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
.slide-radio2:checked ~ .slider {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.slide-radio3:checked ~ .slider {
  -webkit-transform: translateX(-200%);
  transform: translateX(-200%);
}
.slide-radio4:checked ~ .slider {
  -webkit-transform: translateX(-300%);
  transform: translateX(-300%);
}
.slide-radio5:checked ~ .slider {
  -webkit-transform: translateX(-400%);
  transform: translateX(-400%);
}
.slide-radio6:checked ~ .slider {
  -webkit-transform: translateX(-500%);
  transform: translateX(-500%);
}
.slide-radio7:checked ~ .slider {
  -webkit-transform: translateX(-600%);
  transform: translateX(-600%);
}
.slide-radio8:checked ~ .slider {
	-webkit-transform: translateX(-700%);
	transform: translateX(-700%);
}

.slide-radio1:checked ~ .slide-1 h1,
.slide-radio2:checked ~ .slide-2 h1,
.slide-radio3:checked ~ .slide-3 h1,
.slide-radio4:checked ~ .slide-4 h1,
.slide-radio5:checked ~ .slide-5 h1,
.slide-radio6:checked ~ .slide-6 h1,
.slide-radio7:checked ~ .slide-7 h1,
.slide-radio8:checked ~ .slide-8 h1,
.slide-radio1:checked ~ .slide-1 h3,
.slide-radio2:checked ~ .slide-2 h3,
.slide-radio3:checked ~ .slide-3 h3,
.slide-radio4:checked ~ .slide-4 h3,
.slide-radio5:checked ~ .slide-5 h3,
.slide-radio6:checked ~ .slide-6 h3,
.slide-radio7:checked ~ .slide-7 h3,
.slide-radio8:checked ~ .slide-8 h3,
.slide-radio1:checked ~ .slide-1 > img,
.slide-radio2:checked ~ .slide-2 > img,
.slide-radio3:checked ~ .slide-3 > img,
.slide-radio4:checked ~ .slide-4 > img,
.slide-radio5:checked ~ .slide-5 > img,
.slide-radio6:checked ~ .slide-6 > img,
.slide-radio7:checked ~ .slide-7 > img,
.slide-radio8:checked ~ .slide-8 > img {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	color: #FC4C01;
}


/* Title Section */

.title-image {
	display: flex;
	width: 100%;
	height: 60vh;
	position: relative;
	justify-content: center;
}

.title-image img {
	display: flex;
	overflow: hidden;
	position: relative;
	object-fit: cover;
	width: 100%;
}

.title-image img:after {
	display: flex;
	overflow: hidden;
	position: relative;
	object-fit: cover;
	background-color: rgba(0,0,0,0.25);
}

.title-content-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 0 10vw;
	flex-direction: row;
	max-width: 1200px;
	position: absolute;
}

.title-content {
	display: flex;
	flex-direction: column;
}

.title-content h1 {
	display: flex;
	color: var(--t-orange);
	bottom: 0;
	position: absolute;
	padding-bottom: 5vh;
}

/* Copy Section */

.copy-container {
	display: flex;
	position: relative;
	width: 100%;
	overflow: hidden;
	align-content: center;
	justify-content: center;
	background-color: var(--t-blue);
}

.copy-container-wrapper {
	display: flex;
	margin: 5vh 10vw;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.copy-container-inner {
	display: flex;
	flex-direction: column;
}

.copy-container-priamry {
	display: flex;
	flex: 1 1 auto;
	width: 85%;
	padding-bottom: 60px;
}

.copy-container-priamry h4 {
	line-height: 48px;
}

.copy-container-secondary {
	display: flex;
	flex: 1 1 auto;
	width: 60%;
	margin-left: 0%;
	
}

.copy-container-secondary h4 {
	display: flex;
	padding-bottom:  2vh;
}

.copy-container-secondary h5 {
	display: flex;
	flex-direction: column;
}

.copy-container-secondary h5 p {
	display: flex;
}

/* Logo Section */

.logo-container {
	display: flex;
    min-height: 5vh;
    width: 100%;
	margin-bottom: 0;
	background-color: var(--t-blue);
	position: relative;
}

.logo-container-height {
	min-height: 80vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10%;
}

.logo-container-holder {
	width: 100%;
	display: block;
	float: left;
}

.logo-container-logos {
	width: 100%;
	display: block;
}

.logo-container-logos ul {
	display: flex;
  	flex-direction: row;
  	flex-wrap: wrap;
	padding: 0;
	justify-content: center;
}

.logo-container-logos ul li {
    display: flex;
	flex-basis: 33%;
    margin: 6vh 0;
	align-items: center;
	justify-content: center;
}

.logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
}

.logo-image {
	width: 50%;
	display: block;
}

/* Accordion */

.accordion-container {
	display: flex;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	margin: 0 auto;
	justify-content: center;
}

.accrodion-container-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 15vh 10vw;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.accordion-contianer-title {
	display: flex;
	flex: 0 0 47.5%;
	justify-content: flex-start;
	padding-right: 2.5%;
	flex-direction: column;
}

.accordion-contianer-title h4 {
	padding-bottom: 1vh;
	line-height: 48px;
}

.accordion-container-section{
	display: flex;
	flex: 0 0 50%;
	justify-content: flex-start;
	flex-direction: column;
	border-bottom: 1px solid;
}

.accordion {
	width: 100%;
	text-align: left;
	border: 0;
	transition: 0.4s;
	display: wrap;
	margin: 0;
	padding: 15px 10px;
	background-color: Transparent;
    background-repeat:no-repeat;
	border-top: 1px solid;
}

button:focus {
	outline:0;
}

.accordion:nth-child(1) {
	border-top: 0;
}

.accordion h2 {
	position: relative; 
    float: left;
}

/* Qual Section */

.qual-container {
	display: flex;
    min-height: 3vh;
    width: 100%;
	margin-bottom: 0;
	background-color: var(--t-green);
	position: relative;
}

.qual-container-height {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10%;
	overflow:inherit; 
}

.qual-container-holder {
	width: 100%;
	display: block;
	float: left;
	margin: 5vh 0;
}

.qual-container-logos {
	width: 100%;
	display: block;
}

.qual-container-logos ul {
	display: flex;
  	flex-direction: row;
  	flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

.qual-container-logos ul li {
    display: flex;
	flex-basis: 33%;
    margin: 4vh 0;
	align-items: center;
	justify-content: center;
}

.section-title {
	width: 100%;
	display: flex;
	padding-bottom: 5vh;
	justify-content: center;
	align-content: center;
}

.section-title h4 {
	color: var(--sg-white);
}

/* No-padding */

.no-padding-top {
	margin-top: 0;
	padding-top: 0;
}

.no-padding-bottom {
	margin-bottom: 0;
	padding-bottom: 0;
}


/* Project Section */

.project-section-container {
	display: block;
	position: relative;
	width: 100%;
	overflow-x: hidden;
	background-color: var(--sg-brown);
}

.project-section-height {
	overflow: hidden;
}

.project-section-holder {
	position: relative;
	display: flex;
	height: 100%;
	justify-content: center;
	align-content: center;
}

.project-section-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 15vh 10vw;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-flow: row wrap;
	max-width: 1200px;
}

.project-single-project {
	display: flex;
	flex: 1 1 auto;
	flex-basis: 31%;
	justify-content: flex-start;
	margin-right: 2%;
	height: auto;
	flex-wrap: wrap;
	padding-bottom: 4vh;
}

.project-single-project:nth-child(3) {
	margin-right: 0;
}

.project-single-project:nth-child(6) {
	margin-right: 0;
}

.project-single-project:nth-child(4) {
	padding-bottom: 0;
}

.project-single-project:nth-child(5) {
	padding-bottom: 0;
}

.project-single-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	word-wrap: break-word;
	background-color: var(--sg-grey);
	cursor: pointer;
}

.project-single-wrapper picture {
	display: flex;
	overflow: hidden;
	align-content: center;
	justify-content: center;
}

.project-single-wrapper picture img {
	display: flex;
	transition: all 0.5s;
}

.project-single-wrapper picture .image:hover {
	transform: scale(1.1);
}

.project-wrapper-contents {
	display: flex;
	flex-direction: column;
	padding: 4vh 2vw 4vh;
}

.project-wrapper-contents h4 {
	padding-bottom: 0vh;
}

.project-tag {
	color: var(--sg-green);
	padding-bottom: 1vh;
	display: flex;
}

.image {
	width: 100%;
	display: block;
}

.icon {
	width: 40%;
}


/* Footer */

footer {
	background-color: var(--sg-grey);
	display: block;
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

.footer-height {
	overflow: hidden;
	display: block;
}

.footer-holder {
	position: relative;
	display: inline-block;
	height: 100%;
	justify-content: center;
}

.footer-wrapper {
	display: flex;
	flex: 1 1 auto;
	margin: 25vh 25vw;
	flex-direction: column;
	max-width: 1200px;
}

.footer-top {
	display: flex;
	padding-bottom: 10vh;
}

.footer-top-link {
	display: flex;
	flex: 1 1 100%;
}

.footer-arrow-up {
	transition: all 0.25s ease;
    width: 25px;
    cursor: pointer;
	transform: rotate(180deg);
}

.footer-arrow-up:hover {
	
}

.footer-contact {
	display: flex;
	padding-bottom: 10vh;
}

.footer-contact-wrapper {
	display: block;
	width: 100%;
}

.footer-foxy-wrapper {
	width: 350px;
	display: block;
	height: 380px;
	border: none;
	font-size: 0.7em;
	color: grey;
	text-align: right;
	margin-top: 50px;
		}

.footer-contact-wrapper a {
	text-decoration: none;
	color: #000000;
}

.footer-links {
	display: flex;
}

.footer-links-wrapper {
	display: flex;
	flex: 1 1 auto;
	flex-direction: row;
}

.footer-links-social {
	flex: 1 1 auto;
	flex-basis: 60%;
	display: flex;
}

.footer-links-social a {
	text-decoration: none;
	color: black;
	padding-right: 2vw;
}

.footer-links-social a:nth-child(2) {
	padding-right: 0px;
}

.footer-links-copyright {
	flex: 1 1 auto;
	flex-basis: 40%;
	display: flex;
	flex-direction: column;
	text-align: right;
}

.arrow {
	cursor: pointer;
	display: flex;
	overflow: auto;
}

.arrow path {
	transition: all 0.25s ease;
}

.arrow:hover path {
	fill: var(--sg-green);
}

@media only screen and (max-width: 736px) {
	
	h1 {
		font-size: 5vw;
		line-height: 6vw;
		font-style: normal;
		font-weight: normal;
		margin: 0;
		font-family: 'Montserrat', sans-serif;
	}
	
	/* Nav */
	
	.nav-links {
		height: 90vh;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.nav-contact {
		height: 15vh;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		bottom: 10vh;
	}

	.nav-contact ul {
		margin: 0;
		padding: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.nav-contact ul li {
		display: flex;
		padding-right: 0vh;
		padding-top: 2vh;
		justify-content: center;
		align-items: center;
		text-decoration: none;
		color: #000000;
		text-align: center;
	}

	.nav-contact ul li:nth-child(1){
		padding-top: 0;
	}
	
	/* Slider */
	
	.slider-content {
		display: flex;
		margin: 0 5vw;
		padding-right: 0%;
	}

	.slider-pagination {
	  	margin-left: 5vw;
		bottom: 10px;
	}
	
	/* Project Section */
	
	.project-section-holder {
		position: relative;
		display: flex;
		height: auto;
		justify-content: center;
	}

	.project-section-wrapper {
		margin: 5vh 5vw 5vh;
		flex-direction: column;
		flex-flow: column;
		padding-bottom: 0;
	}

	.project-single-project {
		flex-basis: 1 1 100%;
		margin-right: 0;
		padding-bottom: 4vh;
	}

	.project-single-project:nth-child(4) {
		padding-bottom: 4vh;
	}
	
	.project-single-project:nth-child(5) {
		padding-bottom: 0;
	}
	
	.project-single-project:nth-child(6) {
		display: none;
	}
	
	.project-wrapper-contents {
		padding: 4vh 5vw 4vh;
	}
	
	.project-single-wrapper picture {
		display: block;
		height:auto;
		overflow: hidden;
		align-content: center;
		justify-content: center;
	}
	
	.image {
		width: 100%;
		display: block;
		height: auto;
	}
	
	/* Copy Section */

	.copy-container-wrapper {
		margin: 10vh 5vw 5vh;
		flex-flow: column wrap;
		max-width: 1200px;
	}

	.copy-container-priamry {
		width: 100%;
		padding-bottom: 25px;
	}

	.copy-container-priamry h4 {
		line-height: 48px;
	}

	.copy-container-secondary {
		width: 100%;
		margin-left: 0;
	}
	
	/* Logo Section */

	.logo-container-height {
		min-height: 10vh;
		padding: 10vh 20%;
	}

	.logo-container-logos {
		width: 100%;
		display: block;
	}

	.logo-container-logos ul {
		flex-direction: column;
	}

	.logo-container-logos ul li {
		display: flex;
		flex-basis: 100%;
		margin: 5vh 0;
		align-items: center;
		justify-content: center;
	}

	.logo {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 150px;
	}

	.logo-image {
		width: 50%;
		display: block;
	}
	
	/* Accordion */
	
	.accrodion-container-wrapper {
		margin: 0 5vw 5vh;
		flex-direction: row;
	}

	.accordion-contianer-title {
		flex: 0 0 100%;
		padding-bottom: 2vh;
		padding-right: 0;
	}

	.accordion-contianer-title h1 {
		padding-bottom: 1vh;
	}

	.accordion-container-section{
		flex: 0 0 100%;
		
	}

	.accordion {
		padding: 15px 10px 15px 0px;
	}
	
	/* Qual Section */
	
	.section-title {
		text-align: center;
	}

	.qual-container-height {
		padding: 0 20%;
	}

	.qual-container-holder {
		width: 100%;
		display: block;
		float: left;
		margin: 10vh 0;
	}

	.qual-container-logos {
		width: 100%;
		display: block;
	}

	.qual-container-logos ul {
		flex-direction: column;
	}

	.qual-container-logos ul li {
		flex-basis: 100%;
		margin: 5vh 0;
	}
	
	/* Footer */	
	.footer-wrapper {
		margin: 10vh 10vw;
	}
	
	.footer-contact {
	display: block;
	padding-bottom: 10vh;
	}
	
	.footer-contact-wrapper {
		width: 100%;
	}
	
	.footer-foxy-wrapper {
	width: 350px;
	display: block;
	height: 380px;
	border: none;
	font-size: 0.7em;
	color: grey;
	text-align: right;
	margin-top: 0px;
		}
	
	.footer-contact-wrapper h1 br {
		display: none;
	}

	.footer-top {
		padding-bottom: 5vh;
	}

	.footer-arrow-up {
		width: 44px;
	}
	
	.footer-links-wrapper {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
	}

	.footer-links-social {
		padding-bottom: 5vh;
		flex-basis: 100%;
	}

	.footer-links-copywright {
		flex-basis: 100%;
		flex-direction: row;
		text-align: left;
	}

}
