.navbar-default{
  padding: 5px 0px;
  background-color: #fff;
}

body {
  font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
  line-height: 1.5;
}

section{
  padding: 10px 30px;
}

header{
  margin-top: 70px;
  text-align: center;
  padding: 50px 0px;
}

h2 {
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

.header__logo{
  width: 80%;
  max-height: 172px;
  max-width: 576px;
}


.front-page-navigation {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
}

.front-page-navigation li {
    display: inline-block;
    margin: 10px;
}


.front-page-navigation > li > a {
  text-decoration: none;
  padding: 5px 10px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.front-page-navigation > li > a:hover {
  background-color: #4682B4;
  color: #fff;
  border: 2px solid #4682B4;
}


.btn-main {
  background-color: #fff;
  border: 2px solid #4682B4;
  border-radius: 50px;
  padding: 5px 15px;
  color: #4682B4;
  font-size: 1.7em;
  text-decoration: none;
}

.btn-main:hover {
  background-color: #4682B4;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 3px 0 hsla(0,0%,45%,.15);
}


.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e6e6e6;
  font-size: 12px;
  height: 100px;
  line-height: 100px;
  color: #80838f;
  text-align: center;
}

.card {
  min-height: 200px;
  text-align: center;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  margin: 15px 0px;
}

.card--clickable:hover {
  background-color: #4682B4;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 3px 0 hsla(0,0%,45%,.15);
  border-color: #4682B4;

}


cmsn {
    color: #fff;
    background-color: #4682B4;
    display: none;
}

span:hover + cmsn {
    display: block;
}

.card--tutorial{
  height: 200px;
  line-height: 200px;
  font-size: 1.7em;
}
.card--download {
  min-height: 100px;
  line-height: 100px;
  font-size: 1.4em;
}

.card--comingsoon {
  min-height: 100px;
  line-height: 100px;
  font-size: 1.4em;
}

.card--contact {
  height: 250px;
  padding-top: 50px;
}

.container1 {
    text-align: center
   
}


.code-block {
  /* border: 1px solid #d2d2d2 !important; */
  padding: 30px 15px !important;
  background: #f5f5f5 !important;
  border: 0px !important;
}
.your-centered-div {
    width: 560px; /* you have to have a size or this method doesn't work */
    height: 315px; /* think about making these max-width instead - might give you some more responsiveness */

    position: absolute; /* positions out of the flow, but according to the nearest parent */
    top: 0; right: 0; /* confuse it i guess */
    bottom: 0; left: 0;
    margin: auto; /* make em equal */
}