/*@font-face {
    font-family: Typewriter;
    src: url(homepage/fonts/typewrreg.ttf);
}*/

*{padding:0px;margin:0px;border:0px;}

/*p,h1,h2,h3,h4,h5,h6,h7,h8,body{font-family: 'Fira Sans', sans-serif;}*/
p{
	text-align:justify;
	font-size:16px;
	line-height:25px;
	color: #333;
}
h5{text-align:center;}

button {
	width: 200px;
	height: 50px;
	color: #fff;
	background: #821b81;
	cursor:pointer;
	margin: 20px auto;
	font-size: 22px;
}
button:hover{
	background: #689029;
}

#okCookie{
  background-color:#F2F2F2;
  color:#333333;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  padding:10px;
  font-family:sans-serif;
  -moz-box-sizing: border-box; 
  -webkit-box-sizing: border-box; 
  box-sizing: border-box;
  border-top:1px solid #ccc;
  z-index:10;
}

#okCookie p{margin:0 0 10px 0; float:left; padding:5px 0px;}

#okCookie #okClose, #okCookie #okCprivacy{
  padding:5px 20px;
  float:right;
  margin-left:10px;
  text-decoration:none;
  border-radius:3px;
  color:white;
}

#okCookie #okClose{
  background-color:#39B54A;
  text-shadow:0px 1px 1px #507F2B;
  box-shadow:inset 0px -1px 1px #507F2B;
}

#okCookie #okClose:hover{background-color:#42ce55}

#okCookie #okCprivacy{
  background-color:#8D9499;
  text-shadow:0px 1px 1px #63666B;
  box-shadow:inset 0px -1px 1px #63666B;
}

#okCookie #okCprivacy:hover{background-color:#a0a8ae}

.okcBeginAnimate{
    -webkit-animation: myfirst 2s; 
    animation: myfirst 2s;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes myfirst {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Standard syntax */
@keyframes myfirst {
    from {opacity: 0;}
    to {opacity: 1;}
} 
/*GOOGLE MAP*/
.gmap{
	width:80%;
	height:200px;
	margin-top:30px;
}


/*VIDEO I-FRAME*/
.youtubevideowrap{
	/*width:80%;*/
	width:100%;
	max-width:612px;
	margin:0 auto;
}
.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	margin-right:15px;
	overflow:hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
	right:0;
	left:0;
	margin: auto;
    width: 33%;
    height: 33%;
}

/*Felsorols*/
.fels {text-align:left;font-size:16px;list-style: none;padding: 0;margin: 0;text-indent: -1em;}
/*.fels li {padding-left: 16px; }*/
.fels li:before {
	content: "•"; /* Insert content that looks like bullets */
    padding-right: 8px;
    color: #689029; /* Or a color you prefer */

}
.doboz {
	width: 300px;
    margin: 10px 15px;
}


/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  /*cursor: pointer;*/
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
	  opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		-webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	-moz-transition:    
		opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		-moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
	transition:         
		opacity 0.2s ease-in-out,
		visibility 0.2s ease-in-out,
		transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 80%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

#wrapper{max-width:1920px;margin:0 auto;overflow:hidden}

/*HEADER*/
.header{
	position: relative;
	display:block;
	content: "";
	width:100%;
	height:100%;
	overflow:hidden;
	background:#821b81;
}
.header #lang{
	position: absolute;
	width: 32px;
	height: 32px;
	top: 50px;
	right:40px;
	margin-right:15px;
	z-index: 55;
}
.header #lang a{
	color:#fff;
	width:100%;
	height:100%;
	text-align:center,;
	line-height:32px;
	font-size: 24px;
	text-decoration: none;
	
}
.header #lang a:hover{
		font-weight: bold;
		text-decoration: none;
}

.header .logo{
	position:absolute; 
    top:50%; 
    left:50%; 
    transform:translate(-50%, 0);
    width:500px;
	height:190px;
	margin-top: -95px;
	float:left;
	z-index:2;
}
.header .logo .otter{
	display:block;
	width:250px;
	margin:0 auto;
}
.header .logo .name{
	display:block;
	width:250px;
	margin:40px auto 5px auto;
}
.header .logo .szlogen{
	width:320px;
	height:256px;
	margin:20px auto;
	/*background-image:url(../img/felirat.png);*/
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center top;
	
	/*font-family:Typewriter;
	display:block;
	width:250px;
	margin:0px auto;
	text-align:center;
	font-size:14px;
	padding-left:7px;
	color:#fff;
	letter-spacing:5px*/
}
.header .logo .szlogen_hu{
	width:320px;
	height:256px;
	margin:20px auto;
	background-image:url(../img/feliratHU.png);
	background-repeat:no-repeat;
	background-size:contain;
	background-position:center top;
}
.header .down{
	/*position:absolute;
    display:block;
	width:75px;
	margin:0px auto;
	bottom: 30px;
	left:50%; 
    transform:translate(-50%, 0); 
	z-index:2;*/
	
	position: absolute;
	display:block;
	bottom: 5px;
	left: 50%;
	width:50px;
	margin-left:-25px;
	z-index:2
}
.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
/*Erősségek*/
.erossegek h2{
	width:100%;
	margin: 0 auto;
	text-align:center;
	padding: 0 100px;
	
}

.erossegek p{
	width:50%;
	margin: 0 auto;
	text-align:center;
	padding: 0 20px;
	font-size: large;
	
}

/* Scroll down indicator (bouncing) */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px); } }
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0); }
  40% {
    -moz-transform: translateY(-30px); }
  60% {
    -moz-transform: translateY(-15px); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px); } }


.header .logo .down:hover{
	width:80px;
}
.header #anchor{
	position:absolute;
	bottom:0;
}
/*SERVICES*/

.services{
	position: relative;
	content: "";
	display:inline-block;
	width:100%;
	height: auto;
	margin-bottom:20px;
	overflow:hidden;
	margin-top:20px;
}
/*#appdev, #tech{max-width:1000px; margin:10px auto;}*/
.services .nav li{
	width:25%;
	padding: 0 5px;
	margin: 0 auto;
}
.services .nav{
	width:1200px;
	margin: 0 auto;
	/*padding-bottom:5px;*/
}

.services ul li a{
	/*float:left;*/
	color: #689029;
}
.services ul li a .icon{
	display: block;
    margin: 0 auto;
	width:100px;
	height:100px;
    background-repeat:no-repeat;
	background-size:100% 100%;
}
.services ul li a:hover {
	color: #821b81;
}

.services ul li a #line{
	display:none;
	position:absolute;
	width:2px;
	height: 15px;
	bottom:0px;
	left:50%;
	background-color: #821b81;
	z-index:2;
}
.services .active #line, .services ul li a:focus #line{
	display: block;
	
}
.services ul .active a h5, .services ul li a:focus h4{
	color: #821b81;
}
.services ul li a #appdevicon{
	background-image:url('../img/app_green.png');
}
.services ul li a:hover #appdevicon{
	background-image:url('../img/app_purple.png');
}
.services .active #appdevicon, .services ul li a:focus #appdevicon{
	background-image:url('../img/app_purple.png');
}
.services ul li a #gameicon{
	background-image:url('../img/game_green.png');
}
.services ul li a:hover #gameicon{
	background-image:url('../img/game_purple.png');
}
.services .active #gameicon, .services ul li a:focus #gameicon{
	background-image:url('../img/game_purple.png');
}
.services ul li a #indieicon{
	background-image:url('../img/indie_green.png');
}
.services ul li a:hover #indieicon{
	background-image:url('../img/indie_purple.png');
}
.services ul li a:focus #indieicon{
	background-image:url('../img/indie_purple.png');
}
.services ul li a #techicon{
	background-image:url('../img/tech_green.png');
}
.services ul li a:hover #techicon{
	background-image:url('../img/tech_purple.png');
}
.services ul li a:focus #techicon{
	background-image:url('../img/tech_purple.png');
}
.services ul li a #graphicsicon{
	background-image:url('../img/graphics_green.png');
}
.services ul li a:hover #graphicsicon{
	background-image:url('../img/graphics_purple.png');
}
.services ul li a:focus #graphicsicon{
	background-image:url('../img/graphics_purple.png');
}
/*.tab-pane h3, .tab-pane p{margin: 0 20%}*/
.tab-pane h3{display: none; margin-top:30px; margin-bottom:20px;}
.tab-pane p{margin-top:20px;}
.headline{text-align:center;}
.text p, .text h4{
	padding:0;
	margin:0;
	border:0;
	text-align:right;
	padding-left:100px;
}
.text h4{font-weight:bold; color:#821b81;}

.headline p,.headline h4{text-align:center;padding: 10px 0;}
.pad{padding: 10px 0;}

.appimage {margin: 0px auto  10px auto}
/*GAME DEV*/

#gamedev h2,#graphics h2{color:#821b81;font-size:24px;margin-top:30px;font-weight:bold;}
#gamedev h4{color:#689029;margin-top:40px}


.gameimages{
	display: flex;
	display: -webkit-flex; 
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: center;
	-webkit-justify-content: center;
  
	width:75%;
	max-width:1200px;
	height:auto;
	margin:0 auto;
	margin-top: 20px;
}

.games{
	width:300px;
	margin: 25px 15px;
}
.gameslandscape{
	width:auto;
	margin: 25px 100px;
}
.techimg{margin:0 auto}
.games .icons{
	display: block;
	width:30px;
	height:30px;
	margin:10px;
	background-repeat:no-repeat;
	background-size:100% 100%;
	float:right;
}
.games #ps {background-image:url('../img/googleplay_64b.png');opacity: 0.5;}
.games #ps:hover {background-image:url('../img/googleplay_64p.png');opacity: 1;}
.games #as {background-image:url('../img/apple_64b.png');opacity: 0.5;}
.games #as:hover {background-image:url('../img/apple_64p.png');opacity: 1;}
.games #am {background-image:url('../img/amazon_64b.png');opacity: 0.5;}
.games #am:hover {background-image:url('../img/amazon_64p.png');opacity: 1;}
.games #yt {background-image:url('../img/youtube_64b.png');opacity: 0.5;}
.games #yt:hover {background-image:url('../img/youtube_64p.png');opacity: 1;}
.games #tx {font-size:16;float:left;color:#821b81;width:auto;font-weight:bold;line-height:2}

.storeimg{margin:0 auto;}
.storeimg img{
	width:60%;
}
#icons{width:60%;margin:0 auto;}



/*ABOUT*/
.about{
	position: relative;
	content: "";
	display:inline-block;
	width:100%;
	height: auto;
	min-height:420px;
	overflow:hidden;
}

.about #shape3 {
	position:absolute;
	width:200%;
	height:100%;
	background: #333;
	z-index:-2;
	margin-left:-35px;
	margin-top:100px;
	
	-webkit-transform: rotate(3deg) skewX(0deg);;
    -ms-transform: rotate(3deg) skewX(0deg);
    transform: rotate(3deg) skewX(0deg);
	-moz-transform: rotate(3deg) skewX(0deg);
	-ms-transform: rotate(3deg) skewX(0deg);
	-o-transform: rotate(3deg) skewX(0deg);
	overflow: hidden;
}
.about #shape3 #shape4 {
	position:absolute;
	width:110%;
	height:200px;
	background: #821b81;
	z-index:-1;
	margin-left:-30px;
	margin-top:-330px;
	
	-webkit-transform: rotate(-7deg) skewX(0deg);;
    -ms-transform: rotate(-7deg) skewX(0deg);
    transform: rotate(-7deg) skewX(0deg);
	-moz-transform: rotate(-7deg) skewX(0deg);
	-ms-transform: rotate(-7deg) skewX(0deg);
	-o-transform: rotate(-7deg) skewX(0deg);
}

.about h2{
	width:100%;
	margin: 0 auto;
	text-align:center;
	margin-top:150px;
	color: #fff;
	padding: 0 20px;
	
}
.about p{
	width:70%;
	margin: 20px auto;
	text-align:center;
	color: #fff;
	/*padding: 0 50px;*/
	font-size:16px;
	line-height:25px;
}
.about .team{
	height:100px;
	background-repeat:no-repeat;
	background-size:100px;
	background-position: center;
	padding:0;
	margin-bottom: 65px;
}
.about #t1{
	background-image:url('../img/t_peter150.png');
}
.about #t2{
	background-image:url('../img/t_balazs150.png');
}
.about #t3{
	background-image:url('../img/t_armin150.png');
}
.about #t4{
	background-image:url('../img/t_zsolti150.png');
}
.about #t5{
	background-image:url('../img/t_tamara150.png');
}
.about #t6{
	background-image:url('../img/t_tamas150.png');
}
.about #t7{
	background-image:url('../img/t_akos150.png');
}
.about #t8{
	background-image:url('../img/t_szandi150px.png');
}

.about .team h4{
	position:absolute;
	bottom:-65px;
	width:100%;
	color:#fff;
	font-size:13px;
	text-align:center;
	
}
/*PARTNERS*/
.partners{
	position: relative;
	content: "";
	display:block;
	width:100%;
	min-height: 700px;
	overflow:hidden;


}

@media screen and (max-width : 992px) {
	.partners{
		height: 900px;
	}
}

@media screen and (max-width : 768px) {
	.partners{
		height: 1500px;
	}
}

.partners #shape5{
	position:absolute;
	width:200%;
	height:110px;
	background: #333;
	z-index:-2;
	margin-left:-30px;
	margin-top:-100px;

	
	-webkit-transform: rotate(-3deg) skewX(0deg);;
    -ms-transform: rotate(-3deg) skewX(0deg);
    transform: rotate(-3deg) skewX(0deg);
	-moz-transform: rotate(-3deg) skewX(0deg);
	-ms-transform: rotate(-3deg) skewX(0deg);
	-o-transform: rotate(-3deg) skewX(0deg);
	overflow: hidden;
}
.partners #shape5 #shape6 {
	position:absolute;
	width:110%;
	height:100px;
	background: #821b81;
	z-index:-1;
	margin-left:-30px;
	margin-top:200px;
	
	-webkit-transform: rotate(5deg) skewX(0deg);;
    -ms-transform: rotate(5deg) skewX(0deg);
    transform: rotate(5deg) skewX(0deg);
	-moz-transform: rotate(5deg) skewX(0deg);
	-ms-transform: rotate(5deg) skewX(0deg);
	-o-transform: rotate(5deg) skewX(0deg);
}
.partners #shape7{
	position:absolute;
	width:200%;
	height:110px;
	background: #333;
	z-index:-2;
	bottom:0;
	margin-left:-30px;
	margin-bottom:-100px;

	
	-webkit-transform: rotate(3deg) skewX(0deg);;
    -ms-transform: rotate(3deg) skewX(0deg);
    transform: rotate(3deg) skewX(0deg);
	-moz-transform: rotate(3deg) skewX(0deg);
	-ms-transform: rotate(3deg) skewX(0deg);
	-o-transform: rotate(3deg) skewX(0deg);
	overflow: hidden;
}
.partners #shape8 {
	position:absolute;
	width:110%;
	height:140px;
	background: #689029;
	z-index:-3;
	bottom:0;
	margin-left:-30px;
	margin-bottom:-100px;
	
	-webkit-transform: rotate(-3deg) skewX(0deg);;
    -ms-transform: rotate(-3deg) skewX(0deg);
    transform: rotate(-3deg) skewX(0deg);
	-moz-transform: rotate(-3deg) skewX(0deg);
	-ms-transform: rotate(-3deg) skewX(0deg);
	-o-transform: rotate(-3deg) skewX(0deg);
}

.partners .partnerlogo{
	position:absolute;
	width:100%;
	height:auto;
	/*left: 15%;
	right:15%;*/
	top: 25%;
	z-index:3;
	margin: 0 auto;
	margin-top: -50px;
	}
/*.partners .partnerlogo .parts{
	width:25%;
	height:50%;
	background: red;
	cursor:pointer;	float:left;

	margin: 5% auto;
	}*/
.partners .partnerlogo h2{
	margin: 0 auto;
	text-align:center;
	color: #333;
	}
.partners .partnerlogo .parts{
	/*cursor:pointer;*/
	height:240px;
	background-repeat:no-repeat;
	background-size:200px;
	background-position:center;
	filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}
.partners .partnerlogo .parts a{
	width:100%;
	height:100%;
	position: relative;
	content: "";
	display:inline-block;
}
.partners .partnerlogo #p1{
	background-image:url('../../img/erste-bank-logo-1.png');
}
.partners .partnerlogo #p1:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p2{
	background-image:url('../../img/kh_logo_3.png');
}
.partners .partnerlogo #p2:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p3{
	background-image:url('../../img/Magyar_Telekom_Logo.svg.png');
}
.partners .partnerlogo #p3:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p4{
	background-image:url('../../img/MKB_Bank_logo.svg.png');
}
.partners .partnerlogo #p4:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p5{
	background-image:url('../../img/Screenshot\ 2023-02-12\ 181016.png');
}
.partners .partnerlogo #p5:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p6{
	background-image:url('../../img/Screenshot\ 2023-02-12\ 185420.png');
}
.partners .partnerlogo #p6:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p7{
	background-image:url('../../img/slid7e-3-logo.png');
}
.partners .partnerlogo #p7:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p8{
	background-image:url('../../img/1280px-Logo_BRZ_Bundesrechenzentrum_\(06660118\).svg.png');
}
.partners .partnerlogo #p8:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
.partners .partnerlogo #p9{
	background-image:url('../../img/kreta-logo.png8.png');
}
.partners .partnerlogo #p9:hover{
	 filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    -webkit-filter: grayscale(0%);
}
/*CONTACT*/
.contact{
	position: relative;
	content: "";
	display:block;
	width:100%;
	height: auto;
	min-height:400px;
	overflow:hidden;
	background-color: #333;
	
}
.full{width:100%;}
.cicon{width:20px;height:20px;margin: 5px auto;}
.iconphone{background-image:url('../img/phone.png');background-size: 100% 100%;}
.iconmail{background-image:url('../img/mail.png');background-size: 100% 100%;}
.iconlocation{background-image:url('../img/location.png');background-size: 100% 100%;}

li{
	color: #fff;
	font-size: medium;
}
ul{
	margin-top: 20px;
	text-align: center;
}
h2{
	font-size: xxx-large;
	font-variant-caps: all-petite-caps;
}
.contact p{color:#fff;text-align:center;}
.contact h2{
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    color: #333;}
.contact .cpanel{
	width:50%;
	float:left;
}
.contact article .contactlogo{
	width:100%;
	margin: auto;
	text-align: center;
	margin-top:30px;
	
}
.contact article .contactlogo .otter{
	width:200px;
}
.contact article .contactlogo .name{
	margin-top:15px;
	margin-bottom:25px;
	width:200px;
}
.contact article .contactlogo a{
	color: #fff;
	text-align: center;
	font-size: 18px;
	text-decoration:none;

}
.contact article .contactlogo a:hover{
	color: #689029;
	font-weight: bold;
}
.contact article div .well {margin-top: 10%;}
.contact article div .well h3, .contact article div form .h4{
	color:#fff;
}

.red{
    color:red;
    }
.form-area{}

.contact #shape9{
	position:absolute;
	width:200%;
	height:280px;
	background: #689029;
	z-index:2;
	bottom:0;
	margin-left:-30px;
	margin-bottom:-100px;

	
	-webkit-transform: rotate(-4deg) skewX(0deg);;
    -ms-transform: rotate(-4deg) skewX(0deg);
    transform: rotate(-4deg) skewX(0deg);
	-moz-transform: rotate(-4deg) skewX(0deg);
	-ms-transform: rotate(-4deg) skewX(0deg);
	-o-transform: rotate(-4deg) skewX(0deg);
	overflow: hidden;
}
.contact #shape10 {
	position:absolute;
	width:110%;
	height:200px;
	background: #821b81;
	z-index:1;
	bottom:0;
	margin-left:-30px;
	margin-bottom:-100px;
	
	-webkit-transform: rotate(3deg) skewX(0deg);;
    -ms-transform: rotate(3deg) skewX(0deg);
    transform: rotate(3deg) skewX(0deg);
	-moz-transform: rotate(3deg) skewX(0deg);
	-ms-transform: rotate(3deg) skewX(0deg);
	-o-transform: rotate(3deg) skewX(0deg);
}
.contact .socialmedia{
	position:absolute;
	/*width:70%;
	min-height:60px;*/
	bottom:15px;
	left: 25%;
	right:15%;
	z-index:3;
	/*margin: 0 auto;*/

}
.contact .socialmedia .smicon{
	/*position:relative;
	min-width:50px;
	
	cursor:pointer;
	float:left;*/
	height:50px;
	background-repeat:no-repeat;
	background-size:50px;
	background-position:center;
	margin-bottom:15px;
}
.contact .socialmedia #fb{
	background-image:url('../img/facebook_64.png');
}
.contact .socialmedia #fb:hover{
	background-image:url('../img/facebook_64p.png');
}
.contact .socialmedia #yt{
	background-image:url('../img/youtube_64.png');
}
.contact .socialmedia #yt:hover{
	background-image:url('../img/youtube_64p.png');
}
.contact .socialmedia #in{
	background-image:url('../img/insta_64.png');
}
.contact .socialmedia #in:hover{
	background-image:url('../img/insta_64p.png');
}
.contact .socialmedia #gs{
	background-image:url('../img/googleplay_64.png');
}
.contact .socialmedia #gs:hover{
	background-image:url('../img/googleplay_64p.png');
}
.contact .socialmedia #as{
	background-image:url('../img/apple_64.png');
}
.contact .socialmedia #as:hover{
	background-image:url('../img/apple_64p.png');
}
.contact .socialmedia #ws{
	background-image:url('../img/windows_64.png');
}
.contact .socialmedia #ws:hover{
	background-image:url('../img/windows_64p.png');
}
.contact .socialmedia #dr{
	background-image:url('../img/dribble_64.png');
}
.contact .socialmedia #dr:hover{
	background-image:url('../img/dribble_64p.png');
}
.contact .socialmedia #li{
	background-image:url('../img/linkedin_64.png');
}
.contact .socialmedia #li:hover{
	background-image:url('../img/linkedin_64p.png');
}

.mail{
	width:100%;
	background: #821b81;
	height: 30px;
	text-align:center;
	
}
.mail a{
	color: #fff;
	text-align:center;
	height: 30px;
	line-height: 30px;
	color: #fff;
	cursor:pointer;
}
.mail a:hover{color: #689029}

.footer{
	position: relative;
	content: "";
	display:inline-block;
	width:100%;
	min-height: 30px;
	height:auto;
	background-color: #689029;
	z-index:3;
	margin:0;
}
.footer p{
	color: #fff;
	text-align:center;
	min-height: 30px;
line-height: 30px;}

.footer a{
	color: #fff;
}
.footer a:hover{
	color: #821b81;
}
.footer a:visited{
	color: #fff;
}
/*GO TO TOP*/
.scroll-top-wrapper {
    position: fixed;
    opacity: 0;
    visibility: hidden;
	overflow: hidden;
	text-align: center;
	z-index: 10;
    background-color: #821b81;
	color: #fff;
	width: 50px;
	height: 50px;
	/*line-height: 43px;*/
	right: 30px;
	bottom: 80px;
	
	-webkit-transform: rotate(45deg) skewX(0deg);;
    -ms-transform: rotate(45deg) skewX(0deg);
    transform: rotate(45deg) skewX(0deg);
	-moz-transform: rotate(45deg) skewX(0deg);
	-ms-transform: rotate(45deg) skewX(0deg);
	-o-transform: rotate(45deg) skewX(0deg);
	
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.scroll-top-wrapper:hover {
	background-color: #fff;
	border-style: solid;
    border-width: 2px;
	border-color: #821b81;
	padding-left:2px;
	padding-bottom:2px;
}
.scroll-top-wrapper.show {
    visibility:visible;
    cursor:pointer;
	opacity: 1.0;
}
.scroll-top-wrapper i.fa {
	font-size: 50px;

	-webkit-transform: rotate(-45deg) skewX(0deg);;
    -ms-transform: rotate(-45deg) skewX(0deg);
    transform: rotate(-45deg) skewX(0deg);
	-moz-transform: rotate(-45deg) skewX(0deg);
	-ms-transform: rotate(-45deg) skewX(0deg);
	-o-transform: rotate(-45deg) skewX(0deg);
}
.scroll-top-wrapper:hover i.fa {
	color: #821b81;
	font-size: 48px;
}
.ph{display: none}

@media screen and (max-width : 1400px) {
	.header #shape1{
		height:500px;
	}
	.header #shape2{
		height:500px;
		margin-top:150px;
	}
	/*.header .logo{
		position:absolute; 
		top:50%; 
		left:50%; 
		transform:translate(-50%, -50%); 
		width:50%;
		float:left;
		z-index:2;
	}*/
	/*.header .logo .otter{
		display:block;
		width:70%;
		height:auto;
		margin:0 auto;
	}
	.header .logo .name{
		display:block;
		width:70%;
		margin:40px auto;
	}*/
	.header .logo .down{
		display:block;
		width:75px;
		margin:0px auto;
		margin-top:100px;
	}
	
	.services .nav li{
	width:25%;
	padding: 0 5px;
	margin: 0 auto;
	}
	.services .nav{
		width:100%;
		margin: 0 auto;
		padding-bottom:0;
	}
	.services ul li a #line{bottom:0}
	.services .nav li h5{
		height:30px;
	}
	.about #shape3 #shape4 {
		margin-top:-260px;
	}
	.partners #shape5 #shape6 {
		margin-top:170px;
	}
		.contact #shape10{
		margin-bottom:-80px;
	}
	.gameslandscape{
		width:auto;
		margin: 25px 15px;
	}
	
}
.services_li{
	color: #000 !important;
	margin-bottom: 6px;
	font-size: 20px;
	  list-style-type: none !important;
}
.services_h2{
	color: #821b81;
}
@media screen and (max-width : 1200px) {
	.partners #shape5 #shape6 {
		margin-top:155px;
	}
	.form-area{margin-bottom:275px;}
	.contact{min-height:650px;}
	.contact article div .well {
		margin-top: 0px;
		
		}
	.partners .partnerlogo .parts{
		background-size:150px;
	}
	.contact article .contactlogo{
		margin-top:0;
		width:300px;
		float:none;
		margin:0 auto
	}
	.contact article .contactlogo{text-align:center}
	.contact p{text-align:center}
	.contact article .contactlogo a{text-align:center}
	.cicon{float:none;margin: 5px auto}
	
	.gmap{width:100%}
	
	
}

@media screen and (max-width : 1024px) {
	.services ul li a .icon{
		width:75px;
		height:75px;
	}
	.services .nav li h5{
		height:30px;
		font-size:14px;
	}
	.tab-pane h3, .tab-pane p{margin: 15px 0%;width:100%}
	.text p, .text h4{margin:0;}
	.headline p{padding: 15px 35px;}
	.header #shape1{
		height:250px;
	}
	.header #shape2{
		height:300px;
		margin-top:50px;
	}
	/*.header .logo .otter{
		display:block;
		width:200px;
		height:auto;
		margin:0 auto;
	}
	.header .logo .name{
		display:block;
		width:200px;
		margin:40px auto;
	}*/
	.about p{
		width:90%;
		margin: 20px 5%;
	}
	.partners #shape5 #shape6 {
		margin-top:135px;
	}

	.contact #shape10{
		margin-bottom:-60px;
	}
	
}
@media screen and (max-width : 991px) {
	.partners{min-height: 470px}
	.partners .partnerlogo{top:10%}

}
/*@media screen and (max-width : 991px) {
	.services .nav{padding-bottom:15px;}
	.services ul li a #line{bottom:-15px;}

}*/

@media screen and (max-width : 768px) {
	.header #lang{top:10px}

	.services ul li a .icon{
		width:60px;
		height:60px;
	}
	.services .nav li h5{
		height:30px;
		font-size:12px;
		font-size:12px;
	}
	.tab-pane h3, .tab-pane h4, .tab-pane p{margin: 25px 0%}

	.youtubevideowrap{
	width:100%;
	max-width:100%;
	}
	.m2m{margin-bottom:5px}
	.m2m1{margin-bottom:50px}
	.rtr{margin-bottom:5px;padding:0}
	.rtr2{margin-bottom:50px}
	.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	margin:0px 10px;
}

	.otw-column:last-child, .otw-columns:last-child{
		left:auto !important;
	}
	
	
	
	.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
	
	
	/*.header .logo{width:100%}*/
	.header .logo .down:hover{
		
		width:55px;

	}
	.header #lang{
		position: absolute;
		width: 32px;
		height: 32px;
		right:0;
		margin-right:15px;
		z-index: 2;
	}
	.header #lang a{
		color:#fff;
		font-size: 20px;
		text-decoration: none;
	}
	.text p, .text h4{text-align:center;padding:0;}
	.about #shape3 #shape4 {
		margin-top:-230px;
	}
	.services {margin-bottom:0px;}
	
	.about #t0{display:none;}
	.ph{display: block}
	
	.contact #shape10{
		margin-bottom:-40px;
	}
	.partners .partnerlogo .parts{
		background-size:180px;
	}
	.partners {min-height:600px;}
	.contact article .contactlogo{width:250px;}
	.contact article div .well h3, .contact article div form .h4{
		text-align: center;
	}
	/*.contact{min-height:1100px;}*/
	.contact .socialmedia{width:100%;left:0;right:0}
	/*.socialmedia ph0{display:none;}*/
}


@media screen and (max-width : 640px) {
	.header .logo{
		width:300px;
	}
	.header .logo .otter{width:150px}
	.header .logo .name{width:150px;margin: 10px auto;}
	.header .logo .szlogen{
		width:140px;
		/*font-size:11px;
		letter-spacing:1.8px;
		padding-left:2px;*/

	}
	.services .nav li h5{
		display:none;
	}
	.services ul li a:focus #line, .services .active #line{height:7px}
	.services ul li a .icon{
		width:40px;
		height:40px;
	}
	.tab-pane h3{display: inline;margin: 25px 0;}
	.about #shape3 #shape4 {
		margin-top:-230px;
	}
	.about h2{size:20px;}
	/*.about p{
		width:96%;
		margin: 20px 20px;
		padding: 20px 20px;
	}*/
	.about .team h4{bottom:-65px;font-size:13px}
	.partners #shape5 #shape6 {
		margin-top:120px;
	}
	.partners #shape8 {
		margin-bottom: -115px;
		width:120%
	}
	
	.contact article .contactlogo{width:200px}

}
@media screen and (max-width : 400px){
	.about #shape3 #shape4 {
		margin-top:-220px;
	}
	.about .team{background-size:75px}
	/*.about p{
		width:100%;
		margin: 0 20px;
	}*/
	.appimage{margin: 0px 0px}
	.contact #shape10{
		margin-bottom:-20px;
	}
	.partners {min-height:550px;}
	.partners .partnerlogo h2 {width:100%; padding-bottom: 20px;}
	.partners .partnerlogo .parts{
		background-size:120px;
	}
	.contact .socialmedia .smicon{background-size:40px}
	.app-icon-bottom{
		bottom:-45px!important
	}
}
@media screen and (max-width : 320px){
	.about #shape3 #shape4 {
		margin-top:-215px;
	}
	.header .logo{
		width:100%;
	}
}
