/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Basic');
@import url('https://fonts.googleapis.com/css?family=Raleway');

/*
	GENERAL
*/
body{
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 19px;
	line-height: 31px;
	color: #404040;
}
a{
	color: purple;
	text-decoration: none;
	display: inline-block;
	border-bottom: 1px solid transparent;
	position: relative;
}
a:after{
	content: '\2588';
    font-size: 999em;
    color: inherit;
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 100%;
    left: 0;
    bottom: 0;
    transition: all 150ms ease;
	transform: scaleX(0);
}
a.active:after,
a:hover:after{
    transform: scaleX(1);
}
ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
li{
	display: inline-block;
}
p{
	margin: 0;
}
h1, h2, h3, h4, h5, h6{
	padding: 40px 0;
	margin: 0;
	font-family: 'Basic', sans-serif;
	font-size: 50px;
	line-height: 58px;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
}
#mainBox{
	max-width: 1920px;
	margin: auto;
	overflow: hidden;
	background: url(img/intro_bg.jpg) no-repeat center top;
}
#mainBox > div{
	position: relative;
	padding-bottom: 50px;
}
#mainBox > div .content{
	max-width: 1000px;
	margin: auto;
	overflow: hidden;
    box-sizing: border-box;
	position: relative;
	z-index: 1;
	text-align: center;
}

#mainBox .content p{
	padding: 10px 0;
}

div.img{
	margin-top: 50px;
	text-align: center;
	position: relative;
	white-space: nowrap;
	border: none;
	display: table;
    width: 100%;
}
div.img div{
	vertical-align: bottom;
	width: 33%;
	margin-left: 0.5%;
	display: inline-block;
}
div.img div:first-child{
	margin-left: 0;
}
div.img img{
	width: 100%;
}

#mainBox div.withBg{
	padding-top: 30px;
	padding-bottom: 50px;
	color: #fff;
}
div.withBg:before,
div.withBg:after{
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
}
div.withBg:before{
	/*transform: skewY(-2deg);*/
	height: 520px;
	top: 0;
}
div.withBg:after{
    background: #fff;
	height: 70px;
	top: 505px;
}

/*
	HEADER
*/
div#header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: 0;
	background: #fff;
}
div#header.sticky{
	position: fixed;
	background: #fff;
	border-bottom: 1px solid #202020;
	box-shadow: 0 0 5px #ccc;
	animation: sticky 500ms linear;
}
div#header.sticky .content{
	padding: 5px 20px;
}
@keyframes sticky{
	from { top: -100px; }
	to { top: 0; }
}

#header a{
	font-size: 14px;
}
#header .content{
	padding: 25px 0;
	display: table;
    width: 100%;
	transition: all 500ms linear;
}
#header .content > *{
	display: table-cell;
    vertical-align: middle;
	font-size: 0;
}

#logo *{
	display: block;
	border: 0;
}
#logo a{
	width: 126px;
	transition: width 500ms linear;
}
#logo a:after{
	content: none;
}
#logo img{
	width: 100%;
}
div#header.sticky #logo a{
    image-rendering: -webkit-optimize-contrast;
}

#btnMenu{
	display: none;
	padding: 2px 6px;
    border: 1px solid purple;
}
#btnMenu a{
	height: 24px;
	width: 24px;
	text-align: center;
	overflow: hidden;
	vertical-align: middle;
	border: none;
}
#btnMenu a:before{
	content: 'Ξ';
	position: absolute;
	transform: scaleX(4);
	line-height: 24px;
    font-size: 24px;
	left: 0;
    top: 0;
	width: 100%;
}
#btnMenu a:after{
	content: none;
}
#menu{
	text-align: right;
}
#menu li a{
	color: #000000;
	margin: 0 10px;
	font-family: 'Raleway', sans-serif;
}
#menu li a.active{
	/*color: #7bc272;*/
}
#menu li.mobile{
	display: none;
}
#account{
	text-align: right;
	width: 190px;
	padding-left: 30px;
}
#account a{
	padding: 2px 18px;
	border: 1px solid purple;
	background: #fff;
	transition: all 200ms linear;
	border-radius: 5px;
	font-family: 'Raleway', sans-serif;
}
#account a.register,
#intro a.register{
	background: purple;
	border-color: #ffffff;
	color: #fff;
	margin-left: 20px;
}
#account a.login:hover{
	background: purple;
	color: #fff;
}
#account a.register:hover{
	background: darkviolet;
}

/*
	INTRO
*/
div#intro{
	padding: 70px 0 0;
	background: rgba(0, 0, 0, 0.5);
}
#intro ul{
	background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin: 70px 0 40px;
}
#intro li{
	font-size: 45px;
	line-height: 65px;
	font-family: 'Basic', sans-serif;
	display: block;
	color: #fff;
	text-align: left;
}
#intro li:nth-child(even){
	color: bisque;
}
#intro a.register{
	padding: 0px 45px;
	font-size: 32px;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	margin: 40px 0 0;
	line-height: 65px;
	border-radius: 10px;
}
#intro a.register:hover{
	background: darkviolet;
	transition: all 200ms linear;
}

#intro .extra{
	text-align: center;
	padding: 60px 0;
	background: #ffffff;
}
#intro div.img div{
	vertical-align: middle;
	transform: scale3d(0, 0, 0);
	display: table-cell;
}
#intro div.img div.animate{
	transform: scale3d(1, 1, 1);
	transition: transform 500ms linear;
}
#intro div.img img{
	max-height: 130px;
	max-width: 100%;
	width: auto;
}

/*
	TESTIMONIALS
*/
#testimonials ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	max-height: 656px;
    overflow: auto;
	padding: 0 10px;
	border: 2px solid purple;
    border-radius: 10px 0 0 10px;
}
#testimonials li{
	display: inline-block;
	width: 32%;
    margin: 1.5% 0 0 1.5%;
	vertical-align: top;
	position: relative;
	box-sizing: border-box;
	padding: 1% 1% 4%;
	border: 2px solid #f2f2f2;
	flex: 32%;
	top: 0;
	/*transform: scale3d(0, 0, 0);*/
}
#testimonials li.animate{
	transform: scale3d(1, 1, 1);
	transition: transform 500ms linear;
}
#testimonials li div{
	background: #dddddd;
    height: 80px;
}
#testimonials li div > *{
	padding: 0;
    font-size: 24px;
    line-height: 80px;
}
#testimonials li img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 80%;
    max-width: 60%;
	display: block;
	width: 70%;
    height: 60%;
    object-fit: contain;
}
#testimonials li:nth-child(3n+1){
	margin-left: 0;
}
#testimonials .content li p{
	font-size: 13px;
	margin-bottom: 15px;
	padding: 14px 6px 10px;
	max-height: 154px;
    overflow: auto;
	text-align: left;
	line-height: 18px;
}
#testimonials li a{
	position: absolute;
    bottom: 4%;
    left: 5%;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 90%;
}

/*
	commisions
*/
#commissions.withBg:before{
	background: url(img/about_bg.jpg) no-repeat center top;
}
#commissions div.content{
	overflow: visible;
}
#commissions table{
	width: 100%;
    margin-top: 40px;
    background: purple;
    padding: 2px;
	line-height: 18px;
}
#commissions table th{
	padding: 8px 0;
	font-weight: normal;
}
#commissions table td{
	padding: 8px 0;
	background: rgba(0, 0, 0, 0.2);
}

/*
	OUR BRANDS
*/
#brands.withBg:before{
	background: url(img/office_bg.jpg) no-repeat center top;
	/*background-attachment: fixed;*/
}
#brands{
	padding-top: 30px;
}
#brands div.img img{
	max-width: 700px;
}

/*
	SUPPORT
*/
div#support{
	background: url(img/support_bg.jpg) no-repeat center bottom;
	padding-bottom: 0;
}
#support div.img img{
	max-width: 450px;
	display: block;
	margin: auto;
}

/*
	FOOTER
*/
#footer{
	font-size: 14px;
	z-index: 10;
	text-align: center;
	background: #202020;
}
#footer.withBg:after{
	content: none;
}
#footer a{
	color: #fff;
}
#mainBox div#footer p{
	padding: 0;
}
#footer .content div{
	margin: 15px 0;
}
#footer .content div *{
	/*
	display: inline-block;
	*/
	vertical-align: middle;
	margin: 12px;
}
#footer #icons a{
	margin: 0;
	padding: 0;
}
#icons i{
	display: inline-block;
	height: 30px;
	width: 30px;
	background: url(img/icons.png) no-repeat 0 0;
}
#icons i.twt{
	background-position: -60px 0;
}
#icons i.y18{
	background-position: -120px 0;
}
#icons i.ico{
	background-position: -180px 0;
}
#icons i.ssl{
	background-position: -240px 0;
}
#icons i.cam{
	background-position: -300px 0;
}
#footer span{
	display: inline-block;
	white-space: nowrap;
}
#footer #paymentLogos img{
	margin: 12px 25px;
}

/*
	TERMS
*/
#terms{
	padding-top: 160px;
	font-size: 15px;
}
#terms p{
	text-align: left;
}
#terms h3{
	text-align: left;
}
#terms pre{
	white-space: pre-wrap;
	font-family: inherit;
	text-align: left;
}
#terms pre b{
	text-transform: uppercase;
}

/*
	override
*/
#account a.login:after,
#account a.register:after,
#intro a.register:after,
div.img a:after{
	content: "";
}