@import url("/3rdparty/bootstrap/css/bootstrap.min.css");
@import url("/core/css/global.css");
@import url("https://fonts.googleapis.com/css?family=Titillium+Web:400,400i,700");

/* 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 */
}

.blue {
	color:rgb(39,11,109);
}
.red {
	color:rgb(241,37,9);
}
/* optional for larger screens 
@media (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
*/
/***************

NORMALISE AND AUGMENT 

BOOTSTRAP DEFAULTS

******************/
.container .container {
	width:auto;
	margin:0;
	padding:0;
}

img { /* all images max out at screen/col width */
	display:inline-block;
	margin:0;
	max-width:100%;
	height:auto;
}

.row img { /* all column images fill col width */
	width:100%;
}

img.actualsize { /* override above */
	width:auto !important;
	max-width:none;
}

small {
	color:inherit !important;
}

td, th {
	vertical-align:top;
}

label {
	font-weight:normal;
}
legend {
  display: inline;
  margin:0;
  padding: 0 5px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border:none;
  width:auto;
}
	
.label {
display: inline;
padding: 0;
font-size: 1em;
font-weight: normal;
line-height: inherit;
color: inherit;
text-align: left;
white-space:normal;
vertical-align:auto;
border-radius:none;
}

blockquote:after {
	/*prevent single quotes in subsequent blockquotes*/
	content: close-quote;
	visibility:hidden;
}


/* TYPOGRAPHY */


a, a:link, a:visited, a:hover, a:active {
	color:inherit;
	outline:none;
}

.safari-fix {
	/* fixes z-index and font issues in Safari */
      -webkit-transform:translateZ(1px);
      transform:translateZ(1px);
}

* {
	-webkit-text-size-adjust: 100%; /* stops font soze 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: 'Titillium Web', sans-serif; color:rgba(102,102,102,1); font-size:16px; text-rendering: optimizeLegibility;}




input[type="button"], input[type="submit"], a.button, button {
	-webkit-appearance: none;
	cursor:pointer;
	border: 2px solid rgb(39,11,109);
	color:rgb(39,11,109);
	padding:5px 15px;
	position:relative;
}


input[type="button"]:hover, input[type="submit"]:hover, a.button:hover, button:hover {
	color:#ffffff;

}

input[type="button"].white, input[type="submit"].white, a.button.white, button.white {
	border: 2px solid white;
	color:white;
}
a.button, a.button:hover {
	display:inline-block;
	text-decoration:none;
}

button.white:hover, a.white.button:hover {
		color:rgb(39,11,109);
}


button:after,  a.button:after {
	position:absolute;
	content:"";
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: rgb(39,11,109);
	transition:.3s;
	z-index:-1;
}
button.white:after, a.button.white:after {
	background: #fff;
}

button:hover:after, a.button:hover:after, 
button:active:after, a.button:active:after {
	height: 100%;
}

input[type="text"], input[type="password"], input[type="email"], textarea {
}

::-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:1px solid rgba(204,204,204,1);
	margin:30px 0;
}




.quotes p:nth-child(2):before {
	content: "\201c"; display: block; 
	font-size:4em;line-height:1;
	position:relative; top:.5em;color:rgb(241,37,9);
	
	
}

.quotes p:last-child:after {
	content: "\201d"; display: block; font-size:4em;line-height:1;
color:rgb(241,37,9);
text-align:right;
}

.quotes .col-xs-6 {
}

h1 {
	font-size:50px;
	margin-bottom:30px;
}
h1,h2,h3 {color:rgb(39,11,109);
}
@media (min-width: 768px) {
h1.over-header {
	margin-top: -200px;
	margin-bottom: 150px;
	color:rgba(255,255,255,1);
	position:relative;
	z-index:120;
}
}

h2 .glyphicon,h3 .glyphicon {
	top:5px;
	margin-right:.5em;
	
}

.articleBody ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.articleBody li {
  padding-left: 2.1em; 
  text-indent: -.9em;
}

.articleBody li::before {
  content: "•\00a0\00a0";
  
	color:rgb(39,11,109);
  text-shadow: -1px 0 rgb(241,37,9), 0 1px rgb(241,37,9), 1px 0 rgb(241,37,9), 0 -1px rgb(241,37,9);
  font-family:Arial, Helvetica, sans-serif;
}

/**** 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);
}


*/


/* 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%;
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* note you can do this with absolute on x axis too  */
}

/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
}
.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;
    }
    .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;
		
    }
    .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;
    }
    .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 */
    }
}

/*  to make child div same height as parent make it INLINE BLOCK and 100%

display: inline-block;  height:100%; */



/** BOOTSTRAP COLUMNS EMULATION 

.container {
	width:100%;
	padding: 0 15px;
}

.container, .container * {
	box-sizing:border-box;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  
}

.row img {
	max-width:100%;
	height:auto;
}


.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
 
}

@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
}
**/

/* 100
100 = thin
200 = extra-light
300 = light
400 = normal, book
500 = medium
600 = demi-bold
700 = bold
800 = heavy
900 = black
*/



.shaded:before {
	content:"";
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(39,11,109,.5);
	z-index:110; /* above slides */
}

.sliced, .shaded {
	position:relative;
	overflow:hidden;
	
}

.container-fluid.sliced, .container-fluid.shaded {
	padding:0;
}

.sliced:after {
	content:"";
	position:absolute;
	display:block;
	top:100%;
	right:0;
	width:200%;
	height:100%;
	background-color:#ffffff;
	z-index:111; /* above slides  and overlay*/
	transform:rotate(3deg);
	transform-origin: top right;
}
.sliced.reverse:after {
	right:auto;
	left:0;
	transform:rotate(-3deg);
	transform-origin: top left;
}

.sliced img {
	width:100%;
	height:auto;

}

.slideshow-wrapper .overlay {
	left:0;
	top:0;
	width:100%;
	padding-top:200px;
	position:absolute;
	z-index:112;
	color:rgba(255,255,255,1);
	
}

.slideshow-wrapper .overlay h2 {color:rgba(255,255,255,1);
}

.slideshow-wrapper .overlay p {
	font-size:18px;
}

.highlight {
	overflow:hidden;
	background:url(../images/home/testimonials.jpg) no-repeat right center;
	
	background-size: auto 100%;
	margin: 15px 0;
	position:relative;
	
}
@media (min-width: 768px) {
.highlight {
	background-size: 50% auto;
}
}

@media (min-width: 992px) {
.highlight {
	background-size: auto 100%;
}
}

.highlight.about-us {
	background-image:url(../images/home/about.jpg);
}
.highlight.careers {
	background-image:url(../images/home/careers.jpg);
}
.highlight.services {
	background-image:url(../images/home/services.jpg);
}
.highlight.personal {
	background-image:url(../images/services/personal_small.jpg);
}
.highlight.bookkeeping {
	background-image:url(../images/services/bookkeeping_small.jpg);
}
.highlight.accounts {
	background-image:url(../images/services/accounts_small.jpg);
}
.highlight.payroll {
	background-image:url(../images/services/payroll_small.jpg);
}
.highlight.corporation {
	background-image:url(../images/services/corporation_small.jpg);
}
.highlight.business {
	background-image:url(../images/services/business_small.jpg);
}
.highlight.cis {
	background-image:url(../images/services/cis_small.jpg);
}
.highlight.vat {
	background-image:url(../images/services/vat_small.jpg);
}
.highlight.contact {
	background-image:url(../images/contact/contact_small.jpg);
}


.highlight:before {
	content:"";
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:rgba(39,11,109,0);
	transition:1s;
}

.highlight:hover:before {
	
	background-color:rgba(39,11,109,.5);
}

.highlight .text {
	width:50%;
	background: #f2f1ed;
	position:relative;
	padding:30px;
	z-index:1;
}

.highlight .text:before {
	content:"";
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:200%;
	background: #f2f1ed;
	transition:1s;
	transform:rotate(-10deg);
	transform-origin: top right;
	z-index:-1;
}

.highlight:hover .text:before {
	right:-15px;
	top:-15px;
}

.highlight .text a {
color:rgb(241,37,9);
}

.highlight .text a:before {
	 font-family: 'Glyphicons Halflings';
	 position:relative;
	 top:2px;
	 left:0;
	 display:inline-block;
	 padding: 0 10px 0 0;
	content:"\e258";
	transition:0.5s;
}

.highlight .text a:hover:before {
	 padding: 0 5px 0 5px;
}

.sidebar {
	background: #f2f1ed;
	padding:15px 15px 30px 15px;
}

.sidebar  h3 {
	background:rgb(39,11,109);
	color:rgba(255,255,255,1);
	margin:  -15px -15px 15px -15px;
	padding:15px;
}


.services-menu   li {
  padding-left: 2.2em; 
  text-indent: -2.1em;
  margin: 5px 0;
}

.services-menu   li::before {
   font-family: 'Glyphicons Halflings';
  content:"\e080\00a0";
	color:rgb(39,11,109);
text-shadow:none;
position:relative;top:2px;
}

.services-menu   li.selected::before,
.services-menu   li:hover::before {
 
	color: rgb(241,37,9);
}

