/* Eric Meyer's Reset Reloaded */
/* http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
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;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
	BODY
*/

html,
body {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: #efefef;
	color: #242424;
	font-family: 'Merriweather', serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased !important;
}

body.overflow-hidden {
	/* when primary navigation is visible, the content in the background won't scroll */
	overflow: hidden;
}

a {
	color: #242424;
	text-transform: none;
	text-decoration: none;

	transition: ease-in-out all 0.2s;
	-webkit-transition: ease-in-out all 0.2s;
	-moz-transition: ease-in-out all 0.2s;
}

a:hover,
a:focus {
	color: #3D946B;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
}

/*
	FONTS - ICONS
*/

@font-face {
	font-family: 'icomoon';
	src: url('../fonts/icomoon.eot?hz0fvq');
	src: url('../fonts/icomoon.eot?#iefixhz0fvq') format('embedded-opentype'),
		url('../fonts/icomoon.woff?hz0fvq') format('woff'),
		url('../fonts/icomoon.ttf?hz0fvq') format('truetype'),
		url('../fonts/icomoon.svg?hz0fvq#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
	font-family: 'icomoon';
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	font-size: 18px;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-facebook-square:before {
	content: "\f082";
}

.icon-twitter:before {
	content: "\f099";
}

.icon-linkedin:before {
	content: "\f0e1";
}

/*
	CONTENT
*/

#intro {
	background: url('../assets/bg-blur.jpg') no-repeat;
	background-size: cover;
}


.header {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-width: 1600px;
	width: 100%;
	background: rgba(239, 239, 239, 1);

	box-sizing: border-box;
	padding: 22px 0;
	margin: 0 auto;
	z-index: 3;
}

.header:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) {
	.header {
		max-width: 1200px;
	}
}

.logo {
	display: block;
	float: left;
}

.logo img {
	display: block;
	width: auto;
	height: 46px;
}

.logo:hover {
	opacity: 0.8;
}

.menu {
	display: block;
	float: right;
	margin-top: 16px;
}

.menu li {
	display: block;
	float: left;
	margin-left: 30px;
}

.menu li:first-of-type {
	margin-left: 0px;
}

.menu li a {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

.menu .lang {
	padding-left: 30px;
	border-left: 1px solid #999;
}


@media only screen and (min-width: 1170px) {
	.header {
		-webkit-transition: background-color 0.3s;
		-moz-transition: background-color 0.3s;
		transition: background-color 0.3s;
		/* Force Hardware Acceleration in WebKit */
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.header.is-fixed {
		/* when the user scrolls down, we hide the header right above the viewport */
		position: fixed;
		top: -90px;
		background: rgba(239, 239, 239, 1);
		-webkit-transition: -webkit-transform 0.3s;
		-moz-transition: -moz-transform 0.3s;
		transition: transform 0.3s;
	}

	.header.is-visible {
		/* if the user changes the scrolling direction, we show the header */
		-webkit-transform: translate3d(0, 100%, 0);
		-moz-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		-o-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	.header.menu-is-open {
		/* add a background color to the header when the navigation is open */
		background: rgba(239, 239, 239, 1);
	}
}

/* menu trigger */

.menu-trigger {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50px;
	display: none;
}

.menu-trigger .menu-text {
	color: #242424;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	font-family: 'Source Sans Pro', sans-serif;
	/* hide the text on small devices */
	display: none;
}

.menu-trigger .menu-icon {
	/* this span is the central line of the menu icon */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 18px;
	height: 2px;
	background-color: #242424;
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
	/* these are the upper and lower lines in the menu icon */
}

.menu-trigger .menu-icon::before,
.menu-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: #242424;
	right: 0;
	-webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
	-moz-transition: -moz-transform .3s, top .3s, background-color 0s;
	transition: transform .3s, top .3s, background-color 0s;
}

.menu-trigger .menu-icon::before {
	top: -5px;
}

.menu-trigger .menu-icon::after {
	top: 5px;
}

.menu-trigger .menu-icon.is-clicked {
	background-color: rgba(36, 36, 36, 0);
}

.menu-trigger .menu-icon.is-clicked::before,
.menu-trigger .menu-icon.is-clicked::after {
	background-color: #242424;
}

.menu-trigger .menu-icon.is-clicked::before {
	top: 0;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}

.menu-trigger .menu-icon.is-clicked::after {
	top: 0;
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg);
}

@media only screen and (min-width: 768px) {
	.menu-trigger {
		width: 80px;
		padding-left: 1em;
		background-color: transparent;
		height: 30px;
		line-height: 30px;
		right: 2.2em;
		top: 50%;
		bottom: auto;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.menu-trigger .menu-text {
		display: inline-block;
	}

	.menu-trigger .menu-icon {
		left: auto;
		right: 1em;
		-webkit-transform: translateX(0) translateY(-50%);
		-moz-transform: translateX(0) translateY(-50%);
		-ms-transform: translateX(0) translateY(-50%);
		-o-transform: translateX(0) translateY(-50%);
		transform: translateX(0) translateY(-50%);
	}
}

.primary-nav {
	/* by default it's hidden - on top of the viewport */
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	max-width: 1600px;
	width: 100%;
	background: #242424;
	z-index: 2;
	text-align: center;
	padding: 90px 0 40px;
	margin: 0 auto 0;
	font-family: 'Source Sans Pro', Helvetica, sans-serif;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
	overflow: auto;
	/* this fixes the buggy scrolling on webkit browsers - mobile devices only - when overflow property is applied */
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	transition-duration: 0.4s;
}

.primary-nav li {
	font-size: 18px;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	text-transform: capitalize;
}

.primary-nav a {
	display: inline-block;
	color: #BDC3C7;
	text-decoration: none;
	width: 100%;
	font-size: 18px;
	padding: 5% 0;
	border-bottom: 1px solid rgba(239, 239, 239, 0.1);
}

.no-touch .primary-nav a:hover {
	color: white;
}

.primary-nav .title {
	color: #2E6DA6;
	text-transform: uppercase;
	font-size: 12px;
	margin: 40px 0 10px;
}

.primary-nav.is-visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.main-col-1 {
	float: left;
	width: 70%;
}

.main-col-2 {
	float: right;
	width: 30%;
}

.row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.wrap-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
	align-items: center;
}

.about-section.wrap-row {
	grid-template-columns: repeat(6, 1fr);
}

.wrap-row>* {
	aspect-ratio: 1/1;
}

.wrap {
	display: block;
	position: relative;
	width: 100%;
	max-width: 1600px;
	height: auto;
	margin: 90px auto 0;

	transition: ease-in-out all 0.2s;
	-webkit-transition: ease-in-out all 0.2s;
	-moz-transition: ease-in-out all 0.2s;
}

.wrap:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.main {
	display: block;
	width: 100%;
	height: 1044px;
}

.content {
	display: block;
	width: 100%;
}

.content:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.col-banner {
	width: 620px;
	padding-top: 120px;
	padding-left: 120px;
}

.content h1 {
	text-transform: none;
	font-size: 72px;
	line-height: 1.2;
}

.headline {
	color: #fff;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 3px solid #3D946B;
}

.sub {
	color: #efefef;
	text-transform: none;
	font-family: 'Merriweather', serif;
	font-size: 24px;
	line-height: 1.6;

	margin-bottom: 80px;
}

.services {
	padding-left: 18px;
}

.sub-title {
	color: #3D946B;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 700;
	display: block;
	text-transform: uppercase;
}

.sub-title:hover {
	color: rgba(239, 239, 239, 1);
}


/*
	CONTENT
*/

.col-bl {
	background: #242424;
	padding: 40px;
	box-sizing: border-box;
}

.col-bl.col-1-3 {
	background: #2e2e2e;
}

.col-bl.col-1-3:nth-child(2n+2) {
	background: #373737;
}

.col-bl.col-1-5 {
	background: #373737;
}

.col-1-5 {
	overflow: hidden;
}

.col-bl p {
	color: #c8c8c8;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
	max-width: 560px;
}

.col-bl p a {
	text-transform: none;
	color: inherit;
	text-decoration: underline;
}

.col-bl p a:hover {
	color: #3D946B;
}

/* people images */

.single-person .col-4-5 {
	width: 70%;
}

.about .col-4-5 {
	width: 70%;
}

.col-4-5 {
	display: block;
	float: left;
	width: 80%;
}

.pic-img {
	display: block;
	position: relative;
}

.pic-img img {
	display: block;
	width: 100%;
	height: auto;
}

.pic-img:hover .pic-meta,
.pic-img:focus .pic-meta {
	opacity: 1;
}

.pic-meta {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgba(36, 36, 36, 0.9);
	box-sizing: border-box;
	text-align: center;

	transition: ease-in-out all 0.2s;
	-webkit-transition: ease-in-out all 0.2s;
	-moz-transition: ease-in-out all 0.2s;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 2.5em;
}

.pic-meta h3 {
	color: #3D946B;
	font-size: 18px;
	display: block;
}

/* buttons */

.btn {
	width: auto;
	box-sizing: border-box;

	color: rgba(239, 239, 239, 0.8);
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 18px;
	text-transform: uppercase;

	background: rgba(61, 148, 107, 0.75);
	border: transparent;

	transition: ease-in-out all 0.2s;
	-webkit-transition: ease-in-out all 0.2s;
	-moz-transition: ease-in-out all 0.2s;
}

.btn-small {
	padding: 8px 20px;
	height: auto;
}

.btn-large {
	padding: 16px 40px;
	height: 80px;
	font-size: 16px;
}

.btn-small.btn-dark {
	color: #efefef;
}

.col-bl .btn-small {
	position: absolute;
	bottom: 40px;
}

.btn:hover,
.btn-small.btn-dark:hover {
	color: #efefef;
	background: rgba(61, 148, 107, 1);
	border-color: transparent;
}

.main-sec {
	display: block;
	padding: 40px;
	background: rgba(255, 255, 255, 1);
	box-sizing: border-box;
	min-height: auto;
}

.main-col-2 {
	display: block;
	padding: 40px;
	box-sizing: border-box;
	background: #242424;
	color: rgba(239, 239, 239, 1);
}

.main-col-2:nth-child(3) {
	background: #242424;
}

.title {
	font-size: 72px;
	color: #3D946B;
	margin-bottom: 40px;
}

.main-sec p {
	max-width: 80%;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 30px;
}

.main-sec a {
	color: #3D946B;
}

.main-sec a:hover {
	color: #242424;
}

.main-sec h3 {
	font-size: 18px;
	color: #3D946B;
	margin-bottom: 10px;
}

.main-sec ul {
	margin-bottom: 40px;
}

.main-sec ul li {
	margin-left: 18px;
	margin-bottom: 10px;
	list-style: circle;
	line-height: 1.5;
}

.sub-list {
	list-style: none !important;
	display: block;
	margin-left: 0 !important;
}

.main-sec .btn {
	float: left;
}

.main-col-2 h3 {
	color: #3D946B;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(239, 239, 239, 0.1);
}

.partner li {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(239, 239, 239, 0.1);
}

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

.partner li a {
	color: #3D946B;
	text-transform: none;
}

.partner li a:hover {
	color: rgba(239, 239, 239, 1);
}

.partner li span {
	color: rgba(239, 239, 239, 0.8);
	margin-left: 10px;
}

.main-col-2 ul {
	margin-bottom: 20px;
}

.main-col-2 ul:last-of-type {
	margin-bottom: 0;
}

.main-col-2 li.top {
	font-weight: 700;
}

.main-col-2 li {
	font-size: 12px;
	line-height: 18px;
	color: rgba(239, 239, 239, 0.8);
}

.main-col-2 li a {
	color: #3D946B;
	text-transform: none;
}

.main-col-2 li a:hover {
	color: rgba(239, 239, 239, 1);
}

.main-col-2.single-col-2 {
	padding: 0;
}

.single-col-2 ul {
	border-bottom: 1px dashed rgba(239, 239, 239, 0.1);
	padding: 20px 40px;
	margin: 0;
}

.single-col-2 ul:last-of-type {
	border-bottom: none;
}

.single-col-2 ul li {
	font-size: 12px;
	line-height: 16px;
}

.single-col-2 li a {
	color: rgba(239, 239, 239, 1);
	text-decoration: underline;
}

.single-col-2 li a:hover {
	color: #3D946B;
}

.single-col-2 .title {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	margin-bottom: 8px;
	color: #3D946B;
	text-transform: uppercase;
}

.single-col-2 li img {
	width: 50%;
}

.about-section {
	background-color: #1e1e1e;
}

.about-section:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* people */

.people {
	display: block;
	float: left;
	width: 70%;
}

/**
	News Section
**/

.news-section {
	display: block;
	width: 100%;
	padding: 40px;
	box-sizing: border-box;
	background: #242424;
}

.news-section:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.news-section .sub-title {
	cursor: default;
}

.news-row {
	display: block;
}

.news-row li {
	display: block;
	float: left;
	width: 30%;
	margin-bottom: 20px;
}

.news-row li:nth-child(3n+2) {
	margin-left: 5%;
	margin-right: 5%;
}

.news-item {
	font-size: 12px;
	line-height: 18px;
	color: #c6c6c6;
}

.news-item span {
	display: block;
	font-family: 'Source Sans Pro', sans-serif;
	margin-bottom: 5px;
	color: #767676;
}

/* footer */


.footer {
	display: block;
	float: left;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	background: #efefef;

	padding: 40px;
	box-sizing: border-box;
}

.copy {
	display: block;
	float: left;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #9d9d9d;
}

.social-menu {
	display: block;
	float: right;
}

.social-menu li {
	float: left;
	margin-left: 40px;
}

.social-menu li a i {
	color: #9d9d9d;

	transition: ease-in-out all 0.2s;
	-webkit-transition: ease-in-out all 0.2s;
	-moz-transition: ease-in-out all 0.2s;
}

.social-menu li a:hover i {
	color: #3D946B;
}

.sitemap {
	display: block;
	float: right;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #9d9d9d;
}

.sitemap:hover,
.sitemap:focus {
	color: #3D946B;
}

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

	.wrap,
	.header {
		max-width: 1200px;
	}

	.wrap-row {
		grid-template-columns: repeat(5, 1fr);
	}

	.main {
		height: 800px;
	}

	.col-banner {
		padding-left: 40px;
	}

	.col-bl.col-1-5 {
		padding-left: 20px 40px;
		background: #4d4d4d;
		grid-column-start: 1;
		grid-column-end: 3;
		aspect-ratio: 2/1;
	}

	.col-bl p {
		font-size: 12px;
		line-height: 20px;
	}

	.col-bl.col-1-5 .btn-small {
		bottom: 25px;
	}

	.pic-meta {
		padding: 25% 0;
	}
}

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

	.wrap,
	.header {
		max-width: 980px;
	}

	.col-bl {
		padding: 20px;
	}

	.wrap-row {
		grid-template-columns: repeat(4, 1fr);
	}

	.col-bl.col-1-5 {
		background: #242424;
	}

	.col-4-5 {
		width: 100%;
	}

	.news-section {
		float: left;
		width: 100%;
		padding: 20px;
	}

	.pic-meta {
		padding: 25% 0;
	}

	.col-bl.col-1-5 p:last-of-type {
		margin-bottom: 0;
	}

	.pic-meta h3 {
		font-size: 14px;
	}

	.about-section {
		width: 100%;
		float: left;
	}
}

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

	.wrap,
	.header {
		max-width: 100%;
	}

	.header {
		padding: 22px 40px;
	}

	.col-banner {
		padding-top: 40px;
	}

	.col-bl.col-1-5 {
		background: #242424;
		grid-column: 1/5;
		aspect-ratio: auto;
	}

	.about-section.wrap-row {
		grid-template-columns: repeat(4, 1fr);
	}

	.col-4-5 {
		width: 100%;
	}

	.sub-title {
		font-size: 24px;
	}

	.col-bl p {
		font-size: 14px;
		line-height: 22px;
	}

	.footer {
		padding: 20px 40px;
	}
}

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

	.header {
		padding: 5%;
	}

	.logo img {
		height: 26px;
	}

	.menu-trigger {
		display: block;
	}

	.menu {
		display: none;
	}

	.wrap {
		margin-top: 58px;
	}

	.main {
		height: auto;
	}

	.row {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}

	.wrap-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.wrap-row {
		background-color: #1e1e1e;
	}

	.col-banner {
		padding: 8% 4%;
		width: 100%;
		box-sizing: border-box;
	}

	.content h1 {
		font-size: 36px;
	}

	.headline {
		margin-bottom: 4%;
		padding-bottom: 4%;
		border-bottom: 2px solid #3D946B;
		box-sizing: border-box;
	}

	.sub {
		font-size: 14px;
		margin-bottom: 8%;
	}

	.btn-large {
		height: auto;
		float: left;
	}

	.col-bl,
	.col-bl.col-1-5,
	.news-section {
		padding: 5%;
	}

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

	.contain {
		display: block;
	}

	.col-1-3 {
		display: block;
		width: 100%;
		min-height: 100%;
		max-height: 100%;
	}

	.footer {
		padding: 4%;
		text-align: center;
	}

	.copy {
		width: 100%;
		margin-bottom: 4%;
	}

	.social-menu {
		float: none;
	}

	.social-menu li {
		float: inherit;
		display: inline-block;
		margin: 4%;
	}

	.single-person .col-4-5 {
		width: 100%;
	}

	.about .col-4-5 {
		width: 100%;
	}

	.col-4-5 {
		width: 100%;
	}

	.pic-meta {
		display: none;
	}

	/* about */

	.main-sec {
		padding: 10% 5%;
	}

	.main-col-1 {
		width: 100%;
	}

	.title {
		font-size: 36px;
		margin-bottom: 10%;
	}

	.main-sec p {
		max-width: 90%;
	}

	.main-col-2 {
		width: 100%;
		padding: 10% 5%;
	}

	.about-section .about-who {
		grid-column-start: 1;
		grid-column-end: 4;
	}
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

	.header {
		padding: 2% 5%;
	}

	.content h1 {
		font-size: 72px;
	}

	.sub {
		font-size: 24px;
	}

	.social-menu li {
		margin: 0 4%;
	}

	.main-col-2 {
		padding: 5%;
	}
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {

	.news-row li {
		width: 100%;
		margin-bottom: 5%;
	}

	.news-row li:nth-child(3n+2) {
		margin-left: 0;
		margin-right: 0;
	}
}