/*==============================================================================
General
==============================================================================*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html,
body {
  height: 100%;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  padding: 0!important;
}
.is-mobile .mobile-scroll {
  -ms-overflow-style: scrollbar;
  overflow-y: auto;
}

/*==============================================================================
Typography
==============================================================================*/

body {
  font-weight: 400;
  letter-spacing: 0.5px;
  padding-left: 0.5px;
  line-height: 1.75;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}

/*==============================================================================
Layout
==============================================================================*/

#site-wrap {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.is-border #site-wrap {
  border-style: solid;
  border-width: 0;
}
@media screen and (min-width: 768px) {
  .is-border #site-wrap {
    border-width: 15px;
  }
}
@media screen and (min-width: 992px) {
  .is-border #site-wrap {
    border-width: 20px;
  }
}
#site-main {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: relative;
  height: 100%;
}
section {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  section {
    top: 80px;
    bottom: 80px;
    left: 0;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  section {
    top: 100px;
    bottom: 100px;
    left: 0;
    right: 0;
  }
}
.section-wrap {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.section-cell {
  display: block;
  margin-top: 5%;
}
/*======================================
Background
======================================*/
#bg {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
#img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
  position: absolute;
}
.is-img #img {
  display: block;
  background-image: url(../images/background.jpg);
}
.is-video #img {
  display: block;
  background-image: url(../img/bg/video.jpg);
}
.is-yt-video #img {
  display: block;
  background-image: url(../img/bg/yt-video.jpg);
}
#video {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  position: absolute;
}
.is-video #video,
.is-yt-video #video {
  display: block;
}
#video-bg {
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
#overlay {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}
canvas {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  position: absolute;
}
.is-star canvas {
  display: block;
}
#effect {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: none;
  position: absolute;
}
.ie9 #effect {
  background-image: url(#);
}
.is-cloud #effect {
  display: block;
}
#effect img {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  position: absolute;
}
/* cloud common */
#cloud1 {
  left: 40%;
}
#cloud2 {
  left: 80%;
}
#cloud3 {
  left: 90%;
}
#cloud4 {
  left: 10%;
}
/* default cloud */
.default-cloud #cloud1 {
  top: 30%;
}
.default-cloud #cloud2 {
  top: 10%;
}
.default-cloud #cloud3 {
  top: 25%;
}
.default-cloud #cloud4 {
  top: 15%;
}
/* bottom cloud */
.bottom-cloud #cloud1 {
  bottom: 30%;
}
.bottom-cloud #cloud2 {
  bottom: 10%;
}
.bottom-cloud #cloud3 {
  bottom: 25%;
}
.bottom-cloud #cloud4 {
  bottom: 15%;
}

/*==============================================================================
Footer
==============================================================================*/
#site-footer {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: auto;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  #site-footer {
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  #site-footer {
    height: auto;
  }
}

#footer-social {
  margin-top: 8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #footer-social {
    margin-top: 15px;
  }
}

#footer-social a i {
  font-size: 30px;
  margin-bottom: 30px;
}

/*==================================================
Responsive
==================================================*/
/* fix ie10 viewport bug */
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}

/*==============================================================================
Other
==============================================================================*/

.is-border #site-wrap {
  /* border */
  border-color: rgba(255, 255, 255, 0.99);
}

a {
	color: inherit;
}

a:hover {
	color: #f8cd07;
}

#footer-social p {
	font-size: 11px;
}
#site-footer {
    margin-bottom: 20px;
}
.main-logo {
	display:block;
	margin: 0 auto;
	padding: 0 10px 30px 10px;
}

h1 {
	font-size: 50px;
	line-height: 50px;
	font-weight: 700;
	letter-spacing: -0.08em;
	color: #ffffff;
}
h1 strong {
	font-weight: 900;
	color: #f8cd07;
}
.hashtag {
	font-size: 18px;
	line-height: 20px;
	color: #f8cd07;
	margin-bottom: 0px;
}
.email {
	font-size: 13px;
	line-height: 18px;
}
