/* CLEARFIX */
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
/* -------------------------------- 

Primary style

-------------------------------- */
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-size: 100%;
	font-family: 'Lato', sans-serif;
	color: #030d18;
	background-color: #fff;
}
a {
	text-decoration: none;
	color: #bd3393;
	font-weight: 700;
}
img {
	max-width: 100%;
}
p em {
	font-style: italic;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
	/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 90%;
	max-width: 768px;
	margin: 0 auto;
}
.cd-container:after {
	content: "";
	display: table;
	clear: both;
}
.has-top-margin {
/* this class is given - using jQuery - to the .cd-main-content following the .cd-secondary-nav when it becomes fixed */
}
@media only screen and (min-width: 1170px) {
.has-top-margin {
	-webkit-animation: animate-margin-top 0.3s;
	-moz-animation: animate-margin-top 0.3s;
	animation: animate-margin-top 0.3s;
	margin-top: 70px;
}
}
 @-webkit-keyframes animate-margin-top {
 0% {
 margin-top: 100px;
}
 100% {
 margin-top: 70px;
}
}
@-moz-keyframes animate-margin-top {
 0% {
 margin-top: 100px;
}
 100% {
 margin-top: 70px;
}
}
@keyframes animate-margin-top {
 0% {
 margin-top: 100px;
}
 100% {
 margin-top: 70px;
}
}
/* -------------------------------- 

Navigation

-------------------------------- */
.cd-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	background-color: #bd3393;
	z-index: 3;
}
@media only screen and (min-width: 768px) {
.cd-header {
	height: 70px;
	background-color: transparent;
	box-shadow: none;
}
}
#cd-logo {
	float: left;
	margin: 13px 0 0 5%;
	max-width: 200px;
	width: 100%;
}
#cd-logo a {
	display: inline-block;
	background: url(../img/billy-the-spacekid-icon.svg) no-repeat;
	width: 155px;
	height: 110px;
	background-size: 100%;
}
@media only screen and (min-width: 768px) {
#cd-logo {
	margin: 23px 0 0 5%;
}
}
@media only screen and (max-width: 768px) {
.cd-header {
	position: fixed;
}
#cd-logo a {
	display: inline-block;
	background: url(../images/billy-the-spacekid_logo-secondary.png) no-repeat;
	width: 60px;
	height: 62px;
	background-size: 100%;
}
}
@media only screen and (min-width: 1170px) {
#cd-logo.is-hidden {
	/* assign a position fixed and move outside the viewport (on the left) */
	opacity: 0;
	position: fixed;
	left: -20%;
	margin-left: 0;
	-webkit-transition: left 0.3s, opacity 0.3s;
	-moz-transition: left 0.3s, opacity 0.3s;
	transition: left 0.3s, opacity 0.3s;
}
#cd-logo.is-hidden.slide-in {
	/* slide in when the secondary navigation gets fixed */
	left: 5%;
	top: -17px;
	opacity: 1;
}
}
.cd-primary-nav {
	/* mobile first - navigation hidden by default, triggered by tap/click on navigation icon */
	float: right;
	margin-right: 5%;
	width: 44px;
	height: 100%;
	background: url("../img/cd-icon-menu.svg") no-repeat center center;
	background-size: 44px 44px;
}
.cd-primary-nav ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
}
.cd-primary-nav ul.is-visible {
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}
.cd-primary-nav a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 5%;
	background: #bd3393;
	border-top: 1px solid #fff;
	color: #fff;
}
@media only screen and (min-width: 768px) {
.cd-primary-nav {
	/* reset navigation values */
	width: auto;
	height: auto;
	background: none;
}
.cd-primary-nav ul {
	position: static;
	width: auto;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	line-height: 70px;
}
.cd-primary-nav ul.is-visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}
.cd-primary-nav li {
	display: inline-block;
	margin-left: 1em;
}
.cd-primary-nav a {
	display: inline-block;
	height: auto;
	line-height: normal;
	background: transparent;
	padding: .6em 1em;
	border-top: none;
	color: #bd3393;
}
.cd-primary-nav li a:before {
	content: '';
	background: url(../img/cd-nav-icons.svg);
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-bottom: -8px;
	margin-right: 5px;
}
.cd-primary-nav li:nth-of-type(1) a:before {
	background-position: -243px -40px;
}
.cd-primary-nav li:nth-of-type(2) a:before {
	background-position: -201px -40px;
}
.cd-primary-nav li:nth-of-type(3) a:before {
	background-position: -165px -40px;
}
}
/* -------------------------------- 

Intro

-------------------------------- */
#cd-intro {
	height: auto;
	z-index: 2;
}
#cd-intro {
	height: 500px;
	border-bottom: 6px solid #bd3393;
}
#cd-intro .cd-intro-container {
	display: table;
	width: 100%;
	max-width: 90%;
	margin: 0px auto;
}
#cd-intro .cd-intro-container .cd-intro-col {
	width: 50%;
	float: left;
}
#cd-intro .michael-loscalzo {
	background-image: url(../img/michael-loscalzo-bust.svg);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 55%;
	width: 50%;
	height: 500px;
	animation: pop-in 1s 1 backwards;
	animation-delay: .25s;
}
@keyframes pop-in {
 0% {
background-position: 50% 1500%;
}
 100% {
background-position: 50% 100%;
}
}
#cd-intro .cd-intro-col h1 {
	font-family: 'Libre Baskerville', serif;
	color: #bd3393;
	font-size: 30px;
	line-height: 45px;
	margin-top: 120px;
	margin-bottom: 17px;
}
#cd-intro .cd-intro-col p {
	font-size: 20px;
	line-height: 30px;
	color: #333;
}
@media only screen and (min-width: 1350px) {
#cd-intro {
	height: 550px;
}
#cd-intro .cd-intro-container {
	display: table;
	width: 100%;
	max-width: 1000px;
	margin: 0px auto;
}
#cd-intro .cd-intro-container .cd-intro-col {
	width: 50%;
	float: left;
}
#cd-intro .michael-loscalzo {
	background-image: url(../img/michael-loscalzo-bust.svg);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 75%;
	width: 50%;
	height: 550px;
	animation: pop-in 1s backwards 1;
}
#cd-intro .cd-intro-col h1 {
	color: #bd3393;
	font-size: 50px;
	line-height: 65px;
	margin-top: 120px;
	margin-bottom: 17px;
}
#cd-intro .cd-intro-col p {
	font-size: 21px;
	line-height: 33px;
	color: #333;
}
}
@media only screen and (max-width: 750px) {
#cd-intro {
	height: auto;
	border-bottom: none;
}
#cd-intro .cd-intro-container {
	display: table;
	width: 100%;
	max-width: 90%;
	margin: 0px auto;
}
#cd-intro .cd-intro-container .cd-intro-col {
	float: none;
	width: 100%;
}
#cd-intro .michael-loscalzo {
	background-image: url(../img/michael-loscalzo-bust.svg);
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-size: 70%;
	width: 250px!important;
	height: 250px!important;
	margin: 120px auto 25px auto;
	border-radius: 50%;
	border: 4px solid #bd3393;
}
#cd-intro .cd-intro-col h1 {
	color: #bd3393;
	margin-top: 0px;
	margin-bottom: 17px;
}
#cd-intro .cd-intro-col p {
	font-size: 20px;
	line-height: 30px;
	color: #333;
}
}
.cd-btn {
	display: inline-block;
	padding: 1em 1.8em;
	background-color: rgba(245, 72, 74, 0.9);
	margin-top: 1em;
	border-radius: 20em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: white;
}
.no-touch .cd-btn:hover {
	background-color: #f5484a;
}
@media only screen and (min-width: 1170px) {
.cd-btn.is-hidden {
	/* assign a position fixed and move outside the viewport (on the right) */
	opacity: 0;
	position: fixed;
	right: -20%;
	top: 0;
	padding: .8em 1.2em;
	margin: 14px 0 0;
	-webkit-transition: right 0.3s, opacity 0.3s;
	-moz-transition: right 0.3s, opacity 0.3s;
	transition: right 0.3s, opacity 0.3s;
}
.cd-btn.is-hidden.slide-in {
	/* slide in when the secondary nav gets fixed */
	right: 5%;
	opacity: 1;
}
}
/* -------------------------------- 

Secondary Fixed Navigation

-------------------------------- */
.cd-secondary-nav {
	position: relative;
	z-index: 3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.cd-secondary-nav ul {
	/* mobile first - secondary navigation hidden by default, triggered by tap/click on .cd-secondary-nav-trigger*/
	position: fixed;
	width: 90%;
	max-width: 400px;
	right: 5%;
	bottom: 20px;
	border-radius: 0.25em;
	background: #bd3393;
	visibility: hidden;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: 100% 100%;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-transition: -webkit-transform 0.3s, visibility 0s 0.3s;
	-moz-transition: -moz-transform 0.3s, visibility 0s 0.3s;
	transition: transform 0.3s, visibility 0s 0.3s;
}
.cd-secondary-nav ul.is-visible {
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.3s, visibility 0s 0s;
	-moz-transition: -moz-transform 0.3s, visibility 0s 0s;
	transition: transform 0.3s, visibility 0s 0s;
}
.cd-secondary-nav li a {
	display: block;
	padding: 1.6em;
	border-bottom: 1px solid #fff;
	color: #f0eee1;
}
.cd-secondary-nav li:last-child a {
	border-bottom: none;
}
@media only screen and (min-width: 1170px) {
.cd-secondary-nav {
	z-index: 1;
	height: 100px;
	background-color: #bd3393;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}
.cd-secondary-nav nav, .cd-secondary-nav ul, .cd-secondary-nav li, .cd-secondary-nav a {
	height: 100%;
}
.cd-secondary-nav ul {
	/* reset navigation values */
	position: static;
	width: auto;
	max-width: 100%;
	visibility: visible;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	text-align: center;
	background-color: transparent;
}
.cd-secondary-nav li {
	display: inline-block;
	margin-left: -4px;
}
.cd-secondary-nav li a {
	position: relative;
	text-align: center;
	display: block;
	padding: 58px 40px 0 40px;
	border-bottom: none;
	-webkit-transition: padding 0.2s;
	-moz-transition: padding 0.2s;
	transition: padding 0.2s;
}
.cd-secondary-nav li a b {
	text-transform: uppercase;
	font-size: 13px;
	font-size: 0.8125rem;
	letter-spacing: 1px;
	font-weight: 700;
	color: rgba(240, 238, 225, 0.75);
}
.cd-secondary-nav li a span {
	position: absolute;
	display: inline-block;
	width: 40px;
	height: 40px;
	top: 18px;
	left: 50%;
	right: auto;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	background-repeat: no-repeat;
	background-image: url(../img/cd-nav-icons.svg);
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.cd-secondary-nav li a:hover b, .cd-secondary-nav li a.active b {
	color: #fff;
}
.cd-secondary-nav li:nth-child(1) a span {
	background-position: -80px 0;
}
.cd-secondary-nav li:nth-child(2) a span {
	background-position: 0 0;
}
.cd-secondary-nav li:nth-child(3) a span {
	background-position: -40px 0;
}
.cd-secondary-nav li:nth-child(4) a span {
	background-position: -120px 0;
}
.cd-secondary-nav li:nth-child(1) a:hover span {
	background-position: -80px -44px;
}
.cd-secondary-nav li:nth-child(2) a:hover span {
	background-position: 0 -42px;
}
.cd-secondary-nav li:nth-child(3) a:hover span {
	background-position: -40px -44px;
}
.cd-secondary-nav li:nth-child(4) a:hover span {
	background-position: -120px -44px;
}
.cd-secondary-nav.is-fixed {
	/* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
	position: fixed;
	left: 0;
	top: 0;
	height: 70px;
	width: 100%;
}
.cd-secondary-nav.animate-children {
	/* on Firefox CSS transition/animation fails when parent element changes position attribute*/
    /* so we defined to diffent classes: .is-fixed to change the position value and .is-animated to change childrens' attributes (padding and opacity)*/
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cd-secondary-nav.animate-children li a {
	padding: 26px 30px 0 30px;
}
.cd-secondary-nav.animate-children li a span {
	opacity: 0;
}
}
.cd-secondary-nav-trigger {
	position: fixed;
	bottom: 20px;
	right: 5%;
	width: 44px;
	height: 44px;
	background: #bd3393;
	border-radius: 0.25em;
	/* image replacement */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	z-index: 2;
	box-shadow: 9px 7px 10px -4px rgba(0,0,0,.3);
}
.cd-secondary-nav-trigger span {
	/* the span element is used to create the menu icon */
	position: absolute;
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #f0eee1;
	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%);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
}
.cd-secondary-nav-trigger span::before, .cd-secondary-nav-trigger span::after {
	content: '';
	position: absolute;
	background: inherit;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
.cd-secondary-nav-trigger span::before {
	right: -10px;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}
.cd-secondary-nav-trigger span::after {
	left: -10px;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-ms-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
}
.cd-secondary-nav-trigger.menu-is-open {
	background: transparent;
}
.cd-secondary-nav-trigger.menu-is-open span {
	background: rgba(240, 238, 225, 0);
	width: 20px;
	height: 2px;
}
.cd-secondary-nav-trigger.menu-is-open span::before, .cd-secondary-nav-trigger.menu-is-open span::after {
	background: #f0eee1;
	width: 100%;
	height: 100%;
	border-radius: 0;
	top: 0;
	left: 0;
}
.cd-secondary-nav-trigger.menu-is-open span::before {
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
}
.cd-secondary-nav-trigger.menu-is-open span::after {
	-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: 1170px) {
.cd-secondary-nav-trigger {
	display: none;
}
}
/* -------------------------------- 

Placeholder Sections

-------------------------------- */
.cd-section .circular-portrait {
	float: right;
	margin: 8px 0% 8px 17px;
	background: url(../img/michael-loscalzo-pencil.svg);
	display: block;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 3px solid #bc3192;
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}
.cd-section {
	margin: 0 auto;
	padding: 2em 0;
}
.cd-section h2 {
	font-family: 'Libre Baskerville', serif;
	font-size: 40px;
	margin-bottom: .6em;
	font-weight: 300;
}
.cd-section p {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 30px;
}
@media only screen and (min-width: 1170px) {
.cd-section .circular-portrait {
	float: right;
	margin: 17px -10% 8px 17px;
	background: url(../img/michael-loscalzo-pencil.svg);
	display: block;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	border: 6px solid #bc3192;
	background-size: 75%;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}
.cd-section {
	margin: 0 auto;
	padding: 4em 0;
}
.cd-section h2 {
	font-family: 'Libre Baskerville', serif;
	font-size: 40px;
	line-height: 40px;
	color: #030d18;
}
}
@media only screen and (max-width: 768px) {
.cd-section {
	padding: 130px 0 0 0;
}
}
/* CASE STUDIES */
.case-study {
	max-width: 900px;
	margin: 0px auto;
	display: table;
}
.case-study-tile {
	width: 100%;
	float: left;
	margin-right: 3.3%;
	margin-bottom: 70px;
	position: relative;
}
.case-study-tile:last-of-type {
	margin-bottom: 0px;
}
.case-study-tile div {
	padding: 0px 0px 60px 290px;
}
.case-study-tile:nth-of-type(1) .case-study-thumbnail {
	background: url(https://miro.medium.com/v2/resize:fit:4074/format:webp/1*s4azgeWjI21pRjhRwzOIQw.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(2) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2160/1*4tkmCTD4blzNmTF_NOdfMg.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(3) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/1768/1*Z0tsWQkyRtgbGj89CSF8Kw.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(4) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/1620/1*XfDdYbjH3IEOO5SamlBtUQ.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(5) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/1500/1*-86bp8q1737IEooPKGIQxg.png);
	background-size: cover;
	background-position: 50%;
}
/*.case-study-tile:nth-of-type(4) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/1965/1*49hDBfKtUtxl-8yWbvU9Iw.png);
	background-size: cover;
	background-position: 50%;
}
*/
.case-study-tile:nth-of-type(6) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2160/1*wkx0Tv_aIqXmXp-fuuOGzA.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(7) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2000/1*n_ICIneSL34eZ86IC422rQ.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(8) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2000/1*E7Kp5eCfdHTRiBG5F0Lq1g.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(9) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2000/1*ITaPeudwYoOqzCeAJc7qig.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(10) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2160/1*jzEQQLgGI1d6JW1bBchUWA.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile:nth-of-type(11) .case-study-thumbnail {
	background: url(https://miro.medium.com/max/2000/1*Zot_uk7Gd7dhb2YTTX9_YQ.png);
	background-size: cover;
	background-position: 50%;
}
.case-study-tile .case-study-thumbnail {
	width: 250px;
	height: 130px;
	position: absolute;
	display: block;
	left: 0px;
	box-shadow: inset 0px 0px 0px 2px rgba(188,49,146,1);
}
.case-study-tile h3 {
	font-family: 'Libre Baskerville', serif;
	margin: 0px 0px 17px 0px;
	color: #333;
	font-size: 24px;
	line-height: 36px;
}
.case-study-tile p {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 45px;
}
.case-study-tile p.case-study-credits {
	margin: 0px 0px 8px 0px;
	/*  padding-bottom: 25px;
  border-bottom: 2px dashed #000;*/
	font-size: 13px;
	line-height: 19px;
	color: #888;
	font-weight: 700;
}
.case-study-tile p.case-study-credits span {
	color: #bc3192;
}
.case-study-cta {
	text-transform: uppercase;
	text-decoration: none;
	color: #bc3192;
}
.case-study-cta:before {
	content: '\279C';
	margin-right: 4px;
}
/*
.case-study-cta:hover {
background-color: #fff;
  color: #bc3192;
  box-shadow: inset 0px 0px 0px 2px rgba(188,49,146,1);
}
*/
/* FILTER */
#myBtnContainer {
	max-width: 900px;
	margin: 0px auto 25px auto;
	position: relative;
}
#myBtnContainer:before {
	content: '';
	display: inline-block;
	width: 35px;
	height: 35px;
	background: url(../img/cd-nav-icons.svg);
	background-position: -80px -210px;
	margin-right: 10px;
}
.filterDiv {
	display: none;
}
.show {
	display: block;
}
.mobile-show {
display:none;
}
@media only screen and (max-width: 650px) {
.case-study-tile .case-study-thumbnail {
	width: 100%;
	height: 130px;
	position: relative;
	margin-bottom: 17px;
}
.case-study-tile div {
	padding: 0px 0px 90px 0px;
}
.mobile-show {
display:block;
}
}
/* Style the buttons */
.filter-btn {
	border: none;
	outline: none;
	padding: 12px 16px;
	margin-bottom: 6px;
	background-color: #f1f1f1;
	cursor: pointer;
	border-radius: 6px;
}
.filter-btn:hover {
	background-color: #ddd;
}
.filter-btn.filter-active {
	background-color: #666;
	color: white;
}
/* MY SKILLS */
.my-skill-container {
	margin-bottom: 50px;
}
.my-skill-list {
	width: 50%;
	float: left;
}
.my-skill {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 20px;
	padding-left: 35px;
}
li.my-skill {
	position: relative;
}
li.my-skill:before {
	content: '\2219';
	color: #d1d1d1;
	display: block;
	position: absolute;
	left: 8px;
	font-size: 60px;
	line-height: 30px;
}
li.linkedin-verified:before, li.ga-verified:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	background: url(../img/cd-nav-icons.svg);
	width: 30px;
	height: 30px;
	background-size: 205px;
}
li.linkedin-verified:before {
	background-position: 2px -213px;
}
li.ga-verified:before {
	background-position: -24px -212px;
}
.my-skill-key {
	display: table;
	box-shadow: inset 0px 0px 0px 2px rgba(188,49,146,1);
	border-radius: 8px;
	max-width: 525px;
	margin-bottom: 35px;
}
.my-skill-key ul {
	padding: 17px 25px 3px 25px;
}
.my-skill-key p {
	padding: 17px 25px 0px 25px;
}
.my-skill-key p:first-of-type {
	margin: 0px;
	font-weight: bold;
}
@media only screen and (max-width: 750px) {
.my-skill-list {
	width: 100%;
	float: none;
}
}
footer {
	padding: 25px 30px;
	background-color: #e5e5e5;
}
