.landing {
	background-color: #252525;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	background-position: center;
	z-index: 100;
	color: white;
	/*position: absolute;*/
}

.motion-logo {
	display: flex;
    height: 50vh;
    text-align: center;
    align-items: flex-end;
    padding: 5% 0;
}

.landing h1 {
	text-align: center;
}

.logo-md-img {
	width: 100%;
}

.logo-md-img img {
	width: 50%;
}

.project-logos {
	max-width: 360px;
	margin: 10vh auto 0 auto;
}

.logo-group-1 .logo-bw {
	width: 50px;
	margin: 10px;
	/*float: left;*/
}

.logo-group-2 .logo-bw {
	width: 120px;
	margin: 10px;
	float: left;
}

.logo-bw img {
	width: 100%;
} 

.landing .scroll-down {	
	background-color: #242424;
}
.landing .scroll-down:before {
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 9px);
    transform: rotate(-45deg);
    display: block;
    width: 16px;
    height: 16px;
    content: "";
    border: 2px solid white;
    border-width: 4px 4px 0 0;
}


.content {
	padding: 20px;
}

header, .welcome-bg {
	background-color: rgba(177, 193, 252, 0.5);
}

.welcome {
	width: 100%;
	padding: 20px;
	display: flex;
	align-items: center;
}

.welcome img {
	width: 100%;
}

.welcome h1 {
	font-size: 2.4rem;
	color: #3F6EA6;
	text-shadow: 2px 2px 4px #B1C1FC;
}

.welcome h2 {
	color: #3F6EA6;
	font-size: 2.4em;
}

.welcome .txt-animate {
	color: #E45755;
}

.purpose {
    /*background-color: #B1C1FC;*/
    background-color: rgba(228, 87, 85, 0.5);
    color: #3F6EA6;
    padding: 30px 50px;
    margin: 20px auto;
    border-radius: 5px;
}

.purpose h2 {
	text-align: center;
	font-weight: bold;
	color: black;
}

.main-projects {
	margin-top: 40px;
	margin-bottom: 40px;
}

.main-projects h1 {
	margin: 0;
	text-align: center;
}

.thumb-img {
    margin: 0;
    padding: 1rem;
}

.thumb-img img {
	width: 100%;
	/*box-shadow: 0px 3px 6px 1px #B1C1FC;*/
}

.thumb-img img:hover {
	/*transform: scale(1.2);
	transition: all 0.5s ease;*/
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(177, 193, 252, 0.9);
    color: #3F6EA6;
	opacity: 0;
	transition: opacity 0.5s linear;
}

.project-item:hover .project-description {
	opacity: 1;
}

.project-info {
	position: absolute;
	height: 100%;
	width: 100%;
	padding-top: 15%;
    bottom: 0;
    transform: translateY(100%);
    transition: all .75s;
    text-align: center;
}

.project-info h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.project-item:hover .project-info {
	transform: translateY(0);
	transition: all .75s;
}

.project-title {
	font-weight: bold;
	font-size: 1.4em;
}

.project-body {
    margin-top: -10px;
}

.more-project a {
	text-align: center;
	color: #3F6EA6;
}

.more-project a:hover {
	color: #E45755;
}

.bounce {
  animation: bounce 2s infinite;
}

/*https://codepen.io/bitstarr/pen/XjaJGz*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-10px);
  }
}

footer {
	margin-top: 20px;
}

@media (max-width:1000px) {
	.welcome h2 {
		font-size: 2em;
	}
}

@media (max-width:800px) {
	
	.welcome {
		display: inline-block;
	}

	.welcome img {
		width: 60%;
		margin-left: 20%;
	}

	.logo-md-img img {
		width: 80%;
	}
}

@media (max-width:600px) {
	
	.welcome h2 {
		font-size: 1.2em;
		text-align: center;
	}

	.motion-logo {
	    height: 40vh;
	}

	.project-logos {
		max-width: 300px;
	}
}