

.section {

  margin-bottom: 5px;

  margin-left: 5px;

  float:left;

  cursor:pointer;

}



.section__title {

  font-family: 'Open Sans', sans-serif;

  font-size: 40px;

}



.section__content {

  padding-left: 3px;

}

.navbar{

  min-height: 60px !important;

}

h4{

  margin-top: 10px;

  line-height: 25px;

  font-weight: bold;

}

h5{

  font-weight: bold;

  font-size: 18x;

}
.page-content{
  width: 50%;
  float:left;
}
.page-img{
float:right;
  width: 48%;
  padding:10px;

}
.page-img img{
  width: 100%;
}

@media (min-width: 768px){

.navbar-nav>li>a {

    padding-top: 20px !important;

  

}

}



/**

 * The cards

 *

 * Each card plays home to a front and back. I've set them up as squares here

 * by using the padding technique, but you may set them up in any dimensions

 * you like based on your site design.

 */

.card {

  position: relative;

  float: left;

  height:200px;

  width: 200px;

  text-align: center;

  

}



.card:nth-child(1) {

  margin-left: -3px;

  margin-right: 1px;

}



.card:nth-child(2),

.card:nth-child(3) {

  margin-right: 1px;

}



/* card fronts and backs */

.card__front,

.card__back {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

}



.card__front,

.card__back {

  -webkit-backface-visibility: hidden;

          backface-visibility: hidden;

  -webkit-transition: -webkit-transform 0.3s;

          transition: transform 0.3s;

}



.card__front {

  background-color: #f29000;

  font-size:20px;

  line-height:200px;

  color: #fff;

  font-family:Verdana;

}



.card__back {

  background-color: #99d7f7;

  -webkit-transform: rotateY(-180deg);

          transform: rotateY(-180deg);

 font-size:13px;

 color:#000;

 line-height:200px;

 vertical-align: middle;

}



/* card text */

.card__text {

  display: inline-block;

  vertical-align: middle;

  margin: auto;  

  line-height: normal;

  padding:8px;

}



/* hover effect */

.card.effect__hover:hover .card__front {

  -webkit-transform: rotateY(-180deg);

          transform: rotateY(-180deg);

}



.card.effect__hover:hover .card__back {

  -webkit-transform: rotateY(0);

          transform: rotateY(0);

}



/* click effect */

.card.effect__click.flipped .card__front {

  -webkit-transform: rotateY(-180deg);

          transform: rotateY(-180deg);

}



.card.effect__click.flipped .card__back {

  -webkit-transform: rotateY(0);

          transform: rotateY(0);

}



/* random effect */

.card.effect__random.flipped .card__front {

  -webkit-transform: rotateY(-180deg);

          transform: rotateY(-180deg);

}



.card.effect__random.flipped .card__back {

  -webkit-transform: rotateY(0);

          transform: rotateY(0);

}

