/*--------------------------------------------------*/
/* BASIC SETUP */
/*--------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-color: #f2f1f1;
    color: #555;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    text-align: center;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*--------------------------------------------------*/
/* REUSABLE COMPONENTS */
/*--------------------------------------------------*/

.row {
    max-width: 1140px;
    margin: 0 auto;
}

section {
    padding: 80px 0;
}

.gallery {
    padding: 1%;
}


/*---------  HEADINGS -----------*/

h1,
h2,
h3, 
h4 {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    word-spacing: 2px;
    font-weight: 100;
}

h1 {
    color: #fff;
    letter-spacing: 2px;
    font-size: 250%;
    text-align: left;
}

h2 {
    font-size: 180%;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    background-color: #e67e22;
    content: " ";
    width: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

h3 {
    font-size: 110%;
    margin-bottom: 15px;
}

h4 {
    float: left;
    padding-top: 18px;
}

/*---------  PARAGRAPHS -----------*/

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

/*---------  GENERIC LINKS -----------*/
a:link,
a:visited {
    text-decoration: none;
    color: #e67e22;
    padding-bottom: 1px;
    border-bottom: 1px solid #e67e22;
    -webkit-transition: border-bottom 0.2s, color 0.2s;
    transition: border-bottom 0.2s, color 0.2s;
}

a:hover,
a:active {
    color: #555;
    border-bottom: 1px solid transparent;
}

/*--------------------------------------------------*/
/* HEADER */
/*--------------------------------------------------*/

header {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(img/entry-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(img/entry-min.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    align-content: center;
    padding: 0px;
}

.hero-text-box {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*---------  MAIN NAV -----------*/
.main-nav {
    float: right;
    list-style: none;
    margin-top: 55px;
}

.main-nav li {
    display: inline-block;
    margin-left: 40px;
    
}
.nav-title {
    display: none;
}

.main-nav li a:link, 
.main-nav li a:visited {
    padding: 6px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.main-nav li a:hover, 
.main-nav li a:active {
    border-bottom: 2px solid #e67e22; 
}

/*---------  MOBILE NAV -----------*/
.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/*---------  STICKY NAV -----------*/
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 2px 2px #efefef;
    box-shadow: 0 2px 2px #efefef;
    z-index: 9999;
}

.sticky .main-nav {
    margin-top: 18px;
    margin-bottom: 18px;
}

.sticky .main-nav li a:link, 
.sticky .main-nav li a:visited {
    padding: 16px 0;
    color: #555;
    text-transform: capitalize;
}

.sticky .nav-title {
    display: block;
}

/*--------------------------------------------------*/
/* ABOUT */
/*--------------------------------------------------*/

/*--------------------------------------------------*/
/* ABOUT HOST */
/*--------------------------------------------------*/

.about-host {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))),  url(img/pool-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url(img/pool-min.jpg);
    background-size: cover;
    color: #fff;
}

/*--------------------------------------------------*/
/* SPACES */
/*--------------------------------------------------*/

.spaces-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.column {
    margin: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0px;
}

.gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.gallery p {
    font-size: 90%;
    width: 80%;
    margin-left: 10%;
}


/*--------------------------------------------------*/
/* SLIDESHOW */
/*--------------------------------------------------*/

.slideshow {
    background-color: #fff;
   
}
.slideshow-container {
    width: 80%;
    position: relative;
    margin-right: 10%;
    margin-left: auto;
}

.spacesSlides {
    display: none;
    width: 100%;
    margin: 0;
}

.spacesSlides img {
    width: 100%;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px 16px;
  color: white;
  font-weight: lighter;
  font-size: 18px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    border-radius: 50%;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.4);
    color: white;
}

/*
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
*/

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
    padding-top: 0;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/*--------------------------------------------------*/
/* APPLY */
/*--------------------------------------------------*/
.apply {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))),  url(img/Int07-min.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),  url(img/Int07-min.jpg);
    background-size: cover;
    color: #fff;
}
/*--------------------------------------------------*/
/* CONTACT */
/*--------------------------------------------------*/

/*--------------------------------------------------*/
/* FOOTER */
/*--------------------------------------------------*/
footer {
    background-color: #f2f1f1;
    padding: 20px;
    font-size: 70%;
}
footer p {
    color: #b2b2b2;
    text-align: center;
}
footer a:link,
a:visited,
a:hover,
a:active
{
    text-decoration: none;
    color: #777;
    padding-bottom: 1px;
    border-bottom: none;
}