@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,700,900');

:root {
	/** primary **/
	--color-white: #ffffff;
	--color-black: #000000;
	--color-danger: #FB4C47;
	--color-green: #035755;
	--box-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

html {
    height: 100%;
}
body {
	background-color: var(--color-white);
	color: #272b41;
    font-family: "Poppins",sans-serif;
	font-size: 0.9375rem;
    height: 100%;
	overflow-x: hidden;
}

/* Utilities */
h1, h2, h3, h4, h5, h6 {
	color: #272b41;
	font-weight: 500;
}
.h1, h1 {
    font-size: 2.25rem;
}
.h2, h2 {
    font-size: 1.875rem;
}
.h3, h3 {
    font-size: 1.5rem;
}
.h4, h4 {
    font-size: 1.125rem;
}
.h5, h5 {
    font-size: 1rem;
}
.h6, h6 {
    font-size: 0.875rem;
}

a {
	text-decoration: none;
    color: #2E3842;
}
a:hover,
a:active,
a:focus {
	outline: none;
	text-decoration: none;
}
input:focus {
	outline: none;
}
input,
button,
a {
	transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
}

/* Background Colors */

.bg-snow {
	background: #fff8f8;
}


/* Buttons */

.btn-primary {
	padding: 8px 40px;
    border-radius: 65px;
    font-size: 14px;
    font-weight: normal;
}

.btn-outlined {
	padding: 8px 40px;
    border-radius: 65px;
    font-size: 14px;
    font-weight: normal;
	border: 1px solid #FB4C47;
	color: #FB4C47;
}

.btn-outlined:hover {
	background-color: #FB4C47;
	border: 1px solid #FB4C47;
	color: var(--color-white);
}

.btn-danger {
	background-color: var(--color-danger);
	box-shadow: 0px 8px 87px rgba(0, 0, 0, 0.1);
	border-radius: 65px;
	color: var(--color-white);
	padding: 12px 50px;
}

.btn-danger:hover {
	background-color: #242424;
}

.img-thumbnail {
	border: none !important;
	max-width: 60%;
}


/* Header */
.header {
	background: #fff8f8;
	padding: 20px;
}

.navbar-fixed {
    box-shadow: var(--box-shadow);
	background-color: var(--color-white);
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
	-webkit-animation: scale-in-ver-top 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-ver-top 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.header-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .header-nav .navbar-header .navbar-brand .navbar-text {
	font-size: 21px;
    font-weight: 600;
}

.main-menu-wrapper .main-nav {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}

.main-menu-wrapper .main-nav > li{
	margin-left: 2.5rem;
}

.main-menu-wrapper .main-nav > li > a {
	font-size: 16px;
	font-weight: 500;
}

.main-menu-wrapper .main-nav > li .active {
	color: var(--color-danger);
	font-weight: 500;
}

/* Sections */

.section {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 500;
}
.section-header .sub-title {
    color: #757575;
    font-size: 16px;
    max-width: 600px;
    margin: 15px auto 0;
}
.section-header p {
    color: #757575;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 15px;
}

/* Page Header */

.page-header {
	background: #f4f3ef;
	padding: 90px 0 90px;
	color: var(--color-white);
}

.sidebar {
	position: sticky;
}

.content {
	position: relative;
}

.sidebar .card .card-content .search-input {
	padding: 25px;
    border-radius: 6px;
}


.sidebar .card .card-content .lab-test-list {
	list-style: circle;
	padding: 10px 20px 0;
}

.sidebar .card .card-content .lab-test-list > li {
	margin: 1.3em 0;
}

/* Grids */
.card {
	box-shadow: var(--box-shadow);
	border: none;
	padding: 30px;
}

/* Home */
.home-banner-grid {
	display: flex;
	justify-content: center;
	align-items: center;
}

.home-banner-grid .home-banner-content > h1 {
	font-style: normal;
	font-weight: bold;
	font-size: 50px;
	line-height: 65px;
	text-transform: capitalize;
	color: var(--color-green);
}

.home-banner-grid .home-banner-content > p {
	font-style: normal;
	font-weight: normal;
	font-size: 18px;
	line-height: 28px;
	text-transform: capitalize;
	color: #4B4F51;
	margin-bottom: 2.5em;
}

.home-banner-grid .home-banner-img {
	width: 600px;
	height: 600px;
}

/* Services */
.services-text {
	text-align: center;
    font-size: 18px;
    font-weight: 500;
	line-height: 24px;
	padding-top: 1em;
	color: var(--color-green);
}

.services-subtext {
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 21px;
	color: #4B4F51;
	display: flex;
	text-align: center;
}

/* Footer */

.footer-wrapper {
	background: var(--color-green);
	padding: 40px;
}

.footer-wrapper .footer-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.footer-wrapper .footer-bottom > span {
	font-size: 14px;
	color: var(--color-white);
}

/* Media Queries */

@media only screen and (max-width: 1024px) {
	.section-header h2 {
		font-size: 25px;
	}

	.section-header .sub-title {
		font-size: 14px;
	}

	.services-text {
		font-size: 16px !important;
		line-height: 21px !important;
	}
	
	.services-subtext {
		font-size: 13px !important;
		line-height: 18px !important;
	}

	.home-banner-grid .home-banner-img {
		width: 435px;
	}
}

@media only screen and (max-width: 768px) {
	.section-header h2 {
		font-size: 25px;
	}

	.section-header .sub-title {
		font-size: 14px;
	}

	.services-text {
		font-size: 16px !important;
		line-height: 21px !important;
	}
	
	.services-subtext {
		font-size: 13px !important;
		line-height: 18px !important;
	}

	.home-banner-grid .home-banner-img {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.main-menu-wrapper .main-nav {
		display: none;
	}

	.section-header h2 {
		font-size: 25px;
	}

	.section-header .sub-title {
		font-size: 14px;
	}

	.services-text {
		font-size: 16px !important;
		line-height: 21px !important;
	}
	
	.services-subtext {
		font-size: 13px !important;
		line-height: 18px !important;
	}

	.home-banner-grid .home-banner-img {
		display: none;
	}
}

@media only screen and (max-width: 320px) {
	.section-header h2 {
		font-size: 25px;
	}

	.section-header .sub-title {
		font-size: 14px;
	}

	.services-text {
		font-size: 14px !important;
		line-height: 18px !important;
	}
	
	.services-subtext {
		font-size: 12px !important;
		line-height: 16px !important;
	}
}


/**
 * ----------------------------------------
 * animation scale-in-ver-top
 * ----------------------------------------
 */
 @-webkit-keyframes scale-in-ver-top {
	0% {
	  -webkit-transform: scaleY(0);
			  transform: scaleY(0);
	  -webkit-transform-origin: 100% 0%;
			  transform-origin: 100% 0%;
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scaleY(1);
			  transform: scaleY(1);
	  -webkit-transform-origin: 100% 0%;
			  transform-origin: 100% 0%;
	  opacity: 1;
	}
  }
  @keyframes scale-in-ver-top {
	0% {
	  -webkit-transform: scaleY(0);
			  transform: scaleY(0);
	  -webkit-transform-origin: 100% 0%;
			  transform-origin: 100% 0%;
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scaleY(1);
			  transform: scaleY(1);
	  -webkit-transform-origin: 100% 0%;
			  transform-origin: 100% 0%;
	  opacity: 1;
	}
  }


