/* Add 'Job Vacancies' button at bottom of People section */

	.careers {
	margin-top: 0;
	margin-bottom: 4rem;
	}
	
	@media (min-width: 1024px) {
	.careers {
		margin-top: 3rem;
		margin-bottom: 0;
	}
	}
	
	a.button {	
	border: 1px solid black;
	text-transform: uppercase;
	padding: 2rem 5rem;
	display: inline-block;
	font-weight: bold;
	font-size: 1.8rem;
	}
	
	a.button:hover {
		background: black;
		color: white;
	}
	
/* Add 'News' link to navigation */

	#navigation ul.menu {
		float: right;
	}
	
	#navigation ul.news-nav-link {
		float: right;
		padding: 0;
		margin: 0;
	}
	
	#navigation ul.news-nav-link li {
		margin-left: 1rem;
	}
	
/* "To meet the full products..." message - Mobiles only */

	.full-urun-message {
		padding: 0 15px;
	}
	
	.full-urun-message h3 {
		font-size: 18px;
		margin-top: 20px;
	}

	@media (min-width: 640px) {

		.full-urun-message {
			display: none;
		}
		
	}
	
/* Whitepaper download link */

	a.whitepaper {
		position: absolute;
		right: 60px;
		/* top: 38px; */
		top: 18px;
		/* line-height: 120px; */
		opacity: 1;
		width: 160px;
		-webkit-animation-delay: 1s;
		animation-delay: 1s;
	}
	
		a.whitepaper:hover {
			opacity: 0.7;
		}
	
	header.sticky a.whitepaper {
		display: none;
	}
	
	i.top {
		margin-bottom: 10px;
		display: none;
		opacity: 0.3;
	}
	
	.whitepaper-mobile {
		display: none;
	}
	
	@media (max-width: 640px) {
	
		a.whitepaper {
			display: none;
		}
		
		.whitepaper-mobile {
			display: block;
			margin-bottom: 15px;
			font-size: 2rem;
			padding-top: 34px;
			border-top: 1px dotted #888;
			margin-top: 40px;
		}
		
		.whitepaper-mobile i {
			margin-bottom: 20px;
			opacity: 0.3;
		}
	
	}
	
	@media (min-width: 1024px) {
	
		a.whitepaper {
			/* line-height: 140px; */
			top: 28px;
		}
		
		i.top {
			display: inline-block;
		}
	
	}
	
	 @-webkit-keyframes bounceInRight {
	   0% {
	     /* opacity: 0; */
	     -webkit-transform: translateX(2000px);
	     transform: translateX(2000px);
	   }
	
	   60% {
	     /* opacity: 1; */
	     -webkit-transform: translateX(-30px);
	     transform: translateX(-30px);
	   }
	
	   80% {
	     -webkit-transform: translateX(10px);
	     transform: translateX(10px);
	   }
	
	   100% {
	     -webkit-transform: translateX(0);
	     transform: translateX(0);
	   }
	 }
	
	 @keyframes bounceInRight {
	   0% {
	     /* opacity: 0; */
	     -webkit-transform: translateX(2000px);
	     -ms-transform: translateX(2000px);
	     transform: translateX(2000px);
	   }
	
	   60% {
	     /* opacity: 1; */
	     -webkit-transform: translateX(-30px);
	     -ms-transform: translateX(-30px);
	     transform: translateX(-30px);
	   }
	
	   80% {
	     -webkit-transform: translateX(10px);
	     -ms-transform: translateX(10px);
	     transform: translateX(10px);
	   }
	
	   100% {
	     -webkit-transform: translateX(0);
	     -ms-transform: translateX(0);
	     transform: translateX(0);
	   }
	 }
	
	 .bounceInRight {
	   -webkit-animation-name: bounceInRight;
	   animation-name: bounceInRight;
	 }