html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* custom */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Future Tense';
    src: url('../fonts/future-tense.woff2') format('woff2'),
         url('../fonts/future-tense.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*{
	box-sizing: border-box;
	outline: none!important;
}
body{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}
.container{
    padding: 0 20px;
    max-width: 1330px;
    margin: auto;
}
a{
	text-decoration: none;
	transition: all .3s;
}
p, li{
	font-size: 16px;
	line-height: 1.5;
	color: #1B1B1B;
}
img{
	max-width: 100%;
	height: auto;
}
section{
	padding: 120px 0;
}
.title-section{
	text-align: center;
	margin-bottom: 80px;
}
.title-section h2{
	font-family: 'Future Tense';
	text-transform: uppercase;
	font-size: 42px;
	letter-spacing: -.02em;
}
.title-section p{
	font-size: 22px;
	font-weight: 300;
	color: #1B1B1B;
	line-height: 1.4;
	margin-top: 15px;
}
.btn-theme{
	line-height: 63px;
	text-align: center;
	min-width: 260px;
	border-radius: 18px;
	color: #fff;
	background: linear-gradient(90deg, #FD7949 0%, #FFA06C 100%);
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
}
.btn-theme:hover{
	background: linear-gradient(90deg, #fd6149 0%, #FFA06C 100%);
}
.text-center{
	text-align: center;
}
@media screen and (max-width: 1599px){
	.title-section h2{
		font-size: 35px;
	}
	.title-section p{
		font-size: 20px;
	}
}
@media screen and (max-width: 1399px){

}
@media screen and (max-width: 1199px){
	.title-section h2{
		font-size: 30px;
	}
	.title-section p{
		font-size: 18px;
	}
}
@media screen and (max-width: 991px){
	.title-section h2{
		font-size: 28px;
	}
	.title-section p{
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
	section{
		padding: 50px 0;
	}
	.container{
		padding: 0 15px;
	}
	.title-section h2{
		font-size: 24px;
	}
	.title-section p{
		font-size: 14px;
		max-width: 80%;
		margin: 15px auto 0;
	}
	.btn-theme{
		width: 100%;
	}
}

/* header */
header{
	padding: 50px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	transition: all .3s;
}
header.header-scroll{
	padding: 15px 0;
	background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(26px);
}
header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header svg{
	position: relative;
    z-index: 9;
}
header svg path{
	transition: all .3s;
}
header.header-scroll svg path{
	fill: #1B1B1B;
}
header .container nav ul{
	display: flex;
	align-items: center;
	gap: 70px;
}
header .container nav ul a{
	text-transform: uppercase;
	color: #1B1B1B;
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
}
header .container nav ul a:hover{
	color: #FD7949;
}
header button{
	display: none;
}

header .menu-btn {
  width: 24px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

header .menu-btn span {
  position: absolute;
  height: 3px;
  background: #270040;
  transition: 0.3s ease;
  transform-origin: center;
}

header .menu-btn span:nth-child(1) {
  width: 11px;
  top: 0;
  right: 0;
}

header .menu-btn span:nth-child(2) {
  width: 24px;
  top: 9px;
  left: 0;
}

header .menu-btn span:nth-child(3) {
  width: 18px;
  top: 18px;
  right: 0;
}

/* active — хрестик */
header .menu-btn.active span:nth-child(1) {
  width: 27.2px;
  top: 9.5px;
  left: -1.5px;
  transform: rotate(45deg);
}

header .menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

header .menu-btn.active span:nth-child(3) {
  width: 27.2px;
  top: 9.5px;
  left: -1.5px;
  transform: rotate(-45deg);
}

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

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

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

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

}
@media screen and (max-width: 767px){
	header{
		padding: 25px 0;
	}
	header button{
		display: block;
	}
	header nav{
		/* display: none; */
		position: absolute;
		top: 0px;
		left: 0;
		width: 100%;
		height: 100vh;
		visibility: hidden;
		opacity: 0;
		transition: all .3s;
		background-image: url(../images/background-menu-mobile.jpg);
		background-size: cover;
		background-position: center;
		display: flex;
	}
	header nav ul{
		justify-content: center;
		flex-direction: column;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
	}
	header nav ul li{
		width: 100%;
		text-align: center;
	}
	header .container nav ul a{
		font-size: 34px;
		font-weight: 500;
		text-align: center;
	}
	header nav.open{
		visibility: visible;
		opacity: 1;
	}
}
@media screen and (max-width: 479px){
	header svg{
		max-width: 107px;
		height: auto;
	}
}
/* -- header */

/* hero */
.section-hero{
	padding: 0;
	background-image: url(../images/background-hero.jpg);
	background-position: center top;
    background-size: 100% auto;
	background-repeat: no-repeat;
}
.hero{
	padding: 150px 0 150px;
	min-height: 100vh;
	position: relative;
	z-index: 9;
}
.hero .container{
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 300px);
}
.hero .container > img{
	position: absolute;
	top: auto;
	right: 0;
	width: auto;
	max-height: 100%;
	max-width: 700px;
	z-index: 1;
}
.hero > img.hero-element{
	position: absolute;
	bottom: 0;
	left: 50px;
	right: auto;
	height: auto;
	width: 17%;
	top: auto;
}
.hero .content{
	max-width: 66%;
	position: relative;
	z-index: 9;
}
.hero .content h1{
	font-family: 'Future Tense';
	text-transform: uppercase;
	font-size: 55px;
	letter-spacing: -.02em;
	margin-bottom: 20px;
	color: #fff;
}
.hero .content p{
	margin-bottom: 20px;
	font-size: 28px;
	font-weight: 300;
	color: #fff;
	max-width: 750px;
}
.hero .content .btn-theme{
	margin-top: 30px;
}
@media screen and (max-width: 1599px){
	.hero .content h1{
		font-size: 50px;
	}
	.hero .content p{
		font-size: 24px;
		margin-bottom: 15px;
		max-width: 700px;
	}
	.hero .content .btn-theme {
		margin-top: 20px;
	}
}
@media screen and (max-width: 1399px){
	.hero .content h1{
		font-size: 40px;
	}
	.hero .content p{
		font-size: 20px;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 1024px){
	.hero .content p{
		max-width: 550px;
	}
}
@media screen and (max-width: 991px){
	.section-hero{
		background-size: 1600px auto;
	}
	.hero .content p{
		font-size: 18px;
	}
}
@media screen and (max-width: 935px){
	.hero .content p{
		max-width: 80%;
	}
}
@media screen and (max-width: 767px){
	.section-hero{
		background-size: 100% auto;
		background-image: url(../images/background-hero-mobile.jpg);
	}
	.hero{
		padding: 60px 0;
		min-height: auto;
	}
	.hero .container{
		flex-wrap: wrap;
		gap: 30px;
		justify-content: center;
	}
	.hero .container > img{
		position: relative;
		order: 1;
		max-width: 70%;
	}
	.hero .content{
		order: 2;
		width: 100%;
		max-width: 100%;
	}
	.hero .content h1{
		font-size: 35px;
	}
	.hero > img.hero-element{
		display: none;
	}
}
@media screen and (max-width: 479px){
	.hero .content h1{
		font-size: 32px;
	}
}
/* -- hero */

/* section-why-join */
.section-why-join{
	padding: 0 0 70px;
	position: relative;
	background: #fff;
}
.section-why-join:after{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: -310px;
	left: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
	z-index: 0;
}
.section-why-join .title-section{
	position: relative;
	z-index: 9;
}
.section-why-join .title-section p{
	max-width: 856px;
	margin-left: auto;
	margin-right: auto;
}
.items-why-join{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-bottom: 50px;
	position: relative;
	z-index: 9;
}
.items-why-join .item{
	height: 488px;
	padding: 50px;
	width: calc((100% - 48px) / 3);
	position: relative;
	border-radius: 55px;
	overflow: hidden;
}
.items-why-join .item .background{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-position: center;
    background-size: cover;
}
.items-why-join .item p.title{
	color: #fff;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 600;
	max-width: 60%;
	position: relative;
	z-index: 9;
}
@media screen and (max-width: 1599px){
	.title-section{
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 1330px){
	.items-why-join .item{
		padding: 30px;
		height: calc((100vw - 48px) / 3 * 1.178743961);
	}
	.items-why-join .item p.title{
		font-size: 22px;
	}
	.title-section{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 1199px){
	.items-why-join .item p.title{
		font-size: 20px;
	}
}
@media screen and (max-width: 991px){
	.section-why-join .title-section p{
		max-width: 650px;
	}
	.items-why-join .item{
		border-radius: 30px;
	}
	.items-why-join .item p.title {
        font-size: 20px;
    }
}
@media screen and (max-width: 767px){
	.section-why-join{
		padding-top: 70px;
	}
	.section-why-join:after{
		top: -220px;
	}
	.items-why-join .item{
		width: 100%;
		min-height: 180px;
		align-items: center;
		display: flex;
	}

}
@media screen and (max-width: 479px){
	.section-why-join:after {
        top: -300px;
    }
}
/* -- section-why-join */

/* section-ecosystem */
.section-ecosystem{
	background-image: url(../images/ecosystem-background.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.section-ecosystem > img{
	position: absolute;
	z-index: 0;
	max-width: 25%;
	right: 0;
	top: -15%;
	z-index: 0;
}
.section-ecosystem .title-section{
	position: relative;
	z-index: 9;
}
.section-ecosystem .title-section h2{
	color: #fff;
}
.section-ecosystem .items-ecosystem{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 9;
}
.section-ecosystem .items-ecosystem .nav-tabs{
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 30%;
}
.section-ecosystem .items-ecosystem .nav-tabs li{
	font-family: 'Future Tense';
	text-transform: uppercase;
	font-size: 24px;
	letter-spacing: -.02em;
	cursor: pointer;
	border-radius: 55px 0 0 55px;
	padding: 38px 60px;
	position: relative;
	overflow: hidden;
	transition: all .3s;
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
}
.section-ecosystem .items-ecosystem .nav-tabs li span{
	position: relative;
	z-index: 9;
}
.section-ecosystem .items-ecosystem .nav-tabs li:before{
	content: '';
	transition: all .3s;
	position: absolute;
	position: absolute;
	width: 328px;
	height: 328px;
	left: -164px;
	top: 100px;
	background: rgba(253, 141, 91, 0.55);
	filter: blur(72.5px);
	z-index: 0;
}
.section-ecosystem .items-ecosystem .nav-tabs li:hover,
.section-ecosystem .items-ecosystem .nav-tabs li.active{
	color: #1B1B1B;
}
.section-ecosystem .items-ecosystem .nav-tabs li:hover:before,
.section-ecosystem .items-ecosystem .nav-tabs li.active:before{
	background: #fff;
	left: 0;
	top: -100px;
	bottom: 0;
	right: 0;
	filter: blur(0);
	width: 150%;
	z-index: 0;
}
.section-ecosystem .items-ecosystem .content-tabs{
	width: 70%;
	background: #fff;
	border-radius: 55px;
	padding: 60px;
	position: relative;
}
.section-ecosystem .items-ecosystem .content-tabs .item-content-tab{
	position: absolute;
	visibility: hidden;
	opacity: 0;
	/* transition: all .1s; */
}
.section-ecosystem .items-ecosystem .content-tabs .item-content-tab.active{
	position: relative;
	opacity: 1;
	visibility: visible;
}
.content-tabs .item-content-tab h3{
	font-size: 24px;
	text-transform: uppercase;
	font-family: 'Future Tense';
	letter-spacing: -.02em;
	margin-bottom: 15px;
	margin-top: 50px;
}
.content-tabs .item-content-tab h3:first-of-type{
	margin-top: 0;
}
.content-tabs .item-content-tab p{
	color: #081950;
	font-weight: 300;
	font-size: 22px;
	max-width: 70%;
}
@media screen and (max-width: 1599px){
	.section-ecosystem .items-ecosystem .nav-tabs li{
		padding: 28px 50px;
	}
	.content-tabs .item-content-tab h3{
		font-size: 22px;
		margin-top: 40px;
	}
	.content-tabs .item-content-tab p{
		font-size: 20px;
	}
}
@media screen and (max-width: 1399px){
	.content-tabs .item-content-tab p{
		font-size: 18px;
	}
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
	.section-ecosystem .items-ecosystem{
		flex-wrap: wrap;
	}
	.section-ecosystem .items-ecosystem .nav-tabs{
		flex-direction: row;
		justify-content: center;
	}
	.section-ecosystem .items-ecosystem .nav-tabs li{
		border-radius: 33px 33px 0 0;
		font-size: 20px;
		padding: 20px;
		min-width: 200px;
		text-align: center;
	}
	.section-ecosystem .items-ecosystem .nav-tabs,
	.section-ecosystem .items-ecosystem .content-tabs{
		width: 100%;
	}
	.section-ecosystem .items-ecosystem .content-tabs{
		border-radius: 33px;
	}
}
@media screen and (max-width: 767px){
	.section-ecosystem .items-ecosystem .content-tabs{
		padding: 40px;
		margin-top: -40px;
	}
	.section-ecosystem .items-ecosystem .nav-tabs{
		gap: 7px;
	}
	.section-ecosystem .items-ecosystem .nav-tabs li{
		width: calc((100% - 14px) / 3);
		padding-bottom: 60px;
		font-size: 14px;
		min-width: 0;
		border-radius: 14px 14px 0 0;
	}
	.content-tabs .item-content-tab p{
		max-width: 100%;
		font-size: 16px;
	}
	.section-ecosystem > img{
		display: none;
	}
}
@media screen and (max-width: 479px){

	.section-ecosystem .items-ecosystem .content-tabs{
		padding: 30px;
		margin-top: -35px;
	}
	.section-ecosystem .items-ecosystem .nav-tabs li{
		font-size: 12px;
		padding: 15px 5px 50px 5px;
	}
	.content-tabs .item-content-tab h3{
		font-size: 18px;
	}
	.content-tabs .item-content-tab p {
        font-size: 14px;
    }
}
/* -- section-ecosystem */

/* section-group */
.section-group{
	padding: 0;
	background-image: url(../images/group-section-background.jpg);
	background-position: center;
	background-size: cover;
}
/* -- section-group */

/* section-we-stand */
.section-we-stand{
	padding: 100px 0 140px;
}
.section-we-stand .items-we-stand{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
}
.section-we-stand .items-we-stand .item{
	text-align: center;
	width: calc((100% - 72px) / 4);
	padding: 24px;
	background: #fff;
	border-radius: 55px;
	cursor: pointer;
}
.section-we-stand .items-we-stand .item p.title{
	font-size: 24px;
	font-weight: 600;
	color: #000;
}
.section-we-stand .items-we-stand .item p.description{
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
	color: #081950;
	display: none;
	margin-top: 5px;
}
@media screen and (max-width: 1599px){
	.section-we-stand .items-we-stand .item p.title{
		font-size: 22px;
	}
}
@media screen and (max-width: 1399px){

}
@media screen and (max-width: 1199px){
	.section-we-stand .items-we-stand .item p.title{
		font-size: 20px;
	}
}
@media screen and (max-width: 991px){
	.section-we-stand .items-we-stand{
		gap: 20px;
		max-width: 600px;
		margin: auto;
	}
	.section-we-stand .items-we-stand .item{
		text-align: center;
		width: calc((100% - 20px) / 2);
	}
}
@media screen and (max-width: 767px){
	.section-we-stand .items-we-stand .item p.title {
        font-size: 18px;
    }
}
@media screen and (max-width: 479px){
	.section-we-stand{
		padding: 50px 0;
	}
	.section-we-stand .items-we-stand .item p.title {
        font-size: 16px;
    }
}
/* -- section-we-stand */

/* section-team */
.section-team{
	padding: 70px 0 150px;
}
.section-team .item-team{
	background: #fff;
	text-align: center;
	border-radius: 55px;
	padding: 38px;
}
.section-team .item-team p.name{
	font-size: 24px;
	font-weight: 600;
	color: #000000;
	margin-bottom: 0px;
	margin-top: 20px;
}
.section-team .item-team p.position{
	font-size: 16px;
	color: #081950;
}
.section-team .swiper-pagination{
	position: relative;
	margin-top: 30px;
}
.swiper-pagination-bullet{
	width: 11px;
	height: 11px;
	background: #fff;
	border-radius: 11px;
	opacity: 1;
	transition: all .3s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 79px;
	height: 11px;
	border-radius: 11px;
	background: #6F2BBA;
}
/* -- section-team */

/* section-vacantion */
.section-vacantion{
	background-image: url(../images/section-vacancy-background.jpg);
	background-position: center;
	background-size: cover;
}
.section-vacantion .title-section h2{
	color: #fff;
}
.items-vacantion{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.items-vacantion .item{
	width: calc((100% - 40px) / 3);
	position: relative;
	padding: 40px;
	border-radius: 44px;
	overflow: hidden;
	background: #4C129D;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(6px);
}
.items-vacantion .item:before{
	content: '';
	position: absolute;
	width: 328px;
	height: 328px;
	left: -164px;
	top: -70px;
	background: #4C129D;
	filter: blur(72.5px);
	z-index: 0;
	transition: all .3s;
}
.items-vacantion .item a{
	position: absolute;
	z-index: 11;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.items-vacantion .item:hover:before{
	background: rgba(253, 141, 91, 0.55);
}
.items-vacantion .item p.title{
	font-weight: 600;
	color: #fff;
	font-size: 28px;
	line-height: 1.4;
	max-width: 90%;
	margin-bottom: 15px;
	position: relative;
	z-index: 9;
}
.items-vacantion .item p.location{
	color: #FF9D69;
	font-size: 18px;
	position: relative;
	z-index: 9;
}
@media screen and (max-width: 1599px){

}
@media screen and (max-width: 1399px){
	.items-vacantion .item{
		padding: 30px;
	}
	.items-vacantion .item p.title{
		font-size: 22px;
		max-width: 70%;
	}
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
	.items-vacantion .item{
		width: calc((100% - 20px) / 2);
	}
	.items-vacantion .item p.location{
		font-size: 16px;
	}
}
@media screen and (max-width: 767px){
	.items-vacantion .item{
		border-radius: 33px;
	}
	.items-vacantion .item p.title{
		font-size: 20px;
	}
	.items-vacantion .item p.location{
		font-size: 12px;
	}
}
@media screen and (max-width: 479px){
	.items-vacantion .item{
		width: 100%;
	}
}
/* -- section-vacantion */



/* footer */
footer{
	min-height: 30vw;
	/* max-height: 30vw; */
	padding: 70px 0;
	background-image: url(../images/footer-background.jpg);
	background-position: center;
	background-size: cover;
}
footer .container{
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
footer .container .footer-left{
	width: 160px;
}
footer .container .footer-left svg{
	margin-bottom: 20px;
}
footer .container .footer-left p{
	line-height: 2;
	color: #200051;
}
footer .container .footer-right{
	width: calc(100% - 190px);
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
}
footer .container .footer-right ul.footer-menu{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap: 80px;
}
footer .container .footer-right ul.footer-menu li a{
	text-transform: uppercase;
}
footer .container .footer-right ul.socials{
	display: flex;
	justify-content: flex-end;
	gap: 28px;
	width: 100%;
	margin-top: 40px;
}
footer .container .footer-right ul.socials a svg rect,
footer .container .footer-right ul.socials a svg path{
	transition: all .3s;
}
footer .container .footer-right ul.socials a:hover svg .icon-background,
footer .container .footer-right ul.socials a:hover svg path{
	fill: #FD7949;
}
footer ul li a{
	color: #200051;
	font-size: 16px;
	line-height: 2;
}
footer a:hover{
	color: #FD7949;
}
@media screen and (max-width: 1599px){

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

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

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

}
@media screen and (max-width: 767px){
	footer{
		min-height: 70vh;
		background-size: cover;
		background-position: top center;
		background-image: url(../images/footer-background-mobile.jpg);
		position: relative;
	}
	footer .container .footer-right ul.footer-menu{
		flex-direction: column;
		gap: 20px;
		align-items: flex-end;
	}
	footer .container .footer-left svg{
		max-width: 107px;
	}
	footer .container .footer-right ul.socials{
		position: absolute;
		bottom: 50px;
		justify-content: center;
		width: 100%;
		left: 0;
		right: 0;
	}
	footer .container .footer-right ul.socials svg{
		height: 30px;
		width: auto;
	}
}
@media screen and (max-width: 479px){

}
/* -- footer */

/* page */
.title-page{
    padding: 150px 0 150px;
    position: relative;
    z-index: 9;
		background-image: url(../images/background-hero.jpg);
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.title-page h1{
	text-align: center;
	font-family: 'Future Tense';
  text-transform: uppercase;
  font-size: 55px;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (max-width: 1599px){
	.title-page h1{
		font-size: 40px;
	}
}
@media screen and (max-width: 1399px){
	.title-page h1{
		font-size: 35px;
	}
}
@media screen and (max-width: 1199px){

}
@media screen and (max-width: 991px){
	.title-page h1{
		font-size: 30px;
	}
}
@media screen and (max-width: 767px){

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

}
/* -- page */

/* section-content */
.section-content{
	padding: 60px 0;
}
.section-content{
	font-size: 20px;
	font-weight: 300;
  color: #1B1B1B;
  line-height: 1.4;
  margin-bottom: 15px;
}
.section-content h1{
	font-family: 'Future Tense';
	font-size: 30px;
	text-transform: uppercase;
	letter-spacing: -.02em;
	margin: 20px 0;
}
.section-content h2{
	font-family: 'Future Tense';
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: -.02em;
  margin: 20px 0;
}
.section-content h3{
	font-family: 'Future Tense';
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: -.02em;
  margin: 20px 0;
}
.section-content h4{
	font-family: 'Future Tense';
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 20px 0;
}
.section-content p,
.section-content li{
	font-size: 20px!important;
	font-weight: 300;
  color: #1B1B1B;
  line-height: 1.4;
  margin-bottom: 15px;
	margin-top: 15px;
}
.section-content ul,
.section-content ol{
	padding-left: 20px;
	margin-bottom: 15px;
}
.section-content ul li{
	list-style: disc;
}
.section-content ol li{
	list-style: decimal;
}
.section-content a{
	text-decoration: underline;
}
.section-content strong{
	font-weight: 500;
}
/* -- section-content */
