:root {
	--primary-color: #23c686;
	--secondary-color: #ff2b3d;
	--dark-gray: #2d3436;
	--light-gray: #757575;
	--border-color: #f0f0f0;
	--background-color: #f6f6f6;
	--text-color: #2d3436;
}

/*---- Load-In Animations ----*/
.slider .single-slider .nonprofit-badge, .slider .single-slider h1 {
	animation: transitionIn1 1s ease;
	animation-delay: 0s;
	animation-fill-mode: both;
}

.slider .single-slider p {
	animation: transitionIn2 1.25s ease;
	animation-delay: 0.25s;
	animation-fill-mode: both;
}

.slider .single-slider .button .btn-wrapper {
	animation: transitionIn3 1.25s ease;
	animation-delay: 0.25s;
	animation-fill-mode: both;
	display: inline-block;
	margin-right: 10px;
	margin-top: 20px;
}

.hero-image {
	animation: zoomIn 1s ease;
	animation-delay: 0s;
	animation-fill-mode: both;
}

@keyframes transitionIn1 {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes transitionIn2 {
	from {
		opacity: 0;
		transform: translateY(55px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes transitionIn3 {
	from {
		opacity: 0;
		transform: translateY(70px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

body {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #888;
	line-height: 1.6;
}

/* #scrollUp {
	bottom: 15px;
	right: 15px;
	padding: 10px 20px;
	background: var(--dark-gray);
	color: #fff;
	font-size: 25px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	padding: 0;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
}

#scrollUp:hover {
	background: #17191a;
}

/*---- Scroll Animations ----*/
.scroll-animation {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.scroll-up {
  transform: translateY(50px) scale(0.95)
}

.scroll-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-up-early {
  transform: translateY(50px) scale(0.95);
  transition-delay: 0.2s;
}

.scroll-up-early.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-up2 {
  transform: translateY(60px) scale(0.95);
  transition-delay: 0.2s;
}

.scroll-up2.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-up3 {
  transform: translateY(70px) scale(0.95);
  transition-delay: 0.4s;
}

.scroll-up3.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-down {
  transform: translateY(-50px) scale(0.95);
}

.scroll-down.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-left {
  transform: translateX(50px) scale(0.95);
}

.scroll-left.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-left2 {
  transform: translateX(60px) scale(0.95);
  transition-delay: 0.2s;
}

.scroll-left2.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-left3 {
  transform: translateX(70px) scale(0.95);
  transition-delay: 0.4s;
}

.scroll-left3.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-right {
  transform: translateX(-50px) scale(0.95);
}

.scroll-right.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.scroll-zoom-in {
  transform: scale(0.95);
}

.scroll-zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-fade-in {
  opacity: 0;
}

.scroll-fade-in.visible {
  opacity: 1;
}

/*----------------------- Header -----------------------*/
.header {
	background-color: #fff;
	position: relative;
}

.header .header-inner {
	background: #fff;
	z-index: 999;
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.get-quote {
	position: absolute;
	right: 15px;
	margin-top: 15px;
	display: flex;
	gap: 10px;
	white-space: nowrap;
}

.get-quote .btn {
	color: #fff;
	font-weight: 800;
	padding: 10px 25px;
	border-radius: 12px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.get-quote .btn:hover {
	transform: scale(1.05);
}

.get-quote .secondary-btn {
	background-color: var(--background-color);
	color: var(--dark-gray);
	text-align: center;
}

.header .logo {
	float: left;
	margin-top: 23px;
	width: 80%;
	transition: 0.5s ease;
}

.header .logo:hover {
	transform: scale(1.02);
}

.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0px;
	min-height: 0px;
}

.header .nav {
	display: flex;
	list-style: none;
	margin-left: 13%;
	padding: 0;
}

.header .nav li {
	margin-right: 1.5rem;
	float: left;
	position: relative;
}

.header .nav li:last-child {
	margin: 0;
}

.header .nav li a {
	color: var(--dark-gray);
	font-size: 14px;
	font-weight: 800;
	padding: 25px 12px;
	position: relative;
	display: inline-block;
}

.header .nav li a::before {
	position: absolute;
	content: '';
	width: 0%;
	height: 0.5vh;
	background: var(--primary-color);
	display: block;
	margin: auto;
	margin-top: 1.5rem;
	transition: 0.5s;
}

.header .nav li:hover a:before {
	opacity: 1;
	width: 100%;
}

.header .nav li:hover a {
	color: var(--primary-color);
}

.header .nav li a i {
	display: inline-block;
	margin-left: 1px;
	font-size: 13px;
}

/*---- Dropdown Menu ----*/
.header .nav li .dropdown {
	background: #fff;
	width: 230px;
	position: absolute;
	left: -10px;
	top: 4rem;
	z-index: 999;
	border-radius: 5px;
	box-shadow: 0px 3px 5px #3333334d;
	transform-origin: 0 0 0;
	transform: scaleY(0.2);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	opacity: 0;
	visibility: hidden;
}

.header .nav li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}

.header .nav li .dropdown ul {
	display: block;
	padding: 0;
	margin: 0;
}

.header .nav li .dropdown li {
	display: block;
	width: 100%;
}

.header .nav li .dropdown li a {
	padding: 12px 0px;
	margin-left: 12px;
	color: var(--dark-gray);
	display: block;
	font-weight: 800;
	background: transparent;
	transition: all 0.5s ease;
}

.header .nav li .dropdown li a:before {
	display: none;
}

.header .nav li .dropdown li:hover a {
	color: var(--primary-color);
}

/*---- Sticky Header ----*/
.header.sticky .header-inner {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	bottom: initial;
	transition: all 0.5s ease;
	animation: fadeInDown 0.5s both 0.1s;
	box-shadow: 0px 0px 13px #00000054;
}

/*----------------------- Hero Section -----------------------*/
.slider {
	background: #fff;
	position: relative;
	overflow: hidden;
}

.slider .single-slider {
	height: 95vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 50px 0;
	width: 100%;
	position: relative;
}

.slider .single-slider .container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.slider .single-slider .row {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}

.slider .single-slider .col-lg-7 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.slider .single-slider .text {
	text-align: left;
}

.slider .single-slider .nonprofit-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary-color);
	background-color: #fff;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.slider .single-slider h1 {
	font-size: 3.5rem;
	color: var(--dark-gray);
	font-weight: 800;
	white-space: nowrap;
	text-align: left;
}

.slider .single-slider p {
	margin: 1rem 0 0 0;
	font-size: 18px;
	line-height: 160%;
	width: 100%;
	max-width: 600px;
	color: var(--light-gray);
	text-align: left;
	word-break: break-word;
}

.slider .single-slider .button {
	margin-top: 1.5rem;
	position: relative;
	margin-bottom: 2rem;
}

.slider .single-slider .button .btn {
	display: inline-block;
	border-radius: 30px;
	font-size: 1rem;
	background-color: var(--primary-color);
	padding: 12px 24px;
	text-decoration: none;
	color: #fff;
	box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
	z-index: 500;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider .single-slider .button .btn:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider .single-slider .button .btn-wrapper:nth-child(2) .btn {
	background-color: #fff;
	border: 1px solid var(--border-color);
	color: var(--dark-gray);
	transition: all 0.3s ease;
}

.slider .single-slider .button .btn-wrapper:nth-child(2) .btn i {
	margin-left: 5px;
	transition: all 0.3s ease;
}

.slider .single-slider .button .btn-wrapper:nth-child(2) .btn:hover i {
	margin-left: 10px;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
}

/*----------------------- Services -----------------------*/
.features {
	background: #fff;
	margin-top: -20px;
}

.features .section-title h1 {
	font-size: 50px;
	font-weight: 800;
	line-height: 130%;
	color: var(--dark-gray);
	position: relative;
	width: 85%;
	margin: 0 auto;
	text-align: center;
}

.features .single-features {
	text-align: center;
	position: relative;
	padding: 10px 20px;
}

.features .single-features::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
}

.features .single-features.last::before {
	display: none;
}

.features .single-features .signle-icon {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 100%;
	padding: 0;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
	overflow: hidden;
	background-color: var(--primary-color);
}

.features .single-features .signle-icon:hover {
	box-shadow: 0 5px 15px rgba(35, 198, 134, 0.9);
}

.features .single-features .signle-icon i {
	font-size: 50px;
	color: #fff;
	position: absolute;
	left: 50%;
	margin-left: -50px;
	top: 0;
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	border-radius: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.features .single-features .signle-icon i:hover {
	background: var(--primary-color);
	border-color: transparent;
}

.features .single-features h3 {
	padding-top: 50px;
	color: var(--dark-gray);
	font-weight: 800;
	font-size: 21px;
}

.features .single-features p {
	margin-top: 20px;
	font-size: 16px;
}

.single-features a.btn {
  color: #fff;
  margin-top: 25px;
  font-weight: 800;
  display: inline-block;
  position: relative;
  border-radius: 12px;
  background: var(--primary-color);
  padding: 10px 25px;
  text-decoration: none;
  transition: 0.3s ease;
  transform: none;
}

.single-features a.btn i {
  margin-left: 10px;
  display: inline-block;
}

.single-features a.btn:hover, .single-features a.btn:focus {
  cursor: pointer;
  transform: scale(1.05);
}

/*----------------------- Our Mission -----------------------*/
.why-choose {
    background: var(--background-color);
}

.why-choose .left h3 {
    display: block;
    font-size: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    width: fit-content;
    margin: auto 0 15px;
    text-align: center;
}

.why-choose .left h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.why-choose .left p {
    margin-bottom: 35px;
    color: var(--light-gray);
    font-size: 18px;
    line-height: 180%;
}

.why-choose .right {
    text-align: right;
}

.why-choose .right img {
    width: 90%;
    height: auto;
    object-fit: cover;
}

/*----------------------- Testimonials -----------------------*/
.testimonials {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 50px;
}

.testimonials h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.testimonials .carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.testimonials .carousel-inner {
    padding: 1em;
    display: flex;
    overflow: hidden;
}

.testimonials .carousel-item {
    display: block;
    margin-right: 1rem;
}

.testimonials .carousel .card {
    margin: 0;
    background-color: #fff;
    border-radius: 12px;
    border: 1px var(--border-color) solid;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonials .carousel .card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

@media screen and (min-width: 576px) {
    .testimonials .carousel-inner {
        width: 100%;
        margin-inline: auto;
    }
    .testimonials .carousel-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media screen and (min-width: 768px) {
    .testimonials .carousel-item {
        flex: 0 0 calc(33.33% - 1rem);
    }
}

.testimonials .carousel-control-prev, .testimonials .carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .card-body {
    padding: 1.5rem;
}

.testimonials .card-body .card-text {
    font-size: 1rem;
    color: var(--dark-gray);
	margin-bottom: 20px;
}

.testimonials .d-flex.align-items-center {
    align-items: center;
    justify-content: flex-start;
}

.testimonials .d-flex.align-items-center img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.testimonials .card-body h5 {
    font-size: 1rem;
    color: var(--dark-gray) !important;
    text-align: left;
}

.testimonials .card-body span {
    font-size: 0.8rem;
    color: var(--light-gray) !important;
    display: block;
    text-align: left;
	margin-top: -10px;
}

.testimonials .carousel-item:not(:first-child) {
    margin-left: 0.5rem;
}

/*----------------------- Our Mission -----------------------*/
.our-mission {
    background: #fff;
}

.our-mission .left {
    text-align: left;
}

.our-mission .left img {
    width: 90%;
    height: auto;
    object-fit: cover;
}

.our-mission .right h3 {
    display: block;
    font-size: 16px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    width: fit-content;
    margin: auto 0 15px;
    text-align: center;
}

.our-mission .right h1 {
    font-size: 35px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 15px;
}

.our-mission .right p {
    margin-bottom: 35px;
    color: var(--light-gray);
    font-size: 18px;
    line-height: 180%;
}

/*----------------------- Stats -----------------------*/
.stats {
	background: var(--background-color);
	padding-top: 100px;
	padding-bottom: 100px;
}

.stats h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    width: 85%;
    margin: 0 auto;
    text-align: center;
}

.stats .stats-inner {
	position: relative;
	z-index: 9;
}

.stats .single-stats {
	position: relative;
	text-align: center;
	z-index: 3;
	background: #fff;
	transition: all .3s ease 0s;
	border-radius: 12px;
	border: 1px var(--border-color) solid;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.stats .single-stats .inner {
	overflow: hidden;
	position: relative;
	padding: 35px 20px 50px 20px;
	z-index: 2;
	width: 100%;
}

.stats .single-stats:hover {
	transform: translateY(-7px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stats .single-stats .icon {
	font-size: 40px;
	margin-bottom: 10px;
	color: var(--primary-color);
	transition: color 0.3s ease, transform 0.3s ease;
}

.stats .single-stats:hover .icon {
	transform: scale(1.1);
}

.stats .single-stats h1 {
	font-size: 60px;
	display: inline-block;
	color: var(--dark-gray);
	font-weight: 900;
}

.stats .single-stats p {
	color: var(--dark-gray);
	font-size: 20px;
	font-weight: 700;
}

/*----------------------- Resources -----------------------*/
.resources {
	background: #fff;
	padding-top: 100px;
	padding-bottom: 100px;
}

.resources h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    width: 85%;
    margin: 0 auto;
    text-align: center;
	margin-bottom: 75px;
}

.resources .container p {
	font-size: 15px;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.resources .container h1 {
	font-size: 32px;
	color: var(--dark-gray);
	font-weight: 800;
}

/*---- Cards ----*/
.resources .resources-inner {
	position: relative;
	z-index: 9;
}

.resources .resources-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

@media screen and (max-width: 1200px) {
	.resources .resources-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 992px) {
	.resources .resources-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 600px) {
	.resources .resources-grid {
		grid-template-columns: 1fr;
	}
}

.resources .single-resources {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: #fff;
}

.resources-card-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin: 0;
	display: block;
}

.resources .single-resources .inner {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.single-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
}

.resources .single-resources:hover {
	transform: translateY(0px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.resources .single-resources h3 {
	font-size: 12px;
	color: var(--primary-color);
	font-weight: 700;
}

.resources .single-resources h1 {
	font-size: 17px;
	margin-top: 10px;
	color: var(--dark-gray);
	font-weight: 800;
}

.resources .single-resources p {
	font-size: 13px;
	font-weight: 600;
	color: var(--light-gray);
	line-height: 1.5;
	margin-top: 16px;
}

.tag-row {
	display: flex;
	gap: 10px;
}

.resources .single-resources span {
	display: block;
	background: var(--background-color);
	font-size: 13px;
	color: var(--dark-gray);
	padding: 5px 12px;
	border-radius: 5px;
	font-weight: 600;
	width: fit-content;
	margin-top: -15px;
	margin-bottom: 25px;
}

.resources .single-resources a {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: inline-block;
	position: relative;
	border-radius: 12px;
	background: var(--primary-color);
	transition: all 0.3s ease;
	padding: 9px 12px;
	text-decoration: none;
	margin-top: auto;
	align-self: flex-start;
}

.resources .single-resources a i {
	margin-left: 8px;
	transition: margin-left 0.3s ease;
}

.resources .single-resources a:hover {
	padding-right: 13px;
}

.resources .single-resources a:hover i {
	margin-left: 13px;
}

/*----------------------- Call-to-Action -----------------------*/
.call-action {
	background: var(--background-color);
}

.call-action .content {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.call-action .content img {
	width: 20%;
	height: auto;
	display: block;
	margin: 0 auto 30px auto;
}

.call-action h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 130%;
    color: var(--dark-gray);
    position: relative;
    margin: 0 auto;
    text-align: center;
	margin-bottom: 25px;
}

.call-action .content p {
	font-size: 20px;
	color: var(--light-gray);
	position: relative;
	margin: 0 auto 40px auto;
	text-align: center;
}

.call-action a.btn {
	color: #fff;
	margin-top: 15px;
	font-size: 14px;
	font-weight: 800;
	display: inline-block;
	position: relative;
	border-radius: 12px;
	background: var(--primary-color);
	padding: 10px 25px;
	text-decoration: none;
	transition: 0.3s ease;
	transform: none;
}

.call-action a.btn i {
	margin-left: 10px;
	display: inline-block;
}

.call-action a.btn:hover, .single-features a.btn:focus {
	cursor: pointer;
	transform: scale(1.05);
}

.call-action .content .btn:last-child {
	margin-left: 10px;
	margin-right: 0;
}

.call-action .content .second {
	border: 2px solid #fff;
	background: #fff;
	color: var(--dark-gray);
	transition: 0.5s ease;
}

.call-action .content .second i {
	margin-left: 10px;
}

/*----------------------- Newsletter -----------------------*/
.newsletter {
	background: #fff;
}

.newsletter .subscribe-text h6 {
	font-size: 30px;
	margin-bottom: 10px;
	color: var(--dark-gray);
}

.newsletter .subscribe-text p {
	width: 85%;
	font-size: 16px;
	color: var(--light-gray)
}

.newsletter .subscribe-form {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.newsletter .common-input {
	height: 55px;
	width: 350px;
	border: 2px solid var(--border-color);
	color: var(--dark-gray);
	box-shadow: none;
	text-shadow: none;
	border-radius: 5px;
	padding: 0px 25px;
	font-size: 14px;
	background: #fff;
}

.newsletter .btn {
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: inline-block;
	height: 55px;
	line-height: 50px;
	padding: 0;
	width: 120px;
	position: relative;
	margin-left: 10px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 800;
}

.newsletter .btn:before {
	border-radius: 5px;
}

.newsletter .btn:hover {
	box-shadow: none;
}

/*----------------------- Footer -----------------------*/
.footer {
    position: relative;
    z-index: 1;
	background: var(--background-color);
}

.footer .footer-top {
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer .footer-top:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--background-color);
    z-index: 0;
}

/* Headings */
.footer .single-footer h2 {
    color: var(--dark-gray);
    font-size: 20px;
    font-weight: 800;
    padding-bottom: 20px;
    position: relative;
}

/* Text */
.footer .single-footer p {
    color: var(--dark-gray) !important;
}

/* Quick Links */
.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 12px;
}

.footer .single-footer.f-link li:last-child {
    margin: 0;
}

.footer .single-footer.f-link li a {
    display: block;
    color: var(--dark-gray) !important;
    font-weight: 600;
    transition: all 0.4s ease;
}

.footer .single-footer.f-link li a:hover {
    padding-left: 4px;
}

/* Social Icons */
.footer .single-footer .social li {
    display: inline-block;
    margin-right: 10px;
}

.footer .single-footer .social li:last-child {
    margin-right: 0;
}

.footer .single-footer .social li a {
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid var(--dark-gray);
    border-radius: 100%;
    color: var(--dark-gray);
    font-size: 16px;
    display: block;
    transition: all 0.4s ease;
}

.footer .single-footer .social li a:hover {
    color: var(--background-color);
    background: var(--dark-gray);
    border-color: transparent;
}

/* Newsletter */
.footer .single-footer .newsletter-inner {
    margin-top: 20px;
    position: relative;
}

.footer .single-footer .newsletter-inner input {
    background: transparent;
    border: 1px solid var(--dark-gray);
    height: 50px;
    line-height: 42px;
    width: 100%;
    color: var(--dark-gray) !important;
    padding-left: 18px;
    padding-right: 70px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.footer input::placeholder {
    color: var(--dark-gray);
    opacity: 1;
}

.footer .single-footer .newsletter-inner .button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    width: 50px;
    background: var(--dark-gray);
    color: var(--background-color);
    font-size: 25px;
    border: none;
    border-radius: 0 5px 5px 0;
    transition: all 0.4s ease;
}

.footer .single-footer .newsletter-inner .button i {
    transition: all 0.4s ease;
}

.footer .single-footer .newsletter-inner .button:hover i {
    color: var(--light-gray);
}

/* Copyright */
.footer .copyright {
    background: var(--background-color);
    padding: 15px 0;
    text-align: center;
    border-top: 1px dashed var(--dark-gray);
    margin-top: 15px;
}

.footer .copyright .copyright-content p {
    color: var(--dark-gray) !important;
}

.footer .copyright .copyright-content p a {
    color: var(--dark-gray) !important;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    margin-left: 4px;
}

/* Icons inherit parent color */
.footer i {
    color: inherit;
}

/*----------------------- Fun Facts -----------------------*/
.fun-facts {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	border-radius: 20px;
	margin: 120px;
	margin-bottom: 0px;
}

.fun-facts.section {
	padding: 80px 20px;
}

.fun-facts {
	background: url('img/fun-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 20px;
}

.fun-facts .single-fun i {
	position: absolute;
	left: 0;
	font-size: 62px;
	color: #fff;
	height: 70px;
	width: 70px;
	line-height: 67px;
	font-size: 28px;
	text-align: center;
	padding: 0;
	margin: 0;
	border: 2px solid #fff;
	border-radius: 0px;
	top: 50%;
	margin-top: -35px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 50%;
}

.fun-facts .single-fun i:hover {
	color: #1A76D1;
	background: #fff;
	border-color: transparent;
}

.fun-facts .single-fun .content {
	padding-left: 80px;
}

.fun-facts .single-fun span {
	color: #fff;
	font-weight: 800;
	font-size: 30px;
	position: relative;
	display: block;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s eas;
	display: block;
}

.fun-facts .single-fun p {
	color: #fff;
	font-size: 15px;
}

/*----------------------- Services Table -----------------------*/
.pricing-table {
	background: #f5f8ff;
	padding-top: 150px;
	padding-bottom: 150px;
}

.pricing-table .section-title h3 {
	display: block;
	font-size: 16px;
	background: #cddbff;
	color: var(--dark-gray);
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 700;
	width: fit-content;
	margin: 0 auto 15px;
	text-align: center;
}

.pricing-table .section-title h1 {
	font-size: 35px;
	font-weight: 800;
	line-height: 130%;
	color: var(--dark-gray);
	position: relative;
	width: 85%;
	margin: 0 auto;
	text-align: center;
}

.pricing-table .single-table .table-head h1 {
	font-size: 30px;
	font-weight: 800;
	line-height: 130%;
	color: var(--primary-color);
	position: relative;
	text-align: center;
}

.pricing-table .single-table {
	background: var(--dark-gray);
	border: 1px solid var(--border-color);
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 15px 0;
	padding: 45px 35px 30px 35px;
}

.pricing-table .single-table .table-head {
	text-align: center;
}

.pricing-table .single-table .icon i {
	font-size: 65px;
	color: var(--dark-gray);
}

.pricing-table .single-table .title {
	font-size: 17px;
	color: var(--dark-gray);
	margin-top: 30px;
	margin-bottom: 15px;
}

.pricing-table .single-table .amount p {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: #868686;
	margin-left: 8px;
}

.pricing-table .single-table .table-list {
	padding: 10px 0;
	text-align: left;
	margin-top: 30px;
}

.pricing-table .table-list li {
	position: relative;
	color: #666;
	margin-bottom: 18px;
	padding-right: 32px;
}

.pricing-table .table-list i {
	font-size: 7px;
	text-align: center;
	margin-right: 10px;
	position: absolute;
	right: 0;
	height: 16px;
	width: 16px;
	line-height: 16px;
	text-align: center;
	color: var(--dark-gray);
	background: var(--primary-color);
	border-radius: 100%;
	padding-left: 1px;
}

.pricing-table .table-bottom {
	margin-top: 25px;
}

.pricing-table .btn {
	padding: 12px 25px;
	width: 100%;
	color: var(--dark-gray);
}

.pricing-table .btn:before {
	background: var(--dark-gray);
}

.pricing-table .btn:hover {
	color: var(--dark-gray);
}

.pricing-table .btn i {
	font-size: 16px;
	margin-right: 10px;
}

/*----------------------- Blog -----------------------*/
.blog {
	background: #fff;
	padding-top: 150px;
	padding-bottom: 150px;
}

.blog .section-title h3 {
	display: block;
	font-size: 16px;
	background: #cddbff;
	color: var(--dark-gray);
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 700;
	width: fit-content;
	margin: 0 auto 15px;
	text-align: center;
}

.blog .section-title h2 {
	font-size: 35px;
	font-weight: 800;
	line-height: 130%;
	color: var(--dark-gray);
	width: 85%;
	margin: 0 auto;
	text-align: center;
}

.blog .single-news {
	display: block;
	background: #fff;
	position: relative;
	transition: all 0.4s ease;
	box-shadow: 0px 0px 10px #00000014;
	border-radius: 12px;
	overflow: hidden;
}

.blog .single-news:hover {
	transform: scale(1.02);
	background: #f9f9f9;
}

.blog .single-news img {
	width: 100%;
	transition: all 0.4s ease;
}

.blog .single-news .news-head {
	position: relative;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
}

.blog .single-news .news-content {
	text-align: left;
	background: #fff;
	padding: 30px;
}

.blog .single-news .news-body h2 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 10px;
	line-height: 24px;
}

.blog .single-news .news-content p {
	font-size: 13px;
	line-height: 23px;
}

.blog .single-news .news-body .date {
	display: inline-block;
	font-size: 14px;
	font-weight: 800;
	background: var(--primary-color);
	color: #fff;
	padding: 4px 15px;
	border-radius: 3px;
	margin-bottom: 10px;
}

.blog.grid .single-news {
	margin-top: 30px;
}

/*---- Blog Sidebar ----*/
.main-sidebar {
	background: #fff;
	margin-top: 30px;
	background: transparent;
}

.main-sidebar .single-widget {
	margin-bottom: 30px;
	padding: 40px;
	background: #fff;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
}

.main-sidebar .single-widget .title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 30px;
	display: block;
	background: #fff;
	padding-left: 12px;
}

.main-sidebar .single-widget .title::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: -1px;
	height: 100%;
	width: 3px;
	background: var(--primary-color);
}

.main-sidebar .single-widget:last-child {
	margin: 0;
}

.main-sidebar .search {
	position: relative;
}

.main-sidebar .search input {
	width: 100%;
	height: 45px;
	box-shadow: none;
	text-shadow: none;
	font-size: 14px;
	border: none;
	color: #222;
	background: transparent;
	padding: 0 70px 0 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0;
	border: 1px solid #eee;
	border-radius: 5px;
}

.main-sidebar .search .button {
	position: absolute;
	right: 40px;
	top: 40px;
	height: 44px;
	width: 50px;
	line-height: 45px;
	box-shadow: none;
	text-shadow: none;
	text-align: center;
	border: none;
	font-size: 14px;
	color: #fff;
	background: #333;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0 5px 5px 0;
}

.main-sidebar .search .button:hover {
	background: var(--primary-color);
	color: #fff;
}

/*==========================
	Start Portfolio CSS
============================*/
.portfolio {
	background: #FDFDFD;
}

.portfolio .single-pf {
	position: relative;
}

.portfolio .single-pf img {
	height: 100%;
	width: 100%;
}

.portfolio .single-pf:before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: var(--primary-color);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	z-index: 1;
}

.portfolio .single-pf:hover:before {
	opacity: 0.7;
	visibility: visible;
}

.portfolio .single-pf .btn {
	color: var(--primary-color);
	z-index: 3;
	background: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 0px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	height: 48px;
	width: 150px;
	text-align: center;
	line-height: 48px;
	padding: 0;
	font-weight: 500;
	font-size: 14px;
	margin-left: -75px;
	margin-top: -24px;
	border-radius: 4px;
}

.portfolio .single-pf:hover .btn {
	opacity: 1;
	visibility: visible;
}

.portfolio .single-pf .btn:hover {
	color: #fff;
}

.portfolio .owl-nav {
	display: none;
}
/* Slider Nav */
.pf-details .image-slider .owl-nav {
	margin: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -25px;
}

.pf-details .image-slider .owl-carousel .owl-nav div {
	height: 50px;
	width: 50px;
	line-height: 45px;
	background: #fff;
	color: var(--primary-color);
	position: absolute;
	margin: 0;
	border-radius: 100%;
	font-size: 20px;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: 0px 0px 10px #0000001a;
}

.pf-details .image-slider .owl-carousel .owl-nav div:hover {
	color: #fff;
	background: var(--primary-color);
}

.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-prev {
	left: 20px;
}

.pf-details .image-slider .owl-carousel .owl-controls .owl-nav .owl-next {
	right: 20px;
}

.pf-details .image-slider {
	border-radius: 8px 8px 0 0;
}

.pf-details .image-slider img {
	height: 100%;
	width: 100%;
}

.pf-details .date {
	background: var(--primary-color);
	display: block;
	padding: 20px;
	text-align: center;
	border-radius: 0;
	border: none;
	margin: 0;
	margin-top: -1px;
}

.pf-details .date ul li {
	font-size: 16px;
	color: #fff;
	display: inline-block;
	margin-right: 60px;
}

.pf-details .date ul li:last-child {
	margin: 0;
}

.pf-details .date ul li span {
	font-weight: 500;
	display: inline-block;
	margin-right: 5px;
}

.pf-details .body-text {
}

.pf-details .body-text h3 {
	font-size: 30px;
	font-weight: 600;
	color: #333;
	margin-top: 40px;
}

.pf-details .body-text p {
	margin-top: 20px;
}

.pf-details .body-text .share {
	margin-top: 40px;
}

.pf-details .body-text .share h4 {
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
}

.pf-details .body-text .share ul {
	display: inline-block;
	margin-left: 12px;
}

.pf-details .body-text .share ul li {
	display: inline-block;
	margin-right: 10px;
}

.pf-details .body-text .share ul li:last-child {
	margin-right: 0;
}

.pf-details .body-text .share ul li a {
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	border: 1px solid #C8C8C8;
	color: #757575;
	display: block;
	border-radius: 50%;
}

.pf-details .body-text .share ul li a:hover {
	color: #fff;
	border-color: transparent;
	background: var(--primary-color);
}
/*==========================
	End Portfolio CSS
============================*/

/*=========================
	Srart service CSS
===========================*/
.services .single-service {
	margin: 30px 0;
	position: relative;
	padding-left: 70px;
}

.services .single-service i {
	font-size: 45px;
	color: var(--primary-color);
	position: absolute;
	left: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.services .single-service h4 {
	margin-bottom: 25px;
	color: var(--dark-gray);
}

.services .single-service h4 a {
	color: var(--dark-gray);
	font-size: 20px;
	font-weight: 600;
}

.services .single-service h4 a:hover {
	color: var(--primary-color);
}

.services .single-service p {
	color: #868686;
}
/*-- Service Details --*/
.services-details-img {
	margin-bottom: 50px;
}

.services-details-img img {
	width: 100%;
	margin-bottom: 30px;
}

.services-details-img h2 {
	font-weight: 600;
	font-size: 28px;
	margin-bottom: 16px;
}

.services-details-img P {
	margin-bottom: 20px;
}

.services-details-img blockquote {
	font-size: 15px;
	color: #4a6f8a;
	background-color: var(--primary-color);
	padding: 30px 75px;
	line-height: 26px;
	position: relative;
	margin-bottom: 20px;
	color: #fff;
}

.services-details-img blockquote i {
	position: absolute;
	display: inline-block;
	top: 20px;
	left: 38px;
	font-size: 32px;
}

.service-details-inner-left {
	background-image: url("img/signup-bg.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.service-details-inner-left img {
	display: none;
}

.service-details-inner {
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}

.service-details-inner h2 {
	font-weight: 600;
	font-size: 30px;
	margin-bottom: 15px;
	border-left: 3px solid var(--primary-color);
	padding-left: 15px;
}

.service-details-inner p {
	margin-bottom: 15px;
}

.service-details-inner p:last-child {
	margin-bottom: 0;
}
/*=========================
	End service CSS
===========================*/

/*=============================
	Start Testimonials CSS
===============================*/

/*=============================
	End Testimonials CSS
===============================*/

/*==========================
	Start Departments CSS
============================*/
.departments .department-tab .nav {
	margin-bottom: 30px;
	background: transform;
	position: relative;
}

.departments .department-tab .nav li {
	text-align: center;
	margin-right: 54px;
}

.departments .department-tab .nav li a i {
	font-size: 50px;
	color: #868686;
}

.departments .department-tab .nav li a:hover {
	background: transparent;
}

.departments .department-tab .nav li a.active i {
	color: var(--primary-color);
}

.departments .department-tab .nav li a {
	color: #fff;
	margin-top: 20px;
	border: none;
	padding: 0;
	padding-bottom: 20px;
	border-bottom: 2px solid transparent;
	padding: 0 10px 20px 10px;
}

.departments .department-tab .nav li a.active {
	border-color: var(--primary-color);
}

.departments .department-tab .nav li span {
	display: block;
}

.departments .department-tab .nav li .first {
	padding-top: 20px;
	font-size: 20px;
	font-weight: 500;
	color: #868686;
}

.departments .department-tab .nav li a.active .first {
	color: var(--dark-gray);
}

.departments .department-tab .nav li .second {
	font-size: 14px;
	font-weight: 400;
	color: #868686;
	margin-top: 3px;
}

.departments .department-tab .tab-pane .department-left {
}

.departments .department-tab .tab-pane .department-left h3 {
	color: var(--dark-gray);
	font-weight: 600;
	font-size: 26px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.departments .department-tab .tab-pane .department-left h3:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width: 50px;
	background: var(--dark-gray);
}

.departments .department-tab .tab-pane .department-left .p1 {
	color: var(--primary-color);
	font-weight: 500;
	margin-bottom: 18px;
}

.departments .department-tab .tab-pane .department-left p {
	margin-bottom: 20px;
}

.departments .department-tab .tab-pane .department-left .list {
}

.departments .department-tab .tab-pane .department-left .list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 6px;
}

.departments .department-tab .tab-pane .department-left .list li:last-child {
	margin-bottom: 0px;
}

.departments .department-tab .tab-pane .department-left .list li i {
	position: absolute;
	left: 0;
	height: 15px;
	width: 15px;
	line-height: 15px;
	color: #fff;
	background: var(--primary-color);
	text-align: center;
	border-radius: 100%;
	font-size: 8px;
	margin-right: 20px;
	top: 4px;
}

.departments .department-tab .tab-content .tab-text h2 {
	font-size: 18px;
}

.departments .department-tab .tab-content .tab-text p {
	color: #555;
	margin-top: 10px;
}
/*==========================
	End Departments CSS
============================*/



/*========================
	Start Clients CSS
==========================*/
.clients {
	background-image: url('img/client-bg.jpg');
	background-size: cover;
	background-position: center;
	padding: 100px 0px;
	position: relative;
}

.clients .single-clients {
}

.clients .single-clients img {
	width: 100%;
	cursor: pointer;
	text-align: center;
	float: none;
	padding: 0 35px;
}
/*========================
	End Clients CSS
==========================*/

/*====================
	Start Team CSS
======================*/ 
.team {
	background-image: url('img/testi-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.team.single-page {
	background: #fff;
}

.team .section-title h2 {
	color: #fff;
}

.team .section-title p {
	color: #fff;
}

.team .single-team {
	background: #fff;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-top: 30px;
	text-align: center;
	box-shadow: 0px 0px 10px #00000021;
	border-radius: 5px;
	overflow: hidden;
}

.team .t-head {
	position: relative;
	overflow: hidden;
}

.team .t-head::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	content: "";
	z-index: 2;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.team .single-team:hover .t-head::before {
	visibility: visible;
	opacity: 0.5;
}

.team .t-head img {
	width: 100%;
	position: relative;
}

.team .t-icon a {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 46px;
	line-height: 40px;
	opacity: 0;
	visibility: hidden;
	font-weight: 400;
	text-align: center;
	color: #fff;
	border-radius: 0;
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 99;
	margin: -23px 0 0 -75px;
	font-size: 15px;
	background: #2889E4;
	font-size: 13px;
	line-height: 46px;
	padding: 0;
	border-radius: 4px;
}

.team .single-team:hover .t-icon a {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}

.team .t-bottom {
	text-align: center;
	position: relative;
	padding: 0 20px;
	padding: 25px 20px;
}

.team .t-bottom p {
	color: #666;
	font-size: 13px;
	display: block;
	margin-bottom: 4px;
}

.team .t-bottom h2 {
	font-size: 18px;
	font-weight: 500;
	color: var(--dark-gray);
}

.team .t-bottom h2 a:hover {
	color: var(--primary-color);
}
/*-- Doctor Details --*/
.doctor-details-left {
	-webkit-box-shadow: 0px 0px 10px 0px var(--border-color);
	box-shadow: 0px 0px 10px 0px var(--border-color);
	border-radius: 10px;
	overflow: hidden;
}

.doctor-details-item img {
	width: 100%;
	border-radius: 0;
}

.doctor-details-item .doctor-details-contact {
	padding: 50px;
}

.doctor-details-item .doctor-details-contact h3 {
	font-weight: 600;
	font-size: 20px;
	color: var(--dark-gray);
	margin-bottom: 30px;
}

.doctor-details-item .doctor-details-contact .basic-info {
	margin: 0;
	padding: 0;
}

.doctor-details-item .doctor-details-contact .basic-info li {
	list-style-type: none;
	display: block;
	font-weight: 400;
	font-size: 15px;
	color: var(--dark-gray);
	margin-bottom: 10px;
}

.doctor-details-item .doctor-details-contact .basic-info li:last-child {
	margin-bottom: 0;
}

.doctor-details-item .doctor-details-contact .basic-info li i {
	display: inline-block;
	color: var(--primary-color);
	margin-right: 8px;
	font-size: 16px;
	position: relative;
	top: 1px;
}

.doctor-details-area .doctor-details-left .social {
	margin-top: 25px;
}

.doctor-details-area .doctor-details-left .social li {
	display: inline-block;
	margin-right: 10px;
}

.doctor-details-area .doctor-details-left .social li:last-child {
	margin-right: 0px;
}

.doctor-details-area .doctor-details-left .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #C8C8C8;
	text-align: center;
	padding: 0;
	border-radius: 4px;
	display: block;
	color: #757575;
	font-size: 16px;
}

.doctor-details-area .doctor-details-left .social li a:hover {
	color: #fff;
	background: var(--primary-color);
	border-color: transparent;
}

.doctor-details-item .doctor-details-work h3 {
	font-weight: 600;
	font-size: 20px;
	color: var(--dark-gray);
	margin-top: 30px;
}

.doctor-details-item .doctor-details-work .time-sidual {
}

.doctor-details-item .doctor-details-work .time-sidual {
	overflow: hidden;
}

.doctor-details-item .doctor-details-work .time-sidual li {
	display: block;
	color: var(--dark-gray);
	width: 100%;
	margin-bottom: 10px;
}

.doctor-details-item .doctor-details-work .time-sidual li span {
	display: inline-block;
	float: right;
}

.doctor-details-item .doctor-details-work .day-head .time {
	font-weight: 400;
	float: right;
}

.doctor-details-area .doctor-details-right {
	padding-left: 60px;
	padding-top: 70px;
}

.doctor-details-item .doctor-details-biography {
}

.doctor-details-item .doctor-details-biography h3 {
	font-weight: 600;
	font-size: 24px;
	color: #2f60bd;
	margin-bottom: 25px;
	margin-top: 25px;
}

.doctor-details-item .doctor-details-biography p {
	margin-bottom: 0;
}

.doctor-details-item .doctor-details-biography ul {
	margin: 0;
	padding: 0;
}

.doctor-details-item .doctor-details-biography ul li {
	list-style-type: none;
	display: block;
	margin-bottom: 10px;
}

.doctor-details-item .doctor-details-biography ul li:last-child {
	margin-bottom: 0;
}

.doctor-details-item .doctor-name .name {
	font-size: 30px;
	font-weight: 600;
}

.doctor-details-item .doctor-name .deg {
	font-size: 22px;
	margin: 10px 0 5px 0;
}

.doctor-details-item .doctor-name .degree {
	font-size: 16px;
}
/*====================
	End Team CSS
======================*/ 

/* Category List */
.main-sidebar .categor-list {
	margin-top: 15px;
}

.main-sidebar .categor-list li {
	margin-bottom: 10px;
}

.main-sidebar .categor-list li:last-child {
	margin-bottom: 0px;
}

.main-sidebar .categor-list li a {
	display: inline-block;
	color: #333;
	font-size: 14px;
}

.main-sidebar .categor-list li a:hover {
	color: var(--primary-color);
	padding-left: 7px;
}

.main-sidebar .categor-list li a i {
	display: inline-block;
	margin-right: 0px;
	font-size: 9px;
	transform: translateY(-1px);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.main-sidebar .categor-list li a:hover i {
	margin-right: 6px;
	opacity: 1;
	visibility: visible;
}
/* Recent Posts */
.main-sidebar .single-post {
	position: relative;
	border-bottom: 1px solid var(--border-color);
	display: inline-block;
	padding: 17px 0;
}

.main-sidebar .single-post:last-child {
	padding-bottom: 0px;
	border: none;
}

.main-sidebar .single-post .image img {
	float: left;
	width: 80px;
	height: 80px;
	margin-right: 20px;
}

.main-sidebar .single-post .content {
	padding-left: 100px;
}

.main-sidebar .single-post .content h5 {
	line-height: 18px;
}

.main-sidebar .single-post .content h5 a {
	color: var(--dark-gray);
	font-weight: 500;
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
	display: block;
	margin-bottom: 10px;
	margin-top: 0;
}

.main-sidebar .single-post .content h5 a:hover {
	color: var(--primary-color);
}

.main-sidebar .single-post .content .comment li {
	color: var(--background-color);
	display: inline-block;
	margin-right: 15px;
	font-weight: 400;
	font-size: 14px;
}

.main-sidebar .single-post .content .comment li:last-child {
	margin-right: 0;
}

.main-sidebar .single-post .content .comment li i {
	display: inline-block;
	margin-right: 5px;
}
/* Blog Tags */
.main-sidebar .side-tags .tag {
	margin-top: 40px;
}

.main-sidebar .side-tags .tag li {
	display: inline-block;
	margin-right: 7px;
	margin-bottom: 20px;
}

.main-sidebar .side-tags .tag li a {
	background: #fff;
	color: #333;
	padding: 8px 14px;
	border-radius: 0;
	font-size: 13px;
	background: #F6F7FB;
	border-radius: 4px;
}

.main-sidebar .side-tags .tag a:hover {
	color: #fff;
	background: var(--primary-color);
	border-color: transparent;
}
/* News Single */
.news-single {
	padding: 60px 0 90px;
	background: #f8f8f8;
}

.news-single .single-main {
	margin-top: 30px;
	background: #fff;
	padding: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
}

.news-single .news-head {
}

.news-single .news-head img {
	width: 100%;
	height: 100%;
}

.news-single .news-title {
	font-size: 25px;
	margin: 20px 0;
}

.news-single .news-title a {
	color: #252525;
	font-weight: 600;
}

.news-single .news-title a:hover {
	color: var(--primary-color);
}
/* Blog Meta */
.news-single {
	background: #fff;
}

.news-single .meta {
	overflow: hidden;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 15px;
}

.news-single .meta span {
	margin-right: 10px;
	display: inline-block;
}

.news-single .meta span:last-child {
	margin: 0;
}

.news-single .meta span, .news-single .meta span a {
	color: var(--dark-gray);
	font-weight: 400;
}

.news-single .meta span i {
	margin-right: 5px;
	color: var(--primary-color);
}

.news-single .meta-left {
	float: left;
}

.news-single .meta-left .author img {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	margin-right: 12px;
}

.news-single .meta-left .author {
	float: left;
}

.news-single .meta-left span.date {
	margin-top: 10px;
}

.news-single .meta-right {
	float: right;
	margin-top: 10px;
}

.news-single .news-content {
	margin: 20px 0;
}

.news-single .news-content p {
	margin-bottom: 10px;
}

.news-single .news-content p:last-child {
	margin: 0;
}

.news-single .news-text p {
	font-size: 14px;
	margin-bottom: 20px;
}
/* Image Gallery */
.news-single .image-gallery {
	margin-bottom: 20px;
}

.news-single .image-gallery .single-image {
	overflow: hidden;
}

.news-single .image-gallery .single-image:hover img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
}
/* Blockqoute */
.news-single blockquote {
	background-image: url('img/blockqoute-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 30px;
	overflow: hidden;
}

.news-single blockquote::before {
	opacity: 0.9;
}

.news-single .news-text blockquote p {
	color: #fff;
	margin: 0;
	line-height: 26px;
	font-size: 15px;
	position: relative;
}

.news-single .blog-bottom {
	overflow: hidden;
}
/* Social Share */
.news-single .social-share {
	float: left;
}

.news-single .social-share li {
	float: left;
}

.news-single .social-share li span {
	padding-left: 5px;
}

.news-single .social-share li.facebook a {
	background: #5d82d1;
}

.news-single .social-share li.twitter a {
	background: #40bff5;
}

.news-single .social-share li.google-plus a {
	background: #eb5e4c;
}

.news-single .social-share li.linkedin a {
	background: #238cc8;
}

.news-single .social-share li.pinterest a {
	background: #e13138;
}

.news-single .social-share li a {
	padding: 10px 20px;
	display: block;
	color: #fff;
}

.news-single .social-share li a:hover {
	background: #2B343E;
}
/* Prev Next Button */
.news-single .prev-next {
	float: right;
}

.news-single .prev-next li {
	display: inline-block;
	padding: 0;
	margin-right: 5px;
}

.news-single .prev-next li:last-child {
	border: none;
}

.news-single .prev-next li a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	font-size: 16px;
	border: 1px solid #c4c4c4;
	color: #555;
	border-radius: 4px;
}

.news-single .prev-next li a:hover {
	color: #fff;
	background: var(--primary-color);
	border-color: transparent;
}
/* Blog Comments */
.news-single .blog-comments {
	margin-top: 30px;
	background: transparent;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
	padding: 30px;
}

.news-single .blog-comments h2 {
	text-align: left;
	font-size: 18px;
	color: #252525;
	margin-bottom: 20px;
}

.news-single .blog-comments h4 span {
	float: right;
}

.news-single .single-comments {
	overflow: hidden;
	margin-bottom: 30px;
	background: #fff;
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
}

.news-single .single-comments.left .main {
	padding-left: 100px;
	position: relative;
	margin-left: 100px;
}

.news-single .single-comments.left img {
	position: absolute;
	left: 0;
	top: 0;
}

.news-single .single-comments:last-child {
	margin: 0;
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.news-single .single-comments .main {
	overflow: hidden;
}

.news-single .single-comments .head {
	float: left;
	margin-right: 20px;
	text-align: center;
	width: 12%;
}

.news-single .head img {
	width: 80px;
	height: 80px;
	line-height: 80px;
	border-radius: 100%;
	border: 5px solid #f8f8f8;
}

.news-single .single-comments .body {
	float: left;
	width: 85%;
}

.news-single .single-comments.left .body {
	float: noene;
	width: 100%;
}

.news-single .single-comments .comment-list {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #e2e2e2;
	overflow: hidden;
}

.news-single .single-comments .comment-list .body {
	width: 78%;
}

.news-single .single-comments h4 {
	margin: 0 0 5px;
	font-size: 16px;
	text-align: left;
	font-weight: 500;
	color: #252525;
}

.news-single .single-comments .comment-meta {
	margin-bottom: 5px;
}

.news-single .single-comments .meta {
	font-size: 13px;
	color: #555;
	font-weight: 400;
	border: none;
	margin-right: 10px;
	padding: 0;
	margin: 0 10px 0 0;
}

.news-single .single-comments .meta:last-child {
	margin: 0;
}

.news-single .comment-meta span i {
	margin-right: 5px;
}

.news-single .comment-meta span:last-child {
	margin: 0;
}

.news-single .single-comments p {
	font-size: 13px;
}

.news-single .single-comments a {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	padding: 3px 15px;
	display: inline-block;
	margin-top: 10px;
	border-radius: 4px;
	background: var(--primary-color);
	color: #fff;
}

.news-single .single-comments a:hover {
	background: var(--dark-gray);
	color: #fff;
}

.news-single .single-comments a i {
	margin-right: 5px;
}

.news-single .comment-list {
	padding-left: 50px;
}

.news-single .single-comments.login {
	text-align: center;
}

.news-single .single-comments.login i {
	font-size: 20px;
}

.news-single .single-comments.login a {
	text-align: center;
}

.news-single .single-comments.login a:hover {
	color: #353535;
}

.news-single .comments-form {
	margin-top: 30px;
	-webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	-moz-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.10);
	border-radius: 8px;
	padding: 30px;
}

.news-single .comments-form h2 {
	text-align: left;
	font-size: 18px;
	color: #353535;
	margin-bottom: 20px;
}

.news-single .form {
}

.news-single .form-group {
	position: relative;
	display: block;
	margin: 0 0 20px;
}

.news-single .form-group i {
	position: absolute;
	left: 12px;
	top: 17px;
	z-index: 1;
	color: var(--primary-color);
}

.news-single .form-group input {
	width: 100%;
	height: 50px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
	border-radius: 0px;
	padding-left: 34px;
	padding-right: 20px;
	border: none;
	line-height: 50px;
	font-weight: 400;
	font-size: 14px;
	color: var(--dark-gray);
}

.news-single .form-group textarea {
	border: 1px solid var(--border-color);
	width: 100%;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	box-shadow: none;
	border-radius: 0px;
	border: none;
	height: 190px;
	padding: 15px 15px 15px 35px;
	resize: none;
	font-weight: 400;
	font-size: 14px;
	color: var(--dark-gray);
}

.news-single .form-group input, .news-single .form-group textarea {
	border: 1px solid transparent;
	border: 1px solid #eee;
	border-radius: 5px;
}

.news-single .form-group.message i {
	top: 22px;
}

.news-single .form-group .button {
	padding: 10px 30px;
	font-size: 14px;
	text-transform: uppercase;
	display: block;
	border: 0px solid;
	color: #fff;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	padding: 15px 30px;
}

.news-single .form-group .button:hover {
	background: #353535;
}

.news-single .form-group .button i {
	position: relative;
	display: inline-block;
	color: #fff;
	margin-right: 10px;
	padding: 0px;
}

.news-single .form-group.button {
	margin: 0;
	text-align: left;
}

.news-single .form-group.button .btn {
	background: #fff;
	background: var(--primary-color);
	color: #fff;
}

.news-single .form-group.button .btn:hover {
	color: #fff;
}

.news-single .form-group.button .btn i {
	color: #fff;
	position: relative;
	top: 0;
	left: 0;
	margin-right: 10px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
/*===================
	End Blog CSS
=====================*/

/*==========================
	Start Appointment CSS
============================*/
.appointment {
	background: #fff;
	padding-top: 100px;
}

.appointment.single-page {
	background: #fff;
	padding-top: 100px 0;
	padding: 0;
	padding: 100px 0;
}

.appointment.single-page .appointment-inner {
	padding: 40px;
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
}

.appointment.single-page .title {
}

.appointment.single-page .title h3 {
	font-size: 25px;
	display: block;
	margin-bottom: 10px;
	font-weight: 600;
}

.appointment.single-page .title p {
}

.appointment .form {
	margin-top: 30px;
}

.appointment .form .form-group {
}

.appointment .form input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 0;
	border-radius: 4px;
}

.appointment .form textarea {
	width: 100%;
	height: 200px;
	padding: 18px;
	border: 1px solid #eee;
	resize: none;
	border-radius: 4px;
}

.appointment .form-group .nice-select {
	width: 100%;
	height: 50px;
	line-height: 50px;
	border: 1px solid #eee;
	padding: 0px 18px;
	color: #999;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
	font-weight: 400;
}

.appointment .form-group .nice-select::after {
	right: 20px;
	color: #757575;
}

.appointment .form-group .list {
	border-radius: 4px;
}

.appointment .form-group .list li {
	color: #757575;
	border-radius: 0;
}

.appointment .form-group .list li.selected {
	color: #757575;
	font-weight: 400;
}

.appointment .form-group .list li:hover {
	color: #fff;
	background: var(--primary-color);
}

.appointment .appointment-image {
}

.appointment.single-page .button .btn {
	width: 100%;
}

.appointment .button .btn {
	font-weight: 500;
}

.appointment .button .btn:hover {
	color: #fff;
}

.appointment .form p {
	margin-top: 10px;
	color: #868686;
}

.appointment.single-page .work-hour {
	background: var(--primary-color);
	padding: 40px;
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
}

.appointment.single-page .work-hour h3 {
	font-size: 25px;
	display: block;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.appointment.single-page .time-sidual {
	margin-top: 15px;
}

.appointment.single-page .time-sidual {
	overflow: hidden;
}

.appointment.single-page .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 10px;
}

.appointment.single-page .time-sidual li span {
	display: inline-block;
	float: right;
}

.appointment.single-page .day-head .time {
	font-weight: 400;
	float: right;
}
/*==========================
	End Appointment CSS
============================*/

/*====================
   Start Login CSS
======================*/
.login .inner {
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
	overflow: hidden;
}

.login .login-left {
	background-image: url(img/signup-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.login .login-form {
	padding: 50px 40px;
}

.login .login-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}

.login .login-form h2:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: var(--primary-color);
}

.login .login-form p {
	font-size: 14px;
	color: #333;
	font-weight: 400;
	text-align: left;
	margin-bottom: 50px;
}

.login .login-form p a {
	display: inline-block;
	margin-left: 5px;
	color: var(--primary-color);
}

.login .login-form p a:hover {
	color: var(--dark-gray);
}

.login .form {
	margin-top: 30px;
}

.login .form .form-group {
	margin-bottom: 22px;
}

.login .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}

.login .form .form-group.login-btn {
	margin: 0;
}

.login .form button {
	border: none;
}

.login .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width: 100%;
}

.login .form .btn:hover {
	background: var(--primary-color);
	color: #fff;
}

.login .login-form .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
	display: inline-block;
}

.login .login-form .checkbox label {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 20px;
}

.login .login-form .checkbox label:hover {
	cursor: pointer;
}

.login .login-form .checkbox label input {
	display: none;
}

.login .login-form .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 1px solid var(--primary-color);
	border-radius: 100%;
}

.login .login-form .checkbox label::after {
	position: relative;
	content: "";
	width: 7px;
	height: 7px;
	left: -16px;
	top: -15px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 9px;
	background: var(--primary-color);
	border-radius: 100%;
}

.login .login-form .checkbox label.checked::after {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.login .login-form .lost-pass {
	display: inline-block;
	margin-left: 25px;
	color: #333;
	font-size: 14px;
	font-weight: 400;
}

.login .login-form .lost-pass:hover {
	color: var(--primary-color);
}
/*====================
   End Login CSS
======================*/

/*=========================
   Start Register CSS
===========================*/
.register .inner {
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
	overflow: hidden;
}

.register .register-left {
	background-image: url(img/signup-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.register .register-form {
	padding: 50px 40px;
}

.register .register-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}

.register .register-form h2:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: var(--primary-color);
}

.register .register-form p {
	font-size: 14px;
	color: #333;
	font-weight: 400;
	text-align: left;
	margin-bottom: 50px;
}

.register .register-form p a {
	display: inline-block;
	margin-left: 5px;
	color: var(--primary-color);
}

.register .register-form p a:hover {
	color: var(--dark-gray);
}

.register .form {
	margin-top: 30px;
}

.register .form .form-group {
	margin-bottom: 22px;
}

.register .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}

.register .form .form-group.login-btn {
	margin: 0;
}

.register .form button {
	border: none;
}

.register .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width: 100%;
}

.register .form .btn:hover {
	background: var(--primary-color);
	color: #fff;
}

.register .register-form .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
	display: inline-block;
}

.register .register-form .checkbox label {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 20px;
}

.register .register-form .checkbox label:hover {
	cursor: pointer;
}

.register .register-form .checkbox label input {
	display: none;
}

.register .register-form .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 1px solid var(--primary-color);
	border-radius: 100%;
}

.register .register-form .checkbox label::after {
	position: relative;
	content: "";
	width: 7px;
	height: 7px;
	left: -16px;
	top: -15px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 9px;
	background: var(--primary-color);
	border-radius: 100%;
}

.register .register-form .checkbox label.checked::after {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.register .register-form  .terms {
	display: inline-block;
	margin-left: 5px;
	color: var(--primary-color);
}

.register .register-form .terms:hover {
	color: var(--dark-gray);
}
/*=========================
   End Register CSS
===========================*/

/*=====================
   Start Faq CSS
=======================*/
.faq-head h2 {
	margin-bottom: 35px;
	font-weight: 600;
	font-size: 25px;
}

.faq-wrap {
	margin-bottom: 50px;
}

.faq-wrap:last-child {
	margin-bottom: 30px;
}

.accordion {
	padding-left: 0;
	margin: 0;
	padding: 0;
}

.accordion p {
	font-size: 15px;
	display: none;
	padding: 20px 45px 15px 20px;
	margin-bottom: 0;
}

.accordion a {
	font-size: 16px;
	width: 100%;
	display: block;
	cursor: pointer;
	font-weight: 400;
	padding: 15px 0 15px 18px;
	border-radius: 0;
	background: #fff;
	color: #333;
	border: 1px solid #eee;
}

.accordion a:hover {
	color: #fff !important;
	background: var(--primary-color) !important;
}

.accordion a:after {
	position: absolute;
	right: 20px;
	content: "+";
	top: 16px;
	color: #232323;
	font-size: 25px;
	font-weight: 700;
}

.accordion a:hover:after {
	color: #fff !important;
}

.accordion li {
	position: relative;
	list-style-type: none;
	margin-bottom: 30px;
}

.accordion li:first-child {
	border-top: 0;
}

.accordion li:last-child {
	margin-bottom: 0;
}

.accordion li a.active {
	color: #ffffff;
	background-color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.accordion li a.active:after {
	content: "-";
	font-size: 25px;
	color: #ffffff;
}
/*=====================
   End Faq CSS
=======================*/

/*=========================
   Start Contact Us CSS
===========================*/
.contact-us .inner {
	box-shadow: 0px 0px 10px #00000024;
	border-radius: 5px;
	overflow: hidden;
}

.contact-us .contact-us-left {
	width: 100%;
	height: 100%;
}

.contact-us .contact-us-form {
	padding: 50px 40px;
}

.contact-us .contact-us-form h2 {
	position: relative;
	font-size: 32px;
	color: #333;
	font-weight: 600;
	line-height: 27px;
	margin-bottom: 12px;
	padding-bottom: 20px;
	text-align: left;
}

.contact-us .contact-us-form h2:before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 2px;
	width: 50px;
	background: var(--primary-color);
}

.contact-us .contact-us-form p {
	font-size: 14px;
	color: #333;
	font-weight: 400;
	text-align: left;
	margin-bottom: 50px;
}

.contact-us .form {
	margin-top: 30px;
}

.contact-us .form .form-group {
	margin-bottom: 22px;
}

.contact-us .form .form-group input {
	width: 100%;
	height: 50px;
	border: 1px solid #eee;
	padding: 0px 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}

.contact-us .form .form-group textarea {
	width: 100%;
	height: 100px;
	border: 1px solid #eee;
	padding: 18px;
	color: #555;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
}

.contact-us .form .form-group.login-btn {
	margin: 0;
}

.contact-us .form button {
	border: none;
}

.contact-us .form .btn {
	display: inline-block;
	margin-right: 10px;
	color: #fff;
	line-height: 20px;
	width: 100%;
}

.contact-us .form .btn:hover {
	background: var(--primary-color);
	color: #fff;
}

.contact-us .contact-us-form .checkbox {
	text-align: left;
	margin: 0;
	margin-top: 20px;
	display: inline-block;
}

.contact-us .contact-us-form .checkbox label {
	font-size: 14px;
	font-weight: 400;
	color: #333;
	position: relative;
	padding-left: 20px;
}

.contact-us .contact-us-form .checkbox label:hover {
	cursor: pointer;
}

.contact-us .contact-us-form .checkbox label input {
	display: none;
}

.contact-us .contact-us-form .checkbox label::before {
	position: absolute;
	content: "";
	left: 0;
	top: 5px;
	width: 15px;
	height: 15px;
	border: 1px solid var(--primary-color);
	border-radius: 100%;
}

.contact-us .contact-us-form .checkbox label::after {
	position: relative;
	content: "";
	width: 7px;
	height: 7px;
	left: -16px;
	top: -15px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: block;
	font-size: 9px;
	background: var(--primary-color);
	border-radius: 100%;
}

.contact-us .contact-us-form .checkbox label.checked::after {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.contact-us .contact-info {
	margin-top: 50px;
}

.contact-us .single-info {
	background: var(--primary-color);
	padding: 40px 60px;
	height: 150px;
	border-radius: 10px;
	position: relative;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.contact-us .single-info:before {
	position: absolute;
	z-index: -1;
	content: '';
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	height: 90%;
	background: var(--primary-color);
	opacity: 0;
	filter: blur(10px);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}

.contact-us .single-info:hover:before {
	opacity: 0.8;
}

.contact-us .single-info:hover {
	transform: translateY(-5px);
}

.contact-us .single-info i {
	font-size: 42px;
	color: #fff;
	position: absolute;
	left: 40px;
}

.contact-us .single-info .content {
	margin-left: 45px;
}

.contact-us .single-info .content h3 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}

.contact-us .single-info .content p {
	color: #fff;
	margin-top: 5px;
}
/* Google Map */
.contact-us #myMap {
	height: 100%;
	width: 100%;
}
/*=========================
   End Contact Us CSS
===========================*/

/*========================
	Start Error 404 CSS
==========================*/ 
.error-page {
	text-align: center;
	background: #fff;
	border-top: 1px solid #eee;
}

.error-page .error-inner {
	display: inline-block;
}

.error-page .error-inner h1 {
	font-size: 140px;
	text-shadow: 3px 5px 2px #3333;
	color: var(--primary-color);
	font-weight: 700;
}

.error-page .error-inner h1 span {
	display: block;
	font-size: 25px;
	color: #333;
	font-weight: 600;
	text-shadow: none;
}

.error-page .error-inner p {
	padding: 20px 15px;
}

.error-page .search-form {
	width: 100%;
	position: relative;
}

.error-page .search-form input {
	width: 400px;
	height: 50px;
	padding: 0px 78px 0 30px;
	border: none;
	background: #f6f6f6;
	border-radius: 5px;
	display: inline-block;
	margin-right: 10px;
	font-weight: 400;
	font-size: 14px;
}

.error-page .search-form input:hover {
	padding-left: 35px;
}

.error-page .search-form .btn {
	width: 80px;
	height: 50px;
	border-radius: 5px;
	cursor: pointer;
	background: var(--primary-color);
	display: inline-block;
	position: relative;
	top: -2px;
}

.error-page .search-form .btn i {
	font-size: 16px;
}
/*========================
	End Error 404 CSS
==========================*/ 

/*===========================
	Start Mail Success CSS
=============================*/ 
.mail-seccess {
	text-align: center;
	background: #fff;
	border-top: 1px solid #eee;
}

.mail-seccess .success-inner {
	display: inline-block;
}

.mail-seccess .success-inner h1 {
	font-size: 100px;
	text-shadow: 3px 5px 2px #3333;
	color: var(--primary-color);
	font-weight: 700;
}

.mail-seccess .success-inner h1 span {
	display: block;
	font-size: 25px;
	color: #333;
	font-weight: 600;
	text-shadow: none;
	margin-top: 20px;
}

.mail-seccess .success-inner p {
	padding: 20px 15px;
}

.mail-seccess .success-inner .btn {
	color: #fff;
}
/*===========================
	End Mail Success CSS
=============================*/ 



/*===============================
	Start Doctor Calendar CSS
=================================*/
.doctor-calendar-area {
	position: relative;
	z-index: 1;
}

.doctor-calendar-table {
	background-color: #ffffff;
	-webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
	box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
}

.doctor-calendar-table table {
	margin-bottom: 0;
}

.doctor-calendar-table table thead tr th {
	vertical-align: middle;
	text-align: center;
	background-color: var(--primary-color);
	border: none;
	color: #ffffff;
	text-transform: uppercase;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 500;
	padding-top: 17px;
	padding-bottom: 15px;
}

.doctor-calendar-table table tbody tr td {
	vertical-align: middle;
	text-align: center;
	border: 1px solid #eeeeee;
	border-top: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	white-space: nowrap;
	padding-top: 25px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 25px;
}

.doctor-calendar-table table tbody tr td:first-child {
	border-left: none;
}

.doctor-calendar-table table tbody tr td:last-child {
	border-right: none;
}

.doctor-calendar-table table tbody tr td h3 {
	margin-bottom: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-size: 16px;
	font-weight: 600;
}

.doctor-calendar-table table tbody tr td span {
	display: block;
	color: #7d7d7d;
	font-size: 14.5px;
	margin-top: 5px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.doctor-calendar-table table tbody tr td span.time {
	display: inline-block;
	background-color: #dff5e8;
	color: var(--primary-color);
	width: 65px;
	height: 65px;
	border-radius: 50%;
	line-height: 65px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	font-weight: 500;
	font-size: 16px;
}

.doctor-calendar-table table tbody tr td:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.doctor-calendar-table table tbody tr td:hover h3 {
	color: #ffffff;
}

.doctor-calendar-table table tbody tr td:hover span {
	color: #ffffff;
}

.doctor-calendar-table table tbody tr td:hover span.time {
	background-color: #ffffff;
	color: var(--primary-color);
}

.doctor-calendar-table table tbody tr:last-child td {
	border-bottom: none;
}
/*===============================
	End Doctor Calendar CSS
=================================*/

/*=========================
	Start About Us CSS
===========================*/
.about-area {
	position: relative;
	z-index: 1;
}

.about-image {
	width: 100%;
	height: 100%;
	background-image: url(img/about-img.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.about-image img {
	display: none;
}

.about-content {
	max-width: 555px;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 50px;
}

.about-content span {
	display: block;
	margin-bottom: 5px;
	color: var(--primary-color);
	font-size: 17px;
}

.about-content h2 {
	margin-bottom: 0;
	line-height: 1.3;
	font-size: 40px;
	font-weight: 600;
}

.about-content p {
	margin-top: 10px;
	margin-bottom: 0;
}

.about-content ul {
	padding-left: 0;
	list-style-type: none;
	margin-top: 25px;
	margin-bottom: 0;
}

.about-content ul li {
	margin-bottom: 16px;
	position: relative;
	padding-left: 34px;
}

.about-content ul li i {
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	border-radius: 100%;
	background-color: rgba(20, 85, 240, 0.2);
	color: var(--primary-color);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	display: inline-block;
	font-size: 11px;
	position: absolute;
	left: 0;
	top: -2px;
}

.about-content ul li:hover i {
	background-color: var(--primary-color);
	color: #ffffff;
}

.about-content ul li:last-child {
	margin-bottom: 0;
}

.about-content .btn {
	margin-top: 30px;
}
/* Start Our Vision Area CSS */
.our-vision-area {
	position: relative;
	z-index: 1;
	padding-bottom: 70px;
}

.single-vision-box {
	margin-bottom: 30px;
	background-color: #ffffff;
	-webkit-box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
	box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.2);
	padding: 25px 20px;
	position: relative;
	z-index: 1;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	overflow: hidden;
}

.single-vision-box .icon {
	margin-bottom: 20px;
	text-align: center;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 100%;
	background-color: var(--primary-color);
	color: #ffffff;
	font-size: 25px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-vision-box h3 {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	margin-bottom: 0;
	position: relative;
	font-size: 20px;
	font-weight: 700;
}

.single-vision-box p {
	-webkit-transition: 0.5s;
	transition: 0.5s;
	margin-top: 12px;
	margin-bottom: 0;
}

.single-vision-box::before {
	width: 0;
	height: 100%;
	z-index: -1;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--primary-color);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-vision-box::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	border: 10px solid #ffffff;
	left: -80px;
	bottom: -80px;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.15;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.single-vision-box:hover {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

.single-vision-box:hover::before {
	width: 100%;
}

.single-vision-box:hover .icon {
	background-color: #fff;
	color: var(--primary-color);
}

.single-vision-box:hover h3 {
	color: #ffffff;
}

.single-vision-box:hover p {
	color: #ffffff;
}

.single-vision-box:hover::after {
	left: -50px;
	bottom: -50px;
}


/*=========================
	End About Us CSS
===========================*/



/*----------------------- Website Creation -----------------------*/
.website {
	background: #fff;
	padding-top: 30px;
	padding-bottom: 50px;
}

.website .container p {
	font-size: 15px;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.website .container h1 {
	font-size: 32px;
	color: var(--dark-gray);
	font-weight: 800;
}

.website-content h2 {
  font-size: 24px;
  color: var(--dark-gray);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.website-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  /* max-width removed to allow full container width */
}

.website-content ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  font-size: 16px;
  margin-bottom: 30px;
  /* max-width removed to allow full container width */
}

.website-content ul li {
  margin-bottom: 12px;
}

.website-content ul li strong {
  color: var(--primary-color);
}

.website-content .cta {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: var(--dark-gray);
  /* max-width removed to allow full container width */
}

.btn.primary-btn {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn.primary-btn:hover {
  background-color: #0056b3; /* Slightly darker shade on hover */
  color: #fff !important;
}

.website-block {
  margin-bottom: 60px;
}

.website-block h2 {
  font-size: 24px;
  color: var(--dark-gray);
  font-weight: 700;
  margin-bottom: 15px;
}

.website-block p,
.website-block ul {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.website-block ul {
  list-style-type: disc;
  padding-left: 20px;
}

.website-block ul li {
  margin-bottom: 12px;
}

.website-block ul li strong {
  color: var(--primary-color);
}

.image-placeholder {
  background-color: #f0f0f0;
  border: 2px dashed #ccc;
  height: 180px;
  margin-top: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-style: italic;
  font-size: 14px;
}

.cards-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--primary-color);
  color: white;
  padding: 20px 25px;
  border-radius: 8px;
  flex: 1 1 150px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.cta-block .cta {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--dark-gray);
}

/*----------------------- Library -----------------------*/
.library {
	background: #fff;
	padding-top: 30px;
	padding-bottom: 50px;
}

.library .container p {
	font-size: 15px;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.library .container h1 {
	font-size: 32px;
	color: var(--dark-gray);
	font-weight: 800;
}

/*---- Dropdown ----*/
.library-dropdown {
	position: relative;
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 35px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
}

.dropdown-toggle {
	background-color: #fff;
	color: var(--dark-gray);
	padding: 10px 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.dropdown-menu {
	position: absolute;
	top: 110%;
	left: 0;
	background-color: #fff;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
	padding: 10px 0;
	display: none;
	z-index: 1000;
	min-width: 180px;
}

.dropdown-menu li {
	padding: 0;
}

.dropdown-menu li a {
	display: block;
	padding: 10px 16px;
	text-decoration: none;
	color: var(--dark-gray);
	font-weight: 600;
	transition: background 0.2s;
	font-size: 14px;
}

.dropdown-menu li a:hover {
	background-color: var(--background-color);
}

.library-dropdown.active .dropdown-menu {
	display: block;
}

/*---- Cards ----*/
.library .library-inner {
	position: relative;
	z-index: 9;
}

.library .library-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

@media screen and (max-width: 1200px) {
	.library .library-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 992px) {
	.library .library-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 600px) {
	.library .library-grid {
		grid-template-columns: 1fr;
	}
}

.library .single-library {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: all 0.3s ease;
	border: 1px solid var(--border-color);
	border-radius: 8px;
	background: #fff;
}

.library-card-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	margin: 0;
	display: block;
}

.library .single-library .inner {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.single-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 100%;
}

.library .single-library:hover {
	transform: translateY(0px);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.library .single-library h3 {
	font-size: 12px;
	color: var(--primary-color);
	font-weight: 700;
}

.library .single-library h1 {
	font-size: 17px;
	margin-top: 10px;
	color: var(--dark-gray);
	font-weight: 800;
}

.library .single-library p {
	font-size: 13px;
	font-weight: 600;
	color: var(--light-gray);
	line-height: 1.5;
	margin-top: 16px;
}

.tag-row {
	display: flex;
	gap: 10px;
}

.library .single-library span {
	display: block;
	background: var(--background-color);
	font-size: 13px;
	color: var(--dark-gray);
	padding: 5px 12px;
	border-radius: 5px;
	font-weight: 600;
	width: fit-content;
	margin-top: -15px;
	margin-bottom: 25px;
}

.library .single-library a {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	display: inline-block;
	position: relative;
	border-radius: 12px;
	background: var(--primary-color);
	transition: all 0.3s ease;
	padding: 9px 12px;
	text-decoration: none;
	margin-top: auto;
	align-self: flex-start;
}

.library .single-library a i {
	margin-left: 8px;
	transition: margin-left 0.3s ease;
}

.library .single-library a:hover {
	padding-right: 13px;
}

.library .single-library a:hover i {
	margin-left: 13px;
}