/* @group general */
html {
	height: 100%;
}

body {
	height: 100%;
	font-size: 10px;
	letter-spacing: .5px;
	font-family: 'VAG-Light', Helvetica, Arial, Verdana, Sans-Serif;
}

p {
	cursor: default;
}

/* @group structural */
#page-wrapper {
	height: 100%;
}

#page-content {
	min-height: 100%;
}

/* header */
header {
	top: 0;
	left: 0;
	right: 0;
	z-index: 19;
	position: fixed;
	padding-top: 40px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

header h1 {
	float: left;
}

header h1 img {
	width: 130px;
}

header nav {
	float: right;
	margin-bottom: 30px;
}

header nav li {
	margin-left: 30px;
	display: inline-block;
}

header nav a {
	color: #fff;
	font-size: 16px;
}

header nav a:hover,
header nav a:focus {
	color: #fff;
}

header nav a.auth-btn {
	padding: 0 50px;
	line-height: 40px;
	display: inline-block;
	background: rgba(0,0,0,.2);

	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}

header.white {
	background: #fff;
	padding-top: 20px;
	border-bottom: 1px solid #4554aa;
}

header.white li a {
	color: #4554aa;
}

header.white nav {
	margin-bottom: 20px;
}

header.white h1 a img {
	display: none;
}

header h1 a span {
	top: -3px;
	width: 130px;
	height: 44px;
	display: none;
	position: relative;
	background: url(../images/branding/logo-white.png) no-repeat;

	-webkit-background-size: 130px 44px;
	-moz-background-size: 130px 44px;
	-o-background-size: 130px 44px;
	background-size: 130px 44px;
}

header.white h1 {
	margin-top: -7px;
}

header.white h1 a span {
	display: block;
}

header.white nav a.auth-btn {
	color: #fff;
}


/* footer */
footer {
	background: #f4f8f9;
	padding: 65px 0 55px;
}

footer h6 {
	color: #374650;
	font-size: 14px;
	margin-bottom: 25px;
}

footer nav li {
	margin-bottom: 10px;
}

footer nav a {
	color: #7e8890;
	font-size: 14px;
}

footer nav a:hover {
	color: #7e8890;
}

footer p {
	color: #7e8890;
	font-size: 14px;
	margin-bottom: 10px;
}

/* newsletter form @footer */
.newsletter {
	margin-bottom: 30px;
}

.newsletter .n-field {
	background: #fff;
	padding: 5px 10px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.newsletter input[type="email"] {
	margin: 0;
	padding: 0;
	border: none;
	width: 210px;
	color: #a5b2bc;
	font-size: 14px;
}

.newsletter input[type="submit"] {
	padding: 0;
	width: 20px;
	height: 20px;
	float: right;
	border: none;
	font-size: 0;
	line-height: 0;
	background: url(../images/general/newsletter-submit.png) no-repeat;

	-webkit-background-size: 20px 20px;
	-moz-background-size: 20px 20px;
	-o-background-size: 20px 20px;
	background-size: 20px 20px;
}

.newsletter p.error {
	left: 0;
	position: absolute;
}


/* social-networks @footer */
.social-networks li {
	float: left;
	margin-right: 10px;
}

.social-networks a {
	color: #53535b;
	font-size: 30px;
}



/* flyers @homepage */
#flyers {
	position: relative;
	background: #4756ac;
}

#flyers .flyers-container {
	height: 100%;
}

#flyers .flyers-nav {
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
}

#flyers .flyers-nav li {
	padding-bottom: 30px;    
}

#flyers .flyers-nav a {
	color: #fff;
	display: block;
	font-size: 16px;
	position: relative;

	opacity: .7;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

#flyers .flyers-nav a:after {
	content: " ";

	left: 0;
	right: 0;
	opacity: 0;
	height: 4px;
	bottom: -30px;
	position: absolute;
	background: #b73da4;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

#flyers .flyers-nav a:hover:after,
#flyers .flyers-nav a.active:after {
	opacity: 1;
}

#flyers .flyers-nav a:hover,
#flyers .flyers-nav a.active {
	opacity: 1;
}

#flyers .flyers-nav a span.icon {
	display: block;
	margin-bottom: 10px;
}

#flyers .flyers-nav a span.icon img.color {
	display: none;
}

#flyers .flyers-nav a span.icon img.white {
	display: inline;
}

#flyers .flyers-nav a.active span.icon img.color {
	display: inline;
}

#flyers .flyers-nav a.active span.icon img.white {
	display: none;
}

#flyers .flyers-nav a span.small {
	/*font-size: 13px;*/
}

#flyers .flyer-item {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	background: #4756ac;

	background-repeat: no-repeat;
	background-position: center bottom;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#flyers .flyer-item h4 {
	color: #fff;
	font-size: 45px;
	line-height: 1.2em;
	text-transform: uppercase;
}

#flyers .flyer-item h4 span {
	color: #b73da4;
	font-family: 'VAG-Bold';
}

#flyers .flyer-item p {
	color: #fff;
	font-size: 22px;
	margin-bottom: 35px;
	text-transform: uppercase;
}

#flyers .flyer-item a.details {
	font-size: 14px;
	padding: 0 55px;
	line-height: 40px;
	display: inline-block;


	border: 1px solid #fff;
	border: 1px solid rgba(255,255,255,.5);

	color: #fff;
	color: rgba(255,255,255,.7);

	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

#flyers .flyer-item a.details:hover {
	color: #fff;
	border-color: #fff;
}

#append .social-networks {
	top: 50%;
	right: 20px;
	z-index: 99;
	margin-top: -60px;
	position: fixed;
}

#append .social-networks li {
	margin: 0;
	float: none;
}

#append .social-networks a {
	color: #fff;
	opacity: .7;
	text-shadow: 1px 0px 2px rgba(0,0,0,1);
}

#append .social-networks a:hover {
	opacity: 1;
}



/* mediators @homepage */
#mediators {
	padding: 70px 0;
}

#mediators .intro {
	margin-bottom: 45px;
}

#mediators .intro h2 {
	color: #4352a8;
	font-size: 30px;
	margin-bottom: 35px;
	text-transform: uppercase;
}

#mediators .intro p {
	color: #7e8890;
	font-size: 16px;
}

#mediators .mediator-modules .icon {
	display: block;
	margin-bottom: 15px;
}

#mediators .mediator-modules .icon img {
}

#mediators .mediator-modules h4 {
	color: #374650;
	font-size: 18px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

#mediators .mediator-modules p {
	color: #7e8890;
	font-size: 16px;
	min-height: 66px;
	margin-bottom: 40px;
}



/* testemonials */
#testemonials {
	padding: 70px 0;
	background: #4250a7;
}

#testemonials .item {
	padding-bottom: 40px;
}

#testemonials .author + .quote {
	padding-top: 40px;
}

#testemonials .quote {
	margin: 0 60px;
	text-align: center;
	position: relative;
	color: #fff;
	font-size: 14px;
	line-height: 1.45em;
}

#testemonials .quote .open-quote {
	top: 0;
	left: -50px;
	width: 33px;
	height: 26px;
	position: absolute;
	background: url(../images/testemonials/open-quote.png) no-repeat;
}

#testemonials .quote .close-quote {
	bottom: 0;
	width: 33px;
	height: 26px;
	right: -50px;
	position: absolute;
	background: url(../images/testemonials/close-quote.png) no-repeat;
}

#testemonials .quote p {
	color: #fff;
	font-size: 14px;
	line-height: 1.45em;
}

#testemonials .author {
	width: 350px;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 20px;
}

#testemonials .author .photo {
	float: left;
	width: 80px;
	height: 80px;
	overflow: hidden;
	margin-right: 20px;

	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	border-radius: 80px;
}

#testemonials .author .photo img {
	width: 100%;
}

#testemonials .author .photo + p {
	padding-top: 20px;
}

#testemonials .author p {
	color: #fff;
	font-size: 16px;
}

#testemonials .author p strong {
	font-size: 18px;
	font-weight: normal;
}

#testemonials .actions {
	padding-top: 50px;
	border-top: 1px solid rgba(255,255,255,.3);
}



/* news */
#news .news-details-link {
	display: block;
}

#news .news-details-link * {
	cursor: pointer;
}

#news .info {
	color: #fff;
	padding: 20px;
	height: 240px;
	position: relative;
	text-transform: uppercase;
}

#news .info .category {
	font-size: 18px;
	margin-bottom: 10px;
	text-transform: initial;
}

#news .info .title {
	font-size: 30px;
	line-height: 1.2em;
	font-family: 'VAG-Bold';
}

#news .info .date {
	bottom: 30px;
	font-size: 14px;
	position: absolute;
}

#news .info .date:before {
	left: 0;
	top: -5px;
	height: 1px;
	width: 25px;
	content: " ";
	background: #fff;
	position: absolute;
}

#news .image {
	height: 240px;
	overflow: hidden;
	position: relative;
	margin-left: -10px;
	margin-right: -10px;
}

#news .image img {
	min-width: 100%;
	min-height: 100%;
}

#news .lightblue {
	background: #91c9eb;
}

#news .yellow {
	background: #ffcf00;
}

#news .blue {
	background: #72c2ff;
}

#news .darkblue {
	background: #00a2e2;
}

#news .orange {
	background: #ffad00;
}

#news .twitter-item {
	padding: 30px;
}

#news .twitter-item .category {
	font-size: 16px;
	margin-bottom: 30px;
}

#news .twitter-item .category .icon-twitter {
	font-size: 30px;
	vertical-align: middle;
}

#news .twitter-item .title {
	font-size: 16px;
	text-transform: none;
	font-family: 'VAG-Light';
}

#news .testemonial {
	color: #fff;
	padding: 30px;
	margin-left: -10px;
	margin-right: -10px;
	background: #2d366c;
}

#news .testemonial p {
	font-size: 16px;
	text-align: center;
}

#news .testemonial p.quote {
	margin-bottom: 90px;
}

#news .testemonial .author {
	color: #2d366c;
	background: #fff;
	text-align: center;
	margin: 0 -30px -30px;
}

#news .testemonial .author .photo {
	top: -40px;
	width: 80px;
	height: 80px;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	position: relative;

	-webkit-border-radius: 80px;
	-moz-border-radius: 80px;
	border-radius: 80px;
}

#news .testemonial .author .photo img {
	width: 100%;
}

#news .testemonial .author p {
	font-size: 16px;
}

#news .testemonial .author p strong {
	font-size: 18px;
}



/* section intro */
#section-intro {
	background: #4553aa;
	margin-bottom: 60px;
}

#section-intro .container {
	padding-top: 25px;
	padding-bottom: 10px;
}

#section-intro img {
	top: -30px;
	max-width: 90%;
	position: relative;
}

#section-intro h2 {
	color: #fff;
	font-size: 45px;
	padding-top: 30px;
	line-height: 1.1em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

#section-intro h2 span {
	color: #4553aa;
	font-family: 'VAG-Bold';
}

#section-intro p {
	color: #fff;
	font-size: 22px;
	text-transform: uppercase;
}


/* extend contacts */
#section-intro.contacts h2 span {
	color: #b73da4;
}



/* contacts page */
#contactsB #section-intro h2 {
	padding-top: 100px;
}

.contacts-details {
	margin-bottom: 65px;
}

.contacts-details h3 {
	color: #4756ac;
	font-size: 20px;
	margin-bottom: 20px;
	font-family: 'VAG-Bold';
	text-transform: uppercase;
}

.contacts-details .contacts-info p {
	color: #7e8890;
	font-size: 20px;
	margin-bottom: 5px;
}

.contacts-details .contacts-info p span {
	color: #4756ac;
}

.contacts-details form {
	padding-top: 15px;
}

#map-block,
#map-block2 {
	height: 220px;
}



/* company-text */
#companyB #section-intro h2 {
	padding-top: 60px;
}

.company-text {
	margin-bottom: 60px;
}

.company-text p {
	color: #7e8890;
	font-size: 16px;
	margin-bottom: 10px;
}

.company-text h3 {
	color: #4352a8;
	font-size: 30px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.company-text h4 {
	color: #454448;
	font-size: 20px;
	padding-top: 20px;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.company-text h6 {
	color: #88CEF2;
	font-size: 10px;
	padding-bottom: 10px;
	text-transform: uppercase;
}

.company-text .view-cert {
	color: #4352a8;
	font-size: 16px;
}

.company-text .blue-form a.form-submit {
	padding-left: 40px;
	padding-right: 40px;
	width: auto;
	display: inline-block;
}

.company-text ul {
	padding-left: 20px;
}

.company-text li {
	color: #7e8890;
	font-size: 16px;
	margin-bottom: 10px;
	list-style-type: disc;
}


/* faqs */
#faqsB #section-intro h2 {
	padding-top: 60px;
}

.faqs-list h4 {
	color: #7e8890;
	font-size: 18px;
	margin-bottom: 30px;
	padding-top: 30px;
	border-top: 1px solid #eee;
}

.faqs-list h4[aria-expanded="true"] {
	background: url(../images/faqs/minus.png) no-repeat center right;

	-webkit-background-size: 20px 2px;
	-moz-background-size: 20px 2px;
	-o-background-size: 20px 2px;
	background-size: 20px 2px;
}

.faqs-list h4[aria-expanded="false"] {
	background: url(../images/faqs/plus.png) no-repeat center right;

	-webkit-background-size: 20px 20px;
	-moz-background-size: 20px 20px;
	-o-background-size: 20px 20px;
	background-size: 20px 20px;
}

.faqs-list .faq-text p {
	color: #7e8890;
	font-size: 16px;
	margin-bottom: 20px;
}



/* news */
#newsB #section-intro {
	margin-bottom: 0;
}

#newsB #section-intro h2 {
	padding-top: 60px;
}

/* news details */
#newsDetailsB #section-intro {
	margin-bottom: 0;
}

#newsDetailsB #section-intro h2 {
	padding-top: 60px;
}

.news-details {
	padding-top: 40px;
}

.news-details p {
	color: #7e8890;
	font-size: 18px;
	margin-bottom: 10px;
}

.news-details ul {
	padding-left: 20px;
	list-style-type: disc;
}

.news-details li {
	color: #7e8890;
	font-size: 18px;
	margin-bottom: 10px;
}

#newsDetailsB #news .info {
	height: auto;
	padding-bottom: 80px;
}

.news-details-image {
	width: 100%;
}

/* uppercase fix */
.force-uppercase {
	text-transform: lowercase !important;
}









#testemonials .container {
	position: relative;
}


#testemonials.slider .item {
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	position: absolute;
	background: #4250a7;
}





#testemonials .prev,
#testemonials .next {
	top: 50%;
	z-index: 3;
	left: -40px;
	width: 20px;
	height: 40px;
	background: red;
	position: absolute;
}








#testemonials .prev {
	background: url(../images/testemonials/arrow-left.png) no-repeat;
}

#testemonials .next {
	left: auto;
	right: -40px;
	background: url(../images/testemonials/arrow-right.png) no-repeat;
}








.advice {
	color: #fff;
	font-size: 12px;
	line-height: 1.3em;
	font-family: 'VAG-Light';
}

#form-error {
	color: #fff;
	font-size: 16px;
	line-height: 1.3em;
	font-family: 'VAG-Light';
	margin-bottom: 40px;
	text-align: center;
}

#form-success {
	color: #fff;
	font-size: 16px;
	line-height: 1.3em;
	font-family: 'VAG-Light';
	margin-bottom: 40px;
	text-align: center;
}


#request-form {
	position: relative;
}


#form-loader {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: .5;
	position: absolute;
	background: #4756ac;
}


#news-view-more {
	color: #fff;
	height: 50px;
	padding: 0 40px;
	font-size: 18px;
	background: #4756ac;
	line-height: 50px;
	text-align: center;
	display: inline-block;
	font-family: 'VAG-Bold';

	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}


.dumb-nav {
	text-align: center;
	padding-bottom: 40px;
}



#solutionB #section-intro {
	min-height: 545px;
	padding-top: 132px;
}





.support-content {
}


.support-content .fat-button {
	color: #fff;
	height: 150px;
	display: table-cell;
	font-size: 24px;
	text-align: center;
	border: 1px solid #fff;
	vertical-align: middle;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.support-content .fat-button-with-download-top {
	color: #fff;
	height: 115px;
	display: block;
	font-size: 24px;
	text-align: center;
	border: 1px solid #fff;
	vertical-align: middle;

	-webkit-border-top-left-radius: 10px;
	-moz-border-top-left-radius: 10px;
	border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-top-right-radius: 10px;
	border-top-right-radius: 10px;
}

.support-content .fat-button-with-download-bottom {
	color: #fff;
	height: 35px;
	display: block;
	font-size: 24px;
	text-align: center;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	vertical-align: middle;

	-webkit-border-bottom-left-radius: 10px;
	-moz-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.support-content .lg-block
{
	height: 100%;
    text-align: center;
}

.support-content .lg-block:before
{
    content: '\200B';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
 }
 
 .support-content .lg-block-centered
{
    display: inline-block;
    vertical-align: middle;
 }


.support-content .fat-button img {
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}


.support-content .fat-button-spacer {
	height: 20px;
	display: block;
}

.support-content .fat-header {
	height: 100%;
	width: 100%;

	color: #fff;
	display: block;
	font-size: 24px;
	text-align: center;
	border: 1px solid #fff;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	

	-webkit-border-radius: 0px;
	-moz--border-radius: 0px;
	border-radius: 0px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-top-left-radius: 10px;
	-moz-border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;

	-webkit-margin-bottom: 10px;
	-moz-margin-bottom: 10px;
	margin-bottom: 10px;
}

.linksmodal .content-container {
	padding-top: 140px;
}



.linksmodal.auth-modal {
	padding-top: 40px !important;
}













































