@font-face {
	font-family: "Geratis";
	src: url("../fonts/GERATISCAPS.woff") format("woff"), url("../fonts/geratis+caps.otf") format("opentype");
}

* {
	margin:0;
	padding:0
}

html {
	scroll-behavior:smooth
}
/*https://stackoverflow.com/questions/14963393/my-body-background-color-disappears-when-scrolling*/

body {
	font-family: "Google Sans Flex", sans-serif;
	-webkit-font-smoothing:antialiased;
	color:rgba(0,0,0,.64);
	background:linear-gradient(45deg,#eff3f6 30%,#fff);
	margin:0;
	padding:0;
	width:100%;
}

::selection { /* Change default text highlight color */
	background: rgb(197 52 108 / 90%);
	color: #fff;
}

.no-select {
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none
}

.top-bar {
	position:absolute;
	width:100%;
	height:4px;
	background:linear-gradient(45deg,#de1b67 30%,#ec6130);
	top:0
}


/* Page loader */

.loader-container {
	background: #2c303a;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	top: 0;
	left: 0;
}

@media (prefers-color-scheme: light) { /* Light mode */
	
	.loader-container {
		background: #f3f3f3;
	}
  
}

.loader-logo-container {
	max-height: 152px;
	max-width: 152px;
	position: absolute;
	top: calc(50% - 76px);
	left: calc(50% - 76px);
}

.loader-logo-container img.logo-loader {
    opacity: .16;
    width: 100%;
    filter: grayscale(100%) contrast(0);
}


/* Nav menu */

.resp-menu-trigger:hover, .resp-menu-trigger:active {
	background: #eee;
}

.resp-menu-trigger {
	height: 36px;
	position: fixed;
	width: 36px;
	top: 14px;
	left: 10px;
	border-radius: 6px;
	display: block;
	z-index: 9;
	cursor: pointer;
	transition: background 150ms ease-in-out;
}

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

	.resp-menu-trigger {
		background: #fff;
	}

}

.resp-menu-trigger > div {
	background: #777;
	height: 3px;
	width: 22px;
	position: relative;
	border-radius: 40px;
	margin-top: 17px;
	margin-left: 7px;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.resp-menu-trigger.resp-menu-open > div {
	transform: rotate(45deg);
	width: 16px;
	margin-left: 10px;
	height: 2px;
}

.resp-menu-trigger > div:before {
	content: '';
	background: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
	top: -6px;
	border-radius: 40px;
}

.resp-menu-trigger.resp-menu-open > div:before {
	transform: rotate(90deg);
	top: 0;
}

.resp-menu-trigger > div:after {
	content: '';
	background: inherit;
	height: 100%;
	position: absolute;
	width: 100%;
	top: 6px;
	border-radius: 40px;
}

.resp-menu-trigger.resp-menu-open > div:after {
	opacity: 0;
}


.main-navigation {
	background: #fff;
	border-radius: 4px;
	position: fixed;
	z-index: 9999;
	max-height: calc(100% - 102px);
    overflow: auto;
	width: auto;
	left: 12px;
	top: 72px;
	flex-wrap: nowrap;
	justify-content: flex-start;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	font-size: 15px;
	margin-right: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
}

.submenu-cont {
	overflow: hidden;
	width: auto;
	flex-wrap: nowrap;
	justify-content: flex-start;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	list-style: none;
	display: flex;
	flex-direction: column;
}

.main-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.main-navigation ul > li > ul {
	padding: 0 0 0 24px;
}

.main-navigation.resp-menu-closed,
.main-navigation .submenu-cont.submenu-closed {
	height: 0;
}

.main-navigation:not(.resp-menu-open) {
	overflow: hidden;
}

.main-navigation.resp-menu-open {
	height: fit-content;
	box-shadow: 0 0 4px rgba(0,0,0,.15);
	padding: 8px;
}

.main-navigation .submenu-cont.submenu-open {
	height: fit-content;
}

.main-navigation a {
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	color: rgba(0, 0, 0, 0.72);
	padding: 16px;
	font-weight: 500;
	font-size: 14px;
	box-sizing: border-box;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}

.main-navigation a:hover {
	color: rgba(0, 0, 0, 0.84);
	background: rgb(0 0 0 / 06%);
	border-radius: 8px;
	cursor: pointer;
}

.main-navigation .submenu-cont a {
	margin-left: -24px;
	padding-left: 40px;
	padding-right: 40px;
}

.main-navigation svg {
	width: 16px;
	height: 16px;
	padding: 0 6px;
	margin-top: -1px; /* Sub menu icon position fix */
}

@media screen and (max-width: 420px) {
	
	.main-navigation svg {
		margin-top: 0; /* Sub menu icon position fix */
	}
	
}

.main-navigation .submenuOpen svg {
	transform: rotate(180deg);
}


/* Lang */

.language-cont {
	right: 12px;   
	top: 12px;
	border-radius: 50px;
	position: fixed;
	z-index: 99;

	padding: 12px 16px;
	-webkit-transition: all 100ms ease-in-out;
	-moz-transition: all 100ms ease-in-out;
	-ms-transition: all 100ms ease-in-out;
	-o-transition: all 100ms ease-in-out;
	transition: all 100ms ease-in-out;
	font-size: 16px;
	font-weight: 600;
	color: #999;
	word-spacing: 4px;
	line-height: 18px;
}

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

	.language-cont {
		background: #fff;
		
		position: absolute;
	}

}

.language-cont:hover {
	cursor: default;
	background: #eee;
}


/* Page header (logo) */

.page-header {
	background-color: #fff;
	display: flex;
	justify-content: center;
	overflow: hidden;
	position: fixed;
	box-sizing: border-box;
	z-index: 99;
	top: 0;
	width: 100%;
	height: 64px;
	right: 0;
	border-bottom: 1px solid #eaeaea;
}

.page-header .logo-container {
	height: 64px;
	width: 250px;
	margin-left: 2px;
}

.page-header .logo-container a {
	text-decoration: none;
	
	display: flex;
	height: 100%;
	align-items: center;
}

.page-header .logo-container img {
	height: fit-content;
	max-width: 250px;
}


.page-header .logo-container span {
	font: 28px "Geratis", Roboto, sans-serif;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-weight: 300;
	font-size: 26px;
	color: #fff;
	background: linear-gradient(45deg,#de1b67 30%,#ec6130);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	-o-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	position: relative;
	
	margin-top: -9px; /* Fix font top padding!? */
}

@media screen and (max-width: 420px) { /* Temporary fix for padding bug on mobile */

	.page-header .logo-container span {
		margin-top: 5px; /* why this magic number?? TO FIX!*/
	}

}


/* Work with us CTA */

.workwithus-container {
	border-radius: 16px;
	margin: 112px auto 64px auto;
	max-width: 980px;
	background: linear-gradient(45deg,#ffd100,#fa742b);
	color: #2c303a;
	box-sizing: border-box;
	padding: 3px;
}

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

	.workwithus-container {
		margin: 100px 26px;
	}

}

.workwithus-subcontainer {
	background: #f7f9fb;
	border-radius: 14px;
	padding: 16px 22px;
	font-size: 16px;
	line-height: 24px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

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

	.workwithus-subcontainer {
		flex-direction: column;
		padding: 24px;
		line-height: 26px;
		font-size: 18px;
	}

}

span.workwithus-text {
	max-width: 70%;
}

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

	span.workwithus-text {
		max-width: 100%;
		margin-bottom: 28px;
	}
	
	span.workwithus-cta {
		margin-bottom: 8px;
	}

}

span.workwithus-cta a {
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    padding: 12px 24px;
    /*text-transform: uppercase;*/
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
	background: linear-gradient(45deg,#de1b67,#fa742b);
	background: linear-gradient(45deg,#FF9800,#FF5722);
}

span.workwithus-cta a:hover {
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.12), 0 2px 10px 0 rgba(0,0,0,0.08);
	background: linear-gradient(45deg,rgb(222 27 103 / 84%),hsl(21deg 95% 57% / 84%));
	background: linear-gradient(45deg,rgb(255 152 0 / 84%),hsl(14deg 100% 57% / 84%));
	cursor: pointer;
}



/* Newsletter */

.newsletter-wrap {
    border-radius: 16px;
    margin: 64px auto 100px auto;
    max-width: 980px;
    background: linear-gradient(45deg,#de1f63,#f78050);
    color: #2c303a;
    box-sizing: border-box;
    padding: 3px;
	box-shadow: 0 35px 50px -30px rgba(0, 0, 0, 0.2);
}

.newsletter-wrap.top-margin {
    margin: 124px auto 100px auto;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-wrap,
	.newsletter-wrap.top-margin	{
		margin: 100px 26px;
	}

}

.newsletter-cont {
    border-radius: 6px;
    padding: 16px 22px;
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
	background: transparent;
    flex-direction: column;
}

.newsletter-cont .form-cont {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont .form-cont {
		flex-direction: column;
	}

}

.newsletter-cont .form-cont > div {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
    text-align: center;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont .form-cont > div {
		width: 100%;
		align-content: center;
	}

}

.newsletter-cont p {
    font-size: 18px;
    margin: 0;
    color: rgb(255 255 255 / 84%);
    line-height: 27px;
	text-align: left;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont p {
		padding: 16px 0;
		text-align: center;
	}

}

.newsletter-cont form {
	display: flex;
	width: 100%;
	align-items: center;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont form {
		max-width: 420px;
	}

}

.newsletter-cont form input {
    height: 44px;
    border: 1px solid #d2d2d2;
	background: #e6e9eb;
    border-radius: 50px;
    padding: 0 16px;
	margin: 15px 0;
    width: calc(100% - 34px);
    color: #333;
}

.newsletter-cont form button {
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    padding: 0 12px 0 10px;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    background: #e6e9eb;
	background: transparent;
    border: none;
    margin: 16px 0;
	margin-left: -40px;
	width: 34px;
	height: 34px;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont form button {
		margin: 24px 0;
		margin-left: -40px;
	}

}

.newsletter-cont form button:hover {
	background: rgb(0 0 0 / 12%);
	cursor: pointer;
}

.newsletter-cont form button:disabled,
.newsletter-cont form button[disabled]{
	cursor: default;
	background: linear-gradient(45deg,rgb(222 27 103 / 84%),hsl(21deg 95% 57% / 84%));
}

.newsletter-cont form button svg {
	width: 16px;
	height: 34px;
	fill: rgb(18 18 18);
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.newsletter-cont span {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: rgb(255 255 255 / 52%);
    line-height: 18px;
    margin-top: 16px;
}

@media screen and (max-width: 1004px) {
	
	.newsletter-cont span {
		font-size: 12px;
		padding: 8px 0;
		margin-top: 8px;
	}

}


/* Back to top */

.back-to-top {
	display: none;
}

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

	.back-to-top {
		display: flex;
		flex-direction: column;
		background: #fcfdfe;
	}

}

.bt-mask {
    background: #eff3f6;
    height: 32px;
    width: 100vw;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 2px 4px -3px rgb(0 0 0 / 52%), 0 2px 8px -7px rgb(0 0 0 / 32%);
    margin-bottom: 8px;
}

.back-to-top a {
    color: rgb(0 0 0 / 64%);
    text-decoration: none;
    background: #fcfdfe;
    width: 100%;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 12px 8px 12px 8px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 500;
    margin: 4px 16px 12px 16px;
    max-width: calc(100vw - 32px);
    border-radius: 20px;
}

.back-to-top a:hover {
	background: rgb(0 0 0 / 06%);
}

.back-to-top a svg {
    height: 16px;
    padding-left: 12px;
}

.back-to-top a svg path {
	fill: rgb(0 0 0 / 32%);
}


/* Footer */

footer .footer-container {
	background: rgba(255, 255, 255, 0.84);
	border-top: 1px solid #eaeaea;
	display: flex;
	flex-direction: column;
	padding: 12px 32px 0 32px;
	font-size: 14px;
	font-weight: 500;
	width: 100%;
	box-sizing: border-box;
}

footer .footer-container .footer-line2 {
	display: flex;
	flex-direction: row;
	min-height: 52px;
	justify-content: space-between;
	align-items: center;
	padding: 0 16px;
	margin: 0 64px;
	border-top: 1px dashed #e6e9ea;
}

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

	footer .footer-container .footer-line2 {
		flex-direction: column;
		padding: 8px 0 16px 0;
		font-size: 13px;
		border-top: none;
		border-bottom: 1px dashed #e6e9ea;
		margin: 8px 0;
	}

}

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

	footer .footer-container .footer-line2 > div {
		padding: 12px 0;
		text-align: center;
		line-height: 26px;
		display: flex;
		flex-direction: column;
		margin-bottom: 4px;
	}

}

footer .footer-container .legal-links a {
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(0, 0, 0, 0.52);
	margin-right: 16px;
	white-space: nowrap;
}

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

	footer .footer-container .legal-links a {
		margin-right: 0px;
	}

}

footer .footer-container .legal-links a:last-child {
	margin-right: 0;
}

footer .footer-container .copiright {
	color: rgba(0, 0, 0, 0.52);
}

footer .footer-container .footer-line1 {
    display: flex;
    flex-direction: row;
    min-height: 52px;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px 12px 16px;
}

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

	footer .footer-container .footer-line1 {
		flex-direction: column;
		padding: 8px 0;
		order: 1;
	}

}

footer .footer-container .footer-line1 > div {
	flex-basis: calc(100%/3);
	padding: 0 64px;
}

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

	footer .footer-container .footer-line1 > div {
		padding: 8px 0;
		text-align: center;
		flex-basis: 100%;
	}

}

footer .footer-container .contact-links a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.52);
	margin-right: 16px;
}

footer .footer-container .contact-links a:last-child {
	margin-right: 0;
}

footer .footer-container .footer-line1 .developer {
	text-align: center;
	color: rgb(145 148 150 / 72%);
}

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

	footer .footer-container .footer-line1 .developer {
		padding: 16px 0;
	}

}

footer .footer-container .footer-line1 .developer a {
	text-decoration: none;
	color: rgba(0, 0, 0, 0.52);
}

footer .footer-container .footer-line1 .developer a:hover {
	text-decoration: underline;
	color: rgba(0, 0, 0, 0.84);
}

footer .footer-container .footer-social-links {
	text-align: right;
}

footer .footer-container .footer-social-links a {
	color: transparent;
}

footer svg.insta {
  height: 24px;
  width: 24px;
  transition: all 200ms ease;
}

footer svg.insta stop {
  -webkit-transition: 250ms ease-out;
  transition: 250ms ease-out;
}

footer svg.insta:hover stop:nth-child(1) {
  stop-color: #d62976;
}

footer svg.insta:hover stop:nth-child(2) {
  stop-color: #962fbf;
}

footer svg.insta:hover stop:nth-child(3) {
  stop-color: #4f5bd5;
}

footer svg.insta:hover {
  transform: scale(1.08);
  cursor: pointer;
}