@font-face {
	font-family: 'Akrobat-Bold';
	src: url('../fonts/Akrobat-Bold.otf');
}
@font-face {
	font-family: 'Akrobat-ExtraBold';
	src: url('../fonts/Akrobat-ExtraBold.otf');
}
html {
	overflow-y: scroll;
}
/* common */
body {
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
}
b {
	font-weight: 600;
}
button, input {
	outline: 0;
	border: 0;
	background: transparent;
	padding: 0;
	box-sizing: border-box;
}
.button {
	border-radius: 2px;
	background-color: #FF0000;
	color: #FFFFFF;
	font-family: "PT Sans";
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 20px;
	text-align: center;
	padding: 15px 30px;
	cursor: pointer;
	position: relative;
	text-transform: uppercase;
	display: inline-block;
}
.button.bg-white {
	background: transparent;
	color: #FF0000;
	border: 1px solid #ff0000;
}
.button:before {
	content: '';
	position: absolute;
	background-color: #FF0000;
	bottom: -9px;
	height: 1px;
	width: 75%;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.2s;
}
.button:hover:before {
	width: 100%;
}
a {
	text-decoration: none;
	transition: 0.2s;
}
a:hover {
	opacity: 0.5;
}
.button:hover {
	opacity: 1;
}
input:focus, textarea:focus, select:focus {
	outline: 0;
}
.mobile {
	display: none;
}
.blur {
	-webkit-filter: blur(10px);
	-moz-filter: blur(10px);
	-o-filter: blur(10px);
	-ms-filter: blur(10px);
	filter: blur(10px);
}
.entire-screen {
	position: relative;
}
.inline-right, .inline-left {
	display: inline-block;
	width: 50%;
	vertical-align: top;
	text-align: left;
}
.inline-right {
	text-align: right;
}
.title {
	color: #403E3E;
	font-family: 'Akrobat-ExtraBold';
	font-size: 56px;
	letter-spacing: 2.67px;
	line-height: 55px;
}
.title-small {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 21px;
	font-weight: 500;
	line-height: 24px;
}
.title.same-color {
	color: #3A3A3A;
}
.title.title-white {
	color: #fff;
}
.title span {
	color: #ff0100;
}
.desc {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 16px;
	line-height: 24px;
}
#page {
	overflow: hidden;
}
.section-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 48px;
	font-size: 0;
	position: relative;
	z-index: 1;
}
.second-section .section-wrapper {
	padding-top: 240px;
}
.first-section .section-wrapper {
	padding-bottom: 0;
}
.section {
	position: relative;
}
.section-wrapper .title {
	text-transform: uppercase;
	padding-left: 16.6%;
}
.divider {
	background-color: #E4E4E4;
	height: 1px;
	width: 100%;
}

/* menu */
.menu {
	background: #fff;
	height: 100%;
	width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(-100%);
    transition: 0.3s;
    z-index: 4;
    overflow: hidden;
    opacity: 0;
}
.menu-container {
	overflow: auto;
    height: 100%;
}
.menu-container-hidden {
	overflow: hidden;
}
.menu-wrapper {
	max-width: 1296px;
	margin: 0 auto;
	padding: 0 48px;
	box-sizing: border-box;
}
.menu .logo-link {
	background-image: url('../img/Logo-footer-menu.png');
}
.menu .menu-wrapper:first-child {
	padding: 15vh 48px 0;
	position: relative;
	z-index: 2;
}
.menu .footer-text {
	color: #403E3E;
}
.menu img {
	width: 674px;
	transform: translateY(-40px);
}
.menu .footer-text.copyright {
	color: #C9C7C7;
	margin-top: 24px;
}
.menu .footer-wrapper-bottom {
	padding-top: 10vh;
	max-height: 500px;
	box-sizing: border-box;
	max-width: 100%;
}
.menu.opened {
	transform: translateY(0);
	opacity: 1;
}
.menu-wrapper {
	height: 50vh;
	min-height: 400px;
	font-size: 0;
}
.menu-wrapper:last-child {
	min-height: 400px;

}
.menu-column {
	display: inline-block;
	vertical-align: top;
	width: 25%;
	height: 100%;
	box-sizing: border-box;
	background: #fff;
}
.menu-column__title {
	color: #FF0000;
	font-family: 'Akrobat-ExtraBold';
	font-size: 48px;
	letter-spacing: 2.29px;
	line-height: 58px;
	margin-bottom: 40px;
}
.menu-column__link {
	color: #C9C7C7;
	font-family: 'Akrobat-Bold';
	font-size: 18px;
	line-height: 32px;
	display: block;
	margin-top: 30px;
	max-width: 170px;
}

/* header */

.header {
	display: table;
	width: 100%;
	height: 110px;
	position: fixed;
	left: 0;
	top: 0;
	transition: 0.2s;
	z-index: 3;
}
.header.scrolled {
    background: #fff;
    box-shadow: 0 15px 50px 0 rgba(0,0,0,0.06);
}
.header .inline-right, .header .inline-left {
	vertical-align: middle;
}
.header-wrapper {
	display: table-cell;
	vertical-align: middle;
	padding: 0 48px;
	font-size: 0;
}
.hamburger, .iziModal .iziModal-button-close {
	position: fixed;
	right: 48px;
	top: 44px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	transition: 0.2s;
	z-index: 5;
}
.iziModal .iziModal-button-close {
	top: 24px;
	right: 24px;
}
.hamburger:hover, .iziModal .iziModal-button-close:hover {
	opacity: 0.5;
	transform: translate(0);
}
.hamburger span, .iziModal .iziModal-button-close span {
	height: 2px;
	background: #403E3E;
	margin-top: 8px;
	display: block;
	transition: 0.2s;
}
.hamburger span:first-child {
	margin-top: 0;
}
.hamburger.rotated, .iziModal-button-close {
	width: 30px;
	height: 30px;
    top: 36px;
    right: 45px;
}
.hamburger.rotated span, .iziModal-button-close span {
	width: 35px;
    margin-top: 15px;
    margin-left: -2px;
    background: #FF0000;
}
.iziModal .iziModal-button-close span {
	width: 28px;
	margin-top: 11px;
}
.hamburger.rotated span:nth-child(2), .iziModal-button-close span:nth-child(2) {
	display: none;
}
.hamburger.rotated span:first-child, .iziModal-button-close span:first-child {
	margin-bottom: 0;
	transform: rotate(45deg);
}
.hamburger.rotated span:last-child, .iziModal-button-close span:last-child {
	transform: rotate(-45deg);
	margin-top: -2px;
}
.logo-link {
	display: block;
	transition: 0.2s;
	height: 35px;
	width: 200px;
	background-image: url('../img/Logo.png');
	background-size: cover;
	position: relative;
}

/* hero */
.hero {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	display: table;
	padding: 25vh 48px 7vh;
	position: relative;
}
.hero-wrapper {
	max-width: 530px;
	font-size: 0;
	display: table-cell;
	vertical-align: middle;
}
.hero .inline-right, .hero .inline-left {
	vertical-align: middle;
}
.hero .inline-right {
	position: relative;
}
.hero .inline-right img {
	width: 112%;
	position: relative;
}
.hero .title {
	max-width: 500px;
	line-height: 60px;
}
.hero .desc {
	max-width: 520px;
	font-size: 20px;
	margin-top: 24px;
	margin-bottom: 32px;
	line-height: 30px;
}
.hero .button {
	margin-right: 24px;
}


/* main */

/* offer */
.offer-wrapper {
	position: relative;
}
.offer-item {
	padding: 30px 50px 55px;
	box-sizing: border-box;
	margin-top: 30px;
	background-color: #FFFFFF;
	box-shadow: 0 15px 50px 0 rgba(0,0,0,0.06);
	height: 420px;
}
.offer-item.first {
	margin-top: 48px;
	font-size: 0;
	padding: 65px 68px 40px 90px;
}
.offer-item.first .inline-left, .offer-item.first .inline-right {
	vertical-align: middle;
}
.offer-item img {
	max-width: 240px;
	width: 100%;
}
.offer-item.last img {
	max-width: 267px;
}
.offer-item.first img {
	max-width: 443px;
}
.offer-img {
	height: 170px;
	width: 100%;
	display: table;
}
.offer-img .offer-img__wrapper {
	display: table-cell;
	vertical-align: middle;
}
.offer-item .title {
	font-size: 21px;
	letter-spacing: 1px;
	line-height: 25px;
	text-transform: initial;
	padding-left: 0;
	margin-top: 30px;
}
.offer-item.first .title, .iziModal .title {
	font-size: 28px;
	letter-spacing: 1.33px;
	line-height: 34px;
	margin-top: 0;
}
.offer-item .desc {
	margin: 12px auto 24px;
	max-width: 400px;
}
.offer-item.first .desc {
	max-width: 540px;
	margin: 24px 0;
}
.offer-item .button {
	letter-spacing: 0.76px;
	line-height: 20px;
	border: 0;
	padding: 0;
	font-weight: normal;
}
.offer-item .button:before {
	width: 30%;
}
.offer-item .button:hover:before {
	width: 100%;
}
.offer-item.inline-left {
	margin-right: 15px;
	width: calc(50% - 15px);
}
.offer-item.inline-left.last {
	margin-left: 15px;
	margin-right: 0;
}
.offer-item.inline-left {
	text-align: center;
}

/* team */
.team-grid {
	font-size: 0;
}
.team-column {
	width: 16.66%;
	box-sizing: border-box;
}
.team-img {
	height: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
  	padding-top: 100%;
}
.team-img img {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.fit.team-img img {
	height: 100%;
	width: auto;
}
.second-section .title {
	height: 0;
}
.team-column.first {
	padding-top: 23%;
}
.team-column.second {
	position: relative;
	padding-top: 63%;
}
.team-column.third {
	position: relative;
	padding-top: 29%;
}
.team-column.fivth {
	position: relative;
	padding-top: 42%;
}
.team-column.sixth {
	padding-top: 12%;
}
.team-name {
	margin-top: 11px;
	color: #FF0000;
	font-family: 'PT Sans', sans-serif;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 25px;
	width: 100%;
	padding-left: 17px;
}
.team-job {
	color: #B5B5B5;
	font-family: 'PT Sans', sans-serif;
	font-size: 16px;
	line-height: 25px;
	width: 100%;
	padding-left: 17px;
}
.team-column .button {
	width: 100%;
	padding: 47px 0;
	line-height: 25px;
	font-size: 18px;
	background: #fff;
	transition: 0.2s;
	display: block;
}
.team-column .button:hover {
	opacity: 0.5;
}
.team-column .button:before {
	display: none;
}
.team-avatar {
	position: relative;
}
.team-avatar:after {
	content: '';
	display: block;
	height: 2px;
	width: 80px;
	background-color: #FE0141;
	right: -21px;
	bottom: 85px;
	position: absolute;
}
.team-avatar:before {
	content: '';
	display: block;
	height: 1px;
	width: 80px;
	background-color: #DEDEDE;
	left: -24px;
	top: 24px;
	position: absolute;
}
.team-line {
	width: 1px;
	position: absolute;
	right: 0;
}
.first .team-line {
	top: -118px;
	height: 750px;
}
.second .team-line {
	top: 30px;
	height: 1100px;
}
.third .team-line {
	top: -100px;
	height: 1050px;
}
.fourth .team-line {
	top: -55px;
	height: 1100px;
}
.fivth .team-line {
	top: -62px;
	height: 1000px;
}
.team-avatar .link {
	position: absolute;
	right: -45px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-size: cover;
	top: 24px;
	z-index: 1;
}
.team-avatar .link.linked-in-link {
	background-image: url('../img/Linkedin.png');
}
.team-avatar .link.twitter-link {
	background-image: url('../img/Twitter.png');
	top: 58px;
}

/* values */
.title-and-desc .title {
	padding-left: 0;
}
.title-and-desc {
	padding-left: 16.6%;
	margin-bottom: 85px;
}
.title-and-desc .desc {
	max-width: 560px;
	margin: 0 auto;
	text-align: justify;
}
.title-and-desc .inline-right {
	width: 70%;
}
.title-and-desc .inline-left {
	width: 30%;
	position: relative;
}
.values-block .inline-left {
	width: 16.6%;
	vertical-align: middle;
}
.values-block .inline-right {
	width: calc(100% - 16.6%);
	vertical-align: middle;
}
.values-preview {
	height: 545px;
	background-image: url('../img/Scalability.jpg');
	background-size: cover;
	background-position: center;
	padding: 0 64px;
	margin-bottom: 130px;
	transition: 0.2s;
}
.values__item {
	margin-top: 32px;
	color: #403E3E;
	font-family: 'Akrobat-Bold';
	font-size: 18px;
	line-height: 32px;
	cursor: pointer;
	transition: 0.2s;
	position: relative;
}
.values__item:hover {
	opacity: 0.5;
}
.values__item.active, .resources-tab-links .tab-link.active {
	opacity: 1;
	color: #ff0000;
	cursor: default;
}
.values__item.active:before, .tab-link.active:before {
	content: '';
	height: 1px;
	width: 32px;
	background: #FF0000;
	position: absolute;
	left: -51px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s;
}
.values-preview__content .title {
	padding-left: 40px;
	text-align: left;
	color: #fff;
	text-transform: capitalize;
	margin-bottom: 40px;
	transition: 0.2s;
}
.values-preview__content .desc {
	background: #fff;
	text-align: left;
	padding: 40px;
	text-align: justify;
	box-shadow: 0 15px 50px 0 rgba(0,0,0,0.06);
	transition: 0.2s;
	min-height: 200px;
	box-sizing: border-box;
}
.values-preview__content {
    transform: translateY(115%);
}
.values__item-desc {
	display: none;
}

/* media about us */

.marquee {
  overflow: hidden;
  margin-top: 110px;
  margin-bottom: 130px;
  height: 320px;
  display: block;
}
.marquee img {
	width: 330px;
}
.marquee a.small img {
	width: 240px;
}
.marquee a {
	display: inline-block;
	vertical-align: middle;
	margin: 0 25px;
}
.marquee a:nth-child(even) {
	transform: translateY(150px);
}

/* footer */

.footer {
	background: linear-gradient(180deg, #343437 0%, #1C1C1C 100%);
	padding: 0 25px;
	position: relative;
	overflow: hidden;
}
.footer-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 0;
	position: relative;
}
.footer-wrapper-bottom {
	padding-top: 78px;
	padding-bottom: 164px;
}
.footer-wrapper-bottom:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 1px;
	width: 100%;
	max-width: 450px;
	opacity: 0.1;
	background-color: #FFFFFF;
}
.footer .logo-link {
	background-image: url('../img/Logo-white.png');
}
.footer-text {
	margin-top: 32px;
	color: #B5B5B5;
	font-family: "Work Sans";
	font-size: 12px;
	line-height: 18px;
	text-align: justify;
	max-width: 450px;
}
.footer-text.copyright {
	color: #FFFFFF;
	margin-top: 27px;
}
.footer-link {
	color: #B5B5B5;
	font-family: 'Akrobat-Bold';
	font-size: 18px;
	line-height: 32px;
	display: block;
	margin-bottom: 30px;
	max-width: 125px;
}
.footer-wrapper-bottom .inline-right {
	box-sizing: border-box;
	padding-left: 44px;
}
.footer-wrapper-top {
 	padding-top: 148px;
 	padding-bottom: 137px;
}
.input {
 	border-radius: 2px;
 	background-color: #FFFFFF;
 	color: #3A3A3A;
 	box-shadow: 0 15px 20px 0 rgba(0,0,0,0.11);
 	height: 64px;
 	width: 100%;
 	margin-bottom: 24px;
 	font-family: "PT Sans";
 	font-size: 16px;
 	letter-spacing: 1px;
 	line-height: 64px;
 	padding: 0 29px;
}
::-webkit-input-placeholder {
  color: #B6B6B6;
}
::-moz-placeholder {
  color: #B6B6B6;
}
:-ms-input-placeholder {
  color: #B6B6B6;
}
:-moz-placeholder {
  color: #B6B6B6;
}
.footer-wrapper-top .title {
	max-width: 375px;
	text-align: left;
	margin-right: 0;
	margin-left: auto;
	letter-spacing: 2px;
}
.footer-wrapper-top .inline-left {
	text-align: right;
	padding-right: 25px;
	box-sizing: border-box;
}
.footer form {
	text-align: left;
	max-width: 498px;
	margin-right: 0;
	margin-left: auto;
}

/* decorations */

.decor {
	position: absolute;
}
.decor-1 {
	background-image: url('../img/Dots-MP-Left.png');
	background-size: cover;
	left: 0;
	top: 0;
	height: 50vh;
	width: 45vw;
}
.decor-2 {
	transform: scaleX(-1);
	background: linear-gradient(269.31deg, #F6F6F6 0%, #FFFFFF 100%);
	right: 0;
	top: -100px;
	height: calc(100% + 200px);
	width: 61.5%;
}
.decor-3 {
	background: linear-gradient(270deg, #F6F6F6 0%, #FFFFFF 100%);
    right: -19.6vh;
    top: -33px;
	height: calc(100% + 70px);
	width: calc(61.5% - 70px + 20vh);
}
.decor-4 {
    height: 610px;
    width: 500px;
    background: linear-gradient(270deg, #f4f4f4 0%, #FFFFFF 100%);
    top: 83px;
    left: -150px;
}
.index-page .decor-4 {
	height: 700px;
}
.decor-5 {
	background-image: url('../img/Dots-MP-Right.png');
	background-size: cover;
	width: 43vw;
	height: 510px;
	right: 0;
	bottom: -135px;
}
.decor-6 {
	background-image: url('../img/Dots-MP-Left.png');
	background-size: cover;
	width: 43vw;
	height: 510px;
	left: 0;
	bottom: -115px;
}
.decor-7 {
	background-image: url('../img/Bg-icon-1.png');
	background-size: cover;
	height: 183.53px;
	width: 120px;
	right: -33px;
	bottom: 0;
}
.decor-8 {
	width: 100%;
	max-width: 1400px;
	height: 890px;
	top: 180px;
	left: 50%;
	transform: scaleX(-1) translateX(50%);
	background: linear-gradient(270deg, #F6F6F6 0%, #FFFFFF 100%);
}
.decor-9 {
	background-image: url('../img/Dots-MP-Right.png');
	background-size: cover;
	width: 43vw;
	height: 510px;
	right: 0;
	bottom: -60px;
}
.decor-10 {
	background-image: url('../img/Bg-icon-3.png');
	background-size: cover;
	height: 211.14px;
	width: 182px;
	left: -27px;
	bottom: 50px;
}
.decor-11 {
	background-image: url('../img/Bg-icon-4.png');
	background-size: cover;
	height: 270px;
	width: 170px;
	right: 200px;
	top: 0px;
}
.decor-12 {
	background-image: url('../img/Bg-icon-2.png');
	background-size: cover;
	height: 205.38px;
	width: 207px;
	left: -20px;
	top: 180px;
}
.decor-13 {
	background-image: url('../img/Dots-Footer.png');
	background-size: cover;
	width: 50vw;
	height: 690px;
	right: 0;
	bottom: -209px;
}
.decor-14 {
	background-image: url('../img/Bg-icon-5.png');
	background-size: cover;
	height: 199.85px;
	width: 274px;
	right: -32px;
	bottom: 104px;
}

/* modal */
.modal {
	display: none;
}
.modal-wrapper {
	padding: 48px 56px;
}
.iziModal .desc {
	margin-top: 16px;
	text-align: justify;
}
.iziModal .title-small {
	margin: 32px 0 8px;
}
.iziModal .divider {
	margin: 32px 0;
}
.pdf-link, .copy-link {
	display: block;
	border-radius: 2px;
	background-color: #FFFFFF;
	box-shadow: 0 15px 50px 0 rgba(0,0,0,0.06);
	padding: 16px 65px 16px 24px;
	margin-top: 8px;
	position: relative;
	color: #FF0000;
	font-family: "Work Sans";
	font-size: 14px;
	line-height: 24px;
}
.pdf-link:after, .copy-link:after {
	content: 'Download';
	display: block;
	width: 12px;
	height: 12px;
	background-image: url('../img/download.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	transition: 0.2s;
	font-size: 0;
}
.pdf-link:after {
	width: 13px;
	height: 16px;
}
.copy-link:after {
	content: 'Link';
	width: 16px;
	height: 16px;
	background-image: url('../img/copy.png');
}
.copy-link.no-click:after {
	display: none;
}
.pdf-link div, .copy-link div {
	transition: 0.2s;
}
.pdf-link:hover, .copy-link:hover {
	opacity: 1;
}
.pdf-link__title {
	color: #FF0000;
	font-family: "Work Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}
.pdf-link__desc {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 14px;
	letter-spacing: -0.1px;
	line-height: 24px;
}
.pdf-link:hover div, a.copy-link:hover div, .pdf-link:hover:after, .copy-link:hover:after {
	opacity: 0.5;
}
.red-text {
	color: #ff1818;
}
a.red-text {
	text-decoration: underline;
}



/* team page */
.team-page .main, .whitepapers-page .main, .resources-page .main, .careers-page .main, .terms-page .main {
	padding-top: 110px;
	min-height: 100vh;
	box-sizing: border-box;
}
.team-page .section-wrapper, .careers-page .section-wrapper,
 .whitepapers-page .section-wrapper,
 .resources-page .section-wrapper,
 .terms-page .section-wrapper {
	padding: 160px 48px;
}
.team-page .title {
	padding-left: 150px;
}
.team-wrapper, .whitepapers-wrapper {
	position: relative;
}
.team-page .decor-4 {
	top: 112px;
	left: -240px;
}
.careers-page .decor-4 {
	top: 112px;
}
.team-page .decor-5 {
	top: 910px;
}
.team-page .decor-7 {
	top: 380px;
	right: -60px;
}
.team-page .decor-10 {
	top: 1316px;
	left: -62px;
}
.team-page .decor-11 {
	bottom: 700px;
	right: 87px;
	top: auto;
	z-index: 1;
}
.team-page .title-and-desc {
	margin-bottom: 8px;
	padding-left: 0;
}
.team-members .title {
	font-size: 28px;
	letter-spacing: 1.33px;
	line-height: 34px;
	margin-top: 0;
	text-transform: inherit;
	padding-top: 80px;
}
.member {
	margin-top: 40px;
	padding-bottom: 60px;
}
.member .inline-left {
	padding-left: 150px;
	box-sizing: border-box;
}
.team-page .team-avatar {
	max-width: 200px;
}
.team-page .member .inline-right {
	width: 70%;
	vertical-align: middle;
}
.team-page .member .inline-left {
	width: 30%;
	vertical-align: middle;
	max-height: 200px;
}
.team-page .member .desc {
    max-width: 560px;
    margin: 0 auto;
    text-align: justify;
}

/* whitepapers page */
.whitepapers-page .decor-10 {
	z-index: 2;
	bottom: 205px;
}
.whitepapers-page .decor-4, .resources-page .decor-4, .terms-page .decor-4 {
	left: -190px;
	top: 112px;
}
.whitepaper-links, .resources-links, .resources-videos {
	max-width: 560px;
	margin: 0 auto;
}
.whitepaper-links .title {
	padding-left: 0;
	padding-top: 0;
}
.whitepapers-wrapper .inline-right,
.resources-wrapper .inline-right,
.careers-wrapper .inline-right {
	text-align: left;
}
.whitepaper-links .title-small {
	padding-top: 32px;
	padding-bottom: 8px;
}
.whitepaper-links .title-small.first {
	padding-top: 0;
}


/* resources */
.resources-page .title {
	letter-spacing: 1.5px;
}
.resources-page .title span {
	color: #FF0000;
}
.resources-tab-links .tab-link {
	color: #403E3E;
	font-family: 'Akrobat-ExtraBold';
	font-size: 18px;
	line-height: 32px;
	display: block;
	margin-bottom: 30px;
	position: relative;
	text-transform: capitalize;
}
.resources-page .decor-10, .terms-page .decor-10 {
	z-index: 2;
	bottom: auto;
	top: 540px;
}
.resources-page .pdf-link__title, .whitepapers-page .pdf-link__title {
	max-width: 420px;
}
.resources-tab-links {
	transform: translateX(-90px);
	margin-top: 145px;
	width: 50px;
}
.resources-links .title-small.margin {
	padding-top: 56px;
	padding-bottom: 8px;
}
.copy-link.no-click {
	box-shadow: none;
	background: transparent;
	padding: 32px 24px;
	cursor: default;
}
.copy-link.no-click .pdf-link__title {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	cursor: text;
}
.get-started-container {
	position: relative;
}
.get-started-container:before {
	content: '';
	display: block;
	height: 62.5%;
	width: 10px;
	border: 1px dashed #CACACA;
	border-top-left-radius: 11px;
	border-bottom-left-radius: 11px;
	position: absolute;
	border-right: 0;
    left: -15px;
    top: 135px;
}
.get-started-container .copy-link:before {
	background-color: #FF0000;
	content: '';
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	left: -4px;
	position: absolute;
}
.get-started-container .copy-link .line {
	content: '';
	width: 4px;
	height: 1px;
	display: block;
	top: 50%;
	transform: translateY(-50%);
	left: -11px;
	position: absolute;
	border-top: 1px dashed #CACACA;
}
.resources-videos .desc {
	margin: 4px 0 22px;
	padding-left: 0;
}
.resources-videos {
	display: none;
}
.resources-videos .title-small {
	margin-top: 40px;
}
.resources-videos .title-small.first {
	margin-top: 0;
}


/* careers */
.pdf-link__additional-wrapper {
	padding: 32px 32px 48px;
}
.pdf-link__additional-title {
	margin: 24px 0 16px;
	color: #403E3E;
	font-family: 'Akrobat-ExtraBold';
	font-size: 21px;
	letter-spacing: 1px;
	line-height: 25px;
}
.pdf-link__additional-desc {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 16px;
	line-height: 24px;
	text-align: justify;
}
.pdf-link__additional-desc ul {
	padding-left: 30px;
	list-style: disc;
}
.careers-link {
	cursor: pointer;
	width: 100%;
	text-align: left;
	padding: 0;
	overflow: hidden;
}
.careers-link .pdf-link__title {
	color: #403E3E;
	font-family: 'Akrobat-ExtraBold';
	font-size: 21px;
	letter-spacing: 1px;
	line-height: 25px;
}
.careers-link .pdf-link__desc {
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 16px;
	line-height: 24px;
}
.careers-link:after {
	display: none;
}
.careers-link .button {
	width: 168px;
	display: block;
	position: absolute;
	box-sizing: border-box;
	right: 37px;
	top: 50%;
	transform: translateY(-50%);
}
.pdf-link__wrapper {
	position: relative;
	padding: 36px 32px;
	background: #fff;
	z-index: 2;
}
.pdf-link .pdf-link__additional {
	transition: none;
}
.careers-link:hover div {
	opacity: 1;
}
.careers-link .pdf-link__wrapper:hover .pdf-link__title,
.careers-link .pdf-link__wrapper:hover .pdf-link__desc {
	opacity: 0.5;
}
.careers-page .decor-10 {
	top: 510px;
	bottom: auto;
	z-index: 2;
}
.careers-wrapper .inline-right {
	width: 80%;
}
.careers-wrapper .inline-left {
	width: 20%;
}
.careers-page .decor-4 {
	left: -190px;
}
.terms-block {
	background: #fff;
	z-index: 3;
	padding: 40px 32px;
	box-sizing: border-box;
	color: #403E3E;
	font-family: "Work Sans";
	font-size: 16px;
	line-height: 24px;
	position: relative;
	margin-left: 16.6%;
	text-align: justify;
	box-shadow: 0 15px 50px 0 rgba(0,0,0,0.06);
	border-radius: 2px;
}
.terms-title {
	font-size: 18px;
	font-weight: 600;
	display: inline-block;
}
.terms-title.big {
	font-size: 28px;
	font-weight: 600;
}
/* media */
@media screen and (max-height: 800px) {
	html.overflow {
		overflow: hidden;
	}
	.hero .inline-right img {
		width: 90%;
	}
	.decor-2 {
		top: -50px;
	    height: calc(100% + 100px);
	}
	.decor-3 {
	    right: -16vh;
	    top: -10px;
	    height: calc(100% + 20px);
	    width: calc(61.5% - 70px + 20vh);
	}
	.menu .menu-wrapper:first-child {
		padding: 5vh 48px 0;
	}
	@media screen and (min-width: 2000px) {
		.menu .menu-wrapper:first-child {
			padding: 20vh 48px 0;
		}
		.menu .footer-wrapper-bottom {
			padding-top: 20px;
		}
	}
}

@media screen and (min-width: 2000px) and (min-height: 1200px) {
	.menu .footer-wrapper-bottom .inline-right, .menu .footer-wrapper-bottom .inline-left {
		vertical-align: middle;
	}
}

@media screen and (max-width: 1200px) {
	.team-page .member .inline-left, .team-page .title {
		padding-left: 0;
	}
	.team-page .team-name, .team-page .team-job {
		padding-left: 3px;
	}
	.decor {
		display: none;
	}
	.decor-2, .decor-3 {
		display: block;
	}
	.title {
		font-size: 50px;
	}
	.menu-column__title {
		font-size: 36px;
		line-height: 40px;
	}
	.menu-column__link{
		font-size: 16px;
		margin-top: 18px;
	}
	.title-and-desc {
		padding-left: 0;
	}
	.title-and-desc .inline-left, .team-page .member .inline-left {
		width: 40%;
	}
	.title-and-desc .inline-right, .team-page .member .inline-right {
		width: 60%;
	}
	.offer-item {
		padding: 20px;
	}
	.offer-item.first {
		padding: 65px 28px 40px 40px;
	}
	.section-wrapper {
		padding: 50px 20px;
	}
	.team-page .section-wrapper,
	.careers-page .section-wrapper,
	.whitepapers-page .section-wrapper,
	.resources-page .section-wrapper,
	.terms-page .section-wrapper {
		padding: 50px 20px;
	}
	.footer-wrapper-bottom, .footer-wrapper-top {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.footer-wrapper-bottom .footer-link:last-child {
		margin-bottom: 0;
	}
	.team-column.second {
		display: none;
	}
	.team-grid .team-column {
		padding-top: 0;
		width: 50%;
		max-width: 480px;
		padding-right: 11%;
		padding-bottom: 20px;
	}
	.team-grid {
		padding-left: 10%;
	}
	.team-line {
		display: none;
	}
	.section-wrapper {
		max-width: 1080px;
	}
	.team-avatar .link {
		width: 40px;
		height: 40px;
		right: -20%;
	}
	.team-page .team-avatar .link {
		right: -60px;
	}
	.team-avatar .link.twitter-link {
		top: 85px;
	}
	.values-block .values-items {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		text-align: center;
	}
	.values-block .inline-right {
		width: 100%;
	}
	.values-block {
		position: relative;
		padding-top: 50px;
		max-width: 900px;
		margin: 0 auto;
	}
	.values__item {
		display: inline-block;
		margin-right: 25px;
		margin-top: 0;
	}
	.values__item.active:before {
		width: 100%;
		top: auto;
		left: 0;
		bottom: 0;
	}
	.values-preview__content {
	    transform: translateY(70%);
	}
	.values-preview {
		height: 450px;
	}
	.marquee img {
		width: 285px;
	}
	.marquee {
		margin-top: 50px;
		margin-bottom: 50px;
		height: 200px;
	}
	.marquee a {
		margin: 0 15px;
	}
	.marquee a:nth-child(even) {
	    transform: translateY(110px);
	}
	.marquee a.small img {
		width: 210px;
	}
	.section-wrapper .title {
		padding-left: 28px;
		height: auto;
	}
	.offer-item .title {
		padding-left: 0;
	}
	.second-section .title {
		margin-bottom: 50px;
	}
	.team-column.second {
		display: block;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    margin-left: 50%;
	    transform: translateX(-50%);
	    padding-left: 7%;
	}
	.team-grid {
		padding-bottom: 50px;
	}
	.team-column.second .button {
		max-width: 200px;
		margin: 0 auto;
		padding: 18px 0;
		font-size: 16px;
	}

	.tab-link.active:before {
		width: 24px;
		left: -40px;
	}
	.resources-tab-links {
		margin-top: 70px;
		transform: none;
		margin-left: 28px;
	}
	iframe {
		width: 380px;
		height: 250px;
	}
	.resources-wrapper .inline-right {
		max-width: 560px;
		margin: 0 auto;
		display: inline-block;
		padding: 0 24px;
		box-sizing: border-box;
	}
	.careers-link .pdf-link__wrapper {
		padding-right: 200px;
	}
	.careers-link .button {
		width: 130px;
	    padding: 10px;
	}
	.second-section .section-wrapper {
		padding-top: 100px;
	}
	.terms-block {
		margin-left: 0;
	}
	.terms-page .title-and-desc {
		margin-bottom: 10px;
	}
	.terms-page .section-wrapper .title {
		padding-left: 32px;
	}
}
@media screen and (max-width: 1025px) {
	.marquee a.small {
		margin: 0 20px;
	}
	.marquee {
		margin-top: 50px;
	    margin-bottom: 50px;
	    height: 200px;
	    white-space: nowrap;
	    overflow-y: hidden;
	    overflow-x: scroll;
	    padding: 0 60px;
	}
}
@media screen and (max-width: 789px) {
	.offer-item.first .desc span {
		display: none;
	}
	.menu-wrapper:last-child {
		display: none;
	}
	.menu-column {
		width: 50%;
		padding-bottom: 20px;
	}
	.menu-column__title {
		margin-bottom: 0;
	}
	.menu .menu-wrapper:first-child {
		padding: 5vh 0 5vh 30px;
		padding-bottom: calc(5vh - 20px);
		height: 100%;
	}
	.hamburger.rotated {
	    top: 17px;
    	right: 20px;
	}
	.menu-column {
		height: 50%;
	}
	.menu-wrapper {
		min-height: 555px;
	}
	.title-and-desc .inline-left,
	.team-page .member .inline-left,
	.title-and-desc .inline-right,
	.team-page .member .inline-right {
		width: 100%;
	}
	.title {
		padding-left: 40px;
		font-size: 32px;
		line-height: 38px;
	}
	.whitepaper-links, .resources-links, .resources-videos, .careers-links {
		padding-top: 40px;
	}
	.header {
		height: 70px;
	}
	.header-wrapper {
		padding: 0 24px;
	}
	.header .logo-link {
	    height: 28px;
   		width: 162px;
	}
	.hamburger {
	    right: 24px;
	    top: 23px;
	}
	.team-page .main,
	.whitepapers-page .main,
	.resources-page .main,
	.careers-page .main,
	.terms-page .main {
		padding-top: 70px;
	}
	.section-wrapper {
		padding: 40px 20px;
	}
	.whitepapers-wrapper {
		max-width: 560px;
		margin: 0 auto;
	}
	.whitepaper-links .title-small,  {
		padding-left: 48px;
	}
	.title-and-desc {
		margin-bottom: 0;
	}
	.inline-right, .inline-left {
		width: 100%;
	}
	.footer-wrapper-top {
		padding-top: 90px;
		max-width: 500px;
		padding-bottom: 57px;
	}
	.footer-wrapper-top .title {
		margin-bottom: 40px;
		margin-left: 0;
		margin-right: auto;
	}
	.footer form {
		margin-left: 0;
		margin-right: auto;
	}
	.footer-wrapper-bottom {
		max-width: 500px;
		margin: 0 auto;
		padding-bottom: 100px;
		padding-top: 35px;
	}
	.footer-wrapper-bottom>.inline-right>div {
		width: 50%;
	}
	.footer-wrapper-bottom .inline-right {
		padding-left: 0;
	    transform: translateY(-265px);
	}
	.footer-wrapper-bottom>.inline-left {
	    transform: translateY(400px);
	    height: 280px;
	}
	.footer-text {
		max-width: 100%;
	}
	.resources-wrapper .inline-left {
	    max-width: 560px;
	    margin: 0 auto;
	    display: block;
	    box-sizing: border-box;
	    padding: 0 48px;
	}
	.team-page .section-wrapper, .careers-page .section-wrapper, .whitepapers-page .section-wrapper, .resources-page .section-wrapper {
		padding: 40px 20px;
	}
	.team-page .member .desc, .title-and-desc .desc {
		padding-left: 0;
		margin-left: 0;
	}
	.team-page .member .desc {
		margin-top: 80px;
	}
	.team-page .title-and-desc .desc {
		margin-top: 32px;
	}
	.team-wrapper {
		max-width: 560px;
		margin: 0 auto;
	}
	.team-members .title {
		padding-top: 50px;
	}
	.member {
		padding-bottom: 0;
	}
	.resources-page .decor-10 {
		display: block;
		width: 91px;
		height: 106px;
		top: 129px;
		right: 15%;
		left: auto;
	}
	.hero .inline-left {
		margin-top: 300px;
		position: relative;
		z-index: 2;
		height: 280px;
	}
	.hero {
		padding: 70px 24px 0;
		box-sizing: border-box;
	}
	.hero .title {
		padding-left: 0;
		font-size: 32px;
		letter-spacing: 1.52px;
		line-height: 38px;
		max-width: 300px;
	}
	.hero .desc {
		margin-top: 16px;
		line-height: 26px;
		margin-bottom: 24px;
		max-width: 100%;
	}
	.hero .inline-right {
		width: 70%;
		transform: translateY(-500px);
	    max-width: 480px;
		margin-right: 0;
		margin-left: auto;
		display: block;
	}
	.hero .button {
		margin-right: 7px;
	}
	.hero .button.bg-white {
		margin-right: 0;
	}
	.hero {
		display: block;
		max-height: 800px;
	}
	.section-wrapper .title {
		padding-left: 48px;
	}
	.offer-item .title {
		padding-left: 0;
	}
	.hero-wrapper {
		max-width: 100%;
		display: block;
	}
	.offer-item.first .title {
		padding-left: 0;
		margin-top: 195px;
	}
	.offer-item.first .inline-left {
		text-align: center;
	}
	.offer-item.first .inline-right {
		text-align: center;
		position: absolute;
		left: 0;
		top: 50px;
	}
	.offer-item.first img {
		max-width: 215px;
	}
	.offer-item.first .desc {
		margin-left: auto;
		margin-right: auto;
	}
	.offer-item.first {
		position: relative;
		height: auto;
	}
	.offer-item, .offer-item.inline-left, .offer-item.inline-left.last {
		max-width: 500px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		display: block;
		height: auto;
		padding: 50px 20px;
	}
	.offer-item.first {
		padding: 50px 20px;
	}
	.team-grid .team-column {
		width: 80%;
	}
	.team-grid {
		text-align: center;
		padding-left: 7%;
	}
	.team-avatar .link {
		right: -23%;
	}
	.team-column.second {
		display: block;
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    margin-left: 50%;
	    transform: translateX(-50%);
	    padding-left: 7%;
	}
	.title-and-desc .desc {
		margin-top: 16px;
		margin-bottom: 40px;
		max-width: 100%;
	}
	.values-preview {
		height: 360px;
		padding: 0 5%;
	}
	.values-preview__content {
	    transform: translateY(15vw);
	}
	.modal-wrapper {
		padding: 24px;
	}
	.iziModal .iziModal-button-close {
		position: absolute;
	}
	.resources-wrapper .inline-right {
		padding: 0 24px;
		display: block;
	}
	.resources-page .section-wrapper .title {
		padding-left: 28px;
	}
	.whitepaper-links .title-small, .resources-page .title-small {
		padding-left: 48px;
	}
	.marquee a {
		margin: 0 -15px;
	}
	.careers-link .pdf-link__wrapper {
		padding-right: 170px;
	}
	.pdf-link__wrapper {
		padding: 20px 10px;
	}
	.careers-link .button {
		right: 20px;
	}
	.careers-wrapper {
		margin: 0 auto;
		max-width: 560px;
	}
}
@media screen and (max-width: 425px) {
	.hero .inline-right {
		transform: translateY(-500px) translateX(25vw);
	    width: 370px;
	}
   .hero .button {
   		padding: 12px 10px;
   }
   .offer-item.first {
   		margin-top: 24px;
   		padding-top: 24px;
   }
   .offer-item {
   	margin-top: 16px;
   }
   .team-avatar {
   	margin-bottom: 30px;
   }
   .values__item:last-child {
   		margin-right: 0;
   }
   .values-preview__content .desc{
   		padding: 24px 32px;
   }
   .values-preview {
   		margin-bottom: 170px;
   }
   .marquee img {
   		width: 166px;
   }
   .marquee a.small img {
   		width: 100px;
   }
   .marquee a:nth-child(even) {
   		transform: translateY(90px);
   }
   .pdf-link, .copy-link {
   		padding: 24px;
   }
   .pdf-link:after, .copy-link:after {
	   	position: relative;
	    transform: none;
	    left: 0;
	    top: 0;
	    margin-top: 15px;
        width: 100%;
	    background-size: 13px 16px;
	    height: 16px;
	    background-position: 0;
	    padding-left: 25px;
	    line-height: 14px;
	    font-size: 14px;
   }
   .copy-link:after {
   		background-size: 16px;
   		line-height: 16px;
   }
   .pdf-link__desc {
	    white-space: nowrap;
	    text-overflow: ellipsis;
	    overflow: hidden;
   }
   .footer-wrapper-bottom {
   		padding-bottom: 140px;
   }
   .footer-wrapper-top .inline-left {
   		padding-right: 0;
   }
   .iziModal .title {
   		padding-left: 0;
   		padding-right: 15px;
   }
   .team-avatar .link {
   		right: -30%;
   }
   .get-started-container:before {
   		top: 160px;
   }
   .resources-wrapper .inline-right {
   		padding: 0;
   }
   iframe {
	   	max-width: 100%;
	   	height: 190px;
   }
   .resources-wrapper .title-and-desc .desc {
   		margin-top: 0;
   		margin-bottom: 16px;
   }
   .menu-column {
   		width: 100%;
   		padding-bottom: 10px;
   }
   .menu-column__link {
   		width: 50%;
   		display: inline-block;
   		margin-top: 5px;
   }
   .careers-link .button {
   		position: relative;
   		margin-top: 24px;
   		left: 0;
   		right: auto;
   		top: 0;
   		transform: none;
   }
   .careers-link .pdf-link__wrapper {
   		padding: 32px  32px 40px;
   }
   .careers-link {
   		padding: 0;
   }
   .careers-link .button {
   		width: 168px;
	    padding: 15px;
   }
   .pdf-link__additional-title {
   		margin-top: 40px;
   		font-size: 18px;
   }
   .pdf-link__additional-wrapper {
   		padding: 0 24px 40px;
   }
   .terms-block {
		padding: 20px 15px;
	}
}
@media screen and (min-width: 375px) {
	.values__item {
		margin-right: 35px;
	}
}
@media screen and (max-width: 335px) {
	.get-started-container:before {
		top: 170px;
		height: 64.5%;
	}
	.values__item {
		margin-right: 18px;
	}
	.team-name {
		padding-left: 0;
	}
	.values-preview__content .desc{
		padding: 15px;
	}
}
