#blogTitleContainer {
	text-align: center;
}

body {
	background-color: #D5D5DF;
	font-family: sans-serif;
}

hr {
	color: #101010;
	width: 90%;
}

a:active, a:focus {
	outline: 0;
	border: none;
	-moz-outline-style: none;
}

#main {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
}

.callButtons {
  text-align: center;
  width: 100%;
}

.callButton {
  background-color: #0083CB;
  width: 10rem;
  height: 3rem;
  text-align: center;
  display: inline-block;
  border: none;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: bold;
}

.callButton:hover {
  background-color: #0073BB;
  cursor: pointer;
}

.headerBG {
  background-color: #101040;
}

.nav {
	position: sticky;
	top: 0;
	z-index: 1;
	/* overflow: hidden; */
	text-align: center;
	width: 100%;
	height: 2.5rem;
}

.navMainItem {
	position: relative;
	height: 100%;
	width: auto;
	padding: 0 1rem;
	text-align: center;
	display: inline-block;
	color: #F0F0F0;
}

.navMainItem span {
	position: relative;
	top: 15%;
	font-size: 1.25rem;
	text-decoration: none;
	display: inline-block;
}

.hover:hover {
	color: #0093DB;
}

#navMobile {
	display: none;
}

.mobileMenu {
	position: relative;
	left: 0;
	width: 40%;
	height: 100%;
	text-align: center;
	display: inline-block;
	color: #F0F0F0;
	font-size: 1.5rem;
	cursor: pointer;
}

.mobileMenu i {
	font-size: 2.5rem;
	position: relative;
}

.mobileMenu div {
	position: relative;
	display: inline-block;
	margin-left: 5px;
	bottom: 10px;
}

#mobileContent {
	overflow-y: scroll;
	max-height: 60%;
	display: none;
	position: fixed;
	z-index: 1;
	margin: 0;
	padding: 0;
	text-align: center;
}

#mobileContent ul {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
	text-align: center;
}

#mobileContent li {
	padding-top: 5px;
	padding-bottom: 5px;
	width: 100%;
}


#descContainer {
	background-color: #F8FAFA;
	position: relative;
	top: 50px;
	left: 15%;
	width: 70%;
	height: auto;
	padding: 5%;
	box-sizing: border-box;
}

.videoContainer {
  width: 80%;
  overflow: hidden;
  position: relative;
}

.videoContainer::after {
  padding-top: 56.25%;
  display: block;
  content: '';
}

.videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tutStep {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #101010;
  text-align: left;
  display: block;
  box-sizing: border-box;
  clear: both; /*Needed because of floats*/
  overflow: hidden; /*Needed to fix height because of floats */
  padding: 15px 0;
}

.left {
  float: left;
}

.right {
  float: right;
}

.tutImg {
  position: relative;
  display: inline-block;
  top: 0;
  width: 40%;
  height: auto;
  text-align: center;
}

.tutImg img {
  position: relative;
  top: 0;
  max-width: 100%;
  max-height: 100%;
}

.tutDesc {
  position: relative;
  width: 50%;
  height: auto;
  top: 0;
  left: 0;
  display: inline-block;
  text-decoration: none;
}

.naked {
	text-decoration: none;
	color: #101010;
}

.blue {
	color: blue;
}

.selector-container {
  text-align: center;
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.green {
  color: #109010;
}

.red {
  color: #F01010;
}

.language-menu {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #232F3E;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 320px;
    overflow-y: auto;
}

.dropdown-content a {
    color: #F0F0F0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #FEBD69;
    color: #232F3E;
}

.language-menu:hover .dropdown-content {
    display: block;
}

.language-header {
    font-weight: bold;
    color: #FEBD69;
}

.language-menu {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #101040;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 320px;
    overflow-y: auto;
}

.dropdown-content a {
    color: #F0F0F0;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #FEBD69;
    color: #232F3E;
}

.language-menu:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 1300px) {
	#descContainer {
		left: 10%;
		width: 80%;
	}
}

@media screen and (max-width: 900px) {

	#descContainer {
		top: 20px;
		left: 0;
		width: 100%;
		padding: 5%;
	}

	#navMain {
		display: none;
	}

	#navMobile {
		display: inline-block;
	}

	.navMainItem {
		margin-top: 3px;
		margin-bottom: 3px;
	}

  .videoContainer {
    width: 100%;
  }

  .left, .right {
    float: none;
  }

  .tutImg, .tutDesc {
    width: 100%;
  }

  .listLink {
		margin-top: 10px;
		margin-bottom: 10px;
	}
}