/*----------
	Theme Name: Mydayda
	Start Date : 
	End Date : 
	Last change: 
	Version: 1.0
	Assigned to:
	Primary use:
----------*/
	/* [Layout] */

/*----------

	## Global
	
		- Padding/Margin
		- Section Padding
		- Fonts Settings	
		
	## Site Header	
	
		- Navigation Menu
			-- Nav Main
			-- Nav Header
			-- Nav Toggle
			-- Nav Switch
			-- Nav Items
			-- Nav Dropdown

	
	## Widgets
	- 1
	- 2
	
	## Responsive
	- Min Width : 992px & Max Width 1200px
	
	- Min Width : 992px
	
		## Navigation Menu
		- Nav Main
		- Nav Header
		- Nav Toggle
		- Nav Switch
		- Nav Items
		- Nav Dropdown
	
	* Responsive		
		- min-width: 1200
		- min-width: 992
		- min-width: 768
		- max-width: 1200
		- min-width: 992 to max-width: 1199		
		- max-width: 991
		- min-width: 768 to max-width: 991
		- max-width: 767
		- max-width: 639
		- max-width: 479
----------*/
/* ## Global ******************************************* */

body {
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	color: #000;
	overflow-x: hidden;
	/* height: 8000px; */
}
img {
    max-width: 100%;
	height: auto;
}
a {
    outline: 0 !important;
}

h1,h2,h3,h4,h5,h6,p,a,li,span {
	word-wrap: break-word;
}

/* - Padding/Margin */
.no-padding {
	padding: 0;
}
.no-left-padding{
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.no-margin {
	margin: 0;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}

/* - Section Padding */
.section-padding {
	padding-top: 75px;
	padding-bottom: 75px;
}
.padding-10 {
	padding-top: 5px;
	padding-bottom: 5px;
}
.padding-20 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-30 {
	padding-top: 15px;
	padding-bottom: 15px;
}
.padding-40 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-50 {
	padding-top: 25px;
	padding-bottom: 25px;
}
.padding-60 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-70 {
	padding-top: 35px;
	padding-bottom: 35px;
}
.padding-80 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-90 {
	padding-top: 45px;
	padding-bottom: 45px;
}
.padding-100 {
	padding-top: 50px;
	padding-bottom: 50px;
}
/* - Section Margin */
.section-margin {
	margin-top: 75px;
	margin-bottom: 75px;
}
.margin-10 {
	margin-top: 5px;
	margin-bottom: 5px;
}
.margin-20 {
	margin-top: 10px;
	margin-bottom: 10px;
}
.margin-30 {
	margin-top: 15px;
	margin-bottom: 15px;
}
.margin-40 {
	margin-top: 20px;
	margin-bottom: 20px;
}
.margin-50 {
	margin-top: 25px;
	margin-bottom: 25px;
}
.padding-60 {
	margin-top: 30px;
	margin-bottom: 30px;
}
.margin-70 {
	margin-top: 35px;
	margin-bottom: 35px;
}
.margin-80 {
	margin-top: 40px;
	margin-bottom: 40px;
}
.margin-90 {
	margin-top: 45px;
	margin-bottom: 45px;
}
.margin-100 {
	margin-top: 50px;
	margin-bottom: 50px;
}

.vertical_middle {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.nav_absolute {
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
}
.align_left {
	text-align: left;
}
.align_right {
	text-align: right;
}
.align_center {
	text-align: center;
}

/* - OW pull-left/pull-right */
.ow-pull-left  {
	float: left;
}
.ow-pull-right  {
	float: right;
}

/* - Fonts Settings */
/* - Lato Heavy */
@font-face {
    font-family: 'Lato-Heavy';
    src: url('fonts/Lato-Heavy-webfont.eot');
    src: url('fonts/Lato-Heavy-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Lato-Heavy-webfont.woff2') format('woff2'),
         url('fonts/Lato-Heavy-webfont.woff') format('woff'),
         url('fonts/Lato-Heavy-webfont.ttf') format('truetype'),
         url('fonts/Lato-Heavy-webfont.svg#Lato-Heavy') format('svg');
    font-weight: normal;
    font-style: normal;
}

.main-container {
	/* width: 1920px; */
	max-width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

/* ## Site Header ******************************************* */

/* - Search */
.search-box {
	background-color: #303030;
	padding: 10px;
	position: absolute;
	right: 15px;
	top: 100%;
	width: 260px;
	opacity: 0;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform-origin: 0 0 0;
	transition: all 0.4s ease-in-out 0s;
	z-index: 101;
}
.search-box.active {
	opacity: 1;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	visibility: visible;
}
.search-box form {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	display: block;
}
.search-box form input {
	background-color: transparent;
	box-shadow: none;
	border: none;
	border-radius: 0;
	color: #ccc;
	font-size: 14px;
	font-style: italic;
	height: auto;
}
.search-box form input:focus {
	box-shadow: none;
	-webkit-box-shadow: none;
	outline: none;
	border-color: #fff;
}
.search-box span {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
}
.search-box span i {
	font-size: 15px;
	color: #f97b25;
	float: right;
	margin: 5px;
}

/* - SlidePanel */
#slidepanel { 
	display: block; 
}
#closeit,
#toggle,
#slideit {
	display: none;
}


/* - Navigation Menu */
.ownavigation {
	background-color: #f1f1f1;
	border: none;
	border-radius: 0;
	min-height: 1px;
	margin-bottom: 0;
	/* position: relative; */
}

/* - Nav Main */

/* - Nav Header */
.navbar-brand {
	height: auto;
	padding: 0;
}
.navbar > .container .navbar-brand, 
.navbar > .container-fluid .navbar-brand {
	margin-left: 0;
}

/* - Nav Items */
.ownavigation .navbar-nav li  a {
	color: #222;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.56px;
	background-color: transparent;
	word-wrap: break-word;
	white-space: normal;
}

.ownavigation .navbar-nav > .active > a, 
.ownavigation .navbar-nav > .active > a:focus, 
.ownavigation .navbar-nav > .active > a:hover,
.ownavigation .navbar-nav > li:hover > a,
.ownavigation .navbar-nav > li a:hover,
.ownavigation .navbar-nav > li a:focus {
	background-color: transparent;
}

/* - Mega Dropdown Menu */

.ownavigation .mega-dropdown .mega-menu .dropdown-box ul {
	padding-left: 0;
	margin-bottom: 0;
}
.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li:last-child {
	padding-bottom: 0;
}
.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	width: 100%;
}
.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a:focus,
.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a:hover {
	color: #333;
}

/* ## Responsive ************************************************************************************** */

/*----------------------------------------------------

	* Responsive
	
------------------------------------------------------*/

/* - min-width: 1200 */
@media (min-width: 1200px) {
	.container {
		width: 1200px;
	}
}

/* - min-width: 992 */
@media (min-width: 992px) {
	.desktop-hide {
		display: none;
	}
	
	/* ## Navigation Menu */
	.nav_trans {
		background: transparent;
	}

	/* - Nav Switch */
	.ownavigation .ddl-switch {
		display: none !important;
	}
	
	/* - Nav Items */
	.ownavigation .navbar-nav > li {
		margin: 0 10px;
	}
	.ownavigation .navbar-nav > li:first-child {
		margin-left: 0;
	}
	.ownavigation .navbar-nav > li > a {
		margin-bottom: 45px;
		margin-top: 45px;
		padding: 5px 10px;
		position: relative;
	}
	.ownavigation .navbar-nav > .active > a, 
	.ownavigation .navbar-nav > .active > a:focus, 
	.ownavigation .navbar-nav > .active > a:hover,
	.ownavigation .navbar-nav > li:hover > a,
	.ownavigation .navbar-nav > li a:hover {
		background-color: transparent;
		color: #00bdd3;
	}
	
	/* - Nav Dropdown */
	.ownavigation .navbar-collapse > ul > li > .dropdown-menu {
		top: 100%;
		left: 0;
	}
	.ownavigation ul li > .dropdown-menu {
		background-color: #00d2eb;
		border: none;
		left: 100%;
		border-radius: 0;
		opacity: 0;
		top: 0;
		display: block;
		padding: 0;
		min-width: 218px;
		max-width: 218px;
		visibility: hidden\0/;
		transition: all 0.17s ease-in-out;
		-moz-transition: all 0.17s ease-in-out;
		-webkit-transition: all 0.17s ease-in-out;
		-o-transition: all 0.17s ease-in-out;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-o-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-ms-transform-origin: 0 0;
		-o-transform-origin: 0 0;
		transform-origin: 0 0;
		-webkit-transform: rotateX(-90deg);
		-moz-transform: rotateX(-90deg);
		-ms-transform: rotateX(-90deg);
		-o-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
		-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
		-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
		-mos-transition: -mos-transform 0.4s, opacity 0.1s 0.3s;
		-o-transition: -o-transform 0.4s, opacity 0.1s 0.3s;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a {
		color: #fff;
		padding: 8px 15px;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a:hover {
		color: #333;
	}
	.ownavigation .navbar-nav li.dropdown:hover > .dropdown-menu {
		visibility: visible;
		opacity: 1;
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
		transform: rotateX(0deg);
		-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
		-moz-transition: -moz-transform 0.4s, opacity 0.1s;
		-mos-transition: -mos-transform 0.4s, opacity 0.1s;
		-o-transition: -o-transform 0.4s, opacity 0.1s;
		transition: transform 0.4s, opacity 0.1s;
		-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
		-moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
	}
	.ownavigation ul > li > .dropdown-menu {
		left: 0; 
	}
	.ownavigation .navbar-collapse > ul > li:last-child > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) > .dropdown-menu {
		right: 0; 
	}
	.ownavigation ul > li > .dropdown-menu,
	.ownavigation ul > li .dropdown-menu ul,
	.ownavigation ul > li .dropdown-menu ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul ul	{
		right: auto;
	}
	.ownavigation ul > li .dropdown-menu ul,
	.ownavigation ul > li .dropdown-menu ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul ul {
		left: 100%;
	}
	.ownavigation ul > li .dropdown-menu ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul {
		right: 100%;
	}
	.ownavigation ul > li .dropdown-menu ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul,
	.ownavigation ul > li .dropdown-menu ul ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:last-child .dropdown-menu ul ul ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) > .dropdown-menu,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul,
	.ownavigation .navbar-collapse > ul > li:nth-last-child(2) .dropdown-menu ul ul ul ul ul ul ul ul ul {
		left: auto;
	}
	
	/* - Mega Dropdown Menu */
	.ownavigation .navbar-nav > li > .dropdown-menu.mega-menu li:first-child,
	.ownavigation .mega-dropdown .dropdown-menu.mega-menu > li {
		padding-bottom: 0;
		padding-top: 0;
	}
	.ownavigation .mega-dropdown .mega-menu li {
		float: left;
		width: 50%;
		padding: 8px 0;
		box-sizing: border-box;
	}
	.ownavigation .mega-dropdown {
		display: block;
	}
	.ownavigation .mega-dropdown:hover {
		opacity: 1;
		visibility: visible;
		margin-top: 0;
	}
	.ownavigation .mega-dropdown .mega-menu {
		background-color: #00d2eb;
		border-radius: 0;
		box-shadow: none;
		padding: 15px;
		opacity: 0;
		position: absolute;
		max-width: 100%;
		min-width: 440px;
		right: 0;
	}
}


/* - Min Width : 992px & Max Width 1200px */
@media only screen and (min-width: 992px) and (max-width: 1200px) {	
	.ownavigation .navbar-nav > li {
		margin-left: 9px;
		margin-right: 9px;
	}
}

/* - max-width: 991 */
@media (max-width: 991px) {
	/* - SlidePanel */
	#slidepanel { 
		display: none;
		border-bottom: 1px solid #fff;
	}
	#slideit,
	#toggle {
		display: block;
		position: relative;
		z-index: 1;
	}
	#loginpanel {
		position: absolute;
		right: 110px;
		text-align: center;
		top: 14px;
	}	
	#slideit,
	#closeit {
		color: #00d2eb;
		font-size: 25px;
		position: relative;
		right: -50px;
		top: 3px;
	}
	#slideit:hover,
	#closeit:hover {
		color: #4c4c4c;
	}
	
	.mobile-hide {
		display: none;
	}

	/* ## Navigation Menu */

	/* - Nav Main */
	.ownavigation {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* - Nav Header */
	.ownavigation .navbar-header .navbar-brand {
		padding-left: 0;
		margin-left: 0;
	}	
	
	/* - Nav Items */
	.ownavigation .navbar-nav {
		border-top: 1px solid #4c4c4c;
		width: 100%;
		margin: 0;
		padding-top: 15px;
	}
	.ownavigation .navbar-nav > li {
		min-height: 0;
		float: none;
		clear: both;
	}
	.ownavigation .navbar-nav > li > a {
		padding: 8px 0;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}	
	.ownavigation .navbar-nav > li.active a {
		color: #00d2eb;
	}
	.ownavigation .navbar-nav > li.active > a:hover,
	.ownavigation .navbar-nav  li  a:hover {
		color: #00d2eb;
	}
	
	/* - Nav Toggle */
	.ownavigation .navbar-header {
		float: none;
	}
	.ownavigation .navbar-toggle {
		display: block;
		background-color: #00d2eb;
		border-radius: 0;
		margin: 40px 0 40px;
		padding: 6px 5px;
	}
	.ownavigation .navbar-toggle .icon-bar { 
		background-color: #fff; 
	}	
	.ownavigation .navbar-collapse {
		padding-left: 0;
		padding-right: 0;
	}
	.ownavigation .navbar-collapse.collapse { 
		display: none !important; 
	}
	.ownavigation .collapse.in{ 
		display:block !important; 
		overflow-Y: auto !important;
	}	
	
	/* - Nav Switch */
	.ownavigation .ddl-switch {
		background-color: #00d2eb;
		color: #fff;
		cursor: pointer;
		font-size: 18px;
		padding: 2px 6px;
		position: absolute;
		right: 0;
		top: 7px;
		z-index: 100;
	}
	.ownavigation .ddl-active > .ddl-switch:before {
		content: "\f106";
	}

	/* - Nav Dropdown */
	.ownavigation .dropdown-menu {
		background-color: transparent;
		border: 0 none;
		margin-top: 0;
		padding-left: 10px;
		padding-top: 0;
		position: relative;
		width: 100%;
		box-shadow: none;
		float: left;
	}
	.ownavigation .dropdown-menu li {
		display: inline-block;
		width: 100%;
	}
	.ownavigation .navbar-nav > li:last-of-type {
		margin-bottom: 15px;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a {
		color: #232323;
		padding-left: 0;
		padding-right: 0;
		padding-top: 6px;
		padding-bottom: 6px;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
	}
	.ownavigation .navbar-nav li .dropdown-menu > li > a:hover {
		color: #00d2eb;
	}
	/* - Mega Dropdown */
	.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a {
		padding: 5px 0;
	}
	.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a  {
		color: #232323;
	}
	.ownavigation .mega-dropdown .mega-menu .dropdown-box ul li a:hover {
		color: #00d2eb;
	}
}


/* - max-width: 767 */
@media (max-width: 767px) {
	/* - Nav Toggle */
	.ownavigation .navbar-toggle {
		right: 0;
	}
	#slideit,
	#closeit {
		right: -65px;
	}
}


/*--Mydayda New Styles--*/

.CCM-Banner {
    background: url("images/mydayda-ccm-banner-bg-img.png") center center no-repeat;
    width: 100%;
    height: 619px;
    position: relative;
    background-size: cover;
}

.Platform-Banner {
    background: url("images/MydaydaPlatorm-sectionOne.jpg") center center no-repeat;
    width: 100%;
    height: 619px;
    position: relative;
    background-size: cover;
}
.CCM-Banner a.read-more {
    background-color: #00d2eb;
    border: 1px solid #00d2eb;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    position: relative;
    font-weight: 500;
    z-index: 1;
}
.CCM-Banner  a.read-more:hover {
    background-color: transparent;
    color: #00d2eb;
}
.CCM-Banner h1 {
    padding-top:150px;
}
.CCM-Banner p {
    font-size: 18px;
    line-height: 26px;
	margin:30px 0px;
}
.CCM-Sec .blueHeading{
	text-align: center; 
	margin: 60px 75px 0px; 
	line-height: 4rem; 
	font-size: 3rem; 
	color: #003668;
}
.CCM-Sec .blueHeading:after {
    content: '';
    border-bottom: 2px solid #00d2eb;
    width: 150px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 60px auto 0px;
}
.mydayda-list {
    margin-left: 20px;
}
.mydayda-list ul{
	list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.mydayda-list ul li{
	/* border-bottom: 1px solid #f1f1f1; */
	color: #333;
	padding-top: 5px;
	padding-bottom: 10px;
	list-style-position: inside;
	text-indent: -2em;
	padding-left: 1em;
	font-size: 16px;
	line-height: 24px;
}
.mydayda-list ul li::before {
    content: "\f055";
    color: #00d2eb;
    font-family: 'FontAwesome';
    font-size: 20px;
    padding-right: 10px;
    vertical-align: middle;
}
.ccmRpm-services {
    background-image: url(images/ccmRpm-sec-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top:90px;
    padding-bottom: 30px;
    background-position: center;
}
.ccmRpm-services::before {
    background-color: rgba(255, 255, 255, 0.83);
    content: "";
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.rpm-section {
	padding: 30px 0 60px;
}
.rpm-section h3 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}
.rpm-section h3::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 auto;
}
.rpm-section p {
    font-size: 16px;
    text-align: center;
    line-height: 28px;
}
.rpm-section h4 {
    line-height: 30px;
    margin: 25px auto 0;
    font-size: 26px;
    text-align: center;
    border-bottom: 3px solid #e6e6e6;
    width: fit-content;
    padding-bottom: 5px;
}
.rpm-section h5 {
    line-height: 30px;
    margin: 20px auto;
    font-size: 24px;
    text-align: center;
}
.rpm-section img {
    width: 75%;
    margin: 10px auto;
}
.rpm-panel{
	border-color: #b8daff;
	text-align: center;
	margin: 15px -16px;
}
.rpm-panel .panel-heading {
    color: #002461;
    background-color: #b8daff;
    border-color: #b8daff;
    font-size: 20px;
    font-weight: 600;
    padding: 6px 0px;
}
.rpm-panel .panel-body {
    padding: 5px;
    height: 210px;
    color: #333;
    font-size: 15px;
    line-height: 24px;
}
.rpm-panel .panel-footer {
    padding: 5px;
    background-color: #ffffff;
    border-top: 1px solid #b8daff;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 18px;
    font-weight: 500;
    color: #002461;
}
.ccm-section {
	padding: 30px 0 30px;
}
.ccm-section h3 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}
.ccm-section h3::after {
    background-color: #9cd603;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    margin: 0 auto;
}
.ccm-section p {
    font-size: 16px;
    text-align: center;
    line-height: 28px;
}
.ccm-section h4 {
    line-height: 36px;
    margin: 25px auto;
    font-size: 26px;
    text-align: center;
    border-bottom: 3px solid #e6e6e6;
    width: 75%;
    padding-bottom: 5px;
}
.ccm-section h5 {
    line-height: 40px;
    margin: 20px auto;
    font-size: 24px;
    text-align: center;
}
.ccm-section img {
    width: 75%;
    margin: 10px auto;
}
.ccm-section .mydayda-list {
   width:75%!important;
   margin: 0 auto 15px;
}
.ccm-section .mydayda-list ul li::before {
    content: "\f055";
    color: #9cd603;
    font-family: 'FontAwesome';
    font-size: 20px;
    padding-right: 10px;
    vertical-align: middle;
}
.ccm-panel{
	border-color: #ccff95;
	text-align: center;
	margin: 15px -16px;
}
.ccm-panel .panel-heading {
    color: #294e00;
    background-color: #ccff95;
    border-color: #ccff95;
    font-size: 20px;
    font-weight: 600;
    padding: 6px 0px;
}
.ccm-panel .panel-body {
    padding: 5px;
    height: 260px;
    color: #333;
    font-size: 15px;
    line-height: 24px;
}
.ccm-panel .panel-footer {
    padding: 5px;
    background-color: #ffffff;
    border-top: 1px solid #ccff95;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 18px;
    font-weight: 500;
    color: #2b5200;
}
.extra-services h4 {
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-weight: 300;
    padding: 0;
    font-size: 18px;
}

/*--Why Us--*/
/*--Why Us Section 1--*/
.whyUs-secBG1 {
	background: url(images/mydayda-clinicians-sec1-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
}

.whyUs-secBG1 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG1  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG1 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Section 2--*/
.whyUs-secBG2 {
	background: url(images/mydayda-clinicians-sec2-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG2 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG2  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG2 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Section 3--*/
.whyUs-secBG3 {
	background: url(images/mydayda-clinicians-sec3-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG3 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG3  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG3 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Section 4--*/
.whyUs-secBG4 {
	background: url(images/mydayda-clinicians-sec4-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG4 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG4  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG4 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Section 5--*/
.whyUs-secBG5 {
	background: url(images/mydayda-clinicians-sec5-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG5 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG5  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG5 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Patients Section 0--*/
.whyUs-secBG-P0 {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 90px 0 60px;
	top: -1px;
}

.whyUs-secBG-P0 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG-P0  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG-P0 h3 {
    font-size: 28px;
    line-height: 38px;
}
.whyUs-secBG-P0 .content-sec {
    margin: 0 0 20px;
}
.whyUs-secBG-P0 .icon-sec {
	min-height:100px;
}
.whyUs-secBG-P0 .icon-sec img{
	width: 72px;
	float: left;
	margin-right: 20px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.whyUs-secBG-P0 .icon-sec  h4 {
    font-size: 20px;
    line-height: 30px;
}
/*--Why Us Patients Section 1--*/
.whyUs-secBG-P1 {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG-P1 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG-P1  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG-P1 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Patients Section 2--*/
.whyUs-secBG-P2 {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG-P2 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG-P2  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG-P2 .content-sec {
    margin: 0 0 30px;
}
/*--Why Us Patients Section 3--*/
.whyUs-secBG-P3 {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG-P3 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG-P3  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG-P3 .content-sec {
    margin: 0 0 45px;
}
/*--Why Us Patients Section 4--*/
.whyUs-secBG-P4 {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 30px 0 60px;
	top: -1px;
}

.whyUs-secBG-P4 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.whyUs-secBG-P4  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.whyUs-secBG-P4 .content-sec {
    margin: 0 0 15px;
}
/*--//Why Us--*/
/*--CCM RPM--*/
.ccm-rpm-secBG {
	background: #fff;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 60px 0 30px;
}

.ccm-rpm-secBG h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.ccm-rpm-secBG  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.ccm-rpm-secBG .content-sec {
    margin: 15px 0;
}

.cancerPG-sec1 {
    background-image: url(images/cancerPG-sec1-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding-top:90px;
    padding-bottom: 45px;
    background-position: center;
}
.cancerPG-sec1::before {
    background-color: rgba(255, 255, 255, 0.8);
    content: "";
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}

.cancerPG-sec2 {
	background: url(images/mydayda-oncology-sec1-bg.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 45px 0;
}

.cancerPG-sec2 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.cancerPG-sec2  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.cancerPG-sec2 .content-sec {
    margin: 15px 0;
}

.content-sec p{
    font-size: 16px;
    line-height: 30px;
}


.cancerPG-sec3 {
	background: url(images/mydayda-oncology-sec-bg2.png) center center no-repeat;
	width: 100%;
	position: relative;
	background-size: cover;
	padding: 60px 0 45px;
}

.cancerPG-sec3 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}
.cancerPG-sec3  h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.cancerPG-sec3 .content-sec {
    margin: 15px 0;
}


.cancerPG-sec4 {
	background: url(images/mydayda-oncology-sec-bg3.png) center center no-repeat;
	width: 100%;
	height: 480px;
	position: relative;
	background-size: cover;
	padding: 90px 0 45px;
}

.cancerPG-sec4 h5 {
    color: #232323;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}
.cancerPG-sec4 h5::after {
    background-color: #00d2eb;
    content: "";
    height: 3px;
    width: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.cancerPG-sec4 .content-sec {
    margin: 15px 0;
}


.navbar-brand .logo {
    width: 150px;
    margin-left: 6px;
    padding-top: 5px;
    top: 0;
    float: left;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.navbar-brand .logo:hover {
   transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
}
.navbar-brand .logo-icon {
    width:45px;
    margin-right: 6px;
    float: left;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.navbar-brand .logo-icon::after,
.navbar-brand .logo-icon::before {
	content: "";
	position: absolute;
	z-index: 0;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.navbar-brand .logo-icon img {
	z-index: 1;
	top: 5px;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.navbar-brand:hover .logo-icon img  {
	background-color: transparent;
	-webkit-animation-name: hvr-icon-pulse;
	animation-name: hvr-icon-pulse;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.team-carousel.owl-carousel .owl-stage {
    margin: 0 auto;
}


.read-more-btn {
    background-color: #00d2eb;
    border: 1px solid #00d2eb;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 15px;
    padding: 10px 30px;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    position: relative;
    z-index: 1;
}
.read-more-btn:hover {
    background-color: transparent;
    color: #00d2eb;
}
.blue-table thead{
	background-color: #b8daff;
	    font-size: 18px;
}
.blue-table.table-bordered>thead>tr>th, .blue-table.table-bordered>tbody>tr>th, .blue-table.table-bordered>tbody>tr>td {
    border: 1px solid #b8daff!important;
	text-align:center;
	
}

.mission-vission-bg {
    background-image: url(images/mydayda-footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 3px solid #00d2eb;
    padding-bottom: 60px;
    padding-top: 75px;
    position: relative;
}
.mission-vission-bg::before {
        background: rgb(0,40,108);
    background: linear-gradient(30deg, rgba(0, 40, 108, 0.9) 20%, rgba(0, 71, 193, 0.9) 90%);
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.pillersCare {
    margin-bottom: 30px;
}
.pillersCare h3 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.pillersCare .pc-sec-1 {
    color: #fff;
    border-top: 4px solid #ffac04;
}
.pillersCare .pc-sec-1 img{
    float:left;
    padding-right: 15px;
    padding-top: 20px;
}
.pillersCare .pc-sec-1 h5{
    float:left;
    width: 80%;
    margin: 0;
    line-height: 24px;
    padding-top: 15px;
    color: #ffdf9f;
}
.pillersCare .pc-sec-1 h5 span{
    font-size:18px;
    text-transform:uppercase;
    line-height: 28px;
    color: #fff!important;
}

.pillersCare .pc-sec-2 {
    color: #fff;
    border-top: 4px solid #ff4e8c;
}
.pillersCare .pc-sec-2 img{
    float:left;
    padding-right: 15px;
    padding-top: 20px;
}
.pillersCare .pc-sec-2 h5{
    float:left;
    width: 80%;
    margin: 0;
    line-height: 24px;
    padding-top: 15px;
    color: #ffbad2;
}
.pillersCare .pc-sec-2 h5 span{
    font-size:18px;
    text-transform:uppercase;
    line-height: 28px;
    color: #fff;
}

.pillersCare .pc-sec-3 {
    color: #fff;
    border-top: 4px solid #91f600;
}
.pillersCare .pc-sec-3 img{
    float:left;
    padding-right: 15px;
    padding-top: 20px;
}
.pillersCare .pc-sec-3 h5{
    float:left;
    width: 80%;
    margin: 0;
    line-height: 24px;
    padding-top: 15px;
    color: #d3ff94;
}
.pillersCare .pc-sec-3 h5 span{
    font-size:18px;
    text-transform:uppercase;
    line-height: 28px;
    color: #fff;
}
.bluebg-section {
    background: rgb(0,40,108);
    background: linear-gradient(30deg, rgba(0,40,108,1) 20%, rgba(0,71,193,1) 90%);
    padding: 45px 0 30px;
}

/*--Slider--*/
/*
inspired from http://codepen.io/Rowno/pen/Afykb
& https://jsfiddle.net/q0rgL8ws/
*/
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
    overflow:hidden;
}
.item.active img {
    transition: transform 5000ms linear 0s;
    /* This should be based on your carousel setting. For bs, it should be 5second*/
    /* transform: scale(1.05, 1.05); */
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
.title-caption {
    background-image: url(images/slide-txt-bg.png);
    width: 450px;
    height: 158px;
    text-align: left;
    padding: 20px 15px 20px 20px;
    vertical-align: middle;
}
.title-caption h1{
   margin: 0px;
   color: #4c4c4c;
   text-transform: uppercase;
   text-shadow: none;
   font-size: 32px!important;
   line-height: 40px;
   padding: 20px 0;
   font-weight: 100;
}
.title-caption h1 .blueTxt {
    color: #00beff;
    font-weight: 600;
    font-size: 32px;
}
.title-caption h1 .blackTxt {
    color: #222;
    font-weight: 600;
    font-size: 32px;
}
.content-caption {
    background-image: url(images/slide-btn-bg.png);
    width: 224px;
    height: 86px;
    text-align: left;
    padding: 5px 20px;
    vertical-align: middle;
    left: 46px;
    position: relative;
    top: -20px;
}
.content-caption a{
	color: #fff;
    text-decoration: none;
}
.content-caption h2{
	font-size: 20px;
    margin: 10px 0;
    text-shadow: none;
}
.content-caption i{
	text-align: center;
    line-height: 48px;
    width: 55px;
    height: 55px;
    font-size: 28px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
    margin-right: 5px;
    border: 5px solid #00bbd1;
    color: #01d1eb;
}
/*--Slider--*/
.RealTimeConct{
	background-color: #184976;
	padding: 45px 0;
}
.RealTimeConct h1{
	color: #fff;
}
.RealTimeConct h1:after{
	content: '';
    border-bottom: 2px solid #00d2eb;
    width: 150px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 60px auto 0px;
}
.RealTimeConct .content{
	margin-left:30px; 
}
.RealTimeConct .content h3{
	color:#fff;
	text-align: left; 
	margin-bottom: 25px;
}
.RealTimeConct .content p{
	font-size: 16px;
	text-align: left; 
	line-height: 26px;
	color: #fff;
}
.impt-cont h1 {
    margin: 60px 0;
    font-size: 32px;
}
.easy-steps {
    text-align: center;
    margin: 15px 0px 30px;
}
.easy-steps h3{
    font-size: 34px;
    margin-bottom: 30px;
}
.easy-steps img {
    width: 80%;
    margin: 15px auto;
}
.footer-main-mt-5{
	margin-top:60px;
}
.blueTxt{color: #00bdff;}
.grenTxt{color: #7db400;}
.pinkTxt{color: #d83d98;}
.orngTxt{color: #e79e00;}

/*-- Small devices (Mobile Phones)--*/
@media (min-width: 320px) and (max-width: 767.98px) { 
	.carousel-caption{
		top:50px;
	}
	.carousel-indicators {
		display: none;
	}
	.title-caption {
		background-image: url(images/slide-txt-bg-mobile.png);
		width: 186px;
		height: 70px;
		text-align: left;
		padding: 5px 5px 5px 10px;
		vertical-align: middle;
	}
		
	.title-caption h1{
	   margin: 0px;
	   color: #4c4c4c;
	   text-transform: uppercase;
	   text-shadow: none;
	   font-size: 13px!important;
	   line-height: 20px;
	   padding: 10px 0;
	   font-weight: 100;
	}
	.title-caption h1 .blueTxt {
		color: #00beff;
		font-weight: 600;
		font-size: 13px;
	}
	.title-caption h1 .blackTxt {
		color: #222;
		font-weight: 600;
		font-size: 13px;
		}

	.content-caption {
		background-image: url(images/slide-btn-bg-mobile.png);
		width: 125px;
		height: 50px;
		text-align: left;
		padding: 5px;
		vertical-align: middle;
		left: 20px;
		position: relative;
		top: -10px;
	}
	.content-caption a{
		color: #fff;
		text-decoration: none;
	}
	.content-caption h2{
		font-size: 12px;
		margin: 7px 2px;
		text-shadow: none;
	}
	.content-caption i{
		text-align: center;
		line-height: 24px;
		width: 28px;
		height: 28px;
		font-size: 14px;
		border-radius: 50%;
		background-color: #fff;
		vertical-align: middle;
		box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
		margin-right: 5px;
		border: 3px solid #00bbd1;
		color: #01d1eb;
	}
	.CCM-Banner {
		background:#fff;
		width: 100%;
		height: 390px;
		position: relative;
		background-size: cover;
		background-image: url(images/mydayda-ccm-banner-bg-img-mob.png);
		background-position: right;
	}
	.CCM-Banner h1 {
		padding-top: 30px;
		font-size: 26px;
	}
	.CCM-Banner p {
		font-size: 16px;
		line-height: 24px;
		margin: 20px 0px;
	}
	.CCM-Sec .blueHeading {
		text-align: center;
		margin: 30px 20px 0px;
		line-height: 28px;
		font-size: 20px;
		color: #003668;
	}
	.CCM-Sec .blueHeading:after {
		margin: 45px auto 0px;
	}
	.padding-100 {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.padding-90 {
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.type-post .latest-news-content {
		padding: 15px 20px;
	}
	.entry-header h1 {
		font-size: 26px;
		margin: 10px 0;
	}
	.type-post .entry-header h3.entry-title a {
		font-size: 16px;
	}
	.type-post .latest-news-content > a.read-more {
		padding: 10px 15px;
	}
	
	.RealTimeConct{
		background-color: #184976;
		padding: 30px 0;
	}
	.RealTimeConct h1{
		color: #fff;
		font-size: 30px;
	}
	.RealTimeConct h1:after{
		content: '';
		border-bottom: 2px solid #00d2eb;
		width: 150px;
		position: absolute;
		left: 0;
		right: 0;
		margin: 40px auto 0px;
	}
	.RealTimeConct img{
		margin-top: 30px;
	}
	.RealTimeConct .content{
		margin-left:0px; 
	}
	.RealTimeConct .content h3{
		color:#fff;
		text-align: left; 
		margin-top: 25px;
		margin-bottom: 25px;
	}
	.RealTimeConct .content p{
		font-size: 16px;
		text-align: left;
		line-height: 26px;
		color: #fff;
	}
	.pillersCare .pc-sec-1, .pillersCare .pc-sec-2, .pillersCare .pc-sec-3{
		margin: 30px 0 0; 
	}
	.bluebg-section {
		background: rgb(0,40,108);
		background: linear-gradient(30deg, rgba(0,40,108,1) 20%, rgba(0,71,193,1) 90%);
		padding: 25px 0 25px;
	}
	.mission-vission-bg {
		background-image: url(images/mydayda-footer-bg.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		border-top: 3px solid #00d2eb;
		padding-bottom: 30px;
		padding-top: 30px;
		position: relative;
		background-position: center;
	}
	.offer-section .offer-box {
		padding: 15px 15px 0px;
	}
	.about-section {
		background-color: #fff;
		padding-top: 30px;
		padding-bottom: 0;
	}
	.about-section .about-content h5 {
		color: #232323;
		font-size: 26px!important;
		font-weight: 700;
		line-height: 36px;
		margin-top: 15px;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.extra-services {
		/* background-image: url(../../assets/images/whyus-sec-bg.jpg); */
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		padding-top: 15px;
		padding-bottom: 30px;
	}
	.extra-services h4{
		text-align: center;
		line-height: 26px;
		color: #fff;
		font-weight: 300;
		padding: 0;
		font-size: 16px;
	}
	.services-section {
		padding-top: 45px;
	}
	.whyUs-secBG-P0 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 30px;
		top: 0px;
	}
	.whyUs-secBG-P0 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 10px;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG-P0 .icon-sec h4 {
		font-size: 16px;
		line-height: 26px;
		width: 70%;
		float: left;
	}
	.whyUs-secBG-P0 h3 {
		font-size: 20px;
		line-height: 30px;
	}
	.whyUs-secBG-P1 {
		background: #fff;
		width: 100%;
		height: auto;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P1 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG-P2 {
		background: #fff;
		width: 100%;
		height: auto;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P2 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 10px;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG-P3 {
		background: #fff;
		width: 100%;
		height: auto;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P3 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 32px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG-P4 {
		background: #fff;
		width: 100%;
		height: auto;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P4 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.team-section {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.team-section .section-header h2{
		font-size:24px;
	}
	
	.whyUs-secBG1 {
		background:#fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
	}
	.whyUs-secBG1 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG2 {
		background:#fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG2 h5 {
		color: #232323;
		font-size: 24px;
		font-weight: 700;
		line-height: 34px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG3 {
		background: #fff;
		width: 100%;
		height: 600px;
		position: relative;
		background-size: cover;
		padding: 45px 0 60px;
		top: -1px;
	}
	.whyUs-secBG3 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG4 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG4 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.whyUs-secBG5 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG5 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.cancerPG-sec2 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.cancerPG-sec2 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 15px 0;
	}
	.cancerPG-sec3 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
	}
	.cancerPG-sec3 h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.impt-cont h1 {
		margin: 30px 0;
		font-size: 22px;
	}
	.other-services {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.other-services .other-services-block {
		padding: 0;
	}
	.footer-main .contact-info {
		margin-bottom: 10px;
	}
	.other-services-block {
		display: block;
		margin: 16px auto;
		max-width: 320px;
		text-align: left;
	}
	.clients {
		background-color: #fff;
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.carrier-section {
		background-color: #f1f1f1;
		padding: 30px 15px;
	}
	.carrier-section .h4, h4 {
		font-size: 18px;
		line-height: 26px;
	}
	.rpm-section {
		padding: 30px 0 0px;
	}
	.ccm-rpm-secBG h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.rpm-content h5 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 32px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
		text-align: center;
	}
	.rpm-section h3 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 33px;
		margin-top: 0;
		margin-bottom: 20px;
		position: relative;
		padding-bottom: 10px;
		text-align: center;
	}
	.rpm-section h4 {
		line-height: 26px;
		margin: 25px auto 0;
		font-size: 22px;
		text-align: center;
		border-bottom: 3px solid #e6e6e6;
		width: fit-content;
		padding-bottom: 5px;
	}
	.rpm-section img {
		width: 100%;
		margin: 10px auto;
	}
	.rpm-section h5 {
		line-height: 26px;
		margin: 20px auto;
		font-size: 22px;
		text-align: center;
	}
	.rpm-panel {
		border-color: #b8daff;
		text-align: center;
		margin: 15px;
	}
	.rpm-panel .panel-body {
		padding: 10px;
		height: auto;
		color: #333;
		font-size: 14px;
		line-height: 22px;
	}
	.ccm-section h3 {
		color: #232323;
		font-size: 26px;
		font-weight: 700;
		line-height: 32px;
		margin-top: 0;
		margin-bottom: 20px;
		position: relative;
		padding-bottom: 10px;
		text-align: center;
	}
	.ccm-section h4 {
		line-height: 30px;
		margin: 25px auto;
		font-size: 22px;
		text-align: center;
		border-bottom: 3px solid #e6e6e6;
		width: 85%;
		padding-bottom: 7px;
	}
	.ccm-section .mydayda-list {
		width: 85%!important;
		margin: 0 auto 15px;
	}
	.ccm-section h5 {
		line-height: 30px;
		margin: 20px auto;
		font-size: 22px;
		text-align: center;
	}
	.ccm-section img {
		width: 100%;
		margin: 10px auto;
	}
	.ccm-panel {
		border-color: #ccff95;
		text-align: center;
		margin: 15px;
	}
	.ccm-panel .panel-body {
		padding: 5px;
		height: auto;
		color: #333;
		font-size: 14px;
		line-height: 22px;
	}
	.footer-main {
		padding-top: 30px;
		padding-bottom: 10px;
	}
	.footer-main-mt-5{
		margin-top:0px;
	}
 }
 

@media (min-width: 768px) and (max-width: 1023px) { 

	.carousel-indicators {
		display: none;
	}	
	.title-caption {
		background-image: url(images/slide-txt-bg-tab.png);
		width: 285px;
		height: 105px;
		text-align: left;
		padding: 15px 8px 15px 15px;
		vertical-align: middle;
	}
	.title-caption h1{
	   margin: 0px;
	   color: #4c4c4c;
	   text-transform: uppercase;
	   text-shadow: none;
	   font-size: 20px!important;
	   line-height: 24px;
	   padding: 15px 0;
	   font-weight: 100;
	}
	.title-caption h1 .blueTxt {
		color: #00beff;
		font-weight: 600;
		font-size: 20px;
	}
	.title-caption h1 .blackTxt {
		color: #222;
		font-weight: 600;
		font-size: 20px;
	}
	.content-caption {
		background-image: url(images/slide-btn-bg-tab.png);
		width: 175px;
		height: 60px;
		text-align: left;
		padding: 5px 15px;
		vertical-align: middle;
		left: 35px;
		position: relative;
		top: -20px;
	}
	.content-caption a{
		color: #fff;
		text-decoration: none;
	}
	.content-caption h2{
		font-size: 16px;
		margin: 8px 0;
		text-shadow: none;
	}
	.content-caption i{
		text-align: center;
		line-height: 30px;
		width: 35px;
		height: 35px;
		font-size: 17px;
		border-radius: 50%;
		background-color: #fff;
		vertical-align: middle;
		box-shadow: inset 0px 5px 5px 0px rgba(0, 0, 0, 0.06);
		margin-right: 2px;
		border: 3px solid #00bbd1;
		color: #01d1eb;
	}
	.CCM-Banner {
		background: #fff;
		width: 100%;
		height: auto;
		position: relative;
		background-size: cover;
		background-image: url(images/mydayda-ccm-banner-bg-img-mob.png);
		background-position: right;
		padding-bottom: 45px;
	}
	.CCM-Banner h1 {
		padding-top: 45px;
		font-size: 30px;
	}
	.CCM-Sec .blueHeading {
		text-align: center;
		margin: 45px 30px 0px;
		line-height: 3.5rem;
		font-size: 2.5rem;
		color: #003668;
	}
	.CCM-Sec .blueHeading:after {
		margin: 45px auto 0px;
	}
	.type-post .latest-news-content {
		padding: 15px;
	}
	.entry-header h1 {
		font-size: 26px;
		margin: 10px 0;
	}
	.type-post .entry-header h3.entry-title a {
		font-size: 16px;
	}
	.RealTimeConct img {
		margin-top: 45px;
	}
	.mission-vission-bg {
		background-image: url(images/mydayda-footer-bg.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		border-top: 3px solid #00d2eb;
		padding-bottom: 10px;
		padding-top: 20px;
		position: relative;
	}
	.offer-section .row [class*="col-sm"]:nth-child(2n+1) {
		clear: unset;
	}
	.offer-section .offer-box {
		background-color: transparent;
		border-radius: 10px;
		padding: 3px 3px 0px;
		margin-bottom: 3px;
		text-align: center;
		-webkit-transition: all 1s ease 0s;
		-moz-transition: all 1s ease 0s;
		-o-transition: all 1s ease 0s;
		transition: all 1s ease 0s;
		transform: scale(1);
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
	}
	.pillersCare .pc-sec-1 {
		color: #fff;
		border-top: 4px solid #ffac04;
		height: 175px;
	}
	.pillersCare .pc-sec-2 {
		color: #fff;
		border-top: 4px solid #ff4e8c;
		height: 175px;
	}
	.pillersCare .pc-sec-3 {
		color: #fff;
		border-top: 4px solid #91f600;
	}
	.extra-services {
		/* background-image: url(../../assets/images/whyus-sec-bg.jpg); */
		background-repeat: no-repeat;
		background-size: cover;
		position: relative;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.whyUs-secBG-P0 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 45px 0 30px;
		top: -1px;
	}
	.whyUs-secBG-P0 .icon-sec img {
		width: 72px;
		float: left;
		margin-right: 20px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.whyUs-secBG-P0 .icon-sec h4 {
		font-size: 16px;
		line-height: 26px;
		width: 70%;
		float: left;
	}
	.whyUs-secBG-P0 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 38px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG-P0 h3 {
		font-size: 24px;
		line-height: 34px;
	}
	.whyUs-secBG-P1 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG-P2 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG-P1 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P3 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG-P2 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P3 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG-P4 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 28px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG-P4 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.services-section {
		padding-top: 35px;
	}
	.whyUs-secBG1 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0px;
	}
	.whyUs-secBG1 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 34px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG2 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG2 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 36px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG3 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG3 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG4 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
		top: -1px;
	}
	.whyUs-secBG4 .content-sec {
		margin: 0;
	}
	.whyUs-secBG4 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.whyUs-secBG5 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
		top: -1px;
	}
	.whyUs-secBG5 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.cancerPG-sec2 h5 {
		color: #232323;
		font-size: 32px;
		font-weight: 700;
		line-height: 40px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.about-section .about-content h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 28px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 10px;
	}
	.cancerPG-sec3 {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0;
	}
	.cancerPG-sec3 h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 30px;
		margin-top: 0;
		margin-bottom: 10px;
		position: relative;
		padding-bottom: 10px;
	}
	.about-section {
		background-color: #fff;
		padding-top: 0px;
		padding-bottom: 0;
	}
	.impt-cont h1 {
		margin: 40px 0;
		font-size: 28px;
	}
	.ccm-rpm-secBG h5 {
		color: #232323;
		font-size: 28px;
		font-weight: 700;
		line-height: 32px;
		margin-top: 0;
		margin-bottom: 15px;
		position: relative;
		padding-bottom: 15px;
	}
	.ccm-rpm-secBG {
		background: #fff;
		width: 100%;
		position: relative;
		background-size: cover;
		padding: 30px 0 0;
	}
	.easy-steps img {
		width: 100%;
		margin: 15px auto;
	}
	.rpm-section img {
		width: 90%;
		margin: 10px auto;
	}
	.ccm-section img {
		width: 100%;
		margin: 10px auto;
	}
}

@media (min-width: 1024px) { 

	.pillersCare .pc-sec-1 img, .pillersCare .pc-sec-2 img, .pillersCare .pc-sec-3 img{
		    width: 50px;
	}
}


.read-more {
    background-color: #00d2eb;
    border: 1px solid #00d2eb;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 16px;
    padding: 10px 15px;
    text-decoration: none;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    position: relative;
    font-weight: 500;
    z-index: 1;
}
.read-more:hover {
    background-color: transparent;
    color: #00d2eb;
}
#myTable .table thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: middle;
}
#myTable .table td, #myTable .table th {
    padding: 1.25rem 1rem!important;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
}
.blue-table-bg{
	background-color: #003b9f;
    color: #ffffff;
}
.green-table-bg{
	background-color: #9cd603;
    color: #ffffff;
}
.pink-table-bg{
	background-color: #ff21a4;
    color: #ffffff;
}
.yallow-table-bg{
	background-color: #fda004;
    color: #ffffff;
}
