/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 8px;
	height: 7px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
	border-radius: 0;
}

::-webkit-scrollbar-thumb {
	background-color: #3C3C4F;
	border-radius: 0;
}

/* GENERAL */
* {
	padding: 0;
	margin: 0;
}

html {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: 'Barlow', sans-serif;
	font-weight: 800;
	height: 100%;
	overflow-x: hidden;
	background-color: #1E1E29;
}

button{
	font-family: 'Barlow', sans-serif;
}

a{
	text-decoration: none;
}

.alert__danger{
	background-color: rgba(231, 90, 98, 0.65);
	color: #facbcb;
	/*width: 100%;*/
	border-radius: 14px;
	padding: 25px;
	font-weight: 500;
	margin-bottom: 20px;
}

/* NAVBAR */
.navbar{
	margin: 0 7%;
	background-color: #2B2B3A;
	border: 2px solid #3C3C4F;
	border-top: 0;
	border-bottom-left-radius: 33px;
	border-bottom-right-radius: 33px;
	padding: 32px 80px;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.navbar__links ul, .navbar__links{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.navbar__links ul{
	margin-left: 20px;
	list-style: none;
}

.navbar__href.active{
	color: #E2E2E2;
}

.navbar__brand{
	color: #C7C7D4;
	border-right: 2px solid #3C3C4F;
	font-weight: bold;
	font-size: 16px;
	padding: 10px 30px 10px 0;
}

.navbar__link, .navbar__voucher{
	margin: 0 14px;
	color: #9F9F9F;
	font-size: 14px;
	font-weight: 700;
	transition: .3s;
}

.navbar__href{
	color: #9F9F9F;
}

.navbar__href:hover, .navbar__voucher:hover{
	color: #E2E2E2;
	transition: .3s;
}

.navbar__menu{
	display: none;
}

.navbar__voucher--hidden{
	display: none;
}

@media only screen and (max-width: 1100px) {
	.navbar{
		margin: 0;
		padding: 28px 13%;
	}

	.navbar__links ul, .navbar__links{
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.navbar__links ul{
		margin-left: 0;
	}

	.nav__mobile{
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.navbar__nav{
		display: none;
	}

	.navbar__brand{
		border-right: 0;
	}

	.navbar__voucher{
		display: none;
	}

	.navbar__menu{
		display: block;
	}

	.navbar__nav--active{
		padding-top: 20px;
		width: 100%;
		margin-top: 20px;
		border-top: 2px solid #3C3C4F;
		display: block;
	}

	.navbar__link{
		margin: 8px 0;
	}

	.navbar__voucher--hidden{
		display: block;
	}
}

/* HEADER */
.header {
	background-image: url('../img/spaceis__background.png');
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.header__content{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;

	padding: 250px 5%;
}

.header__content__title{
	font-weight: bold;
	font-size: 52px;
	margin-bottom: 6px;
	color: #fff;
}

.header__content__description{
	font-weight: 500;
	font-size: 18px;
	width: 500px;
	color: #8b8b92;
	margin-bottom: 40px;
}

.header__content__button{
	outline: none;
	background-color: #4BBF73;
	border: 2px solid #90DBAA;
	color: white;
	padding: 20px 60px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition: .3s;
}

.header__content__button:hover{
	background-color: #338d51;
	transition: .3s;
}

@media only screen and (max-width: 1100px) {
	.header__content{
		padding: 200px 5%;
	}

	.header__content__title{
		font-size: 42px;
	}

	.header__content__description{
		font-size: 17px;
		width: 90%;
		margin-bottom: 60px;
	}

	.header__content__button{
		padding: 20px 80px;
	}
}

/* FOOTER */
.footer{
	border-top: 1px solid rgb(43, 43, 58);
	padding-top: 30px;
	margin: 50px 9%;
	padding-bottom: 70px;
}

.footer h3{
	font-weight: bold;
	font-size: 16px;
	color: #fff;
}

.footer p{
	font-weight: 500;
	font-size: 13px;
	color: #8b8b92;
}

.spaceis{
	margin-top: 50px;
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0.8;
	transition: .3s;
	cursor: pointer;
}

.spaceis:hover{
	opacity: 1;
	transition: .3s;
}

.spaceis__img{
	width: 35px;
}

.spaceis__info{
	color: #b7b7b7;
	font-weight: 600;
}

.spaceis__info a{
	color: white;
}

@media only screen and (max-width: 1100px) {
	.footer{
		padding-bottom: 50px;
		margin: 0 6%;
	}

	.footer h3{
		margin-bottom: 10px;
	}
}

/* CONTENT SHOP / CONTENT TERMS */
.content--shop, .content--terms, .content--changelog{
	margin: 0 9%;
	padding-bottom: 100px;
}

@media only screen and (max-width: 1100px) {
	.content--shop, .content--terms, .content--changelog{
		margin: 0 5%;
	}
}

/* GRID */
.row{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1.5%;
}

.row--main{
	gap: 3%;
}

.row--shop{
	gap: 3%;
}

.row--center{
	justify-content: center;
	align-items: center;
}

.row--middle{
	align-items: center;
}

.col-3{
	width: 32.33%;
}

.col-6{
	width: 48%;
}

.col-lg-4{
	width: 23.5%;
}

.col-lg-5{
	width: 28.5%;
}

.col-lg-7{
	width: 68.5%;
}

@media only screen and (max-width: 1100px) {
	.row{
		flex-direction: column;
		gap: 0;
	}

	.row--main{
		gap: 0;
	}

	.row--shop{
		gap: 0;
	}

	.col-3{
		width: 100%;
	}

	.col-6{
		width: 100%;
	}

	.col-lg-4{
		width: 100%;
	}

	.col-lg-5{
		width: 100%;
	}

	.col-lg-7{
		width: 100%;
	}
}
