
/* 
	@author: Mohammad Nayan
	@contact: https://nayan.pro/contact
	@website: https://nayan.pro
	Full Stack Developer
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color:#888;
}

p {
	font-family: "Lato", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}


.header{
	background-color:#fff;
	position:relative;
}
.header .navbar-collapse{
	padding:0;
}
/* Topbar */
.header .topbar{
	background-color:#fff;
	border-bottom:1px solid #eee;
}
.header .topbar{
	padding:15px 0;
}
.header .top-link{
	float:left;
}
.header .top-link li{
	display:inline-block;
	margin-right:15px;
}
.header .top-link li:last-child{
	margin-right:0px;
}
.header .top-link li a{
	color:#2C2D3F;
	font-size:14px;
	font-weight:400;
}
.header .top-link li:hover a{
	color:#1A76D1;
}
.header .top-contact{
	float:right;
}
.header .top-contact li{
	display:inline-block;
	margin-right:25px;
	color:#2C2D3F;
}
.header .top-contact li:last-child{
	margin-right:0;
}
.header .top-contact li a{
	font-size:14px;
}
.header .top-contact li a:hover{
	color:#1A76D1;
}
.header .top-contact li i{
	color:#1A76D1;
	margin-right:8px;
}
.header .header-inner {
	background:#fff;
	z-index:999;
	width:100%;
}

.header .logo {
	float: left;
	margin-top: 18px;
}
.header .navbar {
	background: none;
	box-shadow: none;
	border: none;
	margin: 0;
	height: 0px;
	min-height: 0px;
}
.header .nav li{
	margin-right: 15px;
    float: left;
	position:relative;
}
.header .nav li:last-child{
	margin:0;
}
.header .nav li a {
	color: #2C2D3F;
	font-size: 14px;
	font-weight: bold;
	text-transform: capitalize;
	padding: 25px 12px;
	position: relative;
	display: inline-block;
	position:relative;
}
.header .nav li a::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	height: 3px;
	width:0%;
	background: #fe6555;
	border-radius: 5px 5px 0 0;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.header .nav li.active a:before{
	opacity:1;
	visibility:visible;
	width: 100%;
}
.header .nav li.active a{
	color:#fe6555;
}
.header .nav li:hover a:before{
	opacity:1;
	width: 100%;
	visibility:visible;
}
.header .nav li:hover a{
	color:#fe6555;
}
.header .nav li a i {
	display: inline-block;
	margin-left: 1px;
	font-size: 13px;
}
/* Middle Header */
.header.style2 .header-inner {
	border-top: 1px solid #eee;
}
.header.style2 .logo {
	margin-top:6px;
}
.header .middle-header {
	background: #fff;
	padding: 20px 0px;
}
.header .widget-main{
	float:right;
}
.header.style2 .get-quote {
	margin-top: 0;
}
.header .single-widget {
	position: relative;
	float: left;
	margin-right: 30px;
	padding-left: 55px;
}
.header .single-widget:last-child{
	margin:0;
}
.header .single-widget .logo{
	margin:0;
	padding:0;
	margin-top: 7px;
}
.header .single-widget i {
	position: absolute;
	left: 0;
	top: 6px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	color: #fff;
	background: #1A76D1;
	border-radius: 4px;
	text-align: center;
	font-size: 15px;
}
.header .single-widget h4 {
	font-size: 15px;
	font-weight: 500;
}
.header .single-widget p {
	margin-bottom: 5px;
	text-transform: capitalize;
}
.header .single-widget.btn{
	margin-left:0;
}
/* Dropdown Menu */
.header .nav li .dropdown {
	background: #fff;
	width: 220px;
	position: absolute;
	left:-20px;
	top: 100%;
	z-index: 999;
	-webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
	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;
	top: 74px;
	border-left:3px solid #2889e4;
}
.header .nav li:hover .dropdown{
	opacity:1;
	visibility:visible;
	transform:translateY(0px);
}
.header .nav li .dropdown li{
	float:none;
	margin:0;
	border-bottom:1px dashed #eee;
}
.header .nav li .dropdown li:last-child{
	border:none;
}
.header .nav li .dropdown li a {
	padding: 12px 15px;
	color: #666;
	display: block;
	font-weight: 400;
	text-transform: capitalize;
	background: transparent;
	-webkit-transition:all 0.2s ease;
	-moz-transition:all 0.2s ease;
	transition:all 0.2s ease;
}
.header .nav li .dropdown li a:before{
	display:none;
}
.header .nav li .dropdown li:last-child a{
	border-bottom:0px;
}
.header .nav li .dropdown li:hover a{
	color:#1A76D1;
}
.header .nav li .dropdown li a:hover{
	border-color:transparent;
}
/* Right Bar */
.header.style2 .main-menu{
	display:inline-block;
	float:left;
}
.header .right-bar {
	float: right;
}
.header .right-bar {
	padding-top:20px;
}
.header .right-bar {
	display: inline-block;
}
.header .right-bar a {
	color: #fff;
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	background: #1a76d1;
	border-radius: 4px;
	display: block;
	font-size: 12px;
}
.header .right-bar li a:hover{
	color:#fff;
	background:#27AE60;
}
.header .search-top.active .search i:before{
	content:"\eee1";
	font-size:15px;
}
/* Search */
.header .search-form {
	position: absolute;
	right: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	top: 74px;
	box-shadow: 0px 0px 10px #0000001c;
	border-radius: 4px;
	overflow: hidden;
	transform:scale(0);
}
.header .search-top.active .search-form {
	opacity:1;
	visibility:visible;
	transform:scale(1);
}
.header .search-form input {
	width: 282px;
	height: 50px;
	line-height: 50px;
	padding: 0 70px 0 20px;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 3px;
	border: none;
	background: #fff;
	color: #2C2D3F;
}
.header .search-form button {
	position: absolute;
	right: 0;
	height: 50px;
	top: 0;
	width: 50px;
	background: #1A76D1;
	border: none;
	color: #fff;
	border-radius: 0 4px 4px 0;
	border-left:1px solid transparent;
}
.header .search-form button:hover{
	background:#fff;
	color:#1A76D1;
	border-color:#e6e6e6;
}




/*=========================
	Start Footer CSS
===========================*/
.footer{
	/* position:relative; */
}

.footer .footer-top{
	/* position: relative; */
	width: 100%;
	min-height:250px;
	max-height: 100%;
	/* background: rgba(0,73,174,0.6); */
	background: rgba(0,73,174,1);
	padding:100px 0px;
}

.footer .single-footer{
	
}
.footer .single-footer .social{
	margin-top:25px;
}
.footer .single-footer .social li{
	display:inline-block;
	margin-right:10px;
}
.footer .single-footer .social li:last-child{
	margin-right:0px;
}
.footer .single-footer .social li a {
	height: 34px;
	width: 34px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #fff;
	text-align: center;
	padding: 0;
	border-radius: 100%;
	display: block;
	color:#fff;
	font-size: 16px;
}
.footer .single-footer .social li a:hover{
	color:#1A76D1;
	background:#dc3545;
	border-color:transparent;
}
.footer .single-footer .social li a i{
	
}
.footer .single-footer.f-link li a i{
	margin-right:10px;
}
.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: #fff;
	text-transform: capitalize;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}
.footer .single-footer.f-link li a:hover{
	padding-left:8px;
}
.footer .single-footer h2{
	color:#fff;
	font-size:20px;
	font-weight:600;
	text-transform:capitalize;
	margin-bottom:40px;
	padding-bottom:20px;
	text-transform:capitalize;
	position:relative;
}
.footer .single-footer h2::before{
	position: absolute;
	content: "";
	left: 0;
	bottom: 0px;
	height: 3px;
	width: 50px;
	background: #fff;
}
.footer .single-footer .time-sidual{
	margin-top:15px;
}
.footer .single-footer .time-sidual{
	overflow:hidden;
}
.footer .single-footer .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom: 5px;
}
.footer .single-footer .time-sidual li span{
	display:inline-block;
	float:right;
}
.footer .single-footer .day-head .time {
	font-weight: 400;
	float: right;
}
.footer .single-footer p{
	color:#fff;
}

.footer .single-footer .newsletter-inner input:hover{
	padding-left: 22px;
}
.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer input::input-placeholder {
    opacity: 1;
    color: #fff !important;
}
.footer .single-footer .newsletter-inner .button {
	position: absolute;
	right: 0;
	top: 0;
	height: 50px;
	line-height: 50px;
	width: 50px;
	background: #fff;
	border-left: 1px solid #fff;
	text-shadow: none;
	box-shadow: none;
	display: inline-block;
	border-radius: 0px;
	border: none;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	transition: all 0.4s ease;
	border-radius: 0 5px 5px 0;
	color: #1A76D1;
	font-size: 25px;
}
.footer .single-footer .newsletter-inner .button i{
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.footer .single-footer .newsletter-inner .button:hover i{
	color:#2C2D3F;
}
.footer .copyright{
	background:#fff;
	padding:25px 0px 25px 0px;
	text-align:center;
}
.footer .copyright .copyright-content p{
	color:#000;
}
.footer .copyright .copyright-content p a{
	color:#000;
	font-weight:400;
	text-decoration:underline;
	display:inline-block;
	margin-left:4px;
}
/*=========================
	End Footer CSS
===========================*/

.faq
{
	margin-bottom: 25px;
}

.faq .faq_box
{
	padding: 15px;
}

.accordion-item .accordion-header .accordion-button
{
	background: rgba(0,73,174,1) !important;
	color: #fff;
	font-weight: bold !important;
}

.accordion-item .accordion-header .accordion-button::after
{
	display: none;
}
.partner
{
	position: relative;
	width: 100%;
	min-height: 400px;
	max-height: 100%;
	background: url('../frontend/images/partner.jpg') no-repeat center center fixed;
	background-size: cover;
	box-sizing: border-box;

	
}

.partner .partner-opacity
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.7);
	/* z-index: 1; */
}

.partner img
{
	width: 100%;
	height: 100px;
	margin-top: 15px;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}

.partner img:hover 
{
	border: 5px solid #fe6555;
}

.cover {
	position: relative;
	width: 100%;
	height:600px;
	/* max-height: 100%; */
	background: rgba(0,73,174,0.6);
	/* padding:100px 0px; */
}

.cover .videoBack 
{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -8;
	-webkit-object-fit: cover;
	-moz-object-fit: cover;
}

.cover .cover-bg .text{
	margin-top:120px;
}
.slider.index2 .single-slider .text{
	margin-top:150px;
}
 h1 {
	color: #ffffff;
	font-size: 38px;
	font-weight: 700;
	margin: 0;
	padding: 0;
	line-height: 42px;
	text-shadow: 0px 5px 5px #000;
}
.cover .cover-bg h1 span{
	color:#fe6555;
}
.cover .cover-bg p {
	color: #ffffff;
	margin-top: 27px;
	font-weight: 400;
}
.cover .cover-bg .button{
	margin-top:30px;
}
.cover .cover-bg .btn{
	color:#fff;
	background:rgb(0,73,174);
    border: 1px solid rgb(254,101,85);
	font-weight:500;
	display:inline-block;
	margin:0;
	margin-right:10px;
}
.cover .cover-bg .btn:last-child{
	margin:0;
}
.slider .single-slider .btn.primary{
	background:#2C2D3F;
	color:#fff;
}
.cover .cover-bg .btn.primary:before{
	background:#1A76D1;
}

.service
{
    margin: 50px 0px;
}

.service-box
{
	position: relative;
	width: 100%;
	min-height: 300px;
	background:#fff;
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 10px;
	transition: 0.5s ease;
	text-align: center;
	margin-bottom: 45px;
}

.service-box:hover{
	box-shadow: #c8c8c8 0px 5px 15px;
}

.service-box img 
{
	border-radius: 10px;
	width: 100%;
	height:300px;
}

.service-box h5 
{
	margin: 15px 0;
	font-size: 1.5em;

}

.service-box p
{
	margin-bottom: 25px;
}
.service-box .click
{
	position: absolute;
	width:150px;
	height: 40px;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%, -0%);
	background: rgba(0,73,174,0.8);
	color: #fff;
	font-size: 1em;
	font-size: bold;
	padding: 8px 0px;
	border-radius: 10px;
	
}

.service-box .click:hover 
{
	background: rgba(0,73,174,1);
}

.page-section 
{
    margin: 15px 0px;
    padding:15px 0px;
    background: url('../frontend/images/blood-pressure-3524615_1920.jpg');
    background-size:cover;
    background-position: center;
    background-repeat:no-repeat;
    box-sizing: border-box;
    
}
.page-head-section
{
	text-align: center;
}

.page-head-section h4 
{
	font-size: 3em;
	font-weight: bold;
	font-family: ;
	color: rgba(0,73,174,1);
	margin: 15px 0px;
}

.page-section .page-box
{
	background: rgba(255,255,255,0.8);
	padding: 15px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	border-radius: 10px;
}

.page-section .page-box h5 
{
	color: rgba(0,73,174,0.8);
}
.page-section .page-box form label 
{
	color: rgba(0,0,0,0.6);
	font-weight: bold;
}

.about_section 
{
	position: relative;
	/* z-index: 9; */
	width: 100%;
	min-height: 600px;
	max-height: max-content;
	background: url('../frontend/images/pexels-matthiaszomer-339620.jpg') no-repeat center center fixed;
	background-size: cover;
	box-sizing: border-box;
}

.about_section .about_section_opacity
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);

}

.about_section .welcome 
{
	margin:35px 0px;
	
}
.about_section .welcome h6 
{
	color: rgba(0,73,174,0.6);
}

.about_section .welcome h2 
{
	color: rgba(0,73,174,1);
	margin: 15px 0px;
}

.about_section .welcome p 
{
	text-align: justify;
	color: #000;
	font-family: 'Roboto';
}

.about_section .right 
{
	position: relative;
	width: 100%;
	height: 350px;
	margin: 50px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about_section .right img 
{
	border-radius: 10px;
	width: 100%;
	height: auto;
}


.about_section .right .play_button 
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(254,101,85,0.6);
	color: #fff;
	font-size: 18px;
	width: 50px;
	height: 50px;
	border:2px solid rgb(254,101,85);
	border-radius: 50%;
}

.about_section .right .play_button i 
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	
}

.single-schedule .single-content h6 
{
	margin-top: 10px;
	color: #fff;
}

.single-schedule .single-content p
{
	color: #c8c8c8;
	margin: 0;
} 

.service .service-title,
.partner .partner-title,
.faq .faq_title,
.about_section .about_title,
.contact_us .contact_us_title
{
	position: relative;
	margin:40px 0px;
	padding: 10px 0px;
	/* color: rgba(0,0,0,0.8); */
	color: #111;
	text-align:center;
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	font-size:30px;

}

.service .service-title:before,
.partner .partner-title::before,
.faq .faq_title::before,
.about_section .about_title::before,
.contact_us .contact_us_title::before
{
	position: absolute;
	content: "";
	bottom: 0;
	left:50%;
	transform: translateX(-50%);
	width: 120px;
	height:3px;
	background: #666;

}


.is-invalid {
    border-color: #dc3545; 
}

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

.contact_us 
{
	position: relative;
	width: 100%;
	min-height: 600px;
	max-height: max-content;
	background: url('../frontend/images/pexels-matthiaszomer-339620.jpg') no-repeat center center fixed;
	background-size: cover;
	box-sizing: border-box;
}

.contact_us .contact_us_opacity
{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);

}

.schedule {
	background: #fff;
	margin: 0;
	padding: 0;
	height: 230px;
}


.schedule .schedule-inner {
	position: relative;
	-webkit-transform: translateY(-50%); /* Safari/older Chrome */
	-moz-transform: translateY(-50%);    /* Older Firefox */
	-ms-transform: translateY(-50%);     /* Older IE */
	transform: translateY(-50%);
	/* z-index: 10; */
}

/* Disable transform for mobile devices */
@media (max-width: 900px) {

	.schedule {
		height: 100%;
		margin-bottom: 150px;
	}

	.schedule .schedule-inner {
		-webkit-transform: none; /* Safari/older Chrome */
		-moz-transform: none;    /* Older Firefox */
		-ms-transform: none;     /* Older IE */
		transform: none;         /* Modern browsers */
	}
}
.schedule .single-schedule {
	position: relative;
	text-align: left;
	z-index:3;
	border-radius:10px;
	background:rgba(0,73,174,1);
	box-shadow: rgba(255, 255, 255,0.6) 0px 4px 10px;
	 -webkit-transition: all .3s ease-out 0s;
	-moz-transition: all .3s ease-out 0s;
	-ms-transition: all .3s ease-out 0s;
	-o-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s;
}
.schedule .single-schedule .inner {
	overflow:hidden;
	position: relative;
	padding:30px;
	z-index:2;
}
.schedule .single-schedule:before{
	position: absolute;
	z-index: -1;
	content: '';
	bottom: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	height: 90%;
	background:rgba(0,73,174,0.8);
	opacity: 0;
	filter: blur(10px);
	-webkit-transition: all .3s ease-out 0s;
	-moz-transition: all .3s ease-out 0s;
	-ms-transition: all .3s ease-out 0s;
	-o-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s;
}
.schedule .single-schedule:hover:before{
	opacity: 0.8;
}
.schedule .single-schedule:hover{
	transform: translateY(-5px);
}
.schedule .single-schedule .icon i{
	position: absolute;
	font-size: 110px;
	color: #fff;
	 -webkit-transition: all .3s ease-out 0s;
	-moz-transition: all .3s ease-out 0s;
	-ms-transition: all .3s ease-out 0s;
	-o-transition: all .3s ease-out 0s;
	transition: all .3s ease-out 0s;
	z-index:-1;
	visibility:visible;
	opacity:0.2;
	right: -25px;
	bottom: -30px;
}
.schedule .single-schedule span{
	display:block;
	color:#fff;
}
.schedule .single-schedule h4{
	font-size: 20px;
	font-weight:600;
	display:inline-block;
	text-transform:capitalize;
	color:#fff;
	margin-top:13px;
}
.schedule .single-schedule p{
	color:#fff;
	margin-top:22px;
}
.schedule .single-schedule a {
	color: #fff;
	margin-top: 25px;
	font-weight: 500;
	display: inline-block;
	position: relative;
}
.schedule .single-schedule a:before{
	position:absolute;
	content:"";
	left:0;
	bottom:0;
	height:1px;
	width:0%;
	background:#fff;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.schedule .single-schedule a:hover:before{
	width:100%;
	width:100%;
}
.schedule .single-schedule a i{
	margin-left:10px;
}
.schedule .single-schedule .time-sidual{
	
}
.schedule .single-schedule .time-sidual{
	overflow:hidden;
	margin-top:17px;
}
.schedule .single-schedule .time-sidual li {
	display: block;
	color: #fff;
	width: 100%;
	margin-bottom:3px;
}
.schedule .single-schedule .time-sidual li:last-child{
	margin:0;
}
.schedule .single-schedule .time-sidual li span{
	display:inline-block;
	float:right;
}
.schedule .single-schedule .day-head .time {
	font-weight: 400;
	float: right;
}