/*
    Name: Mountain
    Description: Responsive Coming Soon (Demo Page)
    Author: MountainTheme

    TABLE OF CONTENTS
    ---------------------------
     1. General
     2. Header
     3. Preview
     4. Responsive CSS

*/


/* ================================= */
/* :::::::::: 1. General ::::::::::: */
/* ================================= */


html, body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

.backstretch:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: repeat;
  z-index: 1;
}

.bg {
  background-color: #FAFBFF;
  padding: 120px 0 0 0;
}

.no-bg {
  background-color: #FFF;
  padding: 120px 0 0 0;
}

.page-loader {
  background: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
}

.loader-icon {
    top: 50%;
    left: 50%;
    right: 0;
    position: absolute;
    margin: -20px 0 0 -20px;
    bottom: 0;
}

/* ================================= */
/* ::::::::::: 2. Header ::::::::::: */
/* ================================= */

header {
   width: 100%;
   height: 650px;
   text-align: center;
}

header  .logo {
  padding-top: 140px;
}

header h3 {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 29px;
  padding-top: 5px;
  font-family: 'Iceberg', sans-serif;
}

header p {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
}

header p i.fa {
  font-size: 15px;
  padding-left: 5px;
}

header a.buy-button {
    border: 2px solid  #16b6ea;
    color: #fff;
    width: 9%;
    word-spacing: 1px;
    padding: 14px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

header a.buy-button:hover {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.42);
    color: #fff;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

/* ================================= */
/* :::::::::: 3. Preview ::::::::::: */
/* ================================= */

.preview {
  text-align: center;

}

.preview ul {
  margin-bottom: 140px;
  padding: 0;
}

ul h3 {
  font-family: "Iceberg", sans-serif;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 1.4em;
}

ul h3:after {
  content: " ";
  border: solid 2px #16b6ea;
  display: block;
  width: 25px;
  margin: 16px auto;
}

ul li {
  list-style: none;
  display: inline-block;
  transition: all 0.28s ease-in-out;
  -moz-transition: all 0.28s ease-in-out;
  -webkit-transition: all 0.28s ease-in-out;
  -o-transition: all 0.28s ease-in-out;
}

ul li a img {
  width: 360px;
  margin-bottom: 20px;
}

ul li h2 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: -30px;
  font-family: "Iceberg", sans-serif;
  text-transform: uppercase;
}

ul li span {
    font-size: 13px;
    color: #000;
    margin-top: -5px;
    display: block;
    font-family: "Open Sans", sans-serif;
}

ul li:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: all 0.28s ease-in-out;
  -moz-transition: all 0.28s ease-in-out;
  -webkit-transition: all 0.28s ease-in-out;
  -o-transition: all 0.28s ease-in-out;
}


/* ================================= */
/* ::::::: 4. Responsive CSS ::::::: */
/* ================================= */

@media only screen and  (max-width: 1200px) { 

ul li {
  margin-bottom: 30px;
}

}

@media only screen and  (max-width: 667px) {

ul li a img {
  width: 100%;
}

.bg, .no-bg {
  padding: 60px 0 0 0;
}

}