/*==================================
    Default theme
    --------------------------------
    Fonts: Raleway & Open Sans
    --------------------------------
    Colours:
        Blue:           #FF1618
        Grey:           #212226
        White Smoke:    #f4f4f4
        White:          #fff
        Black:          #000
/*==================================*/


/*==================================
            Html, Body
/*==================================*/
html, body{
    height: 100%;
}
body {
    color: #212226;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Nanum Gothic', sans-serif;
}
p {
    font-family: 'Lacquer', sans-serif;
    /* font-size: 0.8rem; */
    font-size: 1.2rem;
    font-weight: 400;
    /* color: #ac0404; */
    color: #A9A9A9;
    line-height: 1.5rem;
}

section{
    background: #000000;
    overflow: hidden;
}


/*==================================
            Preloader
/*==================================*/
#preloader{
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
    left: 50%;
    top: 50%;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 61px;
    height: 61px;
    margin: 6px;
    border: 6px solid #FF1618;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #FF1618 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  