/*

Get Ready Template

http://www.templatemo.com/tm-521-get-ready

*/
:root {
  --primary-color: #00afaf;
  --secondary-color: #004e4e;
  --text-color: #ffffff;
  --background-color: #101010;
  --link-color: aqua;
  --hover-color: #004e4e;
}

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400");

body {
  margin: 0;
  -webkit-perspective: 1000;
  font-family: "Poppins", sans-serif;
  background: var(--background-color);
  overflow: hidden;
  width: 100vw;
}

html,
body {
  overflow: hidden !important;
  width: 100vw;
}

/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: inherit;
}

h1 {
  color: var(--primary-color);
  font-size: 2em;
}

h2 {
  color: var(--secondary-color);
  font-size: 2em;
}

p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}

/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text-color);
  text-decoration: none !important;
}

a,
input,
button,
.form-control {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: var(--hover-color);
  outline: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: var(--background-color);
}

.overlay {
  background: linear-gradient(
    to bottom,
    var(--secondary-color),
    var(--background-color)
  );
  opacity: 0.9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-line {
  height: 300vh;
  border-right: 1px solid rgba(255, 255, 255, 0.02);
}

.google-map iframe {
  border: 0;
  margin-top: 20px;
}

.subscribe-form {
  position: relative;
}

.subscribe-form .form-control {
  background: var(--primary-color);
  box-shadow: none;
  border: 0;
  border-radius: 50px;
  width: 340px;
  height: 45px;
  padding: 6px 30px;
}

.subscribe-form button[type="submit"] {
  background: transparent;
  border: 0;
  outline: none;
}

.subscribe-form .fa {
  cursor: pointer;
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--primary-color);
  font-size: 20px;
}

/*---------------------------------------
       PRE LOADER              
  -----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--background-color);
}

.loading-text {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--primary-color);
}

.loading-text h1 {
  font-size: 2em;
  margin: 0;
  color: var(--primary-color);
}

.loading-text p {
  font-size: 1em;
  margin: 10px 0 0;
  color: var(--secondary-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 3px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  border-top-color: var(--secondary-color);
  animation: spinner 0.9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
      MENU              
  -----------------------------------------*/

.menu,
.menu-bg,
.menu-burger {
  position: fixed;
  z-index: 222;
  width: 50px;
  height: 50px;
  line-height: 30px;
  font-size: 25px;
  text-align: center;
  border-radius: 100%;
  right: 25px;
  top: 25px;
}

.menu-bg {
  background: var(--background-color);
  pointer-events: none;
  transition: 0.3s;
  right: 50px;
  top: 50px;
  transform: translate3d(50%, -50%, 0);
  transform-origin: center center;
}

.menu-bg.fs {
  transform: translate3d(50%, -50%, 0);
  width: 500vw;
  height: 500vw;
}

.menu-burger {
  color: var(--primary-color);
  padding-top: 11px;
  -webkit-user-select: none;
  cursor: pointer;
  transition: 0.4s;
  transform-origin: center;
  z-index: 9999;
}

.menu-burger.fs {
  transform: rotate(-180deg) translateY(5px);
}

.menu-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s;
  margin-top: 50px;
  transform: translateY(-200%);
  pointer-events: none;
}

.menu-items ul.menu {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  top: 10px;
}

.menu-items ul.menu li {
  display: block;
  list-style: none;
  transition: 1s;
  opacity: 0;
  margin: 5px 0;
}

.menu-items ul.menu li a {
  color: var(--link-color);
  font-size: 18px;
  position: relative;
}

.menu-items ul.menu li a:after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 50px;
  position: absolute;
  bottom: 13px;
  transition: 0.5s;
  margin: 0 auto;
  display: block;
  right: 0;
  left: 0;
}

.menu-items ul.menu li a:hover:after {
  content: "";
  background: var(--link-color);
  width: 100%;
}

.menu-items.fs {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.menu-items.fs ul li {
  opacity: 1;
}

address p {
  color: var(--text-color);
}

/*---------------------------------------
      HOME          
  -----------------------------------------*/

#home {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
}

#home .container {
  width: 100%;
}

.home-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
}

.countdown {
  text-align: center;
  margin: 50px 0;
  padding: 0;
}

.countdown li {
  color: var(--text-color);
  list-style: none;
  display: inline-block;
  margin: 0 20px;
}

.countdown span {
  font-size: 25px;
}

.countdown h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 10px 0;
}

/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 30px 0 0 0;
  text-align: center;
}

.social-icon .line {
  background: var(--secondary-color);
  width: 50px;
  height: 2px;
  margin-right: 10px;
  position: relative;
  bottom: 5px;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  border-radius: 50px;
  color: var(--link-color);
  font-size: 15px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  text-align: center;
  position: relative;
  margin: 5px 5px 5px 0;
}

.social-icon li a:hover {
  background: var(--hover-color);
  color: var(--link-color);
}

/*---------------------------------------
     FOOTER               
  -----------------------------------------*/

footer {
  color: var(--text-color);
  text-align: center;
  padding: 30px 10px 20px 10px;
  font-size: 15px;
  letter-spacing: 1px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1000;
}

footer a {
  color: var(--link-color);
  text-decoration: underline;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--primary-color);
}

footer .footer-social {
  margin: 15px 0 10px 0;
}

footer .footer-social a {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  color: var(--link-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: rgba(0, 175, 175, 0.08);
  transition: background 0.3s, color 0.3s;
}

footer .footer-social a:hover {
  background: var(--primary-color);
  color: #fff;
}

/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (max-width: 991px) {
  .home-info {
    padding: 0 2em;
  }
  .menu-items {
    margin-top: 80px;
  }
  .grid-line {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .home-info {
    padding: 0 1em;
  }
  .logo img {
    max-width: 180px;
    max-height: 180px;
  }
  .countdown li {
    margin: 0 10px;
    font-size: 18px;
  }
  footer {
    font-size: 13px;
    padding: 20px 5px 15px 5px;
  }
  .footer-social a {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .home-info {
    padding: 0 0.5em;
  }
  .logo img {
    max-width: 120px;
    max-height: 120px;
  }
  h1,
  h2 {
    font-size: 1.2em;
  }
  .countdown li {
    margin: 0 5px;
    font-size: 14px;
  }
  footer {
    font-size: 11px;
    padding: 12px 2px 10px 2px;
  }
  .footer-social a {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 13px;
  }
}
