/*
 * Fonts
 */
@font-face {
	font-family: 'Celias Light';
	src: url('../fonts/Celias-Light.otf') format('opentype');
	font-weight: 300;
}

@font-face {
	font-family: 'Celias Regular';
	src: url('../fonts/Celias-Regular.otf') format('opentype');
	font-weight: 500;
}

@font-face {
	font-family: 'Celias Bold';
	src: url('../fonts/Celias-Bold.otf') format('opentype');
	font-weight: 700;
}

/*
 * Base
 */
html {
	height: 100%;
	width: 100%;

    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

body {
	height: 100%;
	margin: 0;
	background-color: white;
	position: relative;
	-webkit-overflow-scrolling: touch;
}

a {
 	text-decoration: none;
 	color: inherit;
}

.button:hover, button:hover {
	cursor: pointer;
	font-size: 24px;
	border-radius: 0;
}

h2 {
	font-family: "Celias Bold", sans-serif;
	font-size: 48px;
	text-align: center;
}

.button {
	height: 50px;
	line-height: 55px;
	padding: 0 20px;

	display: inline-block;
	text-align: center;
	border-radius: 20px;

	font-family: 'Celias Regular', sans-serif;
	font-size: 20px;

	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}



/*
 *   HOME SECTION
 */ 
.home {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.home .background {
	position: absolute;
	width: 100%;
	height: 100%;
	
	background-image: url("../img/background.jpg");
	background-size: cover;
	background-position: center;
	
	animation: move_bg 120s linear infinite alternate;
}

@keyframes move_bg {
	0% {
		transform: translate3d(50%, 0, 0) scale(2);
	}
	100% {
		transform: translate3d(-50%, 0, 0) scale(2);
	}
}

.home .background.move {
	-webkit-transform: translateX(-50%) scale(2);
	transform: translateX(-50%) scale(2);
}


.home .content {
	width: 100%;
	height: 100%;
	padding: 10px;
	
	box-sizing: border-box;
	
	background-color: rgba(0,0,0,0.2);
	color: white;
	position: relative;	
}

.home h1 {
	margin: 100px 0 50px 0;
	font-family: 'Celias Light', Arial, sans-serif;
	font-size: 50px;
	font-weight: lighter;
}

.home h2 {
	font-family: 'Celias Bold', Arial, sans-serif;
	font-size: 30px;
}

.home p {
	margin: 0;
	font-family: 'Celias Light', Arial, sans-serif;
	font-weight: lighter;
}

.home .logo {
	width: 60px;
}

.home a {
	color: white;
	border: 2px solid white;
	margin-top: 10%;
}

/*
 * APP DEMO STORE SECTION
 */
.ads {
	text-align: center;
	padding: 50px 0;
}

.adsLeft {
	width: 45%;
	height: 380px;
	display: inline-block;
	margin: 2% 1% 0 0;
	background-image: url('../img/appdemostore-section.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.adsRight {
	width:45%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.adsRight > p {
	font-family: "Celias Regular", sans-serif;
	font-size: 18px;
	text-align: left;
}

.ads a {
	border: 2px solid black;
}

/*
 * PICAPP SECTION
 */
.picappBg {
	background-image: url('../img/background-pa.jpg');
	background-position: center;
	background-size: cover;
}

.picapp {
	position: relative;
	padding: 50px 0;
	color: white;
	background-color: rgba(12,152,221,0.8);
}

.picappLeft {
	width: 50%;
	display: inline-block;
	margin: 2% 5%;
	text-align: center;
}

.picappRight {
	width: 45%;
	height: 100%;

	position: absolute;
	right: 0;
	bottom: 0;

	background-image: url('../img/picapp-section.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right bottom;

	vertical-align: bottom;
}

.picappLeft p {
	font-size: 18px;
	font-family: "Celias Regular", Arial, sans-serif;
	text-align: left;
}

.picapp a {
	border: 2px solid white;
	color: white;
}

/*
 * APPSIMULATOR SECTION
 */
.appsim {
	text-align: center;
	padding: 50px 0;
	position: relative;
}

.appsimLeft {
	width: 30%;
	height: 380px;
	display: inline-block;
	background-image: url('../img/appsimulator-section.png');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.appsimRight {
	width:65%;
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.appsimRight > p {
	font-family: "Celias Regular", sans-serif;
	font-size: 18px;
	text-align: left;
}

.appsim a {
	border: 2px solid black;
}


/*
 * ARIS SECTION
 */
.arisBg {
	background-image: url('../img/background-aris.jpg');
	background-position: bottom;
	background-size: cover;
}

.aris {
	height: 100%;
	background-color: rgba(12,152,221,0.7);
	text-align: center;
	position: relative;
	color: white;
	padding: 50px 0;
}

.arisLeft {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.arisRight {
	width: 40%;
	height: 400px;
	display: inline-block;

	background-image: url('../img/template-section.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.arisLeft p {
	font-size: 18px;
	font-family: "Celias Regular", Arial, sans-serif;
	text-align: left;
}

.aris a {
	border: 2px solid white;
	color: white;
}
/*
 * ACTIVITY SECTION
 */

.activity {
	padding: 30px 0;
	background: #CCC;
	color: black;
	text-align: center;
}

.activity h2{
	font-size: 48px;
}

.activityLeft, .activityRight {
	width: 45%;
	display: inline-block;
	vertical-align: top;
	margin: 50px 0;
}

/*
 * TEAM SECTION
 */
.teamBg {
	background-image: url('../img/background-team.jpg');
	background-size: cover;
	background-position: center;
}

.team{
	text-align: center;
	padding: 50px 0;
	background-color: rgba(0, 0, 0, 0.4);
}

.team h2 {
	color: white;
	text-shadow: 0 0 6px #222;
}

.team p {
	font-family: "Celias Regular", sans-serif;
	font-size: 18px;
	color: white;
}

.teamItem{
	width: 250px;
	height: 250px;
	display: inline-block;

	background-size: contain;
	background-repeat: no-repeat;

	margin: 2%;
	border-radius: 250px;
	box-shadow: inset 0 0 2px black;

	-webkit-transition: background 0.4s ease;
	transition: background 0.4s ease;
}

.first {
	background-image: url('../img/daniel-img.png');
}

.second {
	background-image: url('../img/raluca-img.png');
}

.third {
	background-image: url('../img/diana-img.png');
}

.fourth {
	background-image: url('../img/calin-img.png');
}

.first:hover {
	background-image: url('../img/daniel-desc.png');
}

.second:hover {
	background-image: url('../img/raluca-desc.png');
}

.third:hover {
	background-image: url('../img/diana-desc.png');
}

.fourth:hover {
	background-image: url('../img/calin-desc.png');
}

/*
 * GALLERY SECTION
 */
.gallery {
	padding: 50px 0;
	text-align: center;
}

.galleryLeft {
	width: 45%;
	display: inline-block;
	vertical-align: top;
}

.galleryLeft > img {
	width: 100%;
	box-shadow: 0 0 4px black;
}

.galleryRight {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}

.galleryRight > img {
	width: 45%;
	display: inline-block;
	box-shadow: 0 0 4px black;
}

/*
 * FOOTER SECTION (SOCIAL)
 */
footer{
	text-align: center;
	background-color: #292929;
	padding: 50px 0 10px 0;
	color: #FFFFFF;
	position: relative;
	font-family: 'Celias Light', sans-serif;
}

.footerLeft {
	width: 35%;
	display: inline-block;
	margin: 20px 0;
	vertical-align: top;
}

.footerMid {
	width: 15%;
	height: 100px;
	position: absolute;
	left: 40%;
	top: 25%;
	background-image: url('../img/rad-logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.footerRight {
	width: 35%;
	display: inline-block;
	margin: 20px 0 0 25%;
	vertical-align: top;
	text-align: left;
}

.footerRight i {
	margin-right: 10px;
}

footer h3{
	font-size: 28px;
	margin: 0 auto;
}

.footerSocialIcons{
	margin: 0 auto;
	width: 80%;
}

.footerSocialIcons i{
	margin: 30px 30px;
	cursor: pointer;

	-webkit-transform: scale(3);
	transform: scale(3);

	-webkit-transition: color 0.4s ease;
	transition: color 0.4s ease;
}

.footerSocialIcons i:hover {
	color: #808080;
}

.copyright{
	font-size: 15px;
	font-family: "Celias Light", sans-serif;
	padding-top: 30px;
}