:root {
	--primary: #1563FF;
	--secondary: #3fef90;
	--light-blue: #F4F8FC;
	--heading-text: #000;
	--body-text: #394B59;
	--font-stack: 'DINNextLTW04', system-ui, Helvetica, Arial sans-serif;
}

@font-face {
	font-family: 'DINNextLTW04';
	src: url(../fonts/DINNextLTW04-Regular.woff)
}

@font-face {
	font-family: 'DINNextLTW04';
	src: url(../fonts/DINNextLTW04-Light.woff);
	font-weight: 300
}

@font-face {
	font-family: 'DINNextLTW04';
	src: url(../fonts/DINNextLTW04-Medium.woff);
	font-weight: 700
}

body {
	box-sizing: border-box;
	color: var(--body-text);
	font-family: var(--font-stack);
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
	-webkit-font-smoothing: antialiased;
}

h1, 
h2, 
h3,
h4,
h5,
h6 {
	color: var(--heading-text);
	font-weight: 700;
	font-family: var(--font-stack);
}

h1 {
	font-size: 48px;
	line-height: 55px;
}

h2 {
	font-size: 35px;
	line-height: 42px;
}

h3 {
	font-size: 18px;
	line-height: 25px;
}

h3 {
	font-size: 22px;
	line-height: 29px;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: all ease-in-out .3s;
}

a:hover {
	text-decoration: none;
}

/* nav */
.global-nav {
	/* background: #000; */
	left: 0;
	padding: 20px 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10000;
	transition: all ease-in-out .5s;
}

.global-nav .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.global-nav__brand {
	background: url(../images/iriki-logo-white.svg);
	display: block;
	width: 61px;
	height: 22px;
}

.global-nav__menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.global-nav__menu li {
	display: inline-block;
}

.global-nav__menu li a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.global-nav__menu li a:hover {
	text-decoration: none;
}

.global-nav__menu li:not(:last-child) {
	margin-right: 30px;
}

.global-nav--fixed {
	padding: 15px 0;
}

.global-nav--light .global-nav__brand {
	background: url(../images/iriki-logo.svg) !important;
}

.global-nav--light .global-nav__menu li a {
	color: #000;
}

.global-nav__trigger {
	display: none;
}

@media screen and (max-width: 768px) {
	.global-nav {
		padding: 20px 0;
	}
	.global-nav-is-active {
		overflow: hidden;
	}
	.global-nav__menu {
		background: var(--primary);
		display: block;
		height: 100vh;
		left: 0;
		padding: 40px;
		pointer-events: none;
		position: absolute;
		opacity: 0;
		top: 0;
		width: 100vw;
	}
	.global-nav__menu.is-active {
		animation: slideInMenu 0.6s cubic-bezier(1, 0, 0, 1) forwards;
		opacity: 1;
		pointer-events: all
	}
	.global-nav__menu li {
		display: block;
		margin-bottom: 20px;
		opacity: 0;
	}
	.global-nav__menu li.is-active {
		animation: slideInMenuItem .6s ease forwards;
	}
	.global-nav__menu li a {
		font-size: 18px;
	}

	.global-nav__trigger {
		border: none;
		cursor: pointer;
		display: block;
		width: 22px;
		height: 18px;
		position: relative;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		-o-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		z-index: 10;
	}
	
	.global-nav__trigger span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #fff;
		border-radius: 0;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}
	
	.global-nav__trigger span:nth-child(1) {
		top: 0px;
		width: 80%;
	}
	
	.global-nav__trigger span:nth-child(2) {
		top: 8px;
		width: 90%;
	}
	
	.global-nav__trigger span:nth-child(3) {
		top: 16px;
		width: 60%;
	}
	
	.global-nav__trigger.is-active span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
		width: 90%;
	}
	
	.global-nav__trigger.is-active span:nth-child(2) {
		opacity: 0;
		left: -60px;
	}
	
	.global-nav__trigger.is-active span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		transform: rotate(-135deg);
		width: 90%;
	}
	
	@keyframes slideInMenu {
		0% {
				transform: translate3d(-100%, 0, 0)
		}
		100% {
				transform: translate3d(0%, 0, 0)
		}
	}
	
	@keyframes slideInMenuItem {
		0% {
				opacity: 0;
				transform: translate3d(0, 20px, 0)
		}
		100% {
				opacity: 1;
				transform: translate3d(0, 0, 0)
		}
	}
}

/* announcements */
a.announcement {
	color: #fff;
	display: inline-block;
	background: rgba(3,102,238,0.30);
	border-radius: 100px;
	font-size: 14px;
	padding: 4px 8px;
}

a.announcement svg {
	fill: #fff;
	height: 10px;
	width: 10px;
	margin-left: 6px;
	position: relative;
	top: 1px;
	stroke: #fff;
	transition: transform 400ms ease;
}

a.announcement .new-badge {
	background: var(--primary);
	border-radius: 50px;
	font-size: 12px;
	font-weight: 700;
	margin-right: 6px;
	padding: 4px 8px;
	text-transform: uppercase;
}

/* hero */
.hero {
	align-items: center;
	background: #000 url(../images/network-bg.png);
	color: #fff;
	display: flex;
	height: 100vh;
	padding: 78px 0;
}

.hero h1 {
	color: #fff;
	margin: 20px 0 10px;
}

@media screen and (max-width: 768px) {
	.hero {
		padding: 178px 0 78px;
	}
}

/* section */
.section {
	padding: 90px 0;
}

.section-preview {
	background: var(--light-blue) url(../images/circles-preview.png) no-repeat
}

.section-cases {
	background: var(--light-blue) url(../images/circles-cases.png) no-repeat;
	background-position: center 50px;
}

/* preview */
.preview h3 {
	margin: 10px 0;
}

.preview--case {
	align-items: flex-start;
	background: #fff;
	box-shadow: 0 26px 30px -14px rgba(0,102,245,0.08);
	border: 1px solid #fff;
	display: flex;
	flex-direction: row;
	padding: 20px;
	transform: translateY(0);
	transition: all ease-in-out .3s
}

.preview--case:hover {
	/* border: 1px solid var(--primary); */
	transform: translateY(-5px);
}

.preview--case .preview__text {
	margin-left: 15px;
}

.preview--case img {
	max-width: 60px
}

.preview--case h3 {
	margin-top: 0;
}

.preview--case p {
	margin-bottom: 5px;
}

.preview--case a {
	font-size: 14px;
}

/* footer */
.global-footer {
	color: #fff;
	background: #000;
	padding: 40px 20px;
}

.global-footer__newsletter {
	border-bottom: 1px solid #383838;
	padding-bottom: 40px;
}

.global-footer__newsletter h2 {
	color: #fff;
	margin: 5px 0 0;
}

.global-footer__newsletter input[type="email"] {
	color: #fff;
	background: #363636;
	border: 1px solid #363636;
	height: 44px;
}

.global-footer__newsletter input[type="submit"] {
	height: 44px;
}

.global-footer__newsletter .input-group {
	margin-top: 20px;
}

.global-footer__copyright {
	font-size: 14px;
	padding-top: 40px;
}

.global-footer__menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.global-footer__menu li {
	display: inline-block;
}

.global-footer__menu li a {
	color: #fff;
}

.global-footer__menu li a:hover {
	color: #fff;
}

.global-footer__menu li a:hover {
	text-decoration: none;
}

.global-footer__menu li:not(:last-child) {
	margin-right: 20px;
}

@media screen and (min-width: 768px) {
	.global-footer {
		padding: 40px 0;
	}
	.global-footer__newsletter,
	.global-footer__copyright {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.global-footer__newsletter .input-group {
		margin-top: 0;
		max-width: 500px;
		width: 100%;
	}
}

/* forms */
input {
	border-radius: 0 !important;
	font-family: var(--font-stack);
	transition: all ease-in-out .3s;
}

input:focus {
	border: 1px solid var(--primary) !important;
	outline: none !important;
	box-shadow: none !important;
}

.input-group {
	display: flex;
}

.button, a.button, button, 
[type=submit], [type=reset], [type=button] {
	border-radius: 0;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* utils */
.bg-grey {
	background: #f7f7f7;
}

.bg-light-blue {
	background: #F4F8FC;
}

.flex-single {
	max-width: 700px;
}