/* Typography
===========================*/
/* nanum-gothic-regular - korean */
@import url('https://fonts.googleapis.com/css?family=Nanum+Gothic:400,700|Noto+Serif+KR:400,700&display=swap&subset=korean');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&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;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  word-break: keep-all;
}

.intro {
  height: 100vh;
}

@media screen and (max-width: 575px) {
  .intro {
    height: auto;
  }
}

a {
  color: #111111;
  -webkit-transition: all .35s;
  -moz-transition: all .35s;
  transition: all .35s;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #009dff;
  outline: 0;
}

.intro video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 575px) {
  .intro video  {
    width: 100%;
    height: auto;
  }
}

.intro h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: white;
}

section {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  color: black;
}

@media screen and (max-width: 575px) {
  section {
    max-width: 100%;
  }
}

hr {
	height: 3.5rem;
  border: none;
}

@media (max-width: 575px) {
    hr {
		height: 2 rem;
	}
  }


section h1 {
  padding-top: 300px;
  text-align: center;
  font-size: 80px;
}


section h2 {
  padding-top: 2.8rem;
  text-align: center;
  font-size: 5rem;
  padding-bottom: 5rem;
}

section p {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  margin-bottom: 2rem;
}

.info {
  margin-top: 4em;
  margin-bottom: 4em;
}

.info p {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  line-height: 2.8rem;
  margin-bottom: 2rem;
}

.info h2 {
  padding-top: 2.8rem;
  text-align: center;
  font-size: 3rem;
  padding-bottom: 3rem;
}
 
@media screen and (max-width: 575px) {
  .info  {
    max-width: 80%;
  }
}



.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{
	position: relative;
}
.col img{
	max-width: 100%;
	width: 550px;
	height: auto;
	object-fit: cover;
	border-radius: 12px;
}

.credit{
  font-size: 1rem;
	text-align: left;
  transition: .3s;
  margin-top: 3em;
  color: #5d5b5b;
}

@media screen and (max-width: 575px) {
  .credit  {
    max-width: 80%;
    font-size: 0.8rem;
  }
}

#preloader {
  background: #fff url(loader.gif) no-repeat center center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}