
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Default Styles
2.0 Head Styles
3.0 Main Content
4.0 Footer
5.0 BS Overides
6.0 Navscroll
7.0 Slick Overides
8.0 Responsive Captcha
9.0 Media Queries
--------------------------------------------------------------*/

/* 
colours 
	
	
		
*/

body 
{
	font-family: 'Source Sans Pro', sans-serif;
	color:#313a45;
	background-image:url('../images/bannerbg.jpg');
    background-attachment: fixed;
	background-size: cover;
	background-position:center;
	background-repeat:no-repeat;
}
p, li, i
{
	font-family: 'Source Sans Pro', sans-serif;
	color:#313a45;
	font-size:18px;
	line-height:30px;
	font-weight:300;
	letter-spacing:1px;
}

h1
{
	margin:0;
    font-family: 'Source Sans Pro', sans-serif;
	font-size:32px;
	font-weight:600;
	color:#313a45;
}
h1.large
{
	font-size:42px;
}
h2
{
	margin:0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size:32px;
	font-weight:600;
	color:#313a45;
}
h2.large
{
	
}
h3
{
	margin:0;
	font-family: 'Source Sans Pro', sans-serif;
	font-size:24px;
	font-weight:600;
	color:#313a45;
}
h4
{
	margin:0;
	font-family: 'Source Sans Pro', sans-serif;
	color:#313a45;
	font-weight:600;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus{
	text-decoration:none;
}
a
{
	color:inherit;
}
a:hover, a:focus
{
	color:inherit;
}
.fix-body
{
	position: fixed;
	width:100%;
}
.phone-number{
	font-size:32px;
	font-weight:300;}
/*--------------------------------------------------------------
1.0 Default Styles
--------------------------------------------------------------*/

.flex-center-container
{
    width:100%;
    height:0;
    padding-bottom:100%;
    position:relative;
}
.flex-center {
    -webkit-box-pack: center;
    -webkit-box-align: center;
    display: -webkit-inline-box;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: absolute;
    width: 100%;
}

.flex-default{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-col{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:column;
 	flex-direction:column;
}
.flex-row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 	-ms-flex-direction:row;
 	flex-direction:row;
}
.flex-in{
	-ms-flex: 1;  
	-webkit-box-flex: 1;  
	flex: 1;
}
.flex-wrap{
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.margin-top-auto{
	margin-top:auto;
}

.flex-justify{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-justify-between{
	-webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.center-h {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
}

.social-icon{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
	width:45px;
	height:45px;
	border-radius:50%;
	margin-right:10px;
}
.social-icon:last-child		{margin-right:0;}
.social-icon.facebook 		{background-color:#3a5897;}
.social-icon.facebook img	{height:30px;}
.social-icon.twitter 		{background-color:#54aced;}
.social-icon.twitter img	{height:20px;}
.social-icon.google 		{background-color:#dc4e41;}
.social-icon.google img		{height:20px;}



textarea{ resize:vertical;}
.btn.custom
{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	background-color:#53C4D7;
	color: #ffffff;
	border-radius:12px;
	font-size:22px;
	padding: 14px 30px;
	font-weight:700;
}
.btn.custom:hover, .btn.custom:focus
{
	background-color:#44a9c8;
}
.btn.custom.alt
{
}
.btn.custom.alt:hover, .btn.custom.alt:focus
{	
}

.default-bg-image
{
	width:100%;
	height:0;
	padding-bottom:100%;
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.default-bg-image.circle
{
	border-radius:50%;
}
.default-bg-image.hero
{
	padding-bottom:20%;
}
.default-bg-image.landscape
{
	padding-bottom:40%;
}
.bg-image{
	width:100%;
	height:auto;
	position:relative;
	background-position: center;
	background-repeat:no-repeat; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.img-mask{
	height:0;
	padding-top:50%;
	overflow:hidden;
	position:relative;
}
.img-mask img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.padding-remove{padding:0;}
.margin-remove{margin:0;}

.margin-top-xlarge{margin-top:120px;}
.margin-top-large{margin-top:60px;}
.margin-top-medium{margin-top:30px;}
.margin-top-small{margin-top:15px;}
.margin-bottom-small{margin-bottom:15px;}
.margin-bottom-medium{margin-bottom:30px;}
.margin-bottom-large{margin-bottom:60px;}
.margin-bottom-xlarge{margin-bottom:120px;}
.padding-bottom-large{padding-bottom:60px;}
.padding-bottom-medium{padding-bottom:30px;}
.padding-bottom-small{padding-bottom:15px;}
.padding-top-large{padding-top:60px;}
.padding-top-medium{padding-top:30px;}
.padding-top-small{padding-top:15px;}

.padding-small{padding:20px;}
.padding-medium{padding:40px;}
.padding-large{padding:60px;}

.white{color:#ffffff;}
.blue{color:#53C4D7;}
.bg-blue{background-color:#53C4D7;}
.bg-white{background-color:#ffffff;}
.bg-light-grey{background-color:#f5f7fa;}
.bg-dark-grey{background-color:#343e49;}
.bg-dark-grey, .bg-dark-grey p{
	color:#cccfd1;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #49525c;
}
hr.light {
    border-top: 1px solid #F0F0F0;
}


.icon-btn img{
	height:60px;
	position: absolute;
	left:0;
	top:0;
}
a.icon-btn img{
	position: relative;
	margin-right:15px;
	vertical-align: top;
}
.icon-btn{
	font-size:22px;
	display:block;
	font-weight:300;
	margin-bottom:30px; 
	padding-left:75px;
	position:relative;
	line-height:60px;
}
a.icon-btn{
	padding-left:0;
}
a.icon-btn:before{
	content:'';
	width:60px;
	height:60px;
	position: absolute;
	border-radius:50%;
	display:inline-block;
}
a.icon-btn:hover, .icon-btn:focus{
	text-decoration:none;
}
a.icon-btn:hover:before, .icon-btn:focus:before{
	animation: pulse 2s linear forwards;
}
@keyframes pulse{
	0%{box-shadow:0 0 0 0 rgba(83,196,215,.4)}
	70%{box-shadow:0 0 0 20px rgba(83,196,215,0)}
	100%{box-shadow:0 0 0 0 rgba(83,196,215,0.)}
}
/*default styles end*/

/*--------------------------------------------------------------
2.0 Head Styles
--------------------------------------------------------------*/
.header{
	position: fixed;
	top:0;
	width:100%;
	z-index:1;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.buttons
{
	display:none;
	width:100%;
	margin:0;
	background-color:#ffffff;
	position:relative;
	z-index:21;
	text-align:left;
}

.buttons button
{
	margin:0;
	background-color: transparent;
	position: absolute;
    left: 0;
    top: 0;
	padding: 16px 20px;
}
.buttons button:hover
{
	background-color: #fff;
}
nav.menu
{
	background-color: #f5f7fa;
	overflow:scroll;
}
nav.menu ul {
    padding: 80px 0 0 0;
	width:100%;
}
nav.menu ul .dropdown-menu
{
	width:100%;
	border-radius:0;
	padding:0;
}
nav.menu ul .dropdown-menu a
{
	color:#000000;
}
nav.menu ul .dropdown-menu a:hover, nav.menu ul .dropdown-menu a:focus
{
	color:#53C4D7;
}
nav.slide-menu-left button.close-menu
{
	width:100%;
	background-color:#6a0f0f;
	font-size:22px;
	margin:0;
}
nav.slide-menu-left li
{
	border:none;
}
nav.slide-menu-left a
{
	font-size:14px;
	padding:12px 5px;
	letter-spacing:2px;
    text-transform: uppercase;
	color:#313a45;
}
nav.slide-menu-left a:hover, nav.slide-menu-left a:focus
{
	text-decoration:none;
	color:#ffffff;
	background-color:#53C4D7;
}


#nav-icon1, #nav-icon2, #nav-icon3, #nav-icon4 {
  width: 40px;
  height: 25px;
  position: relative;
  margin: 5px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon1 span, #nav-icon3 span, #nav-icon4 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #343e49;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3) {
  top: 20px;
}

#nav-icon1.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
nav.slide-menu-left, nav.push-menu-left {
    left: -100%;
	width: 100%;
}
/* head styles end */

/*--------------------------------------------------------------
3.0 Main Content
--------------------------------------------------------------*/
.quicklinks .flex-center{
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.quicklinks a:hover .flex-center{
	background-color:rgba(255,255,255,0.3);
}
.quicklinks h3, .quicklinks p{
	color:#ffffff;
}
.quicklinks p{
	font-size:22px;
}
.container-fluid.large > .bg-white.padding-medium{
	border-radius:10px;
}
/* main content end */
.hero .default-bg-image.hero .flex-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}
/*--------------------------------------------------------------
4.0 Footer
--------------------------------------------------------------*/
.footer a{
	color:#53C4D7;
}
/* footer end */

/*--------------------------------------------------------------
5.0 BS Overides
--------------------------------------------------------------*/

.form-control
{
	height:auto;
	padding:20px;
	border-radius:12px;
	background-color:#f5f7fa;
	border: none;
	color:#313a45;
	font-weight:300;
	font-size:18px;
	box-shadow: none;
}
.captchaContainer input
{
	width:100%;
	height:auto;
	padding:13px;
	border-radius:0;
	border:none;
	margin-bottom:20px;
	background-color:#f1f1f1;
}

.img-responsive
{
	display:inline;
}
.nav
{
	float: right;
	margin:0 auto;
	display:table;
} /* center navigation */
.navbar{
	border:none;
	margin:0;
}
.navbar-nav>li>a{
	    padding: 35px 20px;
    font-size: 18px;
    font-weight: 300;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.navbar-nav>li>a:hover, .nav .open>a, .nav .open>a:hover, .nav .open>a:focus {
	background-color: transparent;
	color:#53C4D7;
}
.navbar-nav>li>.dropdown-menu {
    border-radius:10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: none;
    -webkit-box-shadow: 0 7px 10px rgba(0,0,0,0.15);
    box-shadow: 0 7px 10px rgba(0,0,0,0.15);
	padding:10px;
}
.dropdown-menu>li>a {
    padding: 7px 20px;
    font-weight: 300;
    color: #313a45;
    font-size: 16px;
	transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    color: #53C4D7;
	background-color: #ffffff;
}
/* BS overrides end */


/*--------------------------------------------------------------
6.0 Navscroll
--------------------------------------------------------------*/
.navScroll
{
	display:none;
	position:fixed;
	bottom:50px;
	right:20px;
	z-index:1000;
	background-color:rgba(200, 200, 200, 0.7);
	padding:20px 10px;
	border-radius:0;
}
.navScroll img{height:25px;}
.navScroll a
{
	text-decoration:none;
}
.navScroll:hover
{
	background-color:rgba(200, 200, 200, 1);
}
/* navScroll end */

/*--------------------------------------------------------------
7.0 Slick Overides
--------------------------------------------------------------*/
.slick-next:before, .slick-prev:before {
	content: "";
	height:62px;
  	width:34px;
  	display:inline-block;
	background-repeat:no-repeat;
	background-position:center;
	background-size: contain;
}
.slick-prev:before {
  background-image:url('../images/left-arrow.html');
}
.slick-next:before {
  background-image:url('../images/right-arrow.html');  
}

.slick-prev, .slick-next
{
	height:62px;
  	width:34px;
}

.slick-prev {
  left: -40px;
}
.slick-next {
  right: -40px;
}
.slick-container{
	margin:0;
}
.slick-dots{bottom:60px;}
.slick-dots li button:before{content:'';}
.slick-dots li button {
	border:3px solid #ffffff;
	border-radius:50%;
}
.slick-dots li.slick-active button {
	border:3px solid #ffffff;
	border-radius:50%;
	background-color:#ffffff;
}
/* Slick Overides End */



/*--------------------------------------------------------------
8.0 Responsive Captcha
--------------------------------------------------------------*/

.g-recaptcha{
	position: relative;
    top: -10px;
	overflow:hidden;
}
.g-recaptcha iframe:hover{
	cursor:pointer;
}
.g-recaptcha iframe{
	border: none;
}
.recaptcha-container{
	overflow:hidden; height:52px;
	position: relative;
	border-radius: 12px;
	border:1px solid #d0d0d0;
}
.g-overlay{
	position:absolute;
	left:0;
	display:block;
	width:100%;
	height:52px;
	top:0;
	pointer-events: none;
}
.g-overlay-in{
	left:0;
	display:block;
	width:100%;
	overflow:hidden;
	border: none;
	height:52px;
	top:0;
	position:relative;
	pointer-events: none;
}
.g-overlay-in:after{
	content:"I'm not a robot";
	background-color:#f9f9f9;
	width:100%;
	height:100%;
	position:absolute;
	left:45px;
	pointer-events: none;
	line-height: 48px;
    color: #555;
    font-size: 14px;
	padding-left:10px;
}
/* responsive captcha end */


.pagination>.disabled>span, .pagination>.disabled>span:hover, .pagination>.disabled>span:focus, .pagination>.disabled>a, .pagination>.disabled>a:hover, .pagination>.disabled>a:focus{
	border:none;
	color:#313a45;
}
.pagination>.active>a, .pagination>.active>span, .pagination>.active>a:hover, .pagination>.active>span:hover, .pagination>.active>a:focus, .pagination>.active>span:focus {
    background-color: #53C4D7;
    border: none;
}
.pagination>li>a, .pagination>li>span {
    border: none;
	color:#313a45;
}
.pagination>li>a:hover, .pagination>li>span:hover, .pagination>li>a:focus, .pagination>li>span:focus {
    color: #fff;
    background-color: #53C4D7;
}

.adsbygoogle{
	width:728px;
}

/*--------------------------------------------------------------
9.0 Media Queries
--------------------------------------------------------------*/
@media (min-width: 1500px) 
{
	/*.container-fluid.large{
		padding-left:150px;
		padding-right:150px;
	}*/
}
@media (min-width: 1800px) 
{
	.container-fluid.large{
		padding-left:150px;
		padding-right:150px;
	}
}


@media (max-width: 1200px) 
{
	.navbar-nav>li>a {   
		padding: 35px 15px;
    	font-size: 16px;
	}
	.dropdown-menu>li>a {
    	font-size: 14px;
	}
	.adsbygoogle{
		width:100%;
	}
}

@media (max-width: 992px) 
{
	.text-center-tablet{text-align:center;}
	.margin-top-xlarge{margin-top:60px;}
	.margin-top-large{margin-top:40px;}
	.margin-bottom-large{margin-bottom:40px;}
	.margin-bottom-xlarge{margin-bottom:60px;}
	.navbar-nav>li>a {
    	padding: 30px 8px;
    	font-size: 13px;
	}
}

@media (max-width: 767px)
{
	.buttons
	{
		display:block;
		text-align:center;
		padding:10px 0;
	}
	.text-center-mobile{text-align:center;}
	h1.large {
	    font-size: 28px;
	}
	h2 {
	    font-size: 22px;
	}
	.phone-number {
    	font-size: 22px;
	}
	p{font-size:16px;}
	.icon-btn {
    	font-size: 18px;
		padding-left: 0;
		line-height: 40px;
		text-align:center;
	}
	.icon-btn img {
    	height: 40px;
		position:relative;
		margin-right: 15px;
	}
	a.icon-btn:before {
    	width: 40px;
    	height: 40px;
	}
	.header {
    	position: relative;
    	z-index: 16;
	}
	.quicklinks img{height:40px;}
	.quicklinks p {
	    font-size: 16px;
	}
	.btn.custom {
    	font-size: 18px;
    	padding: 10px 25px;
	}
	body 
	{
		background-image:url('../images/bannerMobile.jpg');
		background-position:top;
		background-size: cover;
	}
	.navScroll
	{
		bottom:75px;
	}
	.navScroll img{height:18px;}
}
@media (max-width: 480px)
{
	.padding-medium{padding:15px;}
	.icon-btn {
    	font-size: 14px;
		line-height: 30px !important;
	}
	a.icon-btn img {
    	margin-right: 5px;
	}
	.icon-btn img {
	    height: 30px;
	}
	a.icon-btn:before {
    	width: 30px;
    	height: 30px;
	}
	body 
	{
		background-size: contain;
	}
}
/* Media Queries End */

/* AH additional for social care table*/
.bordered { border:1px solid silver; padding-right:5px;}
.bordered h3 { padding:10px; }
.bordered p.text-center { padding-top:10px; }
.bordered p, .bordered li
{
	font-size:14px;
	line-height:20px;
	font-weight:300;
	letter-spacing:0.5px;
}