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

@import url('https://fonts.googleapis.com/css?family=Open+Sans|Oswald:300,400,700');

html {
  font-size: 100%;
}

body {
  color: #333;
  font-family:  Arial, Helvetica, Verdana, sans-serif;
  font-size: 1em;
}


a:hover {
  text-decoration: underline;
}

.pageWrap {
    width: 100%;
    margin: auto;
    padding-top: 100px;
    text-align: center;  
}

/* -------------------------------------------------------------------------- */
/* -----| CONTENT |---------------------------------------------------------- */
/* -------------------------------------------------------------------------- */

h1 {
    font-size: 2em;
    letter-spacing: 1px;
    margin: 20px 0;
}

h2 {
    background-color: #555;
    color: #FFF;
    letter-spacing: 1px;
    margin: 20px 0;
    padding: 5px;
}

p {
    line-height: 1.5em;
    margin: 20px 0;
    text-align: center;
}


/* -------------------------------------------------------------------------- */
/* -----| MISCELLANEOUS |---------------------------------------------------- */
/* -------------------------------------------------------------------------- */

#cboxCurrent {
    display: none !important;
}

/* --- FLOATS --- */

.floatLeft {
	float: left;
	width: auto;
}

.floatRight {
	float: right;
	width: auto;
}

/* --- TEXT ALIGNMENT --- */

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}


/* ORIGINAL CSS CONTENT */

.gcontainer{
    margin: 0 auto;   
    display: inline-block;    
}

.gallery{
  margin: 0 auto;   
  display: inline-block;    
  align-content: center;
  text-align: center;
}

.gcontainer .gallery a img {
  float: none;
  width: 24%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}

.gcontainer .gallery a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

.clear {
  clear: both;
  float: none;
  width: 100%;
}


/* HEADER CONTENT */

html {
  font-size:100%; // normally 16px
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  text-align: center;
  font-family: "Oswald", sans;
  font-size: 4rem;
  font-weight: normal;
  line-height: 3.5rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px; // Smaller headers look better with spacing
}

.hcontainer {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  display: flex;
  padding-bottom: 200px;
  justify-content: flex-end;
  align-items: flex-end;
  /*background: url(https://images.unsplash.com/photo-1456305951335-bb8134aeab8a);*/
  /*background: url(https://static1.squarespace.com/static/5924bef64402435aea7f4008/t/59440d3ad1758e4f0c8cca89/1497552131766/?format=800w);*/
  background: url(http://www.tecnomedia.net/images/4635007364HD2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.item {
  /* Padding is used for smaller screens */
  padding: 0 30px 0 30px;
  text-align: center;
}


.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;  
  display: inline-block;
  line-height: 1.25rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  border-radius: .25rem;
  transition: all .2s ease-in-out;
  
  &.btn-primary {
    color: #fff;
    background-color: #000;
    border-color: #666;

    &:hover {
      color: #fff;
      background-color: #333;
      border-color: #666;
    }  
  }  
}



// .btn-primary:hover {
//   color: #fff;
//   background-color: #333;
//   border-color: #666;
// }


// Extra small devices (portrait phones, less than 576px)
// No media query since this is the default

// Small devices (landscape phones, 576px and up)
// @media (min-width: 576px) {
 
// }

// Medium devices (tablets, 768px and up)
// @media (min-width: 768px) {
  
// }

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
  .item {
    width:80%;
  } 
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
  .item {
    width:60%;
  }
}