@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,900");
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
body {
  width: 100%;
  height: 100vh;
  font-family: "Roboto";
  background: #fff;
}

h1 {
  font-size: 42px;
  font-weight: 900;
  margin: 50px 5%;
  text-transform: capitalize;
  position: relative;
}

h1:after {
  position: absolute;
  content: "";
  top: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: #2c3e50;
}

.grid-container {
  width: 80%;
  margin: 0px auto;
}

.grid-col {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 33.3%;
	min-width: 300px;
	box-sizing: border-box;
	padding-right: 20px;
	margin-bottom: 20px;
	float: left;
}

.grid-col img {
  width: 100%;
  height: auto;
  max-height: 200px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.body-content {
	background: #2c3e50;
	padding: 0 30px 120px 40px;
	position: relative;
	border: 1px solid #2c3e50;
	border-top: none;
	z-index: 1;
	line-height: 23px;
	color: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	min-height: 35vh;
}

.body-content:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -1px;
  width: 100%;
  height: 50px;
  background: #2c3e50;
  border-left: 1px solid #2c3e50;
  border-right: 1px solid #2c3e50;
  transform: skewY(5deg);
  z-index: -1;
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.4);
}

.body-content h3 {
  margin-bottom: 2px;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 25px;
}

.body-content h4 {
  margin-top: 15px;
  font-family: "Roboto";
  font-weight: 700;
  font-size: 20px;
}
.btn-container {
  position: absolute;
  bottom: 25px;
  left: 40px !important;
  margin-bottom: 20px;
}
.round-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 20px;
	margin-right: 5px;
    line-height: 45px;
    text-align: center;
	background: #fff;
	color: #2c3e50;
	border-radius: 50%;
	z-index: 1;
	transition: all 0.2s ease-in-out;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 0);
}

.round-btn:hover {
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.12);
}
.info-details {
	margin-top: 20px;
}
.info-details li {
    display: flex!important;
    font-size: 15px;
    font-family: inherit;
    text-decoration: none;
    color: #FFF;
}
.info-details li i {
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 12px;
    margin-right: 8px;
    line-height: 20px;
    text-align: center;
    background: rgba(255,255,255,0.8);
    color: #2c3e50;
}



@media screen and (max-device-width: 480px){
	.grid-col {
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		width: 98%;
		padding-right: 0px;
	}
	.grid-col img {
		min-height: 25vh;
	}
	.body-content {
		min-height: 50vh;
	}
	.body-content:before {
		height: 130px;
		top: -50px;
	}
	.body-content h3 {
		margin-bottom: 50px;
		padding-top: 100px;
		font-size: 7rem;
	}
	.body-content p {
		margin-bottom: 10px;
		font-size: 3rem;
		line-height: 3.5rem;
	}
	.body-content h4 {
		margin-top: 60px;
		margin-bottom: 30px;
		font-family: "Roboto";
		font-weight: 700;
		font-size: 4rem;
		line-height: 4rem;
	}
    .round-btn {
        display: inline-block;
        width: 8rem;
        height: 8rem;
        font-size: 4rem;
        margin-right: 30px;
        line-height: 8rem;
    }
	.info-details {
		margin-top: 8rem;
	}
	.info-details li {
		display: flex!important;
		font-size: 3rem;
		line-height: 5rem;
	}
	.info-details li i {
		width: 4rem;
		min-width: 4rem;
		height: 4rem;
		font-size: 2rem;
		margin-right: 2rem;
		line-height: 4rem;
	}
}
@media only screen and (min-width: 1440px) {
	.body-content p {
		font-size: 25px;
		line-height: 30px;
	}
	.body-content h3 {
		font-size: 35px;
	}
	.grid-col img {
		width: 100%;
		height: auto;
		max-height: 300px;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	.body-content:before {
		top: -25px;
	}
	.info-details {
		margin-top: 2rem;
	}
	.info-details li i {
		width: 25px;
		min-width: 25px;
		height: 25px;
		font-size: 20px;
		margin-right: 10px;
		line-height: 25px;
	}
	.info-details li {
		font-size: 20px;
		line-height: 30px;
	}
}
@media only screen and (min-width: 1600px) {
	.grid-col img {
		max-height: 350px;
	}
	.body-content:before {
		top: -50px;
		height: 100px;
	}
}