@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@700&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url("/3rdparty/bootstrap/css/bootstrap.min.css");
@import url("/core/css/global.css");

/* Mobile first; then... */  
@media (min-width: 768px) {
	/* small eg iPad portrait */  
}
@media (min-width: 992px) {
	/* medium, e.g iPad landscape, older monitors, laptops  */
}
@media (min-width: 1200px) {
  /* large, e.g newer monitors, laptops */
}
/* optional for larger screens 
.visible-xl-block {
	  display:none;
  }
@media (min-width: 1400px) {
  .container {
    width: 1370px;
  }
  .visible-lg-block {
	  display:none !important;
  }
  .visible-xl-block {
	  display:block;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}

// SUGGESTION FOR THEMES https://bootswatch.com

*/



.lt-blue {
	color:#afd1f0;
}

.blue {
	color:#0078bf !important;
}

.dk-blue {
	color: rgba(0,46,82,1);
}

.grey {
	color:#dadada;
}
.grey-bg {
	background-color:#ededed;
}

/* BOOTSTRAP OVERRIDES */

.img-responsive {
	width:100%;
}

.btn {
	
}

.btn.btn-primary{border-radius:0;
	padding: 15px 30px;
	text-transform:uppercase;
	background-color:#0078bf;
	border-color:#0078bf;
}



/* TYPOGRAPHY */

a {
	color:inherit;
	outline:none;
}


* {
	-webkit-text-size-adjust: 100%; /* stops font size changing in iOS */
	
	/*-webkit-font-smoothing: subpixel-antialiased;  makes safaro looks like Firefox */
	-moz-osx-font-smoothing: grayscale; /* fonts don't appear heavier in Firefox */
}  

body, button, input, select, textarea, th, td { font-family: 'Open Sans', sans-serif;  color:rgba(102,102,102,1); text-rendering: optimizeLegibility;font-size:16px;
	line-height:1.5;}
 i.glyphicon  {
	
	 top:.2em;
 }
 
 p.lead {
	 font-size:20px;
 }

h1,h2,h3, h4,.nunito {
	font-weight:bold;font-family: 'Nunito Sans', sans-serif;
	
}

h1,h2,h3, h4, p.lead {
	color:#002e52;
} 

h1{
	margin-bottom:30px;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #8d7f6f;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #8d7f6f;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #8d7f6f;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #8d7f6f;
}
input:focus::-webkit-input-placeholder 
{
    color: transparent !important;
}


hr { 
   
    border-style:none;
    border:none;
	border-top:2px solid #0078bf;
}

/**** RE-ORDERING IWTH CSS ******

#wrapper {display:table;}

#first {display:table-caption;}
#second {display:table-header-group;}
#last {display:table-footer-group;}

*/


/* ALWAYS SHOW SCROLL BARS

 ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}


*/

.my-parallax-element {
   ...
   background-attachment: fixed;
   ...
}

@supports (-webkit-overflow-scrolling: touch) {

        .my-parallax-element {
            background-attachment: scroll;
        }
    }


/* Truncate to number of lines */



.truncate {
  display: block; /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 400px;
  height: 36px; /* Fallback for non-webkit = font-size x line-height x lines to show */
  margin: 0 auto;
  font-size: 10px;
  line-height: 1.2;
  -webkit-line-clamp: 3; /*lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vertical-center {
 /* centers anything vertically if you don't know dimensions */
  position: relative;/* or absolute*/
  top: 50%;
   display:block; /* can use on span*/
  transform: translateY(-50%);
  /* note you can do this with absolute on x axis too  */
}

.vertical-center-page {
	 top: 50vh; /* additional for iOS */
}

/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
	width:100%;
}
.row-xs-height {
    display:table-row;
	height:100%; /* firefox fix */
}
.col-xs-height {
    display:table-cell;
    float:none;
	height:100%; /* firefox fix */
}
@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
		width:100%;
		
    }
    .row-sm-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-sm-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}
@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
		width:100%;
		
    }
    .row-md-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-md-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}
@media (min-width: 1200px) {
    .container-lg-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
		width:100%;
    }
    .row-lg-height {
        display:table-row;
		height:100%; /* firefox fix */
    }
    .col-lg-height {
        display:table-cell;
        float:none;vertical-align:top;
		height:100%; /* firefox fix */
    }
}

.care-home-links > div {
	margin-bottom:30px;
}

.care-home-links > div > div {
	background-color: rgba(0,120,191,0.5);
}
.care-home-links > div:last-child > div {
	background-color: rgba(175,209,240,0.5);
}

.care-home-links .img-logo {
	height:100px;
	width:auto;	
	display:block;
	margin:15px auto;
}

.care-home-links .btn {
	margin-bottom:-25px;
	margin-top:15px;
}

.care-home-links {
	margin-bottom:25px;
}

.visit-faq-links > div {
	margin-bottom:15px;
}

.visit-faq-links table tr td {
	padding:0;
	width:50%;
}

.visit-faq-links table tr td img {
	width:100%;
	max-width:100%;
}

.visit-faq-links table tr td:last-child {
	vertical-align:middle;
	padding: 0 15px;
	background-color:#dadada;
}

.welcome-links img {
	display:block;
	max-width:50%;
	margin: 0 auto;
}

.welcome-images {
	padding:30px 999em;
	margin:30px -999em;
}

.table-images  {
	width:100%;
}

.table-images  td {
	padding:3px;
}

.table-images img {
	max-width:100%;
	width:100%;
}

.footer-links {
	color: rgba(0,46,82,1);

}