
/*------------------------------------------------------------------
 *  1. General
 * -----------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900'); 
 
::selection {
  color: #fff;
  background: #666;
}

::-moz-selection {
  color: #fff;
  background: #666;
}

html {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #373737;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 16px;
  height: 100%;
  line-height: 1.6em;
  max-width: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
}

h1 {
  font-weight: 400;
  font-size: 22px;
  padding-bottom: 20px;
  line-height: 30px;
  color: #d6d6d6;
}

h3 {
  font-weight: 400;
}

h4 {
  font-weight: 400;
  font-size: 20px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

a {
  color: #bdc3c7;
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover,
a:focus {
  color: #99a2a9;
  outline: 0;
  text-decoration: none;
}

a:before,
a:after {
  -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
  -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
  -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
  -o-transition: color 0.1s ease-in, background 0.1s ease-in;
  transition: color 0.1s ease-in, background 0.1s ease-in;
}

input, textarea, select {
  border: 1px solid #dfdfdf;
  font-size: 11px; 
  letter-spacing: 1px;
  margin: 0 0 20px 0;
  max-width: 100%;
  padding: 8px 15px;
  resize: none;
  width: 100%;
}

input[type="submit"] {
  width: auto;
}

input[type="button"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="text"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
}

input:focus,
textarea:focus {
  border: 1px solid #989898;
  outline: none;
}

input[type="submit"]:focus {
  border: none !important;
}

/*------------------------------------------------------------------
 *	2. Preloader
 * -----------------------------------------------------------------*/
 
#preloader {
  background-color: #2d2e2e;
  bottom: 0;
  left: 0;
  right: 0;
	position: fixed;
	top: 0;
	z-index: 9999;
}

#status {
  background-position: center;
  background-repeat: no-repeat;
  height: 150px;
  left: 50%;
  margin: -75px 0 0 -75px;
  position: absolute;
  top: 50%;
	width: 150px;
}

.spinner {
  font-size: 10px;
  height: 30px;
  margin: 50px auto;
  text-align: center;
  width: 50px;
}

.spinner > div {
  background-color: #fff;
  display: inline-block;
  height: 100%;
  width: 6px;
  
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  -moz-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  -moz-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  -moz-animation-delay: -1.0s; 
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  -moz-animation-delay: -0.9s;  
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  -moz-animation-delay: -0.8s;  
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

/*------------------------------------------------------------------
 *  3. Body
 * -----------------------------------------------------------------*/

.main {
  background-color: transparent;
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2000;
} 

.prelogo {
  /*background-image: radial-gradient(#ffffff4f 5%, #ffffff00 55%);*/
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.prelogo img {
  width: 100%; 
  max-width: 250px;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .main {
    height: 100%;
    max-height: 100%;
  }
}

/*------------------------------------------------------------------
 *  4. Page Layout
 * -----------------------------------------------------------------*/
 
.page {
  padding: 20px 0;
}

.wrapper {
  padding: 15px 0;
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .wrapper .container {
    width: 1050px;
  }
}

/*------------------------------------------------------------------
 *  5. Page Container
 * -----------------------------------------------------------------*/
 
@media (min-width: 1200px) {
  .container {
    width: 1000px;
  } 
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .page {
    display: table;
    height: 100%;
    padding: 40px 0;
    width: 100%;
  }
  
  .wrapper {
    display: table-cell;
    height: 100%;
    padding: 0;
    vertical-align: middle;
  }
}

.heading {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 10px;
  text-transform: uppercase;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .heading {
    font-size: 30px;
    margin: 45px 0 10px;
  }
}

/*------------------------------------------------------------------
 *  6. Timer
 * -----------------------------------------------------------------*/

#countdown {
  color: #fff;
  font-size: 30px;
  line-height: 24px;
  margin: 0 0 25px;
}

.countdown-section {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  padding: 5px 14px;
}

.countdown-section:last-child {
  border-right: none;
}

.countdown-section b {
  display: block;
  font-size: 20px;
}

.countdown-section span {
  display: block;
  font-size: 12px;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #countdown {
    font-size: 38px;
    line-height: 1.1em;
    margin: 10px 0 45px;
  }

  .countdown-section{
    padding: 0.3em 0.7em;
  }
  
  .countdown-section b {
    font-size: 1em;
  }

  .countdown-section span {
    font-size: 0.4em;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .countdown-section {
    border-right: 1px solid rgba(255, 255, 255,0.3);
    display: inline-block;
    padding: 0.5em 0.7em;
  }

  .countdown-section b {
    display: block;
    font-size: 1em;
  }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .countdown-section b {
    display: block;
    font-size: 1.2em;
  }
}

/*------------------------------------------------------------------
 *  7. Backstretch & Particles
 * -----------------------------------------------------------------*/

.backstretch:after {
  background-color: rgba(0, 0 ,0 , 0.6);
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  z-index: 100;
}

#particles-js {
  background: linear-gradient(to top, #303030 0%, #223a5e 100%);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 996;
}

/*------------------------------------------------------------------
 * 8. Contact Form
 * -----------------------------------------------------------------*/

.subscribe {
  display: inline-block;
  margin: 0 auto;
  width: 250px;
}

.subscribe .btn {
  margin: 15px 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #e7e7e7;
  border-radius: 0 !important;
  border-left: none;
  border-right: none;
  border-top: none;
  box-shadow: none;
  color: inherit;
  font-size: 14px;
  height: 40px;
  padding: 9px 16px;
  transition: all 0.4s ease;
  -webkit-box-shadow: none;
  -webkit-transition: all 0.4s ease;
}

.form-control:focus {
  background-color: none;
  border-color: #e7e7e7;
  box-shadow: 0 0 8px rgba(0,0,0, 0.22);
  -webkit-box-shadow: 0 0 8px rgba(0,0,0, 0.22);
}

.form-control:focus {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.form-control::-moz-placeholder {
  color: #6e6e6e;
}
.form-control:-ms-input-placeholder {
  color: #6e6e6e;
}
.form-control::-webkit-input-placeholder {
  color: #6e6e6e;
}

.form-control {
  margin-bottom: 0;
}

.form-control {
  border-radius: 0 !important;
}

.form-control {
  background-color: transparent;
  border-left: none !important;
  border-right: none !important;
  border-top: none !important;
  transition: border 0.45s ease;
  -webkit-transition: border 0.45s ease;
}

.form-control:focus {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.form-control {
  transition: padding 0.45s;
  -webkit-transition: padding 0.45s;
}
.form-control:focus {
  padding-left: 0;
}

.input-success{
  border: 1px solid #e7e7e7;
  font-weight: 400;
  margin-bottom: 15px;
}
.input-success,
.input-error {
  border-radius: 0 !important;
  display: none;
  margin-bottom: 15px;
  margin-top: 15px;
}

.newsletter-success,
.newsletter-error {
  display: none;
  margin-bottom: 15px;
  margin-top: 15px;
}

.modal {
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  height: 100%;
  left: 0;
  overflow: auto;
  padding-top: 362px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.modal-content {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 0 !important;
  color: #373737;
  font-weight: 400;
  margin: auto;
  padding: 10px 0;
  width: 50%;
}

/*------------------------------------------------------------------
 * 9. Miscellaneous
 * -----------------------------------------------------------------*/

/* BUTTON */
 
.btn {
  background-image: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  margin-bottom: 0;
  padding: 10px 20px;
  text-align: center;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

.btn-theme {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.btn-theme:hover {
  background-color: #fff;
  color: #000;
}

button.btn {
  font-weight: 700;
}

/* MUSIC */

.music-wave {
  align-items: center;
  bottom: 5px;
  cursor: pointer;
  display: flex;
  height: 35px;
  justify-content: center;
  position: fixed;
  right: 5px;
  transition: all ease 0.3s;
  width: 35px;
  z-index: 10;
}

.music-wave .lines {
  align-items: flex-end;
  display: flex;
  height: 21px;
  padding-bottom: 1px;
  width: 16px;
}

.music-wave span {
  background: #e7e7e7;
  display: inline-flex;
  height: 5px;
  margin: 0 1px;
  width: 2px;
}

.audio-on .music-wave span:nth-child(1) {
  -moz-animation: musicline 2s 0.5s ease-out alternate infinite;
  -webkit-animation: musicline 2s 0.5s ease-out alternate infinite;
  animation: musicline 2s 0.5s ease-out alternate infinite;
}

.audio-on .music-wave span:nth-child(2) {
  -moz-animation: musicline 2s 1s ease-out alternate infinite;
  -webkit-animation: musicline 2s 1s ease-out alternate infinite;
  animation: musicline 2s 1s ease-out alternate infinite;
}

.audio-on .music-wave span:nth-child(3) {
  -moz-animation: musicline 2s 1.5s ease-out alternate infinite;
  -webkit-animation: musicline 2s 1.5s ease-out alternate infinite;
  animation: musicline 2s 1.5s ease-out alternate infinite;
}

.audio-on .music-wave span:nth-child(4) {
  -moz-animation: musicline 2s 0.25s ease-out alternate infinite;
  -webkit-animation: musicline 2s 0.25s ease-out alternate infinite;
  animation: musicline 2s 0.25s ease-out alternate infinite;
}

@-moz-keyframes musicline {
    0% {
        height: 5px
    }
    10% {
        height: 10px
    }
    20% {
        height: 5px
    }
    30% {
        height: 14px
    }
    40% {
        height: 18px
    }
    50% {
        height: 5px
    }
    60% {
        height: 16px
    }
    70% {
        height: 10px
    }
    80% {
        height: 12px
    }
    90% {
        height: 3px
    }
    100% {
        height: 18px
    }
}

@-webkit-keyframes musicline {
    0% {
        height: 5px
    }
    10% {
        height: 10px
    }
    20% {
        height: 5px
    }
    30% {
        height: 14px
    }
    40% {
        height: 18px
    }
    50% {
        height: 5px
    }
    60% {
        height: 16px
    }
    70% {
        height: 10px
    }
    80% {
        height: 12px
    }
    90% {
        height: 4px
    }
    100% {
        height: 18px
    }
}

@keyframes musicline {
    0% {
        height: 5px
    }
    10% {
        height: 10px
    }
    20% {
        height: 5px
    }
    30% {
        height: 14px
    }
    40% {
        height: 18px
    }
    50% {
        height: 5px
    }
    60% {
        height: 16px
    }
    70% {
        height: 10px
    }
    80% {
        height: 12px
    }
    90% {
        height: 4px
    }
    100% {
        height: 18px
    }
}

/* SEPARATOR */

.separator {
  background-color: #e7e7e7;
  border: 0.5px solid #e7e7e7;
  display: block;
  height: 3px;
  margin: 15px auto 15px;
  position: relative;
  width: 60px;
}

.separator:after {
  background: #6e6e6e;
  content: "";
  height: 3px;
  left: -1px;
  top: -1px;
  position: absolute;
  width: 30px;
}

/* SOCIAL */

.social {
  font-size: 14px;
  margin-top: 20px;
}

.social a {
  border: 1px solid #fff;
  display: inline-block;
  font-size: 1.1em;
  height: 30px;
  line-height: 28px;
  margin: 0 5px;
  padding: 0 0.3em;
  width: 30px;
}

.social a {
  border: 1px solid rgba(255,255,255,0.7);
  font-size: 12px;
  height: 26px;
  line-height: 25px;
  margin: 0 7px;
  width: 26px;
}

.credit {
	margin-top: 50px;
	margin-bottom: 50px;
}
.fcred {
	padding: 2px 7px 2px 7px;
    margin-right: 5px;
}
.ftr {
	margin-top: 150px;
}