/* CSS Document */

body
{		
	font-family: 'Lato', sans-serif;
}


h1, h2, h3, h4
{
font-family: "zeitung-micro", sans-serif;
font-weight: 200;
font-style: normal;
	color:#c57fa1;
}

p, li
{
	font-weight: 300;
	font-size: 17px;
	line-height: 23px;
	letter-spacing: .5px;
	color: #444;
}

b, strong
{
    color: rgb( 197, 127, 161);
}

a
{
	text-decoration: none;
	color: rgb( 197, 127, 161);
}

.heading
{
	font-weight: 300;
	width: 100%;
	border-bottom: 1px solid rgb( 197, 127, 161);
	padding-bottom: 16px;
}

.secondColour
{
	color: rgb( 253, 253, 255);
}

/* - */

hr
{
	width: 80%;
	height: 1px;
	background-color: rgb( 197, 127, 161);
	border: none;
}

@media( min-width: 768px )
{
	hr
	{
		width: 750px;
	}
}

@media( min-width: 992px )
{
	hr
	{
		width: 950px;
	}
}

@media( min-width: 1200px )
{
	hr
	{
		width: 1200px;
	}
}

#page-content
{
	display: grid;
    width: 100%;
    grid-gap: 32px;
    padding: 75px 0 75px;
}

.workspace
{
	grid-gap: 32px;
}

/* - */

.btn
{
	display: grid;	
	justify-self: center;
	
	margin: 8px;
	background-color: #f3f3f3;
}

.btn h4
{
	grid-row: 1;
	grid-column: 1;
	z-index: 2;
	
	border: none;
	color: #222;
	padding: 16px 32px;
	text-align: center;
	font-size: 16px;
	border-radius: 5px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.05), 0 2px 2px rgba(0,0,0,0.05), 0 4px 4px rgba(0,0,0,0.05), 0 8px 8px rgba(0,0,0,0.05), 0 16px 16px rgba(0,0,0,0.05);
	
	transition: ease .25s;
}

.btn::before
{	
	content: "";
	
	grid-row: 1;
	grid-column: 1;
	z-index: 1;
	background-color: rgb( 197, 127, 161);
	
	width: 0;
	height: 0;
	
	border-radius: 5px;
	
	transition: ease .25s;
	
	color: #fff;
	
	overflow: hidden;
	
	justify-self: center;
	align-self: center;
}

.btn:hover 
{
	cursor: pointer;
}

.btn:hover h4
{
	color: #fff;
}

.btn:hover::before
{
	height: 100%;
	width: 100%;
}

/* - */

.banner {
	display: grid;
}

#banner-image
{
	display: grid;
	grid-row: 1;
	grid-column: 1;
    z-index: 1;
	
    width: 100%;
    height: 128px;
    background-size: cover;
	background-image: url('../img/banner-bg.jpg');
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
}

#banner-overlay
{
	display: grid;
	grid-row: 1;
	grid-column: 1;
    z-index: 2;
	
    width: 100%;
    height: 128px;
    background-size: cover;
    opacity: 0.65;
	
	background-color: rgb( 197, 127, 161);
}

#banner-container
{
	display: grid;
	grid-row: 1;
	grid-column: 1;
	z-index: 3;
	
	width: 100%;
	height: 128px;
	align-content: center;
	justify-content: center;
}

@media ( min-width: 768px )
{
	#banner-image
	{
		height: 256px;
	}
	#banner-overlay
	{
		height: 256px;
	}
	#banner-container
	{
		height: 256px;
	}
}

#banner-container h1
{
	color: #fff;
}

/* - */



/* - */

.contact-items
{
	grid-gap: 20px;
}

.contact-icon
{
	grid-row: 1;
	color: rgb( 197, 127, 161);
	align-self: center;
	justify-self: start;
	border-right: solid 1px;
	padding-right: 12px;
	font-size: 20px;
}

.contact-items h3
{
	color: rgb( 197, 127, 161);
	grid-row: 1;
	margin: 0;
	
	align-self: center;
	justify-self: start;
}

.contact-items p
{
	grid-row: 1;
	margin: 0;
	
	align-self: center;
	justify-self: start;
}

.contact-items .element
{
	align-content: start;
	justify-content: start;
	grid-gap: 16px;
}







/* Testimonials */ 

.testimonial-container
{
	display: grid;
	width: 100%;
	background-image: url('../img/testimonial-bg.jpg');
	background-attachment: fixed;
	background-position: center center;
	background-color: #111;
	background-repeat: no-repeat;
	background-size: cover;
	
	min-height: 400px;
}

.testimonial
{
	display: grid;
	align-self: center;
	justify-self: center;
	
	grid-row: 1;
	grid-column: 1;
	
	grid-gap: 16px;
	
	width: 512px;
	max-width: 80vw;
	
	opacity: 1;
	
	transition: opacity ease .5s;
	
	z-index: 3;
}

.opacity-0
{
	opacity: 0!important;
}

.testimonial h3
{
	color: #fff;
	justify-self: center;
	font-size: 32px;
}

.testimonial p
{
	color: #fff;
	justify-self: center;
	text-align: center;
}

.star-container
{
	display: grid;
	align-content: center;
	justify-content: center;
}

.star
{
	color: rgb( 197, 127, 161);
	grid-row: 1;
}


.testimonial-controls
{
	display: grid;
	z-index: 1;
	grid-row: 2;
	grid-column: 1;
	align-content: center;
	padding: 0 32px;
}

@media( min-width: 992px )
{
	.testimonial-controls
	{
		grid-row: 1;
		grid-column: 1;
	}
}


.testimonial-arrow
{
	color: #fff;
	font-size: 32px;
	grid-row: 1;
	grid-column: 1;
	
	transition: opacity .5s ease;
}

.testimonial-arrow:hover
{
	cursor: pointer;
	opacity: 0.5;
}

.testimonial-left
{
	justify-self: start;
}

.testimonial-right
{
	justify-self: end;
}

.testimonial-dots
{
	display: grid;
	grid-gap: 8px;
	justify-content: center;
	justify-self: center;
	align-self: center;
	z-index: 3;
	
	grid-row: 2;
	grid-column: 1;
}

.testimonial-dot
{
	grid-row: 1;
	width: 8px;
	height: 8px;
	border-radius: 16px;
	border: #fff solid 1px;
	align-self: center;
}

.testimonial-dot:hover
{
	cursor: pointer;
	border-color: rgb( 197, 127, 161);	
}

.active-testimonial-dot
{
	background-color: rgb( 197, 127, 161);	
	border-color: rgb( 197, 127, 161);	
	/*border: none;*/
}


/* - Table - */

.w100 
{
	width: 100%;
}

.elem-table
{
	border: 1px solid #fff;
	background-color: #fff;
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

thead
{
	background-color: rgb( 197, 127, 161);
	border-bottom: 2px solid #fff;
}

th
{
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	border-left: 2px solid #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: solid 1px;
	
	height: 20px;
}

th h1
{
	font-size: 14px;
}

tr:nth-child(2n) {
    background: rgba(222,222,222,0.30);
}


/*** TABLE STYLING ***/

table {
  border: 1px solid #fff;
  background-color: #fff;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

table td, table th {
  border: 1px solid #fff;
  padding: 10px 10px;
}

table tbody td {
  font-size: 13px;
}

table thead th:first-child {
  border-left: none;
}

table tfoot td {
  font-size: 14px;
}

table tfoot .links {
  text-align: right;
}

/* Catch-all Centering Class */
.cent{
justify-self:center;
text-align:center;
}

.colorback {
     padding: 30px 0px;
    background-color: #c57fa1;
    color: white;
}

.imageback {
    padding: 50px 0px;
    background-color: #7592b9;
    background-image: url("../img/wave.png");
    background-repeat: no-repeat;
    background-size: cover;
	opacity: 0.5;
}


.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #c57fa1;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
    padding: 15px;
}

.card p {
    color: #fff;
}

.card:hover {
     background-color: #222;
	transform: scale(1.1)
    
}

.card:hover p {
     color: white;
    
}

.card:hover h1 {
     color: white;
    
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.zoom {
    transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.2);
}

hr { 
    background: url("../img/hr.png") no-repeat top center;
	
    background-size: contain;
    display: block;
    height: 50px;
    border: 0;
    position: relative;
}
hr:before,
hr:after {
    content: '';
    display: block;
    position: absolute;
    background: #c57fa1;
    height: 1px;
    top: 22px;
}
hr:before {
    left: 0;
    right: 60%;
    margin-right: 10px;
    margin-left: 70px;
}
hr:after {
    right: 0;
    left: 60%;
    margin-left: 10px;
    margin-right: 70px;
}


.maincontainer
{
    width: 302px;
    height: 299px;
    margin: 10px;
    float: left; /* stack each div horizontally */
}

img
{
   border-radius: 10px;
}

.back h2
{
    position: absolute;
}

.back p
{
    position: absolute;
    top: 50px;
    font-size: 15px;
	margin-top:35px;
	margin-right: 5px;
	margin-left: 5px;
}

.front h2
{
    position: absolute;
    padding: 3px;
    top: 200px;
    color: #fbf6d8;

/*		-webkit-text-stroke: 1px #222;*/

}

/* style the maincontainer class with all child div's of class .front */
.maincontainer > .front
{
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    
    width: 302px;
    height: 290px;
    
    backface-visibility: hidden; /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
}

/* style the maincontainer class with all child div's of class .back */
.maincontainer > .back
{
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    background: #36390c;
    color: #36390c;
    width: 302px;
    height: 290px;
    border-radius: 10px;
    backface-visibility: hidden; /* cant see the backside elements as theyre turning around */
    transition: transform .5s linear 0s;
	padding: 20px;
}

.maincontainer:hover > .front
{
    transform: perspective(600px) rotateY(-180deg);
}

.maincontainer:hover > .back
{
    transform: perspective(600px) rotateY(0deg);
}

/* Visor Hover Box */
/* OPEN ALCHEMY.CSS AND REMOVE COL-4 FROM LINE 174 (min-width:992px query) */

.visor {
  position: relative;
  width: 100%; /* usually 90, if no space then 100 */
 /* max-width: 400px; remove if using outside of page-content for full screen */
  background-color: #fcf7e8; /* only if using outside of page-content */
  overflow: hidden;
}

.visor .visor-overlay {
  background: #c57fa1a6; /* Colour of text overlay */
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.visor:hover .visor-overlay{
  opacity: 1;
}

.visor-img{
  width: 100%;
  height: 100%;
}

.visor-contents {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.visor-contents p, .visor-contents h3 {
	color: #fff;
}

.visor:hover .visor-contents{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.visor-close{
  top: 20%;
}

.visor, .visor:before, .visor:after{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing:border-box;
  box-sizing: border-box;
}
