
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
* {
	border: 0;
	padding: 0;
	margin: 0;
}
a {
	font-weight: 500;
	color: #111;
	text-decoration: none;
	width: fit-content;
  	height: fit-content;
  	transition: 0.2s ease-in;
}
a:hover {
	color: #555;
	transition: 0.2s ease-in;
}
a.prim-cta {
	padding: 12px 24px;
	background: #000;
	color: #fff;
	border-radius: 4px;
	font-size:16px;
	letter-spacing: -1px;
	line-height: 24px;
	text-align: center;
}
a.prim-cta:hover {
	background: #555;
}
a.prim-cta-reverse {
	padding: 12px 24px;
	background: #fff;
	color: #000;
	border-radius: 4px;
	font-size:16px;
	letter-spacing: -1px;
	line-height: 24px;
	text-align: center;
}
a.prim-cta-reverse:hover {
	background: #DADADA;
}
a.sec-cta {
	padding: 12px 24px;
	color: #000;
	border-radius: 4px;
	border: 1px solid #000;
	font-size:16px;
	letter-spacing: -1px;
	line-height: 24px;
	text-align: center;
}
a.sec-cta:hover {
	background: #F0F0F0;
}
.mobile {
	display: none;
}
.ws-xs {
	height: 40px;
	grid-column: 1 / -1;
}
.ws-s {
	height: 60px;
	grid-column: 1 / -1;
}
.ws-m {
	height: 100px;
	grid-column: 1 / -1;
}
.ws-l {
	height: 150px;
	grid-column: 1 / -1;
}
.divider {
	height: 2px;
	grid-column: 2 / 12;
	background-color: #D9D9D9;
}
.responsive {
  width: 100%;
  height: auto;
}
.container {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-column-gap: 40px;
	max-width: 1600px;
  	padding: 0px 80px;
	margin: 0 auto;
}
h1, h2, h3, h4, h5 {
	letter-spacing: -1px;
	color: black;
	font-weight: 600;
}
h1.light, h2.light, h3.light {
	color: #fff;
}
h1 {
	font-size: 56px;
	line-height: 64px;
}
h2 {
	font-size: 40px;
	line-height: 48px;
}

h3 {
	font-size: 32px;
	line-height: 40px;
}
h4 {
	font-size: 24px;
	line-height: 32px;
}
h5 {
	font-size: 18px;
	line-height: 26px;
}
p {
	letter-spacing: -0.7px;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
}
p.light {
	color: #999;
}
p.XSmallP {
	font-size: 12px;
	line-height: 20px;
}
p.SmallP {
	font-size: 14px;
	line-height: 22px;
}
p.MedP {
	font-size: 16px;
	line-height: 24px;
}
p.chips {
	font-size: 16px;
	line-height: 24px;
	padding: 10px 24px;
	border: 1px solid #ADADAD;
	border-radius: 100px;
	text-align: center;
	width: fit-content;
  	height: fit-content;
}
body {
	background: #fff;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.7px;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}
.navbar {
  	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: auto auto;
	align-items: center;
  	padding: 40px 0px;
}
.navbar .header-logo {
  justify-self: start;
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-self: end;
  width: fit-content;
}
.navbar ul li {
  margin-right: 40px;
}
.navbar ul li:last-child {
  margin-right: 0;
}
.navbar ul li a {
  text-decoration: none;
  font-size: 16px;
}
.menu-toggle .bar{
  width: 24px;
  height: 2px;
  background-color: #000;
  margin: 6px auto;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.menu-toggle {
  justify-self: end;
  display: none;
}
.menu-toggle:hover{
  cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(1){
  -webkit-transform: translateY(4px) rotate(45deg);
  -ms-transform: translateY(4px) rotate(45deg);
  -o-transform: translateY(4px) rotate(45deg);
  transform: translateY(4px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(2){
  -webkit-transform: translateY(-4px) rotate(-45deg);
  -ms-transform: translateY(-4px) rotate(-45deg);
  -o-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
}
.PageTitle {
	grid-column: 2 / 12;
}
.PageTitle h1 {
	margin-bottom:16px;
}
.PageTitle p {
	max-width: 700px;
}
.PageTitleFull {
	grid-column: 2 / 12;
}
.PageTitleFull h1 {
	margin-bottom: 12px;
}
.project-detail h3 {
	margin-bottom: 12px;
}
.TitleLinks {
	display: flex;
}
.TitleLinks p {
	margin: 0px 10px;
}
#works {
	grid-column: 1 / -1;
}
.WorksContainer {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.WorksContainer a {
	width: auto;
}
.work-item {
	width: auto;
	height: 690px;
	padding: 60px;
}
.danone-thumbnail {
	background-image: url(../imgs/danone.jpeg);
	background-size: cover;
	background-position: center center;
}
.lunchnow-thumbnail {
	background-image: url(../imgs/lunchnow.png);
	background-size: cover;
	background-position: center center;
}
.pop-thumbnail {
	background-image: url(../imgs/pop.jpeg);
	background-size: cover;
	background-position: center center;
}
.qan-thumbnail {
	background-image: url(../imgs/qanplatform.jpeg);
	background-size: cover;
	background-position: center center;
}
.logo-thumbnail {
	background-image: url(../imgs/logos.jpeg);
	background-size: cover;
	background-position: center center;
}
.bba-thumbnail {
	background-image: url(../imgs/bba.png);
	background-size: cover;
	background-position: center center;
}
p.thumbnail-st {
	font-size: 16px;
	color: #000;
	opacity: 0.75;
}
p.thumbnail-st-light {
	font-size: 16px;
	color: #fff;
	opacity: 0.75;
}
.BemutatkozasTop {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 40px;
}
.BemutatkozasText {
	grid-column: 1 / 3;
}
.BemutatkozasPic {
	grid-column: 3 / 4;
	z-index: 9999;
}
.features {
	grid-column: 2 / 9;
	border-top: 4px solid #F2F2F2;
	margin-top: -100px;
	padding-top: 60px;
}
.featuresmore {
	grid-column: 2 / 9;
	padding-top: 60px;
}
.featuresmore .feature-item h2 {
	margin-bottom: 12px;
}
.featuresmore .feature-item p {
	max-width: 700px;
}
.features .feature-item h2 {
	margin-bottom: 12px;
}
.features .feature-item p {
	max-width: 700px;
}
.aboutme-img {
	grid-column: 1 / -1;
}
.aboutme-skills {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.aboutme-skills h2 {
	grid-column: 1 / -1;
	margin-bottom: -12px;
}
.skill-group {
	width: auto;
}
.aboutme-skills .skill-group .chips-content {
	display: flex;
	flex-flow: wrap;
}
.aboutme-skills .skill-group .chips-content p.chips {
	margin: 0px 12px 12px 0px;
}
.aboutme-skills .skill-group h4 {
	margin-bottom: 12px;
	grid-column: 1 / -1;
}
.hogyan {
	grid-column: 2 / 12;
	border-top: 4px solid #F2F2F2;
}
.hogyan-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
}
.hogyan-content h2 {
	grid-column: 1 / -1;
	margin-bottom: 32px;
}
.hogyan-item h4 {
	margin-bottom: 8px;
}
.DoubleColumn {
	grid-column: 2 / 12;
}
.DoubleColumn-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
}
.DoubleColumn-content h2 {
	grid-column: 1 / -1;
	margin-bottom: 32px;
}
.DoubleColumn-item h4 {
	margin-bottom: 8px;
}
.hm {
	grid-column: 2 / 12;
}
.project-details {
	grid-column: 2 / 12;
}
.project-details-content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.project-detail ul {
	list-style-position: inside;
}
.project-images {
	grid-column: 1 / -1;
}
.project-images img {
	border-bottom: 1px solid #eee;
	border-radius: 5px;
}
.contactForm {
	grid-column: 2 / 12;
}
.footer {
	padding: 80px 0px 40px 0px;
	background: #F4F4F4;
}
.FooterContainer {
	grid-column: 1 / -1;
}
.FooterItem {
	display: grid;
	margin-bottom: 64px;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}
.FooterItem:last-child {
	margin-bottom: 0px;
}
.FooterItem ul {
	list-style: none;
  display: flex;
  justify-self: start;
  grid-column: 1 / 2;
}
.FooterItem ul li {
	margin-right: 32px;
}
.FooterItem #FooterSocials {
	grid-column: 2 / 2;
	display: flex;
	justify-self: end;
}
.FooterItem #FooterSocials a {
	margin-right: 24px;
}
.FooterItem #FooterSocials a:last-child {
	margin-right: 0px;
}
.ServicesContent {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
}
.ServicesContent #ServicesLeft {
	width: auto;
}
.scrolling {
	position: -webkit-sticky;
	position: sticky;
	top: 24px;
}
.ServicesContent #ServicesRight {
	width: auto;
}
.ServicesContent #ServicesRight .ServiceBox {
	padding: 32px 24px;
	background: #F8F8F8;
	text-align: left;
	margin-bottom: 32px;
}
.ServicesContent #ServicesRight .ServiceBox h4 {
	margin-bottom: 10px;
}
.ServicesContent #ServicesRight .ServiceBox:last-child {
	margin-bottom: 0px;
}
.ScrollContent {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
}
.ScrollContent #ScrollLeft {
	width: auto;
}
.scrolling {
	position: -webkit-sticky;
	position: sticky;
	top: 24px;
}
.ScrollContent #ScrollRight {
	width: auto;
}
.ScrollContent #ScrollRight .ServiceBox {
	padding: 32px 24px;
	background: #F8F8F8;
	text-align: left;
	margin-bottom: 32px;
}
.ScrollContent #ScrollRight .ServiceBox h4 {
	margin-bottom: 10px;
}
.ScrollContent #ScrollRight .ServiceBox:last-child {
	margin-bottom: 0px;
}
.ContactMe {
	background: #161616;
	width: 100%;
	padding: 32px 0px 0px 0px;
}
.ContactMeCont {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
	color: #c1c1c1;
}
.ContactMeCont .ContactMeLeft, .ContactMeRight {
	width: auto;
}
.ContactMeCont .ContactMeLeft {
	display: flex;
 	align-items: center;
 	margin-top: -32px;
}
.ContactMeCont .ContactMeRight {
	display: flex;
	justify-self: end;
}
.ContactMeCont .ContactMeLeft h2 {
	margin-bottom: 16px;
}
.ContactMeCont .ContactMeLeft p {
	margin-bottom: 40px;
}
.ContactPage {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 40px;
	margin-top: 40px;
}
.ContactPage .CP-Left, .CP-Right {
	width: auto;
}
.ContactPage .CP-Left a {
	font-size: 24px;
	line-height: 32px;
	text-decoration: underline;
}
.ContactPage .CP-Right a {
	margin-right: 16px;
	align-self: center;
}
.ContactPage .CP-Right a:last-child {
	margin-right: 0px;
}
.ContactPage .CP-Right h5 {
	margin-bottom: 16px;
}
.whatsnext_content {
	grid-column: 2 / 12;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 40px;
	border-top: 2px solid #D9D9D9;
	padding-top: 56px;
}
.whatsnext_content h3 {
	grid-column: 1 / -1;
	margin-bottom: 24px;
}
.whatsnext_content h4 {
	margin-bottom: 12px;
}
.c-container {
	display: grid;
	grid-template-columns: repeat(6, auto);
}
.c-content {
	width: auto;
	display: flex;
	align-self: center;
	justify-content: start;
}
/* Mobil CSS START */
@media (max-width: 767.98px) {
  	.mobile {
  	display: inline;
  	}
  	.desktop {
  	display: none;
  	}
  	.ws-xs {
  	height: 24px; 
  	}
  	.ws-s {
	height: 32px;
	grid-column: 1 / -1;
	}
	.ws-m {
	height: 40px;
	grid-column: 1 / -1;
	}
	.ws-l {
	height: 56px;
	grid-column: 1 / -1;
	}
	.divider {
	grid-column: 1 / -1;
	}
	.container {
	grid-template-columns: 1fr;
	padding: 0px 24px;
	}
	h1 {
		font-size: 32px;
		line-height: 40px;
	}
	h2 {
		font-size: 24px;
		line-height: 32px;
	}
	h3 {
		font-size: 18px;
		line-height: 26px;
	}
	h4 {
		font-size: 16px;
		line-height: 24px;
	}
	p {
	letter-spacing: -0.7px;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	}
	p.XSmallP {
	font-size: 10px;
	line-height: 18px;
	}
	p.SmallP {
	font-size: 12px;
	line-height: 20px;
	}
	p.MedP {
	font-size: 14px;
	line-height: 22px;
	}
	p.chips {
	font-size: 14px;
	line-height: 22px;
	padding: 6px 16px;
	}
	body {
		font-size: 16px;
	}
	.PageTitle, .PageTitleFull {
		grid-column: 1 / -1;
	}
	/*New nav*/
  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    left: 0;
    top: 100px;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    transform: translate(110%);
    text-align: center;
    overflow: hidden;
    z-index: 9999;
    transition: 0.2s ease-in;
    margin: 0;
  }
  
  .navbar li {
    padding: 24px;
  }
  .navbar ul li {
    margin-right: 0px;
  }
  
  .navbar li:first-child {
    margin-top: 48px;
  }
  
  .navbar ul li a {
    font-size: 20px;
  }
   
  .menu-toggle, .bar {
    display: block;
    cursor: pointer;
  }
  
  .mobile-nav {
  transform: translate(0%)!important;
}
  /*New nav END*/
	.TitleLinks {
		display: block;
	}
	.TitleLinks p {
		margin: 3px 0px 6px 0px;
	}
	.WorksContainer {
		grid-template-columns: 1fr;
	}
	.work-item {
		height: 400px;
		padding: 24px;
	}
	.danone-thumbnail {
		background-size: 105%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #E8F8EE;
	}
	.lunchnow-thumbnail {
		background-size: 105%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #F5F6FA;
	}
	.pop-thumbnail {
		background-size: 110%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #F8F8F8;
	}
	.logo-thumbnail {
		background-size: 100%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #F8F8F8;
	}
	.qan-thumbnail {
		background-size: 120%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #1F1F1F;
	}
	.bba-thumbnail {
		background-size: 110%;
		background-repeat: no-repeat;
		background-position: center bottom;
		background-color: #D4E5FF;
	}
	.hm {
	grid-column: 1 / -1;
}
	.project-details {
	grid-column: 1 / -1;
	}
	.project-detail h3 {
	margin-bottom: 6px;
	}
	.project-details-content {
		grid-template-columns: 1fr;
		grid-gap: 20px;
	}
	.ContactPage {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 40px;
	margin-top: 24px;
	}
	.ContactPage .CP-Left a {
	font-size: 18px;
	line-height: 26px;
	}
	.whatsnext_content {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 24px;
	padding-top: 32px;
	}
	.whatsnext_content h3 {
	margin-bottom: 8px;
	}
	.whatsnext_content h4 {
	margin-bottom: 6px;
	}
	.ServicesContent {
	grid-column: 1 / -1;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 24px;
	}
	.ServicesContent #ServicesRight .ServiceBox {
	padding: 16px 12px;
	margin-bottom: 16px;
	}
	.ScrollContent {
	grid-column: 1 / -1;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 24px;
	}
	.ScrollContent #ScrollRight .ServiceBox {
	padding: 16px 12px;
	margin-bottom: 16px;
	}
	.ContactMeCont {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 24px;
	}
	.ContactMeCont .ContactMeLeft {
 	margin-top: 0px;
	}
	.footer {
	padding: 40px 0px 24px 0px;
	}
	.FooterItem {
	display: grid;
	margin-bottom: 32px;
	grid-template-columns: repeat(1, 1fr);
	}
	.FooterItem ul {
	list-style: none;
  	display: flex;
  	justify-self: start;
  	grid-column: 1 / -1;
	}
	.FooterItem ul li {
	margin-right: 24px;
	}
	.FooterItem #FooterSocials {
	grid-column: 1 / -1;
	display: flex;
	justify-self: start;
	margin-top: 24px;
	}
	.c-container {
	grid-column: 1 / -1;
	grid-template-columns: repeat(2, auto);
	grid-row-gap: 24px;
	}
	.BemutatkozasTop {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-column-gap: 40px;
	}
	.BemutatkozasText {
	grid-column: 1 / -1;
	}
	.BemutatkozasPic {
	grid-column: 1 / -1;
	margin-top: 16px;
	z-index: 1;
	}
	.features {
	grid-column: 1 / -1;
	border-top: 0px;
	margin-top: 0px;
	padding-top: 24px;
	}
	.featuresmore {
	grid-column: 1 / -1;
	border-top: 0px;
	margin-top: 0px;
	padding-top: 24px;
	}
	.aboutme-skills {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 24px;
	}
	.hogyan {
	grid-column: 1 / -1;
	border-top: 4px solid #F2F2F2;
	}
	.hogyan-content {
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 32px;
	}
	.hogyan-content h2 {
		margin-bottom: -16px;
	}
	.DoubleColumn {
	grid-column: 1 / -1;
	}
	.DoubleColumn-content {
	grid-template-columns: repeat(1, 1fr);
	grid-row-gap: 32px;
	}
	.DoubleColumn-content h2 {
		margin-bottom: -16px;
	}

}
/* Mobil CSS END */