/*------------------- Declare Roboto Font -------------------*/
/* roboto-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/roboto/roboto-v51-latin-regular.woff2') format('woff2'), 
       url('../../fonts/roboto/roboto-v51-latin-regular.ttf') format('truetype');
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/roboto/roboto-v51-latin-500.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-500.ttf') format('truetype');
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../../fonts/roboto/roboto-v51-latin-600.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-600.ttf') format('truetype');
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/roboto/roboto-v51-latin-700.woff2') format('woff2'),
       url('../../fonts/roboto/roboto-v51-latin-700.ttf') format('truetype');
}
/*------------------- Project Variables -------------------*/
:root {
	--grey-text-dark: #737887;
	--grey-text-light: #A1A6B0;
	--black-color: #000000;
	--white-color: #ffffff;
	--title-font: 'Roboto', sans-serif;
	--body-font: 'Roboto', sans-serif;
	
	--body-background-color: #0E0E0E;
}

/*------------------- Font Set-Up -------------------*/
p:empty {
	display: none;
}
p {
	font-family: var(--body-font);
	margin: 0 0 18px 0;
	color: var(--grey-text-light);
	line-height: 1.75;
}

.h1,
h1 {
	font-family: var(--title-font);
	color: var(--white-color);
	text-transform: none;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px 0;
}
.h1,
h1 {
	font-size: 36px;
	line-height: 1.208;
}
@media (max-width: 1199px) {
.h1,
h1 {
	font-size: 32px;
	line-height: 1.3;
}
}
@media (max-width: 767px) {
.h1,
h1 {
	font-size: 30px;
}
}
@media (max-width: 575px) {
.h1,
h1 {
	font-size: 26px;
	line-height: 1.35;
}
}
@media (max-width: 480px) {
.h1,
h1 {
	font-size: 22px;
	line-height: 1.35;
}
}

/*------------------- General Page Styling -------------------*/
html,
body {
	scroll-behavior: auto !important;
}
body {
	font-family: var(--title-font);
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
	background: url("../../img/gradient-background.svg") center / cover no-repeat fixed;
}

img {
  width: 100%;
  height: auto;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.logo {
	max-width: 43%;
	height: auto;
}

.text {
	max-width: 43%;
	height: auto;
	text-align: center;
	margin-top: 50px;
}

.intro {
	margin-top: 50px;
}

.tagline {
	margin-top: 40px;
	color: var(--white-color);
	font-size: 20px;
	font-weight: 600;
}

@media (max-width: 1299px) {
.logo,
.text {
	max-width: 50%;
}

@media (max-width: 1199px) {
.logo,
.text {
	max-width: 60%;
}

@media (max-width: 991px) {
.logo,
.text {
	max-width: 65%;
}

@media (max-width: 767px) {
.logo,
.text {
	max-width: 70%;
}

@media (max-width: 575px) {
.logo,
.text {
	max-width: 75%;
}

@media (max-width: 480px) {
.logo,
.text {
	max-width: 80%;
}