/* Typography
===========================*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,700');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600;700;800&display=swap');

@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-bold-web.woff') format('woff');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'GI';
	src: url('../fonts/gi-regular-web.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}


* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: "Microsoft YaHei", \5FAE\8F6F\96C5\9ED1, "STHeiti", \534E\6587\9ED1\4F53, "SimSun", \5B8B\4F53, sans-serif;
	background: #f8f3f5;
	color: #707070;
}

main {
	background: #00000029;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
}

.hero {
	width: 100%;
	height: 100vh;
	object-fit: cover;
  }

  .front-page {
	min-height: 100vh;
  }
.info {
	width: 100vw;
	height: 99vh;
}

@media screen and (max-width: 575px) {
	.info {
		width: 100%;
		height: auto;
	}
}

a {
	color: #009dff;
	-webkit-transition: all .35s;
	-moz-transition: all .35s;
	transition: all .35s;
	text-decoration: none;
  }
  
  a:hover,
  a:focus {
	color: #a9e7f0;
	outline: 0;
  }

  
h1 {
	font-size: 8rem;
	font-weight: 900;
}

h2 {
	font-size: 3.5rem;
	font-weight: 700;
	padding: 2rem;
}

@media screen and (max-width: 575px) {
	h2 {
		font-size: 2.5rem;
		font-weight: 700;
		padding: 1rem;
	}
}

h3 {
	font-size: 4rem;
	font-weight: 500;
}

h5 {
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.5;
}


video {
	width: 100%;
	height: auto;
}

section {
	padding: 5%;
  }


  img {
	width: 100%;
	height: auto;
  }

  figure {
	
	padding: 1rem;
	margin: 1rem;
  }
  
  figcaption {
	font-style: italic;
	margin: 5px;
	padding: 5px;
  }
  
  hr {
	border: none;
	height: 1rem;
	margin: 1.4em auto;
	width: 3em;
  }
  
   
.intro {
	text-align: center;
	padding: 3rem 15%;
	transition: .3s;
}

.intro p {
	font-size: 1.5rem;
	line-height: 2.1rem;
	padding-top: 1.2rem;
}

@media screen and (max-width: 575px) {
	.intro p {
		font-size: 1.2rem;
		line-height: 2;
	}
}



.credit {
	text-align: center;
	padding: 3rem 20%;
	transition: .3s;
	line-height: 1.8;
}


.heading {
	text-align: center;
}

.heading h2 {
	font-size: var(--h2-font);
	font-weight: 500;
	margin: 7px 0px 20px;
	line-height: 1.1;
}

.heading h3 {
	color: var(--main-color);
	font-size: 3rem;
	font-weight: 500;
}

.heading h5 {
	color: var(--main-color);
	font-size: 3rem;
	font-weight: 500;
}

.heading p {

	color: var(--text-color);
	line-height: 28px;
	padding-top: 2rem;
}

.portfolio-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, auto));
	grid-gap: 2rem;
	align-items: center;
	margin-top: 1rem;
	text-align: center;
	cursor: pointer;
}



.col img {
	max-width: 100%;
	width: 550px;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}

@media (max-width: 1425px) {

	section {
		padding: 70px 3%;
		transition: .3s;
	}

}


@media (max-width: 800px) {

	section {
		padding: 70px 3%;
		transition: .3s;
	}

	.intro {
		padding: 2rem 10%;
		transition: .3s;
	}
}