@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Oleo+Script:400|Open+Sans:300,300italic,600,600italic,800");

/* FUNDAMENTALS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html, body, div, span, h1, h2, h3, h4, h5, h6, p,
pre, a, abbr, address, cite,
code, del, dfn, em, img, ins, kbd, s,
small, strike, strong, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Lexend', sans-serif;
  -webkit-font-smoothing: antialiased;
}

#nav {
  position: relative;
  z-index: 9999; /* Make sure nav is on top */
  pointer-events: auto; /* Ensure pointer events enabled */
}

img {
  border-radius: 8px;
}

h1, h2, h3, li {
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

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

mark {
  background-color: transparent;
  color: inherit;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input, select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
}

/* CONTAINER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.container {
	margin: 0 auto;
	max-width: 100%;
	width: 1400px;
  }
  
/* INTERACTIVE ROW
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.projects-wrapper {
	transition: filter 0.6s ease, transform 0.6s ease;
  }
  
  .projects-blurred {
	filter: blur(6px) brightness(0.8);
	transform: scale(0.98);
	pointer-events: none;
  }
  
  .projects-wrapper .interactive-row img {
	transform: scale(0.9);
	transition: transform 0.6s ease;
  }
  
  .projects-wrapper.projects-active .interactive-row img {
	transform: scale(1);
  }
  
  .image-wrapper, .video-inner {
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
  }
  
  .video-inner iframe, .video.featured iframe {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	border: none;
	border-radius: 8px;
	transition: all 0.4s ease;
  }
  
  /* Column width transitions */
  .interactive-row .image-col, .interactive-row .article-col {
	transition: all 0.4s ease;
  }
  
  /* Active row layout: image 7, article 5 */
  .interactive-row.active .image-col {
	width: 58.3333%; /* col-7 */
	flex: 0 0 58.3333%;
  }
  
  .interactive-row.active .article-col {
	width: 41.6667%; /* col-5 */
	flex: 0 0 41.6667%;
  }
  
  /* Inactive row layout: image 5, article 7 */
  .interactive-row:not(.active) .image-col {
	width: 41.6667%; /* col-5 */
	flex: 0 0 41.6667%;
  }
  
  .interactive-row:not(.active) .article-col {
	width: 58.3333%; /* col-7 */
	flex: 0 0 58.3333%;
  }
  
  .interactive-row {
	opacity: 0.4;
	transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .interactive-row.active {
	opacity: 1;
	transform: scale(1.02);
	z-index: 2;
  }
  
  /* Blur inactive rows (except text) */
  .interactive-row:not(.active) {
	filter: blur(1px);
  }
  
  .interactive-row:not(.active) .image-wrapper {
	filter: blur(1px);
  }
  
  .interactive-row:not(.active) .article-col {
	filter: none; /* keep text sharp */
  }  

/* PARTICLE BACKGROUND
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.intro-section {
	position: relative;
	overflow: hidden;
	padding: 120px 20px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	color: white;
	background:
		linear-gradient(120deg, #dc1111, #fcb2bc), /* gradient colour for index */
		url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
	background-blend-mode: overlay;
	clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0 100%);
	transition: clip-path 0.3s ease-out;
}

.intro-section h2 {
	font-size: 3.5em;
	color: white;
	margin-bottom: 0.3em;
	letter-spacing: 0.1em;
	animation: fadeInUp 1s ease forwards;
	text-shadow: 0.5px 0.5px rgba(97, 39, 52, 0);
}

.intro-section p {
	font-size: 1.3em;
	color: white;
	max-width: 700px;
	margin: 0 auto;
	opacity: 0.85;
	animation: fadeInUp 1.3s ease forwards;
	text-shadow: 0.5px 0.5px rgba(97, 39, 52, 0);
}

.particles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: visible;
}

.particles span {
	position: absolute;
	border-radius: 50%;
	background: rgba(209, 48, 48, 0.3); /* colour of particles */
	animation: floatUp 4s ease-in-out infinite;
}

/* Optional particle shape container */
.particle-wrapper {
	position: relative;
	overflow: hidden;
}

.particle-shape {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	clip-path: polygon(10% 5%, 44% 20%, 44% 40%, 20% 95%);
	background:
		linear-gradient(200deg, #fcb2bc, #e53a3a), /* gradient colour for stage interaction */
		url('https://www.transparenttextures.com/patterns/diagmonds-light.png');
	background-blend-mode: overlay;
	pointer-events: none;
}

/* ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@keyframes floatUp {
	0%   { transform: translateY(0) scale(1); opacity: 1; }
	50%  { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
	100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
  
/* FADE IN ANIMATIONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#main-wrapper {
    animation: transitionIn 0.35s;
    animation-fill-mode: forwards;
}

#features-wrapper {
    animation: transitionIn 0.35s;
    animation-fill-mode: forwards;
}

@keyframes transitionIn {
    from { opacity: 0; transform: rotateX(0) }
    to { opacity: 1; transform: rotateX(0) }
} 

/* FONTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}

body {
	background-color: white;
	color: black;
	font-family: 'Poppins', sans-serif;
	font-size: 13pt;
	line-height: 2.25em;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
}

/* Typography */
p, ul, ol, dl, table {
	margin-bottom: 0em;
	color: #444;
}

p { /* THIS BIT CHANGES WHAT THE NORMAL FONT LOOKS LIKE */
	font-size: 0.95em;
}

input, select, textarea {
	font-size: 13pt;
	color: #696969;
	font-weight: 300;
	line-height: 2.25em;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	color: black;
	font-weight: normal;
	margin-bottom: 0.5em;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 1.6em;
	line-height: 1.3em;
}

h3 {
	font-size: 1.25em;
}

strong, b {
	font-weight: bold;
	/*color: #444;*/
}

i, em {
	font-style: italic;
}

/* LINKS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
	color: #ec3f56;
	text-decoration: none;
  }
  
  a:hover {
	text-decoration: underline;
  }
  
  a.externallink:link, a.externallink:visited {
	color: #ec3f56;
	text-decoration: none;
  }
  
  a.externallink:hover {
	color: #e78f9b;
	text-decoration: none;
  }
  
  #nav a.navcurrent:link, #nav a.navcurrent:visited {
	color: #c3c3c3;
  }
  
  #nav a.navnotcurrent:link, #nav a.navnotcurrent:visited {
	color: #ec3f56;
  }
  
  #nav a.navnotcurrent:hover {
	background: transparent;
	color: #e78f9b;
	text-decoration: none;
  }  

/* SECTION/ARTICLE
–––––––––––––––––––––––––––––––––––––––––––––––––– */

section, article {
  margin-bottom: 5em;
}

section > :last-child, article > :last-child, section:last-child, article:last-child {
  margin-bottom: 0;
}

header {
  margin: 0 0 2em 0;
}

header h2, header h3 {
  margin: 0 0 0.25em 0;
}

header p {
  margin: 0;
}

footer {
  margin: 2.5em 0 0 0;
}

/* IMAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.image {
	display: inline-block;
	outline: 0;
  }
  
  .image img {
	display: block;
	width: 100%;
  }
  
  .image.fit, .image.featured, .image.centered {
	display: block;
	width: 100%;
	margin-bottom: 2.5em;
  }
  
  .image.featured {
	margin: 0 0 2.5em 0;
  }
  
  .image.left {
	float: left;
	margin: 0 2em 2em 0;
  }
  
  .image.centered {
	margin: 0 0 2.5em 0;
  }
  
  .image.centered img {
	margin: 0 auto;
	width: auto;
  }  
		
/* LISTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
	list-style: disc;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

/* WRAPPERS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#header-wrapper {
	position: relative;
	z-index: 10;
  }
  
  #header {
	position: relative;
	z-index: 11;
  }
  
  #nav {
	position: relative;
	z-index: 12;
  }
  
#header-wrapper {
	background: white;
	padding: 2.5em 0 0em 0;
}

#features-wrapper {
	background: white;
	box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.05);
	padding: 2em 0 3em 0;
	opacity: 0;
}

#main-wrapper {
	background: white;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.05); /* when its 0px 3px 0px 0px then the footer has a grey line above it */
	padding: 2em 0 3em 0;
	opacity: 0;
}

#footer-wrapper {
	padding: 2em 0 2em 0;
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#header {
	position: relative;
}

/* LOGO
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#logo {
	display: inline-block;
  }
  
  #logo img {
	background-color: transparent;
	padding: 0.25em 0.2em;
  }
  
  #logo h1 {
	background: transparent;
	color: #fff;
	border-radius: 6px;
	font-weight: 400;
	padding: 0.25em 0.2em;
	font-size: 3.25em;
	letter-spacing: 0.05em;
	display: inline-block;
	vertical-align: middle;
  }
  
  #logo span {
	font-weight: 800;
	line-height: 4.5em;
	letter-spacing: 0.025em;
	font-size: 0.9em;
	vertical-align: middle;
	margin-left: 1.25em;
  }  

/* NAVIGATION
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.navcurrent {
	pointer-events: none;
	color: rgb(199, 199, 199); /* Optional: to indicate it's inactive */
	text-decoration: line;
  }
  
  .navline {
	pointer-events: none;
	color: rgb(199, 199, 199); /* Optional: to indicate it's inactive */
	text-decoration: none;
  }
  
  #nav {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1em;
	padding: 20px;
  }
  
  #nav ul {
	list-style: none;
	padding-left: 0;
  }
  
  #nav ul li {
	float: left;
	line-height: 8.5em;
	padding-left: 1.5em;
  }
  
  #nav ul li a, #nav ul li span {
	-moz-transition: background-color 0.25s ease-in-out;
	-webkit-transition: background-color 0.25s ease-in-out;
	-ms-transition: background-color 0.25s ease-in-out;
	transition: background-color 0.25s ease-in-out;
	font-weight: normal; /* Used to be Bold */
	letter-spacing: 0.025em;
	color: pink;
	text-decoration: none;
	border-radius: 6px;
	padding: 0.5em 1em;
  }
  
  #nav ul li > ul {
	display: none;
  }
  
  #nav ul li:hover a, #nav ul li:hover span {
	background: transparent;
  }
  
  #nav ul li.active a, #nav ul li.active span {
	background: #fff;
  }
  
  #nav ul li.current a {
	background: transparent;
	text-decoration: underline;
  }
  
  #nav ul li.notcurrent a:hover {
	background: transparent;
	color: #e88e48;
	text-decoration: none;
  }
  
  .dropotron {
	background: #fff;
	letter-spacing: 0.025em;
	color: #696969;
	text-decoration: none;
	border-radius: 6px;
	padding: 0.75em 0;
	min-width: 15em;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1),
				0 0.25em 0.25em 0.1em rgba(0, 0, 0, 0.025);
	margin-top: calc(-0.75em + 1px);
	margin-left: -1px;
	list-style: none;
	padding-left: 0;
  }
  
  .dropotron li {
	border-top: solid 1px #eee;
	line-height: 3em;
	padding-left: 0;
  }
  
  .dropotron li:first-child {
	border-top: 0;
  }
  
  .dropotron li > a, .dropotron li > span {
	-moz-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
	-webkit-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
	-ms-transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
	transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 0 1.5em;
  }
  
  .dropotron li > a:hover,
  .dropotron li > span:hover {
	background: #eee;
  }
  
  .dropotron li.active > a,
  .dropotron li.active > span {
	background: #eee;
  }
  
  .dropotron.level-0 {
	font-size: 0.8em;
	margin-left: 1.5em;
	margin-top: 0;
  }
  
  .dropotron.level-0:before {
	content: '';
	position: relative; /* was absolute */
	top: -0.5em;
	left: 1em;
	border-bottom: solid 0.75em #ffffff;
	border-left: solid 0.75em transparent;
	border-right: solid 0.75em transparent;
	z-index: 1;
  }  

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */

#footer {
	margin-top: 0;
  }
  
  #footer a {
	color: inherit;
  }
  
  #copyright {
	color: #aaa;
	padding: 2em 0 0 0;
	text-align: center;
  }
  
  #copyright a {
	color: inherit;
  }
  
  #copyright li {
	font-size: 10pt;
  }  

/* ROW
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
	margin-top: -40px;
	margin-left: -40px;
  }
  
  .row > * {
	box-sizing: border-box;
	padding: 40px 0 0 40px;
  }
  
  .row.gtr-uniform > * {
	padding-top: 40px;
  }
  
  .row.gtr-uniform > * > :last-child {
	margin-bottom: 0;
  }
  
  /* Alignment */
  .row.aln-left {
	justify-content: flex-start;
  }
  
  .row.aln-center {
	justify-content: center;
  }
  
  .row.aln-right {
	justify-content: flex-end;
  }
  
  .row.aln-top {
	align-items: flex-start;
  }
  
  .row.aln-middle {
	align-items: center;
  }
  
  .row.aln-bottom {
	align-items: flex-end;
  }
  
  /* Order */
  .row > .imp {
	order: -1;
  }
  
  /* Columns and Offsets */
  .row > .col-1 { width: 8.33333%; }
  .row > .off-1 { margin-left: 8.33333%; }
  
  .row > .col-2 { width: 16.66667%; }
  .row > .off-2 { margin-left: 16.66667%; }
  
  .row > .col-3 { width: 25%; }
  .row > .off-3 { margin-left: 25%; }
  
  .row > .col-4 { width: 33.33333%; }
  .row > .off-4 { margin-left: 33.33333%; }
  
  .row > .col-5 { width: 41.66667%; }
  .row > .off-5 { margin-left: 41.66667%; }
  
  .row > .col-6 { width: 50%; }
  .row > .off-6 { margin-left: 50%; }
  
  .row > .col-7 { width: 58.33333%; }
  .row > .off-7 { margin-left: 58.33333%; }
  
  .row > .col-8 { width: 66.66667%; }
  .row > .off-8 { margin-left: 66.66667%; }
  
  .row > .col-9 { width: 75%; }
  .row > .off-9 { margin-left: 75%; }
  
  .row > .col-10 { width: 83.33333%; }
  .row > .off-10 { margin-left: 83.33333%; }
  
  .row > .col-11 { width: 91.66667%; }
  .row > .off-11 { margin-left: 91.66667%; }
  
  .row > .col-12 { width: 100%; }
  .row > .off-12 { margin-left: 100%; }
  
  /* Gutters */
  .row.gtr-0 {
	margin-top: 0;
	margin-left: 0;
  }
  
  .row.gtr-0 > * {
	padding: 0 0 0 0;
  }
  
  .row.gtr-0.gtr-uniform {
	margin-top: 0;
  }
  
  .row.gtr-0.gtr-uniform > * {
	padding-top: 0;
  }
  
  .row.gtr-25 {
	margin-top: -10px;
	margin-left: -10px;
  }
  
  .row.gtr-25 > * {
	padding: 10px 0 0 10px;
  }
  
  .row.gtr-25.gtr-uniform {
	margin-top: -10px;
  }
  
  .row.gtr-25.gtr-uniform > * {
	padding-top: 10px;
  }
  
  .row.gtr-50 {
	margin-top: -20px;
	margin-left: -20px;
  }
  
  .row.gtr-50 > * {
	padding: 20px 0 0 20px;
  }
  
  .row.gtr-50.gtr-uniform {
	margin-top: -20px;
  }
  
  .row.gtr-50.gtr-uniform > * {
	padding-top: 20px;
  }
  
  .row.gtr-150 {
	margin-top: -60px;
	margin-left: -60px;
  }
  
  .row.gtr-150 > * {
	padding: 60px 0 0 60px;
  }
  
  .row.gtr-150.gtr-uniform {
	margin-top: -60px;
  }
  
  .row.gtr-150.gtr-uniform > * {
	padding-top: 60px;
  }
  
  .row.gtr-200 {
	margin-top: -80px;
	margin-left: -80px;
  }
  
  .row.gtr-200 > * {
	padding: 80px 0 0 80px;
  }
  
  .row.gtr-200.gtr-uniform {
	margin-top: -80px;
  }
  
  .row.gtr-200.gtr-uniform > * {
	padding-top: 80px;
  } 

/* DESKTOP - FULL IMAC
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 1981px) and (max-width: 3000px) {

	body, input, select, textarea {
	  font-size: 14pt;
	}

	#navPanel, #navToggle {
	  display: none;
	}

	section img {
	  width: 80%;
	}

	footer ul, footer ol {
	  list-style: none;
	  padding-left: 0;
	  margin-left: 0;
	}

	#footer-wrapper {
		padding: 20em 0 4em 0;
	}

	.container {
	  max-width: 1600px;
	}
  }

/* EXTRA LARGE - 3/4 OF IMAC
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 1980px) {

	.container {
	  max-width: 1600px;
	}
  
	body,
	input,
	select,
	textarea {
	  font-size: 12pt;
	}
  
	#navPanel,
	#navToggle {
	  display: none;
	}
  
	#footer-wrapper {
	  padding: 6em 0 4em 0;
	}

	footer ul, footer ol {
		list-style: none;
		padding-left: 0;
		margin-left: 0;
	}
  
	.row {
	  display: flex;
	  flex-wrap: wrap;
	  box-sizing: border-box;
	  align-items: stretch;
	  margin-top: -40px;
	  margin-left: -40px;
	}
  
	.row > * {
	  box-sizing: border-box;
	  padding: 40px 0 0 40px;
	}
  
	.row.gtr-uniform > * {
	  padding-top: 40px;
	}
  
	.row.gtr-uniform > * > :last-child {
	  margin-bottom: 0;
	}
  
	/* Alignment */
	.row.aln-left {
	  justify-content: flex-start;
	}
  
	.row.aln-center {
	  justify-content: center;
	}
  
	.row.aln-right {
	  justify-content: flex-end;
	}
  
	.row.aln-top {
	  align-items: flex-start;
	}
  
	.row.aln-middle {
	  align-items: center;
	}
  
	.row.aln-bottom {
	  align-items: flex-end;
	}
  
	/* Order */
	.row > .imp-xlarge {
	  order: -1;
	}
  
	/* Columns and Offsets */
	.row > .col-1-xlarge { width: 8.33333%; }
	.row > .off-1-xlarge { margin-left: 8.33333%; }
  
	.row > .col-2-xlarge { width: 16.66667%; }
	.row > .off-2-xlarge { margin-left: 16.66667%; }
  
	.row > .col-3-xlarge { width: 25%; }
	.row > .off-3-xlarge { margin-left: 25%; }
  
	.row > .col-4-xlarge { width: 33.33333%; }
	.row > .off-4-xlarge { margin-left: 33.33333%; }
  
	.row > .col-5-xlarge { width: 41.66667%; }
	.row > .off-5-xlarge { margin-left: 41.66667%; }
  
	.row > .col-6-xlarge { width: 50%; }
	.row > .off-6-xlarge { margin-left: 50%; }
  
	.row > .col-7-xlarge { width: 58.33333%; }
	.row > .off-7-xlarge { margin-left: 58.33333%; }
  
	.row > .col-8-xlarge { width: 66.66667%; }
	.row > .off-8-xlarge { margin-left: 66.66667%; }
  
	.row > .col-9-xlarge { width: 75%; }
	.row > .off-9-xlarge { margin-left: 75%; }
  
	.row > .col-10-xlarge { width: 83.33333%; }
	.row > .off-10-xlarge { margin-left: 83.33333%; }
  
	.row > .col-11-xlarge { width: 91.66667%; }
	.row > .off-11-xlarge { margin-left: 91.66667%; }
  
	.row > .col-12-xlarge { width: 100%; }
	.row > .off-12-xlarge { margin-left: 100%; }
  
	/* Gutters */
	.row.gtr-0 {
	  margin-top: 0;
	  margin-left: 0;
	}
  
	.row.gtr-0 > * {
	  padding: 0;
	}
  
	.row.gtr-0.gtr-uniform {
	  margin-top: 0;
	}
  
	.row.gtr-0.gtr-uniform > * {
	  padding-top: 0;
	}
  
	.row.gtr-25 {
	  margin-top: -10px;
	  margin-left: -10px;
	}
  
	.row.gtr-25 > * {
	  padding: 10px 0 0 10px;
	}
  
	.row.gtr-25.gtr-uniform {
	  margin-top: -10px;
	}
  
	.row.gtr-25.gtr-uniform > * {
	  padding-top: 10px;
	}
  
	.row.gtr-50 {
	  margin-top: -20px;
	  margin-left: -20px;
	}
  
	.row.gtr-50 > * {
	  padding: 20px 0 0 20px;
	}
  
	.row.gtr-50.gtr-uniform {
	  margin-top: -20px;
	}
  
	.row.gtr-50.gtr-uniform > * {
	  padding-top: 20px;
	}
  
	.row.gtr-150 {
	  margin-top: -60px;
	  margin-left: -60px;
	}
  
	.row.gtr-150 > * {
	  padding: 60px 0 0 60px;
	}
  
	.row.gtr-150.gtr-uniform {
	  margin-top: -60px;
	}
  
	.row.gtr-150.gtr-uniform > * {
	  padding-top: 60px;
	}
  
	.row.gtr-200 {
	  margin-top: -80px;
	  margin-left: -80px;
	}
  
	.row.gtr-200 > * {
	  padding: 80px 0 0 80px;
	}
  
	.row.gtr-200.gtr-uniform {
	  margin-top: -80px;
	}
  
	.row.gtr-200.gtr-uniform > * {
	  padding-top: 80px;
	}
  
  }  

  @media screen and (max-width: 1680px) {
	.container {
	  max-width: 1200px;
	  outline: 2px solid transparent;
	}
  }
        
/* LARGE - WHOLE MACBOOK SCREEN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 1280px) {

	.container {
	  max-width: 960px;
	}
  
	body, input, select, textarea {
	  font-size: 11pt;
	}
  
	#navPanel, #navToggle {
	  display: none;
	}
  
	footer ul, footer ol {
	  list-style: none;
	  padding-left: 0;
	  margin-left: 0;
	}
  
	#footer-wrapper {
	  padding: 0 0 4em 0;
	}
  
	.row {
	  display: flex;
	  flex-wrap: wrap;
	  box-sizing: border-box;
	  align-items: stretch;
	  margin-top: -25px;
	  margin-left: -25px;
	}
  
	.row > * {
	  box-sizing: border-box;
	  padding: 25px 0 0 25px;
	}
  
	.row.gtr-uniform > * {
	  padding-top: 25px;
	}
  
	.row.gtr-uniform > * > :last-child {
	  margin-bottom: 0;
	}
  
	/* Alignment */
	.row.aln-left {
	  justify-content: flex-start;
	}
  
	.row.aln-center {
	  justify-content: center;
	}
  
	.row.aln-right {
	  justify-content: flex-end;
	}
  
	.row.aln-top {
	  align-items: flex-start;
	}
  
	.row.aln-middle {
	  align-items: center;
	}
  
	.row.aln-bottom {
	  align-items: flex-end;
	}
  
	/* Order */
	.row > .imp-large {
	  order: -1;
	}
  
	/* Columns and Offsets */
	.row > .col-1-large { width: 8.33333%; }
	.row > .off-1-large { margin-left: 8.33333%; }
  
	.row > .col-2-large { width: 16.66667%; }
	.row > .off-2-large { margin-left: 16.66667%; }
  
	.row > .col-3-large { width: 25%; }
	.row > .off-3-large { margin-left: 25%; }
  
	.row > .col-4-large { width: 33.33333%; }
	.row > .off-4-large { margin-left: 33.33333%; }
  
	.row > .col-5-large { width: 41.66667%; }
	.row > .off-5-large { margin-left: 41.66667%; }
  
	.row > .col-6-large { width: 50%; }
	.row > .off-6-large { margin-left: 50%; }
  
	.row > .col-7-large { width: 58.33333%; }
	.row > .off-7-large { margin-left: 58.33333%; }
  
	.row > .col-8-large { width: 66.66667%; }
	.row > .off-8-large { margin-left: 66.66667%; }
  
	.row > .col-9-large { width: 75%; }
	.row > .off-9-large { margin-left: 75%; }
  
	.row > .col-10-large { width: 83.33333%; }
	.row > .off-10-large { margin-left: 83.33333%; }
  
	.row > .col-11-large { width: 91.66667%; }
	.row > .off-11-large { margin-left: 91.66667%; }
  
	.row > .col-12-large { width: 100%; }
	.row > .off-12-large { margin-left: 100%; }
  
	/* Gutters */
	.row.gtr-0 {
	  margin-top: 0;
	  margin-left: 0;
	}
  
	.row.gtr-0 > * {
	  padding: 0;
	}
  
	.row.gtr-0.gtr-uniform {
	  margin-top: 0;
	}
  
	.row.gtr-0.gtr-uniform > * {
	  padding-top: 0;
	}
  
	.row.gtr-25 {
	  margin-top: -6.25px;
	  margin-left: -6.25px;
	}
  
	.row.gtr-25 > * {
	  padding: 6.25px 0 0 6.25px;
	}
  
	.row.gtr-25.gtr-uniform {
	  margin-top: -6.25px;
	}
  
	.row.gtr-25.gtr-uniform > * {
	  padding-top: 6.25px;
	}
  
	.row.gtr-50 {
	  margin-top: -12.5px;
	  margin-left: -12.5px;
	}
  
	.row.gtr-50 > * {
	  padding: 12.5px 0 0 12.5px;
	}
  
	.row.gtr-50.gtr-uniform {
	  margin-top: -12.5px;
	}
  
	.row.gtr-50.gtr-uniform > * {
	  padding-top: 12.5px;
	}
  
	.row.gtr-150 {
	  margin-top: -37.5px;
	  margin-left: -37.5px;
	}
  
	.row.gtr-150 > * {
	  padding: 37.5px 0 0 37.5px;
	}
  
	.row.gtr-150.gtr-uniform {
	  margin-top: -37.5px;
	}
  
	.row.gtr-150.gtr-uniform > * {
	  padding-top: 37.5px;
	}
  
	.row.gtr-200 {
	  margin-top: -50px;
	  margin-left: -50px;
	}
  
	.row.gtr-200 > * {
	  padding: 50px 0 0 50px;
	}
  
	.row.gtr-200.gtr-uniform {
	  margin-top: -50px;
	}
  
	.row.gtr-200.gtr-uniform > * {
	  padding-top: 50px;
	}
  }  

/* MEDIUM - HALF OF MY MACBOOK SCREEN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 980px) {
	.container {
	  width: 90%;
	}
  
	#navPanel, #navToggle {
	  display: none;
	}
  
	#logo img {
	  width: 20%;
	}
  
	html, body {
	  overflow-x: hidden;
	}
  
	body, input, select, textarea {
	  font-size: 11pt;
	}
  
	.particle-shape {
	  display: none;
	}
  
	/* Section / Article */
	section, article {
	  clear: both;
	  margin-bottom: 3em !important;
	}
  
	section.last, article.last {
	  margin-bottom: 0 !important;
	}
  
	/* Image */
	.image.left {
	  width: 25%;
	  margin-bottom: 2em !important;
	}
  
	/* Menu */
	ul.menu li {
	  display: block;
	  border: 0 !important;
	  padding: 0 !important;
	  margin: 0 !important;
	}
  
	/* Actions */
	ul.actions li {
	  display: block;
	  padding: 0;
	  margin: 1em 0 0 0;
	}
  
	ul.actions li:first-child {
	  margin-top: 0;
	}
  
	/* Wrappers */
	#header-wrapper {
	  padding: 3em 0 1em 0;
	  text-align: center;
	}
  
	#footer-wrapper {
	  padding: 6em 0 4em 0;
	}
  
	/* Header */
	#header {
	  margin: 0 auto;
	}
  
	/* Logo */
	#logo span {
	  display: block;
	  margin: 0;
	}
  
	/* Nav */
	#nav {
	  display: none;
	}
  
	/* Banner */
	#banner {
	  padding: 4.5em 3em;
	  text-align: center;
	}
  
	#banner ul {
	  margin: 2em 0 0 0;
	}
  
	#banner .button.icon:before {
	  position: relative;
	  right: auto;
	  top: auto;
	}
  
	/* Content */
	#content {
	  border-bottom: solid 0px #e8e8e8;
	  padding-bottom: 4em;
	  margin-bottom: 0 !important;
	}
  
	#content > :last-child, #sidebar > :last-child {
	  margin-bottom: 0 !important;
	}
  
	/* Footer */
	#copyright {
	  padding: 0;
	}
  
	/* Nav Panel Toggle & Animation */
	#page-wrapper, #navToggle {
	  backface-visibility: hidden;
	  -moz-backface-visibility: hidden;
	  -webkit-backface-visibility: hidden;
	  -ms-backface-visibility: hidden;
	  transition: transform 0.5s ease;
	  -moz-transition: -moz-transform 0.5s ease;
	  -webkit-transition: -webkit-transform 0.5s ease;
	  -ms-transition: -ms-transform 0.5s ease;
	}
  
	#page-wrapper {
	  padding-bottom: 1px;
	}
  
	#navToggle {
	  display: block;
	  position: absolute;
	  height: 44px;
	  width: 100%;
	  left: 0;
	  top: 0;
	  z-index: 10001;
	}
  
	#navToggle .toggle {
	  text-decoration: none;
	  width: 70px;
	  height: 50px;
	  opacity: 0.75;
	}
  
	#navToggle .toggle:before {
	  content: '\f0c9';
	  font-family: 'Font Awesome 5 Free';
	  font-weight: bold;
	  background: #fff;
	  color: #ec3f56;
	  display: inline-block;
	  position: relative;
	  left: 6px;
	  top: 6px;
	  width: 58px;
	  height: 38px;
	  border-radius: 6px;
	  text-align: center;
	  line-height: 38px;
	  font-size: 20px;
	  text-decoration: none;
	}
  
	#navToggle .toggle:active {
	  opacity: 0.75;
	}
  
	/* Nav Panel */
	#navPanel {
	  display: block;
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 275px;
	  height: 100%;
	  overflow-y: auto;
	  z-index: 10002;
	  background: #fff;
	  box-shadow: inset -3px 0 0 0 #dfdfdf;
	  padding: 0 23px 0 20px;
	  transform: translateX(-275px);
	  backface-visibility: hidden;
	  transition: transform 0.5s ease;
	}
  
	#navPanel .link {
	  display: block;
	  text-decoration: none;
	  height: 54px;
	  line-height: 54px;
	  border-top: solid 1px #e8e8e8;
	}
  
	#navPanel .link:first-child {
	  border-top: 0;
	}
  
	/* Indents */
	#navPanel .indent-1 {
	  width: 1em;
	  display: inline-block;
	}
  
	#navPanel .indent-2 {
	  width: 2em;
	  display: inline-block;
	}
  
	#navPanel .indent-3 {
	  width: 3em;
	  display: inline-block;
	}
  
	#navPanel .indent-4 {
	  width: 4em;
	  display: inline-block;
	}
  
	#navPanel .indent-5 {
	  width: 5em;
	  display: inline-block;
	}
  
	/* Depth Styling */
	#navPanel .depth-0 {
	  font-weight: 800;
	}
  
	/* Nav Panel Visibility */
	body.navPanel-visible #page-wrapper {
	  transform: translateX(275px);
	}
  
	body.navPanel-visible #navToggle {
	  transform: translateX(275px);
	}
  
	body.navPanel-visible #navPanel {
	  transform: translateX(0);
	}
  
	/* Row Layout */
	.row {
	  display: flex;
	  flex-wrap: wrap;
	  box-sizing: border-box;
	  align-items: stretch;
	  margin-top: -25px;
	  margin-left: -25px;
	}
  
	.row > * {
	  box-sizing: border-box;
	  padding: 25px 0 0 25px;
	}
  
	.row.gtr-uniform > * {
	  padding-top: 25px;
	}
  
	.row.gtr-uniform > * > :last-child {
	  margin-bottom: 0;
	}
  
	/* Alignment */
	.row.aln-left {
	  justify-content: flex-start;
	}
  
	.row.aln-center {
	  justify-content: center;
	}
  
	.row.aln-right {
	  justify-content: flex-end;
	}
  
	.row.aln-top {
	  align-items: flex-start;
	}
  
	.row.aln-middle {
	  align-items: center;
	}
  
	.row.aln-bottom {
	  align-items: flex-end;
	}
  
	/* Ordering */
	.row > .imp-medium {
	  order: -1;
	}
  
	/* Columns and Offsets */
	.row > .col-1-medium {
	  width: 8.33333%;
	}
  
	.row > .off-1-medium {
	  margin-left: 8.33333%;
	}
  
	.row > .col-2-medium {
	  width: 16.66667%;
	}
  
	.row > .off-2-medium {
	  margin-left: 16.66667%;
	}
  
	.row > .col-3-medium {
	  width: 25%;
	}
  
	.row > .off-3-medium {
	  margin-left: 25%;
	}
  
	.row > .col-4-medium {
	  width: 33.33333%;
	}
  
	.row > .off-4-medium {
	  margin-left: 33.33333%;
	}
  
	.row > .col-5-medium {
	  width: 41.66667%;
	}
  
	.row > .off-5-medium {
	  margin-left: 41.66667%;
	}
  
	.row > .col-6-medium {
	  width: 50%;
	}
  
	.row > .off-6-medium {
	  margin-left: 50%;
	}
  
	.row > .col-7-medium {
	  width: 58.33333%;
	}
  
	.row > .off-7-medium {
	  margin-left: 58.33333%;
	}
  
	.row > .col-8-medium {
	  width: 66.66667%;
	}
  
	.row > .off-8-medium {
	  margin-left: 66.66667%;
	}
  
	.row > .col-9-medium {
	  width: 75%;
	}
  
	.row > .off-9-medium {
	  margin-left: 75%;
	}
  
	.row > .col-10-medium {
	  width: 83.33333%;
	}
  
	.row > .off-10-medium {
	  margin-left: 83.33333%;
	}
  
	.row > .col-11-medium {
	  width: 91.66667%;
	}
  
	.row > .off-11-medium {
	  margin-left: 91.66667%;
	}
  
	.row > .col-12-medium {
	  width: 100%;
	}
  
	.row > .off-12-medium {
	  margin-left: 100%;
	}
  
	/* Gutters */
	.row.gtr-0 {
	  margin-top: 0;
	  margin-left: 0;
	}
  
	.row.gtr-0 > * {
	  padding: 0;
	}
  
	.row.gtr-0.gtr-uniform {
	  margin-top: 0;
	}
  
	.row.gtr-0.gtr-uniform > * {
	  padding-top: 0;
	}
  
	.row.gtr-25 {
	  margin-top: -6.25px;
	  margin-left: -6.25px;
	}
  
	.row.gtr-25 > * {
	  padding: 6.25px 0 0 6.25px;
	}
  
	.row.gtr-25.gtr-uniform {
	  margin-top: -6.25px;
	}
  
	.row.gtr-25.gtr-uniform > * {
	  padding-top: 6.25px;
	}
  
	.row.gtr-50 {
	  margin-top: -12.5px;
	  margin-left: -12.5px;
	}
  
	.row.gtr-50 > * {
	  padding: 12.5px 0 0 12.5px;
	}
  
	.row.gtr-50.gtr-uniform {
	  margin-top: -12.5px;
	}
  
	.row.gtr-50.gtr-uniform > * {
	  padding-top: 12.5px;
	}
  
	.row.gtr-150 {
	  margin-top: -37.5px;
	  margin-left: -37.5px;
	}
  
	.row.gtr-150 > * {
	  padding: 37.5px 0 0 37.5px;
	}
  
	.row.gtr-150.gtr-uniform {
	  margin-top: -37.5px;
	}
  
	.row.gtr-150.gtr-uniform > * {
	  padding-top: 37.5px;
	}
  
	.row.gtr-200 {
	  margin-top: -50px;
	  margin-left: -50px;
	}
  
	.row.gtr-200 > * {
	  padding: 50px 0 0 50px;
	}
  
	.row.gtr-200.gtr-uniform {
	  margin-top: -50px;
	}
  
	.row.gtr-200.gtr-uniform > * {
	  padding-top: 50px;
	}
  }  

/* SMALL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 768px) {

	.container {
	  width: 100%;
	}
  
	/* Interactivity Overrides */
	.interactive-row.active {
	  pointer-events: none;
	  opacity: 1 !important;
	  transform: none !important;
	}
  
	.interactive-row {
	  pointer-events: none; /* Disables hover/click */
	  cursor: default;      /* Resets cursor to default */
	}
  
	.interactive-row a {
	  pointer-events: none;
	}
  
	.interactive-row img {
	  filter: none !important; /* Remove any JS/CSS hover effects */
	}
  
	/* Images & Embeds */
	#logo img {
	  width: 20%;
	}
  
	#contactsocials img {
	  width: 7%;
	}
  
	iframe {
	  width: 356px;
	  height: 228px;
	}
  
	/* Basic Typography */
	body, input, select, textarea {
	  line-height: 2em;
	}
  
	h2 {
	  font-size: 18pt;
	  margin: 0 0 1em 0;
	}
  
	h3, h4, h5, h6 {
	  font-size: 13pt;
	  margin: 0 0 1em 0;
	}
  
	.particle-shape {
	  display: none;
	}
  
	/* Section / Article */
	section, article {
	  clear: both;
	  margin-bottom: 3em !important;
	}
  
	section.last, article.last {
	  margin-bottom: 0 !important;
	}
  
	/* Images */
	.image.left {
	  width: 25%;
	  margin-bottom: 2em !important;
	}
  
	/* Menu */
	ul.menu li {
	  display: block;
	  border: 0 !important;
	  padding: 0 !important;
	  margin: 0 !important;
	}
  
	/* Actions */
	ul.actions li {
	  display: block;
	  padding: 0;
	  margin: 1em 0 0 0;
	}
  
	ul.actions li:first-child {
	  margin-top: 0;
	}
  
	/* Box */
	.box {
	  padding: 15px;
	  margin: 0;
	}
  
	.box.feature {
	  margin: 20px 0 0 0 !important;
	  padding: 0;
	}
  
	.box.feature .inner {
	  padding: 30px 15px;
	}
  
	.box.feature p {
	  margin: 0;
	}
  
	.box.feature .image {
	  position: relative;
	  margin: 0;
	}
  
	.box.feature .image img {
	  border-bottom-left-radius: 0;
	  border-bottom-right-radius: 0;
	}
  
	/* Widgets */
	.widget.thumbnails .image {
	  margin: 0;
	}
  
	.widget.thumbnails .x {
	  padding: 1em 0.5em 0 0;
	}
  
	.widget.thumbnails .y {
	  padding: 1em 0 0 0.5em;
	}
  
	.widget.thumbnails .row:first-child .x, .widget.thumbnails .row:first-child .y {
	  padding-top: 0;
	}
  
	/* Wrappers */
	#header-wrapper {
	  padding: 3em 0 1.5em 0;
	}
  
	#banner-wrapper, #features-wrapper, #main-wrapper {
	  padding: 0 15px 40px 15px;
	}
  
	#footer-wrapper {
	  padding: 40px 30px;
	}
  
	/* Logo */
	#logo h1 {
	  font-size: 2.75em;
	  padding: 0.2em 0.275em;
	}
  
	#logo span {
	  line-height: 3em;
	}
  
	/* Banner */
	#banner {
	  text-align: center;
	  padding: 15px;
	  margin: 0 auto !important;
	}
  
	#banner h2 {
	  font-size: 2em;
	  margin: 0.75em 0 0.5em 0;
	}
  
	#banner p {
	  font-size: 1.5em;
	  line-height: 1.5em;
	  margin: 0;
	}
  
	#banner ul {
	  margin: 0;
	}
  
	#banner .button {
	  margin: 0 0 1em 0;
	}
  
	/* Content */
	#content {
	  padding-bottom: 3em;
	}
  
	/* Footer */
	#footer section {
	  border-bottom: solid 1px #ccc;
	  padding-bottom: 3em;
	  margin-bottom: 1em !important;
	}
  
	#copyright {
	  text-align: center;
	}
  
	/* Rows */
	.row {
	  display: flex;
	  flex-wrap: wrap;
	  box-sizing: border-box;
	  align-items: stretch;
	  margin-top: -20px;
	  margin-left: -20px;
	}
  
	.row > * {
	  box-sizing: border-box;
	  padding: 20px 0 0 20px;
	}
  
	.row.gtr-uniform > * {
	  padding-top: 20px;
	}
  
	.row.gtr-uniform > * > :last-child {
	  margin-bottom: 0;
	}
  
	/* Alignment */
	.row.aln-left {
	  justify-content: flex-start;
	}
  
	.row.aln-center {
	  justify-content: center;
	}
  
	.row.aln-right {
	  justify-content: flex-end;
	}
  
	.row.aln-top {
	  align-items: flex-start;
	}
  
	.row.aln-middle {
	  align-items: center;
	}
  
	.row.aln-bottom {
	  align-items: flex-end;
	}
  
	/* Ordering */
	.row > .imp-small {
	  order: -1;
	}
  
	/* Columns and Offsets */
	.row > .col-1-small { width: 8.33333%; }
	.row > .off-1-small { margin-left: 8.33333%; }
  
	.row > .col-2-small { width: 16.66667%; }
	.row > .off-2-small { margin-left: 16.66667%; }
  
	.row > .col-3-small { width: 25%; }
	.row > .off-3-small { margin-left: 25%; }
  
	.row > .col-4-small { width: 33.33333%; }
	.row > .off-4-small { margin-left: 33.33333%; }
  
	.row > .col-5-small { width: 41.66667%; }
	.row > .off-5-small { margin-left: 41.66667%; }
  
	.row > .col-6-small { width: 50%; }
	.row > .off-6-small { margin-left: 50%; }
  
	.row > .col-7-small { width: 58.33333%; }
	.row > .off-7-small { margin-left: 58.33333%; }
  
	.row > .col-8-small { width: 66.66667%; }
	.row > .off-8-small { margin-left: 66.66667%; }
  
	.row > .col-9-small { width: 75%; }
	.row > .off-9-small { margin-left: 75%; }
  
	.row > .col-10-small { width: 83.33333%; }
	.row > .off-10-small { margin-left: 83.33333%; }
  
	.row > .col-11-small { width: 91.66667%; }
	.row > .off-11-small { margin-left: 91.66667%; }
  
	.row > .col-12-small { width: 100%; }
	.row > .off-12-small { margin-left: 100%; }
  
	/* Gutters */
	.row.gtr-0 {
	  margin-top: 0;
	  margin-left: 0;
	}
  
	.row.gtr-0 > * {
	  padding: 0;
	}
  
	.row.gtr-0.gtr-uniform {
	  margin-top: 0;
	}
  
	.row.gtr-0.gtr-uniform > * {
	  padding-top: 0;
	}
  
	.row.gtr-25 {
	  margin-top: -5px;
	  margin-left: -5px;
	}
  
	.row.gtr-25 > * {
	  padding: 5px 0 0 5px;
	}
  
	.row.gtr-25.gtr-uniform {
	  margin-top: -5px;
	}
  
	.row.gtr-25.gtr-uniform > * {
	  padding-top: 5px;
	}
  
	.row.gtr-50 {
	  margin-top: -10px;
	  margin-left: -10px;
	}
  
	.row.gtr-50 > * {
	  padding: 10px 0 0 10px;
	}
  
	.row.gtr-50.gtr-uniform {
	  margin-top: -10px;
	}
  
	.row.gtr-50.gtr-uniform > * {
	  padding-top: 10px;
	}
  
	.row.gtr-150 {
	  margin-top: -30px;
	  margin-left: -30px;
	}
  
	.row.gtr-150 > * {
	  padding: 30px 0 0 30px;
	}
  
	.row.gtr-150.gtr-uniform {
	  margin-top: -30px;
	}
  
	.row.gtr-150.gtr-uniform > * {
	  padding-top: 30px;
	}
  
	.row.gtr-200 {
	  margin-top: -40px;
	  margin-left: -40px;
	}
  
	.row.gtr-200 > * {
	  padding: 40px 0 0 40px;
	}
  
	.row.gtr-200.gtr-uniform {
	  margin-top: -40px;
	}
  
	.row.gtr-200.gtr-uniform > * {
	  padding-top: 40px;
	}
  
  }
  
/* PORTRAIT SMALLER MOBILES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 230px) and (max-width: 349px) {

	header img {
	  margin-bottom: 30px;
	  width: 20%;
	  border-radius: 8px;
	}
  
	section img {
	  width: 80%;
	}
  
	.particle-shape {
	  display: none;
	}
  }

/* PORTRAIT MOBILE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 350px) and (max-width: 430px) {

	header img {
	  margin-bottom: 30px;
	  width: 20%;
	  border-radius: 8px;
	}
  
	section img {
	  width: 100%;
	}
  
	.particle-shape {
	  display: none;
	}
  }

/* PORTRAIT BIG MOBILES & SMALL TABLETS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 431px) and (max-width: 567px) {

	header img {
	  margin-bottom: 30px;
	  width: 20%;
	  border-radius: 8px;
	}
  
	section img {
	  width: 100%;
	}
  
	.particle-shape {
	  display: none;
	}
  }  

/* PORTRAIT TABLETS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (min-width: 568px) and (max-width: 767px) {

	header img {
	  margin-bottom: 30px;
	  width: 20%;
	  border-radius: 8px;
	}
  
	section img {
	  width: 100%;
	}
  
	.particle-shape {
	  display: none;
	}
  }  