html, body {
	padding: 0;
	height: 100%;
	width:100%;
	
}
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
}
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0 auto;
    content:".";
    line-height: normal;
    color: #ffffff;
    background-color: #000;
}
*, *::before, *::after {
    -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after, input[type="search"] {
    box-sizing: border-box;
}
*, *::before, *::after {
    -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after, input[type="search"] {
    box-sizing: border-box;
}
a, abbr, address, blockquote, body, caption, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, form, h1, h2, h3, h4, h5, h6, html, iframe, img, ins, label, legend, li, object, ol, p, pre, q, small, span, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, ul {
    border: 0 none;
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    outline: 0 none;
    padding: 0;
}
ul {
	padding: 0; margin: 0;	
}
li {
    display: inline-block;
    list-style: none;
    vertical-align: middle;
}	

.w50 {
	width: 50%;
}

.w33 {
	width: calc(100% / 3);
}

.center {
	text-align: center !important;
}
.left {
	text-align: left !important;
}
.right {
	text-align: right !important;
}
.bold {
	font-weight: bold;
}
.blackweight {
	font-weight: 900;
}

.linkarrow::before {
    content: ">";
    margin-right: 5px;
}
.linkarrow {
	color: #f19800;
	font-size: 19px;
	cursor: pointer;
	text-decoration: none;
}
.linkarrowgrey::before {
    content: ">";
    margin-right: 5px;
}
.linkarrowgrey {
	color: #999999;
	font-size: 19px;
	text-decoration: none;
}

a {
	color: #f19800;
	text-decoration: none;
}

h1 {
	font-weight: 300;
}
h2 {
    font-weight: 900;
    margin: 80px 0 40px;
	text-transform: uppercase;
}
.h1line {
    font-size: 70px;
    margin-bottom: -23px;
    margin-left: 50px;
}

#cookie-bar {
    background-color: #555555;
    padding: 5px 10px 5px;
    font-size: 12px;
    text-transform: uppercase;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
}
#cookie-bar a {
    background-color: #333333;
    margin: 0 10px;
    padding: 2px 9px;
    text-decoration: none;
    color: #ffffff;
    font-size: 10px;
    text-transform: uppercase;
}
#cookie-bar a:nth-child(2) {
	margin: 0;
}
	

.container {
	max-width: 1280px;
	width: 100%;
	margin:0 auto;
	position: relative;
}

#home {
    background-image: url(../images/home/bk.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% auto;
}

.vertically-centered {
    position: relative;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}

#openmenu {
	position: fixed;
	z-index: 92;
	right: 15px;
}
#menubar {
    position: fixed;
    height: 55px;
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 91;
    top: 0;
    display: none;
}
.menu-trigger {
    position: relative;
    top: 0px;
    padding: 0;
    z-index: 100;
    background: 0 0;
    border: none;
    margin: 0;
    width: 30px;
    height: 48px;
    outline: 0;
    opacity: 1;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    right: 10px;
}

.menu-trigger .icon-bar {
    position: relative;
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 1px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all ease .4s;
    -o-transition: all ease .4s;
    transition: all ease .4s;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}
.icon-bar.first {
    top: 0
}

.icon-bar.second {
    top: 6px
}

.icon-bar.third {
    top: 12px
}

#logomenu {
    height: 40px;
    margin-top: 8px;
    margin-left: 8px;
}

body.menu-open .menu-trigger .icon-bar.first {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

body.menu-open .menu-trigger .icon-bar.second {
	opacity: 0;
}

body.menu-open .menu-trigger .icon-bar.third {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px !important;
}
body.menu-open .menu-trigger .icon-bar {
    background: #ffffff;
    top: 8px!important
}

#menu {
    background-color: rgba(0,0,0,0.85);
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 90;
    display: none;
}

#menu li {
    display: inherit;
    text-align: center;
    font-size: 5vh;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 auto;
    padding: 2vh 0;
    font-weight: 100;
    opacity:0;
    transform: translate(0,-20px);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;	
}

#menu li.open {
	opacity:1;
	transform: translate(0,0);
}

a.menulink {
	text-decoration: none;
	color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}
a.menulink:hover {
	color: #f19800;
}
/*HOME*********************************************************************************************************/
#slide_home .swiper-container {
	height: 560px;
}
	#slide_home .hm_slide {
	    margin: 0 70px;
	}
	#slide_home .hm_slide .title, #slide_home .hm_slide h1 {
	    font-weight: 300;
	    font-size: 18px;
	    line-height: normal;
	    margin-top: 10px;
	    margin-bottom: 25px;
	}
	
	#slide_home .hm_slide .text h2 {
	    font-weight: 400;
	    text-transform: none;
	    font-size: inherit;
	    margin: 0;
	    line-height: 20px;
	}

	#slide_home .hm_slide#slide1 .text, #slide_home .hm_slide#slide2 .text, #slide_home .hm_slide#slide3 .text {
	    max-width: 300px;
	    margin: 0 auto;
	}
	#slide_home .hm_slide#slide1 #iphoneslide {
		height: 485px;
	} 
	#slide_home .hm_slide#slide1 .slider_logo {
		width: 120px;
	}
	.stores {
		height: 40px;
	}
	.stores img {
		height: 100%;
		width: auto;
	}
	
	.hm_slide p {
	    margin: 20px 0;
	    line-height: 20px;
	}
		
	#bkslide2::before {
		content: "";
	    background-image: url(../images/home/slide2.png);
	    background-repeat: no-repeat;
	    background-size: auto 100%;
	    background-position: left center;
	    width: 100%;
	    height: 100%;
	    position: absolute;
	}
	#bkslide4::before {
	    content: "";
	    background-color: rgba(0,0,0,0.6);
	    width: 100%;
	    height: 100%;
	    position: absolute;
	}
	#bkslide4 {
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	#slide_home .hm_slide#slide2 {
	    text-align: right;
	}
	
	#slide_home .hm_slide#slide2 .slider_logo {
		width: 200px;
	}
	
	#slide_home .hm_slide#slide3 {
	    text-align: center;
	}
	
	#slide_home .hm_slide#slide4 li:first-child {
	    margin-top: -140px;
	}
	#slide_home .hm_slide#slide4 li:first-child img {
	    width: 250px;
	    margin-right: 50px;
	}
	#slide_home .hm_slide#slide4 .title {
	    font-weight: 300;
	    font-size: 33px;
	    line-height: normal;
	    margin-top: 10px;
	    margin-bottom: 25px;
	    max-width: 400px;
	    text-transform: uppercase;
	}
#blocks {
    margin-top: 40px;
}

#blocks li {
    height: 350px;
    width: 50%;
    font-size: 20px;
	position: relative;
	cursor: pointer;
	background-size: auto 100%;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}



	#blocks li a {
		text-decoration: none;
		color: #ffffff;
	}
	#blocks li .title {
	    position: absolute;
	    bottom: 25px;
	    left: 15px;
	    z-index: 2;
	    text-shadow: 1px 0px 12px #000000;
	}
	#blocks li .title::before {
	    content: ">";
	    margin-right: 5px;
	}
	#blocks .deg {
	    background-image: url(../images/home/degblock.png);
	    background-repeat: repeat-x;
	    background-position: bottom;
	    position: absolute;
	    height: 100%;
	    width: 100%;
	    z-index: 1;
	    top: 0;
	}
	#blocks #how {
		background-image: url("../images/home/block_how.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #how:hover {
		font-size: 30px;
		background-size: 140%;
	}
	#blocks #twitter {
	    background-image: url("../images/home/block_twitter.png");
	    background-repeat: no-repeat;
	    background-size: auto 100%;
	    background-position: -70px 25px;
	    background-color: #f19800;
	}
	
	#blocks #twitter .user-avatar {
	    border-radius: 35px;
	    width: 35px;
	}
	
	#blocks #twitter a{
	    text-decoration: none;
	    color: #000000;
	}
		
		#blocks #twitter #tweet {
		    font-style: italic;
		    text-align: center;
		    width: 75%;
		    position: relative;
		    margin: 0 auto;
		    color: #000000;
		    line-height: 28px;
		    word-break: break-word;
		}
		#blocks #twitter #footer_tweet {
		    position: absolute;
		    bottom: 10px;
		    right: 10px;
		    text-align: right;
		    line-height: 25px;
		    color: #000000;
		}
		
		#blocks #twitter .comillas {
		    position: absolute;
		    top: 40px;
		    right: 45px;
		}
		
	#blocks #business {
		background-image: url("../images/home/block_business.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #business:hover {
		font-size: 30px;
		background-size: 140%;
	}
	#blocks #organization {
		background-image: url("../images/home/block_organization.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #organization:hover {
		font-size: 25px;
		background-size: 140%;
	}
	#blocks #contact {
		background-image: url("../images/home/block_contact.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #contact:hover {
		font-size: 30px;
		background-size: 140%;
	}
	#blocks #blog {
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
	}
	#blocks #block_wp {
		background-image: url("../images/business/block_wp.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #block_wp:hover {
		font-size: 30px;
		background-size: 140%;
	}
	#blocks #block_me {
		background-image: url("../images/business/block_me.jpg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: 120%;
	}
	#blocks #block_me:hover {
		font-size: 30px;
		background-size: 140%;
	}
	#blocks #bloglogo {
	    background-image: url(../images/home/bloglogomin.png);
	    background-repeat: no-repeat;
	    background-size: 100% auto;
	    background-position: center;
	    width: calc(100% / 3);
	    height: 45%;
	    position: relative;
	    left: 20px;
	    top: 20px;
	    z-index: 2;
	}
	#blocks #blogtitle {
	    text-align: center;
	    font-size: 25px;
	    width: 75%;
	    line-height: 25px;
	    margin: 0 auto;
	    position: relative;
	    z-index: 2;
	    text-transform: uppercase;
	}
	
	

/*HOW*********************************************************************************************************/
.containertop {
	padding-top: 150px;
}
#how {
    background-position: center -110px;
    background-repeat: no-repeat;
    background-image: url(../images/how/bk.jpg);
}

.containervideo {
    margin: 80px 0;
    text-align: center;
    height: 500px;
}

#intro {
    background-image: url("../images/how/intro.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    text-align: center;
    overflow: hidden;
    margin-top: 165px;
}
#intro li {
    padding: 0 80px;
}
#intro p {
	margin: 20px 0;
	text-shadow: 1px 1px 1px #000000;
	line-height: 20px;
}
#intro .smartphoneintro {
    transform: translateY(100px);
    height: 500px;
}

#how_download {
	margin: 80px 0;
}
#how_download li.footer_store img {
    height: 45px;
    margin: 20px 5px 5px;
    cursor: pointer;
}
iframe.video {
	width: 75%;
	height: 100%;
}
#video-background {
    height: auto !important;
    width: 100% !important;
    position: absolute;
}
#slide_how {
	overflow: hidden;
	position: relative;
	margin-bottom: 80px;
}
#slide_how::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: rgba(0, 0, 0, .4);
	z-index: 1;
}
#slide_how .swiper-container {
	height: 500px;
}
	#slide_how .hw_slide {
	    margin: 0 auto;
	    width: 80%;
	    max-width: 680px;
	    line-height: 28px;
	}
	
	#slide_how .hw_title {
	    font-weight: 900;
	    text-transform: uppercase;
	    font-size: 40px;
	    margin: 10px 0 20px;
	}

.moreinfo {
    margin: 80px 0 120px;
}

.moreinfo .title {
    font-size: 37px;
    font-weight: bold;
}




/*WORKPOINT*********************************************************************************************************/

#workpoint {
    background-image: url(../images/workpoint/bk.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

#businessmenu {
    margin-top: 40px;
    margin-left: 80px;
    line-height: 25px;
}

#wp_logo {
	margin: 0 auto;
	text-align: center;
	width: 90%;
	max-width: 800px;
}
#wp_logoimg {
    width: 220px;
}

#wp_logo p {
    margin: 15px 0;
    line-height: 22px;
}
.wp_how {
    margin: 40px 0;
    width: 260px;
}
#wp_intro {
    width: 100%;
    margin: 50px auto;
}

#wp_intro li.w50 {
    padding: 0 30px;
    vertical-align: middle;
}
#wp_intro li.w50 h2 {
	margin-top: 0;
}

#wp_intro li.w50 p {
    margin: 20px 0;
    width: 100%;
    max-width: 250px;
    line-height: 20px;
}
#wp_intro li.w50  img{
	height: 240px;
}

.designed {
	width: 90%;
    max-width: 500px;
    margin: 80px auto;
    background-color: #343434;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.designed .eye {
	margin-top: -40px;
	width: 80px;
}

.designed h2 {
    margin-top: 20px;
}

/*MITBISEVENT*********************************************************************************************************/

#mitbisevent {
    background-image: url(../images/event/bk.png);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

#mitbisorg {
	background-image: url(../images/home/bk.jpg);
	background-size: 100%;
	background-position: top center;
	background-repeat: no-repeat;	
}

#me_logo {
	margin: 0 auto;
	text-align: center;
	width: 90%;
	max-width: 800px;
}
#me_logoimg {
    width: 220px;
}

#me_logo p {
    margin: 15px 0;
    line-height: 22px;
}
#slide_me {
	margin: 80px 0 120px;
	overflow: hidden;
	position: relative;
}

#slide_me .swiper-container {
	height: 470px;
}
	#slide_me .me_slide {
	    margin: 0 auto;
	    width: 80%;
	    max-width: 680px;
	    line-height: 21px;
	    position: relative;
	}
	
	#slide_me .me_title {
	    font-weight: 900;
	    text-transform: uppercase;
	    font-size: 40px;
	    margin: 10px 0 20px;
	    line-height: 42px;
	}
	
	#slide_me img {
	    height: 450px;
	}

/*CONTACT*********************************************************************************************************/
#contact {
    background-image: url(../images/contact/bk.jpg);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}

.input {
    border: 1px solid #cccccc;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    margin: 9px 0;
    width: 90%;
    max-width: 860px;
    background-color: rgba(0,0,0,0);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.inputsend {
	background-color: #f19800;
	border: none;
	padding: 10px 20px;
	color: #000;
	border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

/*PRICES*********************************************************************************************************/
#prices {
    background-image: url(../images/price/bk.jpg);
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
}
	.table_pricenum {
	    font-size: 25px;
	    font-weight: bold;
	    margin-top: 20px;
	    text-align: right;
	}
	
	.table_prices {
	    display: inline-block;
	    vertical-align: top;
	    margin: 10px;
	    width: calc((100% / 3) - 23px) !important;
	}

.input {
    border: 1px solid #cccccc;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    margin: 9px 0;
    width: 90%;
    max-width: 860px;
    background-color: rgba(0,0,0,0);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.inputsend {
	background-color: #f19800;
	border: none;
	padding: 10px 20px;
	color: #000;
	border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

/*FOOTER*********************************************************************************************************/
#footer {
    margin-top: 85px;
    height: 340px;
    text-align: center;
    font-size: 12px;
}
	.social {
	    background-repeat: no-repeat;
	    background-size: auto 80%;
	    width: 40px;
	    height: 30px;
	    cursor: pointer;
	    background-position: center;
	    position: relative;
	}
	.social.fb{
		background-image: url("../images/home/social_facebook.png");
	}
	.social.tw{
		background-image: url("../images/home/social_twitter.png");
	}
	.social.li{
		background-image: url("../images/home/social_linkedin.png");
	}
	.social a {
	    position: absolute;
	    width: 100%;
	    height: 100%;
	    left: 0;
	}
	
	#footer .footer_link {
		border-left: 3px solid #f19800;
		padding: 0 20px;
		cursor: pointer;
		text-transform: lowercase;
	}
	#footer .footer_link a {
		text-decoration: none;
		color: #ffffff;
		text-transform: lowercase;
	}
	#footer .footer_link:first-child {
		border: none;
	}
	#footer li.footer_store img {
	    height: 30px;
	    margin: 20px 5px 5px;
	    cursor: pointer;
	}
	



@media screen and (max-width:920px) {
	#slide_home .swiper-container {
	    height: 430px;
	}
	#blocks li {
	    height: 275px;
	    font-size: 16px;
	}
	.linkarrow {
	    font-size: 16px;
	}
	.linkarrowgrey {
	    font-size: 16px;
	}
	.stores {
	    height: 30px;
	    width: 100px;
	}
	#blocks {
	    margin-top: 5px;
	}
	#blocks #twitter #footer_tweet {
		line-height: 18px;
	}
	#slide_home .hm_slide#slide1 #iphoneslide {
	    height: 380px;
	}
	
	#slide_home .hm_slide#slide3 .slider_logo {
		width: 120px;
	}
	#slide_home .hm_slide#slide4 .slider_logo {
	    width: 180px !important;
	}
	
	#blocks #blogtitle {
		font-size: 18px;
		line-height: normal;
	}
	
	#blocks #twitter #tweet {
	    width: 80%;
	    line-height: 18px;
	    font-size: 16px;
	}
	#slide_me .me_title {
		font-size: 29px;
		line-height: 30px;
	}
	
}
@media screen and (max-width:890px) {
	#video-background {
		width: auto !important;
		height: 100% !important;
	}
}

@media screen and (max-width:750px) {

	body {
		font-size: 13px;
	}
	.linkarrow {
		font-size: 14px;
	}
	#slide_home .swiper-container {
	    height: 370px;
	}
	#slide_home .hm_slide#slide1 #iphoneslide {
	    height: 270px;
	}
	#slide_home .hm_slide#slide1 .slider_logo {
		width: 90px;
	}
	#slide_home .hm_slide .title{
		font-size: 12px;
	}
	#slide_home .hm_slide#slide4 .title {
		font-size: 18px;
	}
	#blocks li {
	    height: 210px;
	    font-size: 14px;
	}
	#blocks #twitter #tweet {
	    width: 85%;
	    line-height: 13px;
	    font-size: 13px;
	}
	#blocks #twitter #footer_tweet {
		line-height: 15px;
	}
	#blocks #bloglogo {
		background-size: 80%;
	}
	#blocks #blogtitle {
		font-size: 15px;
		line-height: normal;
	}
	.h1line {
	    font-size: 45px;
	    margin-bottom: -17px;
	    margin-left: 50px;
	}
	#intro li {
	    padding: 0 10px;
	}
	#intro .smartphoneintro {
	    transform: translateY(80px);
	    height: 415px;
	}
	.containertop {
		padding-top: 50px;
	}
	#how {
		background-position: center -228px;
	}
	
	#slide_me img {
	    height: 300px;
	}
	#slide_me {
	    margin: 40px 0 80px;
	}
	
	.table_prices {
    	width: calc((100%) - 23px) !important;
    }
	
}


@media screen and (max-width:550px) {

	#slide_home  .column.w50 {
		width: 100%;
	}
	.hm_slide#slide1 li.column:nth-child(1) {
		position: relative;
		z-index: 2;
	}
	
	.hm_slide#slide1 li.column:nth-child(2) {
	    position: absolute;
	    left: 0;
	    opacity: 0.8;
	    z-index: 1;
	}
	.hm_slide p {
	    margin: 15px 0;
	}
	.stores {
	    height: 25px;
	    width: 90px;
	}
	#bkslide2::before {
		opacity: 0.9;
	}
	.hm_slide#slide4 li {
		text-align: center !important;
	}
	#slide_home .hm_slide#slide4 li:first-child {
		margin-top: 0;
	}
	#slide_home .hm_slide#slide4 .title {
		margin: 0 auto;
	}
	#blocks li {
		width: 100%;
	}
	#blocks #bloglogo {
	    left: 0px;
	    top: 0px;
	    margin-bottom: 8px;
	}
	.containervideo {
		height: 300px;
	}
	#intro li {
	    width: 90% !important;
	}
	#intro .smartphoneintro {
	    transform: translateY(30px);
	    height: 370px;
	}
	#slide_how .hw_title {
		font-size: 25px;
	}
	#slide_how .hw_slide {
	    line-height: 17px;
	}
	.hw_slide img {
	    width: 58px;
	}
	#slide_how .swiper-container {
	    height: 320px;
	}
	.linkinfo {
	    margin-top: 30px;
	}
	#businessmenu {
	    margin-top: 20px;
	    margin-left: 50px;
	    line-height: 20px;
	    margin-bottom: 30px;
	}
	
	#slide_me li.w50 {
	    width: 100%;
	    text-align: center !important;
	    margin: 10px 0;
	}
	#slide_me img {
	    height: 200px;
	}
	#slide_me p {
	    line-height: 17px;
	}
	#slide_me .swiper-container {
	    height: 500px;
	}
	h1 {
	    margin-bottom: 30px;
	}
	#wp_intro li.w50 {
	    width: 100% !important;
	    text-align: center !important;
	    padding: 0;
	    margin-bottom: 30px;
	}
	#wp_intro li.w50 p {
	    width: 80%;
	    max-width: 80%;
	    margin: 0 auto;
	}
}
