/*!
	=================================================================
	MAIN CSS
	=================================================================
	@project         GBP
	@date            2014-09-10
	@author          Piotrek Wojciechowski
	@company         Autentika
	=================================================================
	Naming convention:
	.is-className                 element's state
	.(g)ui-className              (graphic) user interface element
	.js-className                 javascript handle class
	.className                    standalone module
	.className-subClassName       submodule
	.className--subClassName      module modifier
	=================================================================
*/

/*!
	=================================================================
	@section: Reset CSS
	=================================================================
*/

/*
	=================================================================
	CSS RESET
	=================================================================
	@author          Piotrek Wojciechowski
	@author: based on Eric's Meyer universal css reset
		http://www.meyerweb.com
	@author: based on Twitter Bootstrap css reset
		https://github.com/twitter/bootstrap/
	@author: based on Html5 Boilerplate css normalize
		http://html5boilerplate.com/
	=================================================================
	@lastmodified: 2014-03-17
	=================================================================
*/

html,
body,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
button {
  margin: 0;
  padding: 0;
  border: 0;
}

ul,
li {
  list-style-type: none;
}

/* HTML5 display definition */

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

/*
	=================================================================
	@section: Global forms setup
	=================================================================
*/

/* Remove inner padding and border in FF3/4: h5bp.com/l */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Remove default vertical scrollbar in IE6/7/8/9 and allow vertical only resinig */

textarea {
  resize: vertical;
  overflow: auto;
  vertical-align: top;
}

/* Consistent box sizing and appearance */

input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}

input[type='search'] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Remove default focus highlight */

input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Cursor pointer and consistent appearance */

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  cursor: pointer;
  -webkit-appearance: button;
}

input[type='checkbox'],
input[type='radio'] {
  cursor: pointer;
}

/* Hide placeholder text in Chrome on field focus */

input:focus::-webkit-input-placeholder {
  color: transparent;
}

/*
	=================================================================
	@section: Global tags setup
	=================================================================
*/

html {
  /* Correct text resizing oddly in IE6/7 when body font-size is set using em units */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/* Improve image quality when scaled in IE7: h5bp.com/d */

/* Remove the gap between images and borders on image containers: h5bp.com/i/440 */

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}

/* Correct overflow not hidden in IE9 */

svg:not(:root) {
  overflow: hidden;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:link,
a:visited,
a:hover,
a:active {
  outline: none;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}

/*
	=================================================================
	@section: Classes
	=================================================================
*/

.group:before,
.group:after {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

.group {
  clear: both;
  *zoom: 1;
}

.is-hidden {
  display: none;
}

/* sectioning title header (for document outline purpose) */

.sectioningHeader {
  display: none;
}

.ancientBrowser {
  font: normal 14px/20px arial, sans-serif;
  color: #222;
  background-color: #ffd488;
  padding: 10px 50px;
}

.ancientBrowser a {
  text-decoration: underline;
}

.warningPage {
  width: 400px;
  margin: 50px auto;
  text-align: center;
}

/*
	=================================================================
	@section: LESS Setup
	=================================================================
*/

/*
	=================================================================
	LESS MIXINS
	=================================================================
	@date            2014-08-15
	@author          Piotrek Wojciechowski
	=================================================================
*/

.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

/*!
	=================================================================
	@section: General layout
	=================================================================
*/

body {
  background-color: #fff;
  font: normal 100% "Open Sans", arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #dd3a4a;
}

a:hover {
  text-decoration: underline;
}

em {
  color: #dd3a4a;
  font-style: normal;
}

.layout {
  width: 1088px;
  margin: 0 auto;
}

/*
	=================================================================
	@section: Header
	=================================================================
*/

.pageHeader {
  padding: 6px 0;
}

.pageHeader .logo {
  float: left;
}

[role="navigation"] {
  float: right;
  margin-top: 42px;
}

[role="navigation"] li {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 20px;
}

[role="navigation"] a {
  color: #000;
  font-weight: 600;
}

/*
	=================================================================
	@section: Main
	=================================================================
*/

main section {
  padding: 20px 0;
}

main section .layout {
  width: 720px;
  padding-right: 368px;
}

main section h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
}

main section h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: normal;
  color: #646464;
  margin-bottom: 20px;
}

.intro {
  background: url('../i/layout/bg-s1.png') left bottom repeat-x;
  padding-bottom: 0;
}

.intro h2 {
  font-size: 35px;
  font-weight: normal;
  color: #49429d;
  line-height: 40px;
  margin-bottom: 10px;
}

/* --- ✄ ----------------------- */

.offer {
  padding: 70px 0 0px;
}

.offer .tempter {
  width: 410px;
}

.offer2 {
  background: url('../i/layout/bg-s1.png') left bottom repeat-x;
}

.offer2 h2 {
  font-size: 35px;
  font-weight: normal;
  color: #49429d;
  line-height: 40px;
  margin-bottom: 25px;
  margin-top: 5px;
}

.offer2 h3 {
  font-weight: normal;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
}

.offer2 .tempter {
  width: 410px;
}

/* --- ✄ ----------------------- */

.trusteds {
  border-top: 1px solid #f0eeee;
  padding: 35px 0 10px;
}

.trusteds h2 {
  font-weight: normal;
  margin-bottom: 8px;
}

.offer2 + .trusteds {
  border-top: none;
}

/* --- ✄ ----------------------- */

.test {
  background: #f4f5f6 url('../i/layout/bg-test.png') 0 0 no-repeat;
  max-height: 418px;
  padding: 35px 0 15px;
}

.test h2 {
  font-weight: normal;
}

/* --- ✄ ----------------------- */

.contact {
  background: #5e59aa url('../i/layout/bg-contact.jpg') left top no-repeat;
  color: #fff;
  padding: 35px 0;
}

.contact h2 {
  font-weight: normal;
}

.contact ul {
  display: block;
  margin: 30px 0 10px;
}

.contact li {
  display: inline-block;
  vertical-align: top;
  font-size: 27px;
  margin-right: 30px;
}

.contact li span {
  display: inline-block;
  vertical-align: middle;
}

.contact li a {
  color: #fff;
}

.contact .ico {
  display: inline-block;
  vertical-align: middle;
  width: 70px;
  height: 70px;
  background: url('../i/layout/gui.png') no-repeat;
  margin-right: 10px;
}

.contact .ico.ico-c-phone {
  background-position: 0px -100px;
}

.contact .ico.ico-c-mail {
  background-position: -100px -100px;
}

/* --- ✄ ----------------------- */

.signUp {
  width: 340px;
  background-color: #dd3a4a;
  color: #fff;
  position: absolute;
  top: 107px;
  left: 50%;
  margin-left: 205px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 20px;
  -webkit-box-shadow: -3px 3px 0 0 #99262d;
  box-shadow: -3px 3px 0 0 #99262d;
  -webkit-transition-duration: 0;
  transition-duration: 0;
}

.signUp.middle {
  position: fixed;
  top: 30px;
  -webkit-transition-duration: 0;
  transition-duration: 0;
}

.signUp a {
  color: #fff;
}

.signUp h2 {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 15px;
}

.signUp h3 {
  font-size: 17px;
  line-height: 20px;
  font-weight: normal;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 20px;
}

.signUp h3 a {
  color: #fff;
  text-decoration: underline;
}

.signUp form {
  margin: 30px 0 0;
}

.signUp form li {
  display: block;
  margin-bottom: 18px;
}

.signUp form li:last-child {
  margin-bottom: 0;
}

.signUp label {
  display: inline-block;
  width: 100px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}

.signUp label.chb {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 18px;
  font-weight: normal;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.signUp label.chb input {
  position: absolute;
  top: 3px;
  left: 2px;
}

.signUp input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 190px;
  height: 32px;
  font: 16px/24px "Open Sans", arial, sans-serif;
  padding: 0 10px;
  -webkit-box-shadow: inset 0 0 3px 0 #dadada;
  box-shadow: inset 0 0 3px 0 #dadada;
}

.signUp button {
  background-color: #5953a7;
  display: block;
  height: 42px;
  line-height: 42px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  width: 100%;
  font-weight: bold;
}

.signUp li.error input[type="text"] {
  background-color: #ff9ba1;
}

.signUp li.error .chb {
  background-color: #ff9ba1;
}

/*
	=================================================================
	@section: Modules
	=================================================================
*/

.dataTable {
  width: 100%;
  margin-bottom: 20px;
}

.dataTable td {
  font-size: 16px;
  line-height: 20px;
  border-bottom: 1px solid #eee;
  vertical-align: bottom;
  padding: 5px;
  height: 50px;
}

.dataTable td:first-child {
  font-weight: 600;
  width: 430px;
}

.dataTable td:first-child:hover {
  color: #5953a7;
}

.dataTable td:last-child {
  white-space: nowrap;
}

/* --- ✄ ----------------------- */

.smico {
  display: inline-block;
  vertical-align: baseline;
  width: 16px;
  height: 16px;
  background: url('../i/layout/gui.png') no-repeat;
  margin-right: 3px;
}

.smico.smico-marker {
  background-position: 0px 0px;
}

.smico.smico-cal {
  background-position: -20px 0px;
}

/* --- ✄ ----------------------- */

.hint {
  display: block;
  background-color: #5953a7;
  color: #fff;
  font-size: 15px;
  line-height: 21px;
  text-align: center;
  padding: 10px;
  width: 140px;
  height: 70px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  left: 400px;
  -webkit-transform: translate3d(0, -20px, 0);
  -ms-transform: translate3d(0, -20px, 0);
  transform: translate3d(0, -20px, 0);
  top: auto;
  bottom: auto;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.hint.visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

.hint div {
  display: table;
  width: 100%;
  height: 100%;
}

.hint span {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.hint:after {
  content: url('../i/layout/ico-arrow-hint.png');
  display: block;
  width: 14px;
  height: 8px;
  position: absolute;
  bottom: 2px;
  left: 50%;
  margin-left: -7px;
}

/* --- ✄ ----------------------- */

.tempter {
  background-color: #dd3a4a;
  color: #fff;
  display: block;
  width: 340px;
  margin: 30px auto;
  padding: 10px 10px 12px;
  text-align: center;
  font-size: 17px;
  line-height: 23px;
}

.tempter a {
  color: #fff;
}

.tempter strong {
  display: block;
}

/* --- ✄ ----------------------- */

.offerList {
  text-align: center;
  margin: 60px 0 50px;
}

.offerList li {
  display: inline-block;
  vertical-align: top;
  width: 140px;
  font-size: 15px;
  line-height: 18px;
  margin: 0 15px;
}

.offerList .ico {
  display: block;
  margin: 0px auto 10px;
  background: url('../i/layout/gui.png') no-repeat;
  width: 63px;
  height: 63px;
}

.offerList .ico.ico-doc {
  background-position: 0px -30px;
}

.offerList .ico.ico-briefcase {
  background-position: -100px -30px;
}

.offerList .ico.ico-mail {
  background-position: -200px -30px;
}

.offerList .ico.ico-phone {
  background-position: -300px -30px;
}

.offerList.offerList-2 {
  margin: 40px 0 50px;
}

.offerList.offerList-2 .ico.ico-doc {
  background-position: 0px -180px;
}

.offerList.offerList-2 .ico.ico-briefcase {
  background-position: -100px -180px;
}

.offerList.offerList-2 .ico.ico-mail {
  background-position: -200px -180px;
}

.offerList.offerList-2 .ico.ico-phone {
  background-position: -300px -180px;
}

/* --- ✄ ----------------------- */

.testimonial {
  width: 346px;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  line-height: 18px;
}

.testimonial:nth-child(2n) {
  margin-left: 20px;
}

.testimonial header div {
  width: 220px;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  font-size: 13px;
  line-height: 16px;
}

.testimonial header div + * {
  display: inline-block;
  vertical-align: bottom;
  /*width: 115px;*/
}

.testimonial h3 {
  font-weight: 600;
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
  line-height: 18px;
}

.testimonial > div {
  background-color: #f4f5f6;
  color: #646464;
  padding: 15px 20px;
  position: relative;
  margin-top: 15px;
}

.testimonial > div:before {
  content: url('../i/layout/ico-arrow-testimonial.png');
  position: absolute;
  top: -12px;
  left: 20px;
  width: 11px;
  height: 11px;
}

/* --- ✄ ----------------------- */

.logos {
  text-align: center;
  display: block;
  margin: 50px 0px 50px;
}

.logos li {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 15px;
}

.logos li:first-child {
  margin-left: 0px;
}

.logos li:last-child {
  margin-right: 0;
}

/* --- ✄ ----------------------- */

.testList {
  display: block;
  padding-top: 80px;
  margin: 50px 0 35px;
  background: url('../i/layout/header-test.png') center top no-repeat;
}

.testList li {
  display: inline-block;
  vertical-align: middle;
  width: 200px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  margin-right: 55px;
  position: relative;
  margin-bottom: 40px;
}

.testList li:last-child {
  margin-right: 0;
}

.hintContainer {
  position: absolute;
  left: 50%;
  bottom: -40px;
  margin-left: -15px;
}

.hintContainer .hint {
  position: absolute;
  bottom: 40px;
  top: auto;
  left: 50%;
  margin-left: -80px;
}

.ico-hint {
  display: block;
  margin: 0px auto;
  width: 30px;
  height: 32px;
  background: url('../i/layout/gui.png') -70px 0 no-repeat;
  text-indent: -9999px;
  cursor: pointer;
}

/*
	=================================================================
	@section: Footer
	=================================================================
*/

.pageFooter {
  font-size: 13px;
  line-height: 15px;
  padding: 40px 0 80px;
}

.pageFooter .layout > div {
  display: inline-block;
  vertical-align: top;
  width: 400px;
}

.pageFooter p {
  margin-bottom: 15px;
}

.pageFooter .autentika.autentika {
  float: right;
  width: 190px;
}

.pageFooter .autentika.autentika img {
  float: right;
  margin-top: -5px;
  margin-left: 5px;
}

