@import url('https://fonts.googleapis.com/css?family=Open+Sans');


:root {

	--prim-colour: #272660; /* On CFC - currently the deep blue colour */
	--seco-colour: #3A4149; /* On CFC - currently the dark bluey-gray colour */
	--tert-colour: #03a762; /* On CFC - currently the logo greeny colour - #00a65d (a touch different)   */
	--quat-colour: #C0C0C0; /* On CFC - currently silver gray */
	--quin-colour: #bebebe; /* On CFC - currently silver gray also?? */
	--sena-colour: #333333; /* On CFC - currently dark gray colour for text */
	--sept-colour: #f9f9f9; /* On CFC - currently dropdown background just off-white (v.light gray) */
	--octo-colour: #DCDCDC; /* On CFC - currently background colour to blend with the background image of the Purcell Cole clini - gainsboro */
	--nona-colour: white;   /* On CFC - currently blank background colour - here - white . */

	--tert-variant: #006837; /**/
	--logocolour1: #003d7e; /* midnightblue in the Logo design */
	--def-text: #000000; /* black text where not shifted */
	--hi-colour: white; /* On CFC - white currently colour for highlighting non-white text  */
	--email-hovertext: darkgray; /* #e3e1e1; /* here - very light grey just to be a noticeable change from white */
	
	--lineheight-common: 1.5;
	--lineheight-expanded: 2;
	/*	see also the linked stylesheets in index head	*/

} 

/* * {
	outline: darkred solid 1px;
} */

.ol {
    
    outline: darkred solid 3px;

}

*, *::before, *::after {
	box-sizing: border-box;
  }
  

body    {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    line-height: var(--lineheight-common);
    font-weight: 400;
    text-align: center;
    color: var(--sena-colour);
	min-height: 50vh;
    
}

/* Top bar (header) with contact details */
#contactDetails, #email, #phone {
	padding: 0 0;
    font-size: 12px;
	font-weight: 400;
    color: var(--hi-colour);	
}

#contactDetails {	
	height: 31px;
	background-color: var(--prim-colour);		
}

.cdbuffer {
	padding-top: 6px;
}

.mail{
    color: var(--hi-colour);

}
.mail:hover{
    color: silver;

}

img.phone-icon, img.email {
	width: 14px;
	height: 14px;
}

.top-phone {
	margin-right: 26px;
}

a { text-decoration: none; }



/* *********************************** */


/* Desktop logo */
.logoDiv {
    height: 130px;

}

.logo {
    background-image: url("../images/chelmsford-foot-clinic.png");
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    top: .7em;

}	

/* *********************************** */


/* ******************************************************
*			mobile screen size below x size				*
/* ******************************************************/
@media only screen and (max-width: 600px) {
    
/* Logo - use shallower logo for mobile screens */

    .logoDiv {
        height: 62px;
        
    }

    .logo {
        background-image: url("../images/CFCLogo_line50.png");
        background-position: 100% 30% 100% 70%;
    }


	

}

/* *********************************** */


/* Mid section */


.section-centre {
    position: relative;
	min-height: 600px;
  }
  
  .section-centre:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background-image: url("../images/practiceBackground.jpg");
    background-repeat: no-repeat;
    /* background-position: 20% 0; */
    background-size: cover;
  }

  .content-wrap {
	  width: 80%;
    position: relative;
	margin: 0 auto;
  }

h2 {
	margin: 0;
	color: var(--prim-colour);
}

h2.content-title {
	margin-top: 0;
}

h4.textContent { /*, .title { */
	margin: 0;
	padding-top: 1em;
	font-size: 32px;
	color: var(--prim-colour);
}

	/* p.bottom-para {
		margin: 1em;
	} */


img.clinic224 {
	width: 224px;
}


/* *********************************** */


/* Pre-footer section */

#prefooterContainer  {
	width:100vw;
	display: flex;
	align-content: center;
	background-color: var(--seco-colour);
	color: var(--hi-colour);
	font-size: 14px;
	font-weight: 400;
	/* padding-bottom: 16px; */
	

}

#prefooterContainer > div {
	flex: 1 1 100vw;
	flex-wrap: wrap;

}



#address, #times{
	
	margin: 0 0;
	line-height: var(--lineheight-common);
	color: var(--hi-colour);

	
}

#address > p, #times > p {
	margin: 0;
	padding-bottom: 20px;
	line-height: var(--lineheight-expanded);
}

#times {
		
}

h4.accr {
	width: 100%;
}



#accreditations {

	text-align: center;
	background-color: var(--seco-colour); 
	line-height: var(--lineheight-common);


}

#address, #times , #accreditations{
	border-top: 1px solid  silver;

}
.acc-wrap {
	background-color: white;
	margin-top: 20px; 
}

#accreditations > h4 {
	margin-top: 20px;
	padding-top: 0;
}


	
h4.title {
	background-color: var(--seco-colour);
	color: #EEEEEE;
	font-size: 30px;
	
}  

.box {
    background-color: var(--seco-colour);
    color: white;
}
/* *********************************** */


/* Desktop screen - pre footer */
@media(min-width: 601px) {
	.grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}

	/* reorder the columns */
	.grid div:nth-child(1){
		order: 1;
	}

	.grid div:nth-child(2){
		order: 3;
	}

	.grid div:nth-child(3){
		order: 2;
	}

}

/* *********************************** */

/* General screen - footer */

.footer {
    font-size: .7em;
    width: 100%;
    display: flex;
    justify-content:space-between;
	background-color: var(--seco-colour);
    color: silver;
	border-top: 1px solid gray;
}

.copyRight::before{
	content: url("../images/favicon10.png");

}

.rhs {
	padding-right: 6px;
}

a.footerLinks {
	padding-left: 18px;
    color: silver;

}
a.footerLinks:hover {color: var(--hi-colour)}

.imgEmail {
    height: 16px;
    width: 16px;
    display: inline-block;
}
/* *********************************** */


ul.stdbullets {
	display: inline-block;
	background-color: transparent;
	list-style-type: none;
	font-size: 16px;
	padding: 0 20px 0 30px;
/*	width: 40vw; */
	text-align: left;
}

@media(min-width: 601px) {
/* Shift the bullet list in on desktop */
	ul.stdbullets.long {
		padding: 0 20px 0 140px;
	}
	
	
}


li.sb {
	margin: 10px 0;
	/* color: black; */
	float: left;
	clear: left;
}

ul.stdbullets-narrow {
	max-width: 400px;
	text-align: left;
}



/* Cookie consent pop up */

.consent-container {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: var(--prim-colour);
	color: whitesmoke;
	padding: 0 32px;
	box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.377);
	transition: 400ms;
}

.consent-container p {	
	margin: 24px 0;
	line-height: 2;
}


.consent-container.active {
	bottom: 0;
}

.consent-container a {
	color: silver;
}

.consent-container a:focus {
	background: var(--quat-colour);
	color: black;
}

.consent-container a:hover {
	background: var(--quat-colour);
	color: black;
}

.consent-container a:active {
	background: var(--quat-colour);
	color: black;
}


.consent-btn {
	background: rgb(3, 167, 98);
	border: 0;
	color: white;
	padding: 12px 48px;
	font-size: 18px;
	margin-bottom: 16px;
	border-radius: 8px;
	cursor: pointer;
}

/* *********************************** */
