@import url("https://fonts.googleapis.com/css?family=Exo:500,600,700|Roboto&display=swap");


:root {
	--template-color: #3d9be9;
	--hover-color: #7ec5ff;
	--main-header-text-color: #3f3f3f;
	--template-bg-color: #f6fbff;
	--navlink-hover-color: #b5deff;
	--white: #ffffff;
}

html {
	overflow-x: hidden;
	font-size: 14px;
}

* {
	margin: 0;
	padding: 0;
}

body {
	overflow-x: hidden;
	line-height: 1.6;
	font-family: "Roboto", sans-serif;
	-webkit-font-smoothing: antialiased;
	color: #3f3f3f;
	font-weight: 400;
}

section {
	padding: 60px 0px 60px 0px;
}

.homepage-section {
	padding-bottom: 20px;
}

.section-bottom {
	padding-bottom: 150px;
}

.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	color: var(--main-header-text-color);
	text-transform: uppercase;
}

.section-title h4 {
	color: var(--main-header-text-color);
	text-transform: uppercase;
}


.section-title p {
	font-size: 12px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Exo", sans-serif;
	font-weight: 700;
	color: var(--main-header-text-color);
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/**** Loading icon *****/
.contianer-loader {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader,
.loader:before,
.loader:after {
	border-radius: 50%;
	width: 2.5em;
	height: 2.5em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out;
}

.loader {
	color: var(--template-color);
	font-size: 0.7rem;
	margin: 80px auto;
	position: relative;
	text-indent: -9999em;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

.loader:before,
.loader:after {
	content: '';
	position: absolute;
	top: 0;
}

.loader:before {
	left: -3.5em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.loader:after {
	left: 3.5em;
}

@-webkit-keyframes load7 {

	0%,
	80%,
	90% {
		box-shadow: 0 2.5em 0 -1.3em;
	}

	40% {
		box-shadow: 0 2.5em 0 0;
	}
}

@keyframes load7 {

	0%,
	80%,
	90% {
		box-shadow: 0 2.5em 0 -1.3em;
	}

	40% {
		box-shadow: 0 2.5em 0 0;
	}
}

/* Links */

a {
	color: var(--main-header-text-color);
	text-decoration: none;
	transition: all .35s ease;
}

a:focus,
a:hover {
	color: var(--template-color);
	text-decoration: none;
}

a:focus {
	outline: none;
}

/* Button */

.main-button {
	width: 100%;
	text-align: center;
}

.back-button {
	width: 100%;
	text-align: left;
	margin-top: 5vh;
}

.login-button {
	text-align: center;
	margin: auto;
}

.login-button .btn-main-2 {
	font-size: 1.125rem;
}

.btn.btn-icon i {
	border-left: 1px solid rgba(255, 255, 255, 0.09);
	padding-left: 15px;
}

.back-button .btn.btn-icon i {
	padding-left: 0;
	padding-right: 15px;
}

.btn-round-full {
	border-radius: 50px;
}

.btn-main-2 {
	background: rgba(255, 255, 255, 0);
	color: #3d9be9;
	border-color: var(--template-color);
	font-size: 1.3rem;
	border-radius: 0px;
}

.btn-inv {
	border-color: white;
	color: white;
}

.btn-main-2:hover {
	background: #3d9be9;
	color: #fff;
	border-color: #3d9be9;
}

.btn-inv:hover {
	color: var(--template-color);
	background: white;
}

.btn-solid-border:hover.btn-icon i {
	border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.btn-solid-border.btn-icon i {
	border-left: 1px solid rgba(0, 0, 0, 0.09);
}

/* Navbar */

.navbar-toggler {
	color: white;
}

.navbar-custom {
	background-color: var(--template-color);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);

}

.navbar-bg {
	background-color: var(--template-color);
}

.navbar-brand .header-logo {
	position: absolute;
	max-width: 100%;
	height: 6rem;
	left: 40px;
	top: 0px;
}

.navbar-brand .log-title {
	color: #222;
	font-family: "Exo", sans-serif;
	font-weight: 700;
	padding: 10px 0px;
	font-size: 1.25rem;
	text-transform: capitalize;
}

.navbar-nav .nav-item>.nav-link {
	font-weight: 400;
	padding: 10px 25px;
	color: white;
	font-family: "Exo", sans-serif;
	text-transform: capitalize;
	text-align: center;
	font-size: 1.125rem;
	transition: all .25s ease;
}

.navbar-nav .nav-item>.nav-link:hover,
.navbar-nav .nav-item>.nav-link.active {
	color: var(--navlink-hover-color);
	transition: 0.3s ease white;
	background-color: transparent;
}

.navbar-nav .nav-item>.nav-link {
	width: 100%;
}

.drp-arrow {
	margin-left: 10px;
}

.dropdown {
	text-align: center;
	cursor: pointer;
	display: flex;
	align-self: center;
}

.dropdown-content {
	position: absolute;
	display: none;
	width: 250px;
	background-color: var(--template-color);
}

.dropdown:hover .dropdown-content {
	display: flex;
	flex-direction: column;
}

.banner-headline-block2 {
	margin-top: 100px;
}

.dropdown-content a {
	list-style-type: none;
	text-align: left;
	text-transform: none;
	width: 100%;
	padding: 10px 20px 10px 20px;
	transition: all .35s ease;
	font-size: 1rem;
	color: white;
	text-decoration: none;
}

.dropdown-content .active,
.dropdown-content a:hover {
	color: var(--navlink-hover-color);
}


/* Headers */

.header-container {
	position: relative;
	text-align: center;
}

.page-header {
	padding-top: 22%;
}

.page-header h1 {
	font-size: 2.5rem;
	text-transform: none;
}

.pagetop-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding-bottom: 0px;
	/*background-color: rgba(255, 255, 255, 0.3);*/
	background: linear-gradient(0deg, var(--template-bg-color) 3%, #f4faffb2 60%, rgb(255, 255, 255, 0.2) 90%);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);

}

/* Banner */

.banner {
	position: relative;
	overflow: hidden;
	background-color: var(--template-bg-color);
	/* background: url("../image/slider/slider-04.png") no-repeat; */
	background: url("../image/slider/01.jpg") no-repeat;
	background-size: cover;
	min-height: 700px;
	background-position: 50% 50%;
}

.banner-headline {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 700px;
	margin-top: 200px;
}

.home-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(255, 255, 255, 0.356) 68%, white 100%);
	backdrop-filter: saturate(90%);
	-webkit-backdrop-filter: saturate(90%);

}

.homepage-header {
	font-weight: 600;
	font-size: 3.1rem;
}

.banner-info {
	font-size: 1.2rem;
	color: #3f3f3f;
	font-weight: 400;
	line-height: 1.8;
	position: relative;
	bottom: 2px;
}

.banner-info h5 {
	font-weight: 400;
	margin-bottom: 0;
}

.banner-info span {
	font-size: 1.6rem;
}

#filler {
	height: 33px;
}

.letter-spacing {
	letter-spacing: 1.8px;
	color: #3D9BE9;
	font-size: 20px;
}

.divider {
	width: 120px;
	height: 2px;
	/*background: linear-gradient(90deg, transparent 0%, #7fbcef 35%, #7fbcef 65%, transparent);*/
	background-color: var(--template-color);
}


/* Stats Block*/

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
	background-color: none;
}

.nav-pills .nav-link {
	color: #555;
}

/* With arrow tabs */

.with-arrow .nav-link.active {
	position: relative;
}

.with-arrow .nav-link.active::after {
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #3D9BE9;
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
}

.lined .nav-link {
	border: none;
	border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
	border: none;
	border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
	background: none;
	color: #000;
	border-color: #3D9BE9;
}

.centers-map {
	width: 100%;
	height: 600px;
}

.cta-section {
	margin-bottom: 0px;
	padding-top: 100px;
	background-color: var(--template-bg-color);
}

.cta-numbers {
	margin-bottom: 80px;
}

.cta:before {
	position: absolute;
	content: "";
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.counter-stat {
	text-align: center;
	padding: 50px 0px 70px 0px;
	position: relative;
}

.counter-stat i {
	display: block;
	color: rgb(103 155 211 / 31%);
	font-size: 4.375rem;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	-webkit-transform: translateY(25px);
	transform: translateY(25px);
	/* z-index: -1; */
}

.counter-stat span {
	font-size: 4.375rem;
	color: var(--template-color);
}

.counter-stat p {
	margin-bottom: 0px;
	color: var(--main-header-text-color);
}


/* Login */

.login-bg {
	position: relative;
	overflow: hidden;
	background: url("../image/slider/slider-05.jpg") no-repeat 50% 50%;
	background-size: cover;
	padding-bottom: 20vh;
}

.login-container {
	margin: auto;
}

.login-form {
	width: 100%;
	align-self: center;
	margin: auto;
	margin-top: 10vh;
	max-width: 500px;
}

.login-form h4 {
	margin-bottom: 5vh;
}

.form-control {
	margin-left: 0;
}


/* About homepage */

.about {
	padding-top: 50px;
}

.about .about-title {
	margin-bottom: 20px;
}

#about .about-img img {
	max-width: 100%;
}

.about-sub-title {
	width: 100%;
	margin: auto;
	margin-top: 80px;
	text-align: left;
}

.content-padding .about-sub-title p {
	font-size: 1.2rem;
	line-height: 1.8;
}

/* Stats page*/

.stats-bg-img {
	position: relative;
	overflow: hidden;
	background: url("../image/slider/slider-03.jpg") no-repeat 50% 50%;
	background-size: cover;
}

.nav-tabs .nav-link {
	margin-top: 15px;
	font-size: 1.2rem;
}

.stat-picker {
	background-color: var(--template-bg-color);
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 30px 0px 30px 50px;
	cursor: pointer;
}

.stat-picker img {
	width: 3rem;
	margin-right: 30px;
}

.stat-picker-section {
	padding-top: 50px;
}

.stat-picker:hover {
	background-color: #d5edff;
}

.stat-picker-container {
	padding: 5px;
}

.stat-number-section {
	padding: 50px;
	margin: 30px 0px 100px 0px;
}

.stat-number {
	font-size: 2.5rem;
	margin: 50px 15px 40px 0px;
}

.stat-number::after {
	content: '';
	display: block;
	background: linear-gradient(90deg, var(--template-color) 0%, white 40%);
	height: 2px;
	width: 100%;
}

.stat-number h2 {
	color: var(--template-color);
	padding-right: 50px;
	font-size: 3rem;
	display: inline;
}

.stat-number h3 {
	font-size: 1.875rem;
	display: block;
}

.stat-number-subtext {
	display: inline;
	text-align: right;
	width: 20%;
	padding: 20px;
	margin-top: 20px;
}

.stat-number-subtext p {
	font-size: 1.125rem;
}

.acc-plot-container {
	margin: 0px 50px 50px 50px;
}

.acc-plot-container h5 {
	font-size: 15px;
}

.acc-plot-container img {
	text-align: center;
}

.accrual-fig {
	object-fit: contain;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;

}

.map {
	margin: 100px 0px;
}

.acc-plot {
	margin: auto;
}

.line {
	fill: none;
	stroke: var(--template-color);
	stroke-width: 2px;
}

.axis {
	font-size: 0.875rem;
}



/* About page */

.about-page-title {
	padding: 120px 0px 70px 0px;
	position: relative;
}

.overlay:before {
	content: "";
	position: absolute;
	text-align: center;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	background: white;
}

.about-bg-img {
	position: relative;
	overflow: hidden;
	background: url("../image/slider/04.jpg") no-repeat 50% 50%;
	background-size: cover;
}

.about-padding {
	padding: 80px 0px 50px;
}

.about-padding h1 {
	text-align: center;
	text-transform: capitalize;
	color: var(--main-header-text-color);
}

.title-color {
	color: var(--main-header-text-color);
}


.about-content-block .section-title {
	margin-bottom: 35px;
}

.teams {
	overflow: hidden;
}

.teams .shadow-effect {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #ECECEC;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
}


#customers-teams .item {
	height: 450px !important;
	text-align: center;
	padding: 50px;
	margin-bottom: 80px;
	opacity: .2;
	-webkit-transform: scale3d(0.8, 0.8, 1);
	transform: scale3d(0.8, 0.8, 1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#customers-teams .item p {
	font-size: 0.75rem;
}

#customers-teams .item h2 {
	font-size: 1.75rem !important;
	font-weight: 500 !important;
}

#customers-teams .item .title {
	font-size: 0.875rem;
}

#customers-teams .item h5 {
	font-size: 0.937rem !important;
	font-weight: 700 !important;
}

#customers-teams .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}

.teams .owl-carousel .owl-item .img-circle {
	transform-style: preserve-3d;
	max-width: 170px;
	margin: 0 auto 17px;
	transition: transform .5s;
}

#customers-teams .owl-item {
	background-color: var(--template-bg-color);
}

.owl-carousel {
	margin-bottom: 50px;
}

.teams .owl-carousel .owl-item .img-circle:hover {
	transform: scale(0.9);
}

.img-circle {
	max-width: 170px;
}

#customers-teams.owl-carousel .owl-dots .owl-dot.active span,
#customers-teams.owl-carousel .owl-dots .owl-dot:hover span {
	background: #3d9be9;
	transform: translate3d(0px, -50%, 0px) scale(0.7);
}

#customers-teams.owl-carousel .owl-dots {
	display: inline-block;
	width: 100%;
	text-align: center;
}

#customers-teams.owl-carousel .owl-dots .owl-dot {
	display: inline-block;
}

#customers-teams.owl-carousel .owl-dots .owl-dot span {
	background: #3d9be9;
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	margin-top: 50px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
	outline: none;
	border-radius: 50% !important;
}

.owl-dot,
.owl-dot:active,
.owl-dot:focus {
	outline: 0 !important;
}

#teamsocial {
	align-items: center;
	justify-content: center;
	display: flex;
	margin: 10px auto;
	margin-top: 20px;
}

#teamsocial .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0 0.5rem;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

#teamsocial .social-icon:hover {
	font-size: 2rem;
	width: 50px;
	height: 50px;
}

#team {
	background-color: var(--template-bg-color);
}

.team-member {
	text-align: center;
	padding: 15px;
}

.team-member h2{
    font-size: 1.9rem;
    padding-top: 12px;
}

.center-block {
	background-color: var(--template-bg-color);
	padding: 50px;
}

.center-block img {
	width: 100px;
}

.center-person {
	text-align: center;
}

.center-address p {
	padding-top: 10px;
}

.center-info {
	padding-top: 60px;
	display: none;
}

.center-country {
	margin-bottom: 50px;
}

.center-stats {
	margin-bottom: 50px;
}

.center-stats-row {
	width: 80%;
	display: flex;
	justify-content: space-between;
	margin: 0;
}

.center-stats-row p {
	margin-bottom: 5px;
	margin-top: 15px;
}

.center-stats-number {
	text-align: end;
}

.center-stats-divider {
	height: 1px;
	width: 85%;
	background-color: var(--template-color);
}

.center-list {
	margin-top: 60px;
	padding: 50px;
	background-color: var(--template-bg-color);
}

.center-list h4 {
	margin-bottom: 20px;
}

.center-list ul {
	list-style-type: none;
}

.center-list li {
	margin: 10px 0px 10px 0px;
}


/* About page */

.collapsible {
	background: white;
	border: none;
	color: var(--main-header-text-color);
	cursor: pointer;
	padding: 15px 80px 0px 25px;
	width: 100%;
	outline: none;
	border-left: solid transparent 2px;
	text-align: left;
}

.collapsible p {
	font-size: 1rem;
	display: inline;
}

.collapsible-icon {
	margin-right: 10px;
}

.collapsible::after {
	content: '';
	display: block;
	justify-self: flex-end;
	background-color: var(--template-bg-color);
	height: 2px;
	width: 100%;
	margin-top: 15px;
}

.collapsible-text {
	text-align: left;
}

.collapsible:hover {
	background-color: var(--template-bg-color);
}

.collapsible-active,
.collapsible:hover {
	border-left: solid var(--template-color) 2px;
	background-color: var(--template-bg-color);
}

.collapsible-active p,
.collapsible:hover p,
.collapsible-active~.collapse-icon,
.collapsible:hover~.collapse-icon {
	color: var(--template-color);
}

.content {
	display: none;
}

.content img {
	margin: 40px 0px;
}

.content-block {
	padding: 30px;
	border: solid var(--template-color) 1px;
	height: 100%;
}

.content-block-fixed-height {
	height: 150px;
}

.content-block-divider {
	height: 1px;
	margin-bottom: 16px;
	background-color: var(--template-color);
}

.content-block-header {
	font-size: 1.3rem;
}

.info-page-title {
	position: relative;
	padding: 60px 0px 80px;
}

.info-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.info-bg-img {
	position: relative;
	overflow: hidden;
	background: url(../image/slider/slider-01.jpg) no-repeat;
	background-size: cover;
}

.content-padding {
	padding: 20px 0px 50px;
	text-align: center;
}

.content-padding h1 {
	text-transform: capitalize;
	color: var(--white);
}

.content-padding p {
	margin: 20px 0px;
	color: #3f3f3f;
	font-size: 1.125rem;
	line-height: 30px;
}

.login-info {
	background-color: var(--template-bg-color);
	padding-top: 50px;
	padding-bottom: 25px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
}

.info-col-block {
	padding: 10px 30px;
}

.info-col-block h3 {
	margin: 0px 0px 40px 0px;
}

.info-col-section {
	margin-bottom: 80px;
}

.info-col-block ul {
	padding: 0px 0px 0px 0px;
}

.info-col-block ol {
	padding: 0px 0px 0px 50px;
}

.protocol-block a {
	text-decoration: underline;
}

.protocol-block img {
	width: 60%;
}

.figure {
	text-align: center;
}

.figure-img {
	width: 1000px;
}

/* Funding */

.funding-bg {
	background-color: #ffffff;
}

.fund-block-img {
	text-align: center;
}

.fund-block-img img {
	/* height: 120px; */
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fund-block-img .img-04 {
	margin-top: 13px;
	object-fit: cover;
}

.fund-block-img .img-05 {
	margin-top: 22px;
}

.fund-block-img .img-06 {
	margin-top: 32px;
}

.fund-block-img .img-07 {
	margin-top: 60px;
}

/* Media homepage */

.blog-block {
	overflow: hidden;
	transition: all .3s ease 0s;
	margin-bottom: 15px;
}

.blog-block img {
	margin-bottom: 10px;
}

.blog-text {
	padding: 10px;
	text-align: justify;
    hyphens: auto;
    word-spacing: -0.05em;
}

.blog-text .blog-link {
	font-size: 18px;
}

.blog-text p > a {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
}
.blog-text .blog-desc {
	font-size: 14px;
}

.blog-text .blog-date span{
	font-size: 13px;
	font-weight: 600;
	color: #7e7c7c;
}

.blog-block .read-more{
	color: #635CDB;
}


/* Media page */

.media-block {
	padding: 5px 0px;
	margin: 5px 0px;
	align-items: center;
}

.media-block img {
	width: 55px;
	height: auto;
}

.media-card-list {
	margin-top: .5rem;
	margin-bottom: .5rem
}

.media-pub-block {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
    margin: 15px 0px 0px 0px;
    padding: 15px 0px 0px 0px;
	background-color: #fff;
	box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12)
}

.media-pub-block .custom-control-inline {
	display: inline-grid;
	/* margin-right: 1rem;
	position: relative;
    min-height: 1.5rem;
    padding-left: 1.5rem; */
	width: 10%;
}

.media-pub-block .custom-control-inline span {
    float: right;
    padding-top: 5px;
    text-align: center;
}

.media-pub-block .custom-control-inline span.publication-title {
	color: #2B91BA;;
	text-transform: capitalize;
	font-weight: bold;
	font-size: 13px;
}

.media-pub-block .custom-control-inline span.publication-date {
	color: #697582;
	font-weight: 500;
	font-size: 12px;
}

.media-pub-block .almetric-img-fluid {
	width: 55px;
	height: auto;
	margin: 0rem 1rem 1rem 1rem;
}

.media-pub-block .media-body{
	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	column-gap: 10px;
}

.media-pub-block .media-body p{
	font-size: 16px;
	margin-bottom: 0px;
	line-height: 2;
}

.media-pub-block .media-body .twitter-btn{
	font-size: 0.8em;
	padding: .25em !important;
}

.media-pub-block .media-body .disabled{
	pointer-events: none;
	cursor: default;
	opacity: 0.6;
	background-color: #cccccc;
	color: #666666;
	border: #555;
}

.media-bg-img {
	position: relative;
	overflow: hidden;
	background: url("../image/slider/slider-06.jpg") no-repeat 50% 50%;
	background-size: cover;
}

.main-blog-block {
	overflow: hidden;
	transition: all .3s ease 0s;
	display: flex;
	margin-bottom: 30px;
	vertical-align: text-top;
	padding: 15px;
}

.main-blog-block .blog-text {
	padding-top: 0;
}

.main-blog-block .img-fluid {
	height: 40vh;
}

.pres-block {
	border-bottom: solid var(--template-color) 10px;
	min-height: 180px;
	max-height: 250px;
	background-image: url(../image/presentation/rm309-adj-03.jpg);
	background-size: cover;
	margin-bottom: 50px;
	color: var(--main-header-text-color);
	padding: 20px;
	font-family: "Exo", sans-serif;
	font-weight: 400;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-items: center;
}

.small-font {
	font-size: 1.15rem;
}

.pres-block b{
	display: contents;
}

.pres-block:hover {
	background: var(--template-color);
	color: white;
}




/* Patients */

.patients-bg-img {
	position: relative;
	overflow: hidden;
	background: url("../image/slider/03.jpg") no-repeat 50% 50%;
	background-size: cover;
}

.language-picker {
	text-align: right;
	margin-bottom: 20px;
}

#patients-file {
	width: 100%;
	height: 1200px;
	border: solid rgb(224, 224, 224) 1px;
	border-radius: 5px;
}

.patient-info {
	padding: 8%;
}

.patient-info a {
	text-decoration: underline;
}

.patient-info img {
	width: 100%;
}

.patient-info span {
	font-size: 1.4rem;
}

.patient-info ul {
	padding-left: 50px;
}

.patient-info h5 {
	margin-top: 50px;
}

.special-thanks {
	margin-top: 100px;
	text-align: center;
}

.special-thanks img {
	width: 20%;
}

.form-outline label {
	font-weight: 800;
}

/* Contact */

input[type=text],
input[type=email],
input[type=password] {
	height: 50px;
}

.form-control {
	border: 1px solid #eee;
	/* padding-left: 20px; */
}

.form-control:hover,
.form-control:focus {
	box-shadow: 0px 5px 35px 0px rgba(148, 146, 245, 0.15);
}

.input:focus {
	outline: none;
}

.form-control::-webkit-input-placeholder {
	color: #888;
	opacity: .9;
	font-size: 0.812rem;
	padding-left: 10px;
}

.form-control::-moz-placeholder {
	color: #888;
	opacity: .9;
	font-size: 0.8rem;
	padding-left: 10px;
}

.form-control:-ms-input-placeholder {
	color: #888;
	opacity: .9;
	font-size: 0.8rem;
	padding-left: 10px;
}

.form-control:-moz-placeholder {
	color: #888;
	opacity: .9;
	font-size: 0.8rem;
	padding-left: 10px;
}

/* Footer */
.section-footer {
	padding: 50px 0px 0px;
}

.gray-bg {
	background: var(--template-bg-color);
}

.footer-logo {
	max-width: 100%;
	height: 110px;
}

.logo {
	font-weight: 600;
	letter-spacing: 1px;
}

.logo h3 {
	color: var(--main-header-text-color);
}

.logo span {
	color: var(--main-header-text-color);
}

.widget .divider {
	height: 3px;
}

.widget h4 {
	color: var(--main-header-text-color);
}

.widget .footer-menu a {
	color: #6F8BA4;
}

.widget .footer-menu a:hover {
	color: var(--template-color);
}

.footer-contact-block span {
	font-weight: 400;
	color: #6F8BA4;
}

.footer-contact-block i {
	font-size: 1.25rem;
}

.footer-contact-block h5 {
	font-size: 1rem;
}

.footer-btm {
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-social-iconss li a {
	width: 45px;
	height: 45px;
	background: #6F8BA4;
	color: #fff;
	display: inline-block;
	text-align: center;
	border-radius: 100%;
	padding-top: 12px;
}

.widget-contact h6 {
	font-weight: 500;
	margin-bottom: 18px;
}

.widget-contact h6 i {
	color: var(--template-color);
}

.subscribe {
	position: relative;
}

.subscribe .form-control {
	border-radius: 50px;
	height: 60px;
	padding-left: 25px;
	border-color: #eee;
}

.subscribe .btn {
	position: absolute;
	right: 6px;
	top: 6px;
}

.backtop {
	position: fixed;
	background: var(--template-color);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 9999;
	display: inline-block;
	right: 55px;
	width: 60px;
	height: 60px;
	bottom: 50px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	border-radius: 50px;
}

.backtop i {
	color: white;
	font-size: 2.125rem;
}

.backtop:hover {
	background: white;
	border: solid var(--template-color) 2px;
}

.backtop:hover i {
	color: var(--template-color);
}

.reveal {
	transition: all .3s;
	cursor: pointer;
	opacity: 1;
}

