/* ---------------------------------------- */
/* -- Basic setup -- */
/* ---------------------------------------- */

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

html,
body {
    background-color: #fff;
    color: #666;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ---------------------------------------- */
/* -- Header -- */
/* ---------------------------------------- */

header {
    
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(#000)), url(img/background-img.jpg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), #000), url(img/bkg-img.jpeg);
}

.background-text {
    position: absolute;
    width: 1140px;
    top: 50%;
    left: 15%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    padding: 5px;
}

.intro-text{
    color:white;
}
.home-buttons{
    margin-top:1em;
}

.logo {
    margin-top: 30px;
    height: 170px;
    width: auto;
    float: left;
}

/* Main navigation */
.main-nav {
    margin-top: 120px;
    float: right;
    list-style: none;
}

.main-nav li {
    margin-left: 45px;
    display: inline-block;
}

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

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

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

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

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

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

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

.sticky .logo {
    margin: 5px 0;
    height: 50px;
    width: auto;
    float: left;
}

/* ---------------------------------------- */
/* -- Reusable components -- */
/* ---------------------------------------- */

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

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* -- Headings -- */

h1,
h2,
h3 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 {
    margin-top: 0;
    margin-bottom: 60px;
    color: #fff;
    font-size: 250%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h2 {
    margin-bottom: 30px;
    font-size: 180%;
    word-spacing: 2px;    
    text-align: center;
    letter-spacing: 1px;    
}

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

h4 {
    font-weight: 300;
    font-size: 105%;
    margin-bottom: 6px;
}

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

/* -- Paragraphs -- */

.game-intro {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
}

.box p {
    font-size: 90%;
    line-height: 145%;
}

.annotations p {
    font-size: 70%;
    line-height: 145%;
    text-align: left;
    padding-top: 20px;
}
    
/* -- Icons -- */

.icon-big {
    font-size: 300%;
    display: block;
    color: #e67e22;
    margin-bottom: 10px;
}

/* -- Buttons -- */

.btn:link,
.btn:visited {
    margin-right: 25px;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300px;
    text-decoration: none;
    border-radius: 15px;
    color: #fff;
    -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
    transition: background-color 0.3s, border 0.3s, color 0.3s;
}

.btn-full:link,
.btn-full:visited {
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
}

.btn-ghost:link,
.btn-ghost:visited {
    border: 1px solid #e67e22;
    color: #e67e22;
}

.btn:hover,
.btn:active {
    background-color: #cf6d17;
}

.btn-full:hover,
.btn-full:active {
    background-color: #fff;
    border: 1px solid #fff;
    color: #cf6d17;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #cf6d17;
    color: #fff;
}

.btn-signup {
    margin-left: 50px;
    width: 230px;
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300px;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    color: #fff;
    -webkit-transition: background-color 0.3s, border 0.3s, color 0.3s;
    transition: background-color 0.3s, border 0.3s, color 0.3s;
}

.btn-signup:link,
.btn-signup:visited {
    background-color: #e67e22;
    border: 1px solid #e67e22;
    color: #fff;
}

.btn-signup:hover,
.btn-signup:active {
    background-color: #fff;
    border: 1px solid #e67e22;
    color: #cf6d17;
}

/* ---------------------------------------- */
/* -- Schedule -- */
/* ---------------------------------------- */

.section-schedule {
    background-color: #f4f4f4;
}

.schedule-box:first-child {
    text-align: center;
}

.schedule-box:last-child {
    margin-top: 100px;
}

.smashimage {
    width: 45%;
}

.timing {
    padding-left: 30px;
}
    
.timing i {
    font-size: 120%;
    color: #cf6d17;
    height: 30px;
    width: 30px;
    text-align: center;
    float: left;
}

.schedule-step {
    margin-bottom: 20px;
}

/* ---------------------------------------- */
/* -- Address -- */
/* ---------------------------------------- */

.venue {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.venue i {
    font-size: 200%;
    padding-top: 20px;
    padding-right: 20px;
    color: #cf6d17;
    float: left;
}

.venue h4 {
    padding-top: 20px;
    color: #666;
}

.venue a:link,
.venue a:visited {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

.venue a {
    padding-bottom: 8px;
    color: #666;
}

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

/* ---------------------------------------- */
/* -- Contact -- */
/* ---------------------------------------- */

.whatsapp h4 {
    padding-top: 20px;
    color: #666;
}

.whatsapp i {
    font-size: 180%;
    padding-top: 10px;
    padding-right: 10px;
    color: #cf6d17;
    float: left;
}

/* ---------------------------------------- */
/* -- Sign up -- */
/* ---------------------------------------- */

.section-signup {
    background-color: #fff;
}

.signup-box:first-child {
    text-align: start !important;
}

.signup-box:last-child {
    margin-top: 20px;
    padding-left: 3%;
}

.signup-step {
    margin-bottom: 15px;
}

.signup-addtocart {
    padding-left: 50px;
}

.signup-table {
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.signup-step:last-of-type {
    margin-bottom: 70px;
}

.signup-step div {
    margin-right: 8px;
    color: #cf6d17;
    border: 2px solid #cf6d17;
    display: inline-block;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    padding: 1px;
    float: left;
    margin-top: 0.6em;
}
.home-btn-link{
    margin-top:1em;
}

.signup-step p {
    padding: 15px;
}

.section-signup .annotations p {
    padding-left: 0px;
}

.section-signup a {
    color: #666;
    padding-bottom: 2px;
}

/*.section-signup a:link,*/
/*.section-signup a:visited {*/
/*    text-decoration: none;*/
/*    border-bottom: 2px solid transparent;*/
/*    -webkit-transition: border-bottom 0.3s;*/
/*    transition: border-bottom 0.3s;*/
/*}*/
.section-signup a:link,
.section-signup a:visited {
    text-decoration: none;
    border-bottom: 2px solid #e67e22;
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

.section-signup a:hover,
.section-signup a:active {
    border-bottom: 2px solid #e67e22;
}

/* ---------------------------------------- */
/* -- References -- */
/* ---------------------------------------- */

.section-reference {
    background-color: #f4f4f4;
}

.section-reference a {
    color: #666;
    padding-bottom: 5px;
}

.section-reference a:link,
.section-reference a:visited {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-bottom 0.3s;
    transition: border-bottom 0.3s;
}

.section-reference a:hover,
.section-reference a:active {
    border-bottom: 2px solid #e67e22;
}

.reference-link {
    padding-left: 30px;
    padding-bottom: 20px;
}

.reference-link i {
    font-size: 100%;
    color: #cf6d17;
    text-align: center;
    float: left;
    padding-right: 20px;
}

/* ---------------------------------------- */
/* -- Footer -- */
/* ---------------------------------------- */

footer {
    background-color: #333;
    padding: 30px;
    font-size: 90%;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-icons {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-icons li {
    display: inline-block;
    margin-right: 30px;
}

.footer-nav a:link,
.footer-nav a:visited,
.social-icons a:link,
.social-icons a:visited,
.footer-link a:link,
.footer-link a:visited {
    text-decoration: none;
    border: 0;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    color: #a0a0a0;
}

.footer-nav a:hover,
.footer-nav a:active,
.social-icons a:hover,
.social-icons a:active,
.footer-link a:hover,
.footer-link a:active {
    border: 0;
    color: #dedede;
}

.social-icons a:link,
.social-icons a:visited {
    font-size: 140%;
}

.ion-social-facebook,
.ion-social-whatsapp,
.ion-ios-email{
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.ion-social-facebook:hover {
    color: #3b5998;
}

.ion-social-whatsapp:hover {
    color: #4dc247;
}

.ion-ios-email:hover {
    color: #dd4b39;
}

.copyright {
    margin-top: 40px;
    color: #a0a0a0;
    text-align: center;
    font-size: 95%;
}

.credits {
    color: #a0a0a0;
    font-size: 95%;
}

/* ---------------------------------------- */
/* -- Animations -- */
/* ---------------------------------------- */

.js--wpanimate-1,
.js--wpanimate-2,
.js--wpanimate-3 {
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.js--wpanimate-1.animated,
.js--wpanimate-2.animated,
.js--wpanimate-3.animated {
    opacity: 1;
}
