html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}

.clearfix:after {visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

/*General */
html {
	margin:0;
	padding: 0;
}

body {
	font-family: 'PT Sans', sans-serif;
}

h1, h2, h3, h4 {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

h1 {
	font-size: 2.5rem;
}

a {
	text-decoration: none;
	color: #e02c5c;
}

/*button*/
.button-container{
  background-color: #e02c5c;
  color: white;
  cursor: pointer;
  overflow: hidden;
  height: 60px;
  width: 250px;
  text-align: center;
  vertical-align: middle;
  line-height: 60px;
  border-style: solid;
  border-width: 3px;
  border-color: #eee;
  border-radius: 15px;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition 300ms;
}

.button-container:hover {
  background-color: #eee;
  color: black;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition 300ms;
}

.button-text {
  width: 250px;
  font-family: helvetica;
  font-size: 1.5rem;
  font-weight: 100; 
  z-index: 10;
  position: absolute;
  text-align: center;
}

.button-container a {
	color: white;
}

.button-container a:hover {
	color: black;
}



.button-shimmer {
  width: 200px;
  height: 100px;
  position: relative;
  -webkit-animation: shimmer 5s infinite;
  -moz-animation: shimmer 5s infinite;
  animation: shimmer 3s infinite;
}

@-webkit-keyframes shimmer {
    0%   {
      background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%);
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
      left: -5000px;
      top: 0px;
    }
  
    100% {
      background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%);
      background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
      left: 5000px;
      top: 0px;}
}

@-moz-keyframes shimmer {
		0%   {
      background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); /* FF3.6+ */ 
			left: -5000px;
      top: 0px;}
}
      100% {
      background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%); /* FF3.6+ */
			left: 5000px;
      top: 0px;}
}

@keyframes shimmer {
		0%   {
      background: -o-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
      background: -ms-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* IE10+ */
      background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
      left: -5000px;
      top: 0px;
    }
  
		100% { 
      background: -o-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
      background: -ms-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* IE10+ */
      background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 100%); /* W3C */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
      left: 5000px;
      top: 0px;}
}



/*Layout*/
	.wrapper {
		width: 90%;
		max-width: 1200px;
		margin: 0 auto;
		position: relative;
	}

	.main-body {
		width: calc(70% - 10px);
		padding-right: 20px;
		margin-right: 10px;
		display: inline-block;

	}

	.aside {
		width: calc(30% - 10px);
		padding-left: 20px;
		margin-left: 10px;
		display: inline-block;
		float: right;
	}

	.aside img {
		width: 100%;
	}

/*Navigation*/
	.site-nav {
		max-height: 100px;
		display: flex;
		justify-content: column;
		background: rgb(226, 226, 226);
		box-shadow: 0px 2px 2px #bcbcbc; 
		transition: 3s;
	}

	.site-nav {
		transition: 0.3s ease-in-out;
	}

	.nav {
		display: inline-block;
		align-content: center;
		justify-content: center;
		position: relative;
		bottom: 20px;
	}

	.nav ul {
		display: flex;
		justify-content: column;
		align-items: center;
		color: #444;
	}

	.nav li {
		list-style-type: none;
		margin: 20px 0;
		border-bottom: 1px dotted white;
		padding: 10px;
	}

	.nav a {
		text-transform: bold;
		text-decoration: none;
		color: black;
		font-size: 2rem;
		color: white;
		display: block;
	}

	.nav a:hover {
		color: black;
	}


	.logo {
		max-height: 120px;
		max-width: 120px;
		display: inline-block;
		margin-top: 10px;
	}

	.logo img {
		width: 100%;
		display: inline-block;
	}

	.nav {
		list-style: none;
		margin-top: 40px;
		padding: 0;
		position: fixed;
		right: -40%;
		top: 0;
		width: 40%;
		background: rgba(19, 153, 160, 0.9);
		height: 100vh;
		z-index: 10;
		border-radius: 10px
	}

	.wrapper, .nav {
		transition: 0.5s ease;
	}

	input[type="checkbox"]:checked + .nav {
		right: 0;
	}

	input[type="checkbox"]:checked/* ~ .wrapper*/ {
		left: -30%;
}

	input[type="checkbox"] {
		display: none;
	}

	label[for="toggle"] {
		position: fixed;
		top: 20px;
		left: 90%;
		color: black;
		font-size: 2rem;
		z-index: 20;
	}


/*Header*/
	.sharktank	img {
		width: 100%;
	}

	header img {
		width: 90%;
		margin: 0 auto;
	}
	
	.padded-dropcap {
		padding-right: 5px 5px 0px;
		float: left;
		position: relative;
		top: -0.25em;
		margin-bottom: -0.5em;
		margin-left: -6px;
		margin-right: 2px;
		font-size: 60px;
		color: #e02c5c;
	}

	
	
/*Clinical Trials*/


/*Row Revival*/

	.row-revival-box {
		margin-bottom: 30px;
		padding: 10px;
		border: 2px dotted rgb(19, 153, 160);
		background: #e4f7fb;
	}

	.row-revival-box img {
		width: 100%;
	}
	
	.announcement h3 {
		color: #e02c5c;
	}

	.announcement .container1 {
		display: inline-block;
		width: calc(30% - 10px);
		margin: 5px;
	}

	.announcement .container2 {
		display: inline-block;
		float: right;
		width: calc(70% - 10px);
		margin: 5px;
	}

	.announcement .container2 img {
		width: 70%;
	} 

	section .final-offer-box {
		border: 2px dotted rgb(19, 153, 160);
		padding: 10px;
	}


/*Celebs*/
	.celeb img {
		width: 100%;
	}

	.top-bottom-border {
		border-top: 1px solid grey;
		border-bottom: 1px solid grey;
		margin: 5px 0;
		padding: 10px;
	}


/*Reader Results */

	aside {
		float: right;
	}

	aside .before-and-after {
		background: rgb(226, 226, 226);
		color: #e02c5c;
		padding: 1px;
		text-transform: uppercase;
	}

	.reader-results {
		border-bottom: 2px solid  #e02c5c;
	}

/*Comments*/

	.comment p {
		margin: 5px;
	}

	.name {
		display: inline-block;
		font-size: 1rem;
		padding: 10px;
		color: #3b5998;
		margin: 0px;
	}

	.like {
		padding: 0px 10px;
		color: #3b5998;
		font-size: 0.8rem;
	}

	.reply {
		padding: 0px 10px;
		color: #3b5998;
		font-size: 0.8rem;
	}

	.time {
		color: grey;
		text-decoration: dotted underline;
		padding: 0px 10px;
		font-size: 0.8rem;
	}

	#submit {
		background-color: #3b5998;
		color: white;
		padding: 10px;
		border-radius: 10px;
		border: none;
		display: flex;
		align-items: center;
	}

	#text {
		border-radius: 10px;
		width: 50%;
		min-height: 100px;
	}



/*Footer*/

	footer {
		text-align: center;
		padding: 30px;
		margin-top: 20px;
		background: rgb(226, 226, 226);
		box-shadow: 0px -2px 2px #bcbcbc; 
	}

	footer p {
		font-size: 0.6rem;
	}


/*Media Queries*/

	
	

	@media (max-width: 1000px) {
		.main-body {
			width: 100%;
			padding: 5px;
			margin: 0px;
		}

		.aside {
			width: 100%;
			margin: 0 auto;
			align-content: center;
			padding: 5px;
			margin: 0px;
		}

		.aside img {
			width: 50%;
			display: block;
			margin: 0 auto;
		}
	}

	@media (max-width: 600px) {
		.wrapper {
			width: 95%;
		}	
		
		h1 {
			font-size: 2rem;
		}
		
		.announcement {
			display: block;
		}
		
		.announcement .container1 {
			display: block;
			width: 100%
		}
		
		.announcement .container1 img {
			width: 100%;
		}

		.announcement .container2 {
			display: block;
			width: 100%;
			text align: center;
		}
	}




