/* base.css 
div {border:1px solid;}
section {border:1px solid red;} 

*/
@keyframes slideInFromLeft {
  0% {
    /*transform: translateY(-50%);*/
    opacity: 0;
  }
  100% {
    /*transform: translateY(0);*/
    opacity: 1;
  }
}

.homepage-hero {  
  /* This section calls the slideInFromLeft animation we defined above */
  	animation: 1s ease-out 0s 1 slideInFromLeft;
	
}
.homepage-tout {  
  /* This section calls the slideInFromLeft animation we defined above */
  animation: 1s ease-out 0s 1 slideInFromLeft;

}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 24px;
	text-align:left;
}
.container {
	max-width:100%;
	margin-left:0;
}

/* Row styles */

.row-after {
	margin-bottom: 6em;
}
.grey-100 {
	background: #F7F7F7;
}
.image-then-text {

}
.clear-left-margin {
	padding-left:-15px;
}


/* type styles */
.name {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	/* identical to box height, or 133% */
	color: #0E0E0E;
}
.semibold {
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
}
.home-headline {
	font-weight: 600;
	font-size: 36px;
	line-height: 48px;
}
.recently {
	font-size: 14px;
}
section {
	margin-bottom: 3em;
}
.project {
	margin-bottom:1.5em;
}
.project-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom:.5em;
}
.project-description {
	font-weight: normal;
	font-size: 14px;
	margin-bottom:.5em;	
}
.project-cta {
	display:block;
	width:100%;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	color: #333333;
	text-decoration: underline;
	opacity:1;
	transition: 0.3s;
	/*border: 1px solid;*/
}
.project-cta .arrow {
	width:20px;
	margin-right:0;
	margin-left:auto;
	float:right;
	margin-top:9px;
	position:relative;
	right:0px;
	opacity:1;
	transition: 0.3s;
	
}
.project-cta:hover .arrow {
	width:20px;
	position:relative;
	right:10px;
	opacity:.5;
}
.project-cta:hover {
	color: #333333;
	opacity:.5;
	
}
.general-cta {
	font-style: normal;
	font-weight: 500;
	color: #333333;
	text-decoration: underline;
	opacity:1;
	transition: 0.3s;
}
.general-cta:hover, .general-cta:visited {
	color: #333333;
	opacity:.5;
}
.header-cta {
	font-style: normal;
	font-weight: 600;
	color: #333333;
	opacity:1;
	transition: 0.3s;
}
.header-cta:hover {
	color: #333333;
	opacity:.5;
	text-decoration: none;
}
h1, h2 {
	margin-bottom: 48px;
}
h3 {
	margin-bottom: 24px;
}
footer {
	margin-top:2em;
	margin-bottom: 2em;
}
/* Primary columns */
.col-primary-left, .col-primary-right {
	/*border:1px solid red;*/

}

/* padding and margin*/
.col-1, .col-5, .col-6 {
	padding:0;
} 
header {
	margin-bottom: 170px;
}


/* specific quirks */
.name {
	margin-top:21px;
	float:left;
}
.img img {
	width:100%;
}
.img {
	margin:0;
	padding:0 0 30px 0;
}
.img-fit {
	width:100%;
}
.logo {
	height:1.5em;
	float:left;
	margin-top:21px;
	margin-right:1em;
}
blockquote {
	border-left: 3px solid;
	padding-left:1em;
}
.highlight {
	background-color: yellow;
}
.manifesto {
	background-color: #eeeeee;
	padding: 20px;
}
.project-cards {
	margin-bottom: 1em;
}
.hero {
	padding-top: 6em;
	padding-bottom: 6em;
}
.hero img {
	max-width:100%;
}
.demo-thumbs {
	margin-bottom:2em;
}
.comingsoon {
	background-color: yellow;
	padding: 2px;
	font-size: .8em;
}
.center-content {
	text-align:center;
}

/* Vimeo */
.embed-container {
  --video--width: 1348;
  --video--height: 768;

  position: relative;
  padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
  overflow: hidden;
  max-width: 100%;
  background: black;
  margin:0;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) { 
	header {
		margin-bottom: 70px;
	}
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) { 
	header {
		margin-bottom: 70px;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {  }

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }



