@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Montserrat|Roboto');

body {
	
	background: #fff;
	margin:0px auto;
}
html, body{
  margin:0px; 
  padding:0px;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
p{
	font-family: 'Roboto', sans-serif;
	color:#333;
	padding:0;
	line-height:28px;
}
h1,
.h1{
	font-family: 'Montserrat', sans-serif;
	font-size:30px;
}
h2,
.h2{
	font-family: 'Montserrat', sans-serif;
	font-size:28px;
}
h3,
.h3{
	font-family: 'Montserrat', sans-serif;
	font-size:26px;
}
h4,
.h4{
	font-family: 'Montserrat', sans-serif;
	font-size:24px;
}
h5,
.h5{
	font-family: 'Montserrat', sans-serif;
	font-size:20px;
}
h6,
.h6{
	font-family: 'Montserrat', sans-serif;
	font-size:18px;
}
.no_padding{
	padding:0;
}
.no_margin{
	margin:0;
}
.padding_row{
	padding:30px 0px;
}

.innerp {
  text-align: justify!important;
}
.wrapper {
  margin: 40px auto;
  width: 100%;
  height: 500px;
}
.wrapper::before, .wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.wrapper .panel {
  position: relative;
    margin: 40px 0;
    overflow: hidden;
    float: left;
    width: 100%;
    height: 200px;
    text-align: center;
    background: #F1F1F1;
    border: 1px solid #30bb57;
    box-sizing: border-box;
    transition: border 200ms ease;
    cursor: pointer;
}
.wrapper .panel img {
  display: block;
  margin: 20px auto;
  text-align: center;
}
.wrapper .panel h3 {
  display: block;
  margin-bottom: 15px;
  color: #30bb57;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 1px #FFF;
}
.wrapper .panel p {
  font-size: 14px;
      padding: 10px 15px;
  text-shadow: 0 1px 1px #FFF;
}
.wrapper .panel .slide {
  position: absolute;
  bottom: -200px;
  left: 0;
  z-index: 100;
  padding: 20px;
  height: 100%;
  width: 100%;
  text-align: left;
  background: rgba(1, 61, 71, 0.95);
  box-sizing: border-box;
  transition: all 100ms 150ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.wrapper .panel .slide h4 {
  margin-bottom: 20px;
  text-align: left;
  text-shadow: none;
  font-size: 18px;
  font-weight: 600;
  color: #39cc62;
}
.wrapper .panel .slide ul{
	list-style:none;
}
.wrapper .panel .slide ul li {
  padding: 5px 5px 5px 8px;
  line-height: 24px;
  font-size: 13px;
  color: #F0F0F0;
  border-bottom: 1px solid #3e737b;
}
.wrapper .panel .slide ul li:last-child {
  border: 0;
}
.wrapper .panel .slide ul li .fa {
  padding-right: 5px;
  color: #39cc62;
}

.panel:hover {
  border: 1px solid #30bb57;
}
.panel:hover .slide {
  bottom: 0;
  cursor: pointer;
}

.animated {
  animation-duration: 150ms;
  animation-fill-mode: both;
  animation-delay: 1s;
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    transform: translateY(-120%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

p.title {
  margin: 0 auto;
  padding: 0;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  height: 36px;
  width: 890px;
  background: #013d47;
  border: 1px solid #2ba74e;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
}
