/* Utilities */ 

// div {
// 	box-sizing: border-box;
// 	border: 1px solid tomato;
// }

/* Typography */
@import url('https://fonts.googleapis.com/css?family=Josefin+Slab');

@import url('https://fonts.googleapis.com/css?family=Fredericka+the+Great|Josefin+Slab');

body {
	// background: #FFF3E0;
	// background-image: url("subtle-light-patterns-bg.png");
	font-family: 'Josefin Slab', serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Josefin Slab', serif;
}
.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 0 40px 200px;
}

.code-container {
	border: 1px solid rgba(0,0,0,0.05);
	padding: 0 6px;
}

#side-nav {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 200px;
	margin: 0;
}

.page-title {
	font-size: 4rem;
	// color: #01579B;
	text-align: center;
	font-weight: bolder;
}

.page-subtitle {
	// color: #01579B;
	text-align: center;
	font-weight: thin;
	margin: 0 auto 30px;
}

.title-element-type {
	font-size: 0.85rem;
	text-decoration: none;
}

hr {
	width: 100%;
	margin: 36px auto;
	display: block;
	border: 0.5px solid rgba(0,0,0,0.05);
}

.section-title {
	font-size: 1.3rem;
	text-align: center;
	font-weight: lighter !important;
	text-transform: uppercase;
}

.subsection-title {
	text-align: left;
	text-decoration: underline;
}

.page-heading-container {
	padding: 30px 0 30px 200px;
	// background: white;
}

.section {
	border: 1px solid rgba(0,0,0,0.16);
	background: white;
	border-radius: 3px;
	margin: 0 auto 60px;
}
.section-heading-container {
	background: #E57373;
	padding: 20px;
	border-bottom: 1px solid rgba(0,0,0,0.14);

}

.section-content-container {
	padding: 40px 60px;
}

.tab-segment {
	padding: 0 !important;
	border: none !important;
}

/* New Layout */

/* transition-wrapper */
.transition-wrapper_page {
	transition: 0.4s opacity ease;
	animation-name: fade-in;
	animation-duration: 0.4s;

}

@keyframes fade-in {
	0% { 
		opacity: 0; 

	}
	100% { 
		opacity: 1; 
	}
}

/* Landing Page */

.landing-main-container {
	min-height: 100vh;
	padding: 2%;
	background-image: url("006-subtle-light-patterns.jpg");
}

.branches_landing-container {
	// padding-left: 6%;
}

img.landing {
	width: 150px;
	max-width: 900px;
	display: block;
	margin: auto;
	transition: 6s all ease;
	// animation-name: brain-pulsate;
	// animation-duration: 6s;
	// animation-iteration-count: infinite;
}

@keyframes brain-pulsate {
    0% {
    	transform: scale(1);
    }

    50% {
    	transform: scale(1.1);
    }

    100% {
    	transform: scale(1);
    }
}

.main-header {
	// font-family: 'Fredericka the Great', cursive;
	margin: 6px auto 0;
	font-size: 4.8rem;
	font-weight: bolder;
	text-align: center;
}

.main-subheader {
	font-family: 'Josefin Slab', serif;
	margin: 0;
	text-align: center;
	font-weight: lighter;
	font-size: 1.8rem;
}

.nav-link-container {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	margin: 24px;
}

@media (max-width: 920px) {
	.nav-link-container {
		flex-direction: column;
		text-align: right;
	}
}

.nav-link {
	color: #455A64;
	margin: 0 0 0 32px;
	text-decoration: underline;
	transition: 0.2s color;
	cursor: pointer;
}

.nav-link:hover {
	color: #26C6DA;
}


.shimmer {
  text-align: center;
  color: rgba(255,255,255,0.1);
  background: -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: -moz-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  background: gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.5, #fff));
  -webkit-background-size: 125px 100%;
  -moz-background-size: 125px 100%;
  background-size: 125px 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-animation-name: shimmer;
  -moz-animation-name: shimmer;
  animation-name: shimmer;
  -webkit-animation-duration: 10s;
  -moz-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-color: #222;
}
@-moz-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes shimmer {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}


/* Bullet Points */
.intro-bullet-points {
	display: flex;
	margin: 20px 0 0;
}

.intro-bullet-points > ul {
	display: inline-block;
}

.intro-bullet-points > .list-wrapper {
	margin: auto;
}

.why {
	text-align: center;
	margin: 40px 0 0;
}


/* Selling Points */

.selling-points {
	max-width: 1350px;
	margin: 80px auto 0;
}

.selling-point {
	display: flex;
	margin: 0 0 30px;
}

.selling-point > .text {
	width: 45%;
	margin: 20px 0 0 auto;
	padding: 0 20px 0 90px;
}

.selling-point > .text > .title-icon {
	text-align: center;
}
.selling-point > .text > .title-icon,
.selling-point > .text > .title-text {
	font-size: 2.5rem;
	font-weight: bolder;
}

.selling-point > .text > .body {
	width: 80%;
	// text-indent: 24px;
	font-size: 1.3rem;
	font-weight: lighter;
	// line-height: 1.8rem;
}


.selling-point > .code-container {
	width: 55%;
	margin: 20px auto 0;
	background: white;
	// border: none;
}

.tldr-header {
	font-style: italic;
}

.selling-point > .text > .tldr-body {
	width: 80%;
}

.selling-point > .text > .tldr-body > .problem,
.selling-point > .text > .tldr-body > .solution {
	font-size: 1.3rem;
	font-weight: bolder;
}

.selling-point > .text > .tldr-body > .problem {
	color: #B71C1C;
}

.selling-point > .text > .tldr-body > .solution {
	color: mediumseagreen;
}

@media (max-width: 920px) { 
	.selling-point {
		flex-direction: column;
	}

	.selling-points {
		margin-top: 20px;
	}

	.selling-point > .text {
		// margin-right: 0;
		margin: 20px auto;
		padding-left: 0;
		width: 80%;
	}

	.selling-point > .code-container {
		width: 88%;
	} 

	.selling-point > .text > .title-text,
	.selling-point > .text > .body {
		// text-align: left;
		width: 100%;
	}
	.tldr-header {
		text-align: center;
	}

	.tldr-body {
		margin-right: 0
	}


 }

/* Side Nav */
.brain-logo_side-nav {
	max-width: 80px;
	display: block;
	margin: auto;
	transform: rotate(-90deg);
}



/* Introduction */



