/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
/*===========================================
	MAIN CSS PARTS
============================================*/

/*--- -1. Main page - SCSS REFACTOR -progressing  */

@import "css/main-scss-refactor.css?ver=1.0.1" screen;


/*--- 0. Main page ----*/

@import "css/main.css?ver=1.0.1" screen;

/*--- 1. Cervix Cancer Template ----*/

@import "css/cervixcancer.css?ver=1.0.1" screen;

/*--- 2. Hypertension Template ----*/

@import "css/hypertension.css?ver=1.0.1" screen;


/*===========================================
    GENERAL WIDGET BOX CSS
============================================*/

.widget-box {
	position: relative;
	background: #fff;
	box-shadow: 4px 4px 10px rgba(47, 128, 237, 0.1);
	border-radius: 10px;
	padding: 2rem 3rem;
	height:100%;
	border: 0;
	box-sizing: border-box;
}

@media screen and (min-width: 768px) {

	.widget-box{
		animation: widgetboxdisplay 2s ease-in-out 1s forwards;
		background: transparent;
		box-shadow: none;
	}

	.widget-box>*{
		animation: widgetboxcontent 2s ease-in-out 1s forwards;
		opacity: 0;
		visibility: hidden;
	}

	.widget-box .connectortop,
	.widget-box .connectorright,
	.widget-box .connectorleft,
	.widget-box> .connectorbottom{
		opacity: 1!important;
		visibility: visible!important;
		z-index: 100;
	}


	@keyframes widgetboxdisplay {

		100% {
			background: #fff;
			box-shadow: 4px 4px 10px rgba(47, 128, 237, 0.1);
		}
	}

	@keyframes widgetboxcontent {

		100% {
			opacity: 1;
			visibility: visible;
		}
	}


	.widget-box:after,
	.widget-box:before{
		content: "";
		position: absolute;
		border-radius: 10px;
		width: 100%;
		height: 100%;
		visibility: hidden;
	}

	.widget-box:after {
		bottom: 0;
		padding-right: 5px;
		left: 0;
		border-bottom: 1px solid #74c8b1;
		border-right: 1px solid #74c8b1;
		animation: bottomright 1.2s ease-in-out forwards;

	}

	.widget-box:before {
		top: 0;
		right: 0;
		padding-left: 5px;
		border-top: 1px solid #74c8b1;
		border-left: 1px solid #74c8b1;
		animation: topleft 1.2s ease-in-out forwards;
	}


	@keyframes bottomright {
		0% {
			width: 0;
			height: 0;
			padding-top: 0;
			visibility: visible;
		}
		20% {
			width: 100%;
			height: 0;
			padding-top: 0;
			visibility: visible;
		}
		40% {
			height: 100%;
			width: 100%;
			visibility: visible;
		}
		60% {
			visibility: visible;
		}

		90% {
			visibility: visible;
		}


		100% {
			visibility: hidden;
		}

	}



	@keyframes topleft {
		0% {
			width: 0;
			height: 0;
			padding-bottom: 0;
			visibility: hidden;
		}
		20% {
			width: 0;
			height: 0;
			padding-bottom: 0;
			visibility: hidden;
		}
		40% {
			width: 0;
			height: 0;
			padding-bottom: 0;
			visibility: hidden;
		}
		60% {
			width: 100%;
			height: 0;
			padding-bottom: 0;
			visibility: visible;
		}

		90% {
			width: 100%;
			height: 100%;
			opacity: 1;
			visibility: visible;
		}

		100% {
			width: 100%;
			height: 100%;
			opacity: 0;
			visibility: hidden;
		}
	}

}

@media screen and (max-width: 768px) {
	.widget-box .connectortop,
	.widget-box .connectorright,
	.widget-box .connectorleft,
	.widget-box > .connectorbottom {
		display: none !important;
	}
}

.widget-box h2{
	position: relative;
	font-family: Montserrat, sans-serif;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	font-size: 160%;
	margin-top: .5em;
	margin-bottom: 1.5em;
	color: #333;
}

.widget-box h2:after{
	content: "";
	display: block;
	width: 70px;
	height: 1px;
	position: absolute;
	bottom: -1rem;
}

.widget-box figure{
	margin-left: -3rem;
	margin-right: -3rem;
}

.widget-box img{
	width: 100%;
	height: 25em;
	object-fit: cover;
}

.widget-box p{
	font-family: Poppins, sans-serif;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	font-size: 130%;
}

.widget-box .button{
	box-shadow: 0 3px 3px rgba(116, 200, 177, 0.24);
}

.accordion-box .accordion-wrapper{
	position: relative;
}

.accordion-box .accordion-wrapper .circle{
	position: absolute;
	opacity: 1!important;
	visibility: visible!important;
	left: -1.5em;
	top: 2em;
	z-index: 10;
}


.widget-box>.widget-box{
	display: none;
	padding-left: 0;
	padding-right: 0;
	box-shadow: none;
}

.widget-box .widget-box h2{
	display: none;
}

.widget-box .accordion-btn{
	display: block;
	line-height: 4.5em;
	border-bottom: solid 2px #e7e7e7;
	margin-left: -2em;
	margin-right: -2em;

}

.widget-box .accordion-btn h2{
	margin: 0;

}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/



/* search */

.search-area{
	flex: 20%;
}

#search-button{
	display: block;
    width: 50px;
    height: 50px;
	position: relative;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
	font-size: 2rem;
	color: #333;
}

#search-button:focus {
	outline: none;
}

#search-button svg{
	fill: #EB5757;
	position: absolute;
	left:0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;

}

.search {
	flex: 20%;
    visibility: hidden;
    grid-area: search;
    align-self: start;
    justify-self: end;
    pointer-events: auto;
    display: flex;
    position: relative;
    margin: 2em;
    box-shadow: -1px 0 0 1px rgba(255, 203, 82, 0.75), -1px -1px 0 1px rgba(255, 170, 70, 0.25), -1px 1px 0 1px rgba(255, 170, 70, 0.25), 0 -1px 0 1px rgba(255, 136, 57, 0.5), 0 1px 0 1px rgba(255, 136, 57, 0.5), 1px -1px 0 1px rgba(255, 103, 44, 0.25), 1px 1px 0 1px rgba(255, 103, 44, 0.25), 1px 0 0 1px rgba(255, 69, 31, 0.75);
    border-radius: 30px;
    width: 200px;
}

.search-input {
    padding: 0.75rem 1rem;
    background: none;
    border: 0;
    width:145px;


    font-weight: bold;
}

.search-input:focus {
    outline: none;
}

.search-feedback span {
    flex: none;
    white-space: pre;
}


/* sidebar */
.sidebar {

}
/* footer */
.footer {
	text-align: center;
	font-size: 1.4rem;
	color:#333;
}

/*------------------------------------*\
    UI Elements
\*------------------------------------*/

.button{
	border-radius: 25px;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
	color:#fff;
	width: 130px;
	font-size: 140%;
	line-height: 1.5;
	margin: auto;
	display: block;
	text-align: center;
	padding: 0.5em .2em;
	transition: all .3s ease-in-out;
}

.button:hover,
.button:focus,
.button:active{
	box-shadow: 0;
	color:#fff;
	transform: scale(1.1);
}

.video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Circles*/

.circle{
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background:  #74C8B1;
	box-shadow: 0 0 0 rgba(116, 200, 177, 0.3);
	animation: pulse 3s infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(116, 200, 177, 0.3);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(116, 200, 177, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(116, 200, 177, 0);
	}
}
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(116, 200, 177, 0.3);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(116, 200, 177, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(116, 200, 177, 0);
	}
}


/* Lines*/

.line-horizontal{
	height:0;
	width:1px;
	border-bottom:1px solid #74C8B1;
	-webkit-animation: increase 3s;
	animation:         increase 3s;
	animation-fill-mode: forwards;
	animation-delay: .5s;
}

@keyframes increase {
	100% {
		width: 100%;
	}
}


@-webkit-keyframes increase {
	100% {
		width: 100%;
	}
}

.line-vertical{
	height:1px;
	width:0;
	border-left:1px solid #74C8B1;
	-webkit-animation: increase-vertical 3s;
	animation:         increase-vertical 3s;
	animation-fill-mode: forwards;
	animation-delay: .5s;
}

@keyframes increase-vertical {
	100% {
		height: 100%;
	}
}


@-webkit-keyframes increase-vertical {
	100% {
		height: 100%;
	}
}

/*------------------------------------*\
    Effects
\*------------------------------------*/


/*Parallax*/

@media only screen and (min-width:768px){

	.parallax-container{
	position: relative;
	overflow: hidden;
	}

	.layer {
		position: fixed;
		z-index: 2;
	}

}





/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) and (max-width:479px) {

	/* nav */
	.nav .hamburger-menu {
		margin-top: 1em;
		margin-left: 1em;
	}
}

@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

	.nav {
		position: fixed;
		right: 12vw;
	}



}


@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	width: 100%!important;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:100%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}




