
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Common Classes
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1170px; /* standard is 960px */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

.column img, .columns img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }
body {
  font-size: 1.8em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 600;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #000;
  letter-spacing: .75px;
}

#enter-button {
  position: absolute;
  z-index: 999;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
}

   .logo img {
        width: 528px;
        height: 46px;
    }

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 {
  font-family: "Playfair Display", serif; 
  font-size: 3.6rem;
  font-style: italic;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
  color: white;
}

h2 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 400;
  color: #848484;
  font-size: 1.5rem; 
  line-height: 1.6;
  letter-spacing: .5rem;
}

.intro-quote {
    padding-top: 10%;
    padding-bottom: 4%;
}

.vertical-center {
  margin: 0;
  position: relative;
  top: 45%;
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
}

/* Larger than phablet */
@media screen and (max-width: 550px) {
  h1 { font-size: 2.2rem;
       line-height: 1.3;
    }
  h2 { 
      font-size: 1.2rem; 
    }
}

@media screen and (max-width: 400px) {
	h1 {
     font-size: 2.2rem !important;
    }  
}

@media screen and (max-width: 320px) {
	h1 {
     font-size: 1.75rem !important;
    }
    
    .intro-quote {
    padding-top: 20%;
    padding-bottom: 6%;
    }
    
    .vertical-center {
    margin: 0;
    position: relative;
    top: 40% !important;
    -ms-transform: translateY(-40%) !important;
    transform: translateY(-40%) !important;
    }
}

@media screen and (min-width: 800px) and (max-height: 600px) {

    h1 {
     font-size: 2.8rem !important;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    .logo img {
        width: 344px !important;
        height: 30px !important;
    }
}


@media screen and (max-width: 800px) and (max-height: 420px) {

    h1 {
     font-size: 2.4rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.2rem;
        line-height: 1.2 !important;
    }
    .intro-quote {
        padding-top: 4% !important;
        padding-bottom: 2% !important;
    }
    
    
    
    .logo img {
        width: 275px;
        height: 24px;
    }
    
    input[type="button"] {
        height: 30px !important;
        padding: 0 20px !important;
        line-height: 1.1 !important;
        font-size: 1.1rem !important;
        font-weight: 600;
        letter-spacing: .5rem;
        border-radius: 15px !important;
        border: 1px solid #000;
    }
    
}






/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 40px;
  padding: 0 30px;
  color: white;
  text-align: center;
  line-height: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: .5rem;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 20px;
  background-color: #2D2D2D;
  border: 2px solid #000;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #000;
  border-color: #fff;
  background-color: #fff;
  outline: 0; 
	-webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;}
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }


/* Common Classes
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.block {
    display: block; }
.hidden {
    display: none; }
.clear {
    clear: both; }
.left {
    float: left; }
.right {
    float: right; }
.line-height {
    line-height: 0; }
.clear-right {
    clear: right; }
.clear-left {
    clear: left; }
.center-relative {
    margin-left: auto;
    margin-right: auto; }
.center-absolute {
    left: 50%; }
.center-text {
    text-align: center !important; }
.text-left {
    text-align: left; }
.text-right {
    text-align: right; }
.absolute {
    position: absolute; }
.fixed {
    position: fixed; }
.relative {
    position: relative; }
.aligncenter {
    display: block;
    margin: 5px auto 5px auto; }
.margin-0 {
    margin: 0 !important;
    line-height: 0; }
.top-0 {
    margin-top: 0 !important; }
.top-5 {
    margin-top: 5px !important;	}
.top-10 {
    margin-top: 10px; }
.top-15 {
    margin-top: 15px; }
.top-20 {
    margin-top: 20px; }
.top-25 {
    margin-top: 25px; }
.top-30 {
    margin-top: 30px; }
.top-50 {
    margin-top: 50px; }
.top-60 {
    margin-top: 60px; }
.top-70 {
    margin-top: 70px; }
.top-75 {
    margin-top: 75px; }
.top-80 {
    margin-top: 80px; }
.top-100 {
    margin-top: 100px; }
.top-105 {
    margin-top: 105px; }
.top-120 {
    margin-top: 120px; }
.top-150 {
    margin-top: 150px; }
.top-200 {
    margin-top: 200px; }
.top-negative-30 {
    margin-top: -30px; }
.left-35 {
    margin-left:35px; }
.right-35 {
    margin-right:35px; }
.bottom-0 {
    margin-bottom: 0 !important; }
.bottom-10 { 
    margin-bottom: 10px !important; }
.bottom-20 {
    margin-bottom: 20px !important; }
.bottom-25 {
    margin-bottom: 25px !important; }
.bottom-30 {
    margin-bottom: 30px !important; }
.bottom-50 {
    margin-bottom: 50px !important; }
.bottom-100 {
    margin-bottom: 100px !important; }
.bottom-150 {
    margin-bottom: 150px !important; }
.bottom-200 {
    margin-bottom: 200px !important; }




.valign-middle {
	display: inline-flex !important;
	vertical-align: middle !important;
}
.valign-bottom {
	display: inline-block !important;
	vertical-align: bottom !important;
}
.valign-top {
	display: inline-block !important;
	vertical-align: top !important;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */




/* Larger than phablet (also point when grid becomes active) */
@media screen and (min-width: 550px) {}

/* Larger than tablet */
@media screen and (min-width: 750px) {}

/* Larger than desktop */
@media screen and (min-width: 1000px) {}

/* Larger than Desktop HD */
@media screen and (min-width: 1200px) {}




/* Site Specific
-------------------------------------------------------------------- */

/*Needed for page scroll functionality*/
.container section.panel { 
	height: 100vh; 
	margin: auto;
}



