/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: Landing Sumo - Theme 5
 * URL: http://LandingSumo.com
 * Version: 1.0
 */

/*	################################################################
	1. GENERAL STRUCTURES
################################################################# */

/* Import fonts */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);

* {
	margin: 0;
	padding: 0px;
    font-family: 'Lato', sans-serif;
}
body {
	background: #fff;
	margin: 0;
	color: #444;
    padding-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
	font-weight: 700;
}


p, ul, ol {
	padding: 0;
	margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	color: #666;
	margin-top: 10px;
}

html,
body {
	height: 100%;
}

.alignleft { float: left; }
.alignright { float: right; }
.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
	clear: both;
}
.centered {text-align: center}
.mt {margin-top: 50px;}
.mb {margin-bottom: 50px;}
.mtb {margin-top: 50px; margin-bottom: 50px;}
.ptb {padding-top: 80px; padding-bottom: 80px;}

.clear {
	clear: both;
	display: block;
	font-size: 0;
	height: 0;
	line-height: 0;
	width:100%;
}
::-moz-selection  {
	color: #fff;
	text-shadow:none;
	background:#2B2E31;
}
::selection {
	color: #fff;
	text-shadow:none;
	background:#2B2E31;
}
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
a {
	padding: 0;
	margin: 0;
	text-decoration: none;
	-webkit-transition: background-color .4s linear, color .4s linear;
	-moz-transition: background-color .4s linear, color .4s linear;
	-o-transition: background-color .4s linear, color .4s linear;
	-ms-transition: background-color .4s linear, color .4s linear;
	transition: background-color .4s linear, color .4s linear;
}
a:hover,
a:focus {
  text-decoration: none;
  color:#696E74;
}

/* BOOTSTRAP MODIFICATION */
.navbar-inverse .navbar-brand {
	color: white;
	font-weight: 900;
}

hr {
	border-width: 2px;
}

/* Helpers */

.theme { color: #7095be !important; }

.theme-bg { background-color: #7095be !important; }

.x2 { font-size: 30px; }

/* text small */
.ts {
	font-size: 15px;
}

/* BUTTONS */

.btn-transparent {
	color: #444;
	border: 3px solid #444;
	background: transparent;
	border-radius: 0px;
}

.btn-transparent:hover {
	color: white;
	background: #7095be;
	border-color: #7095be;
}

.btn-white {
	color: #fff;
	border: 3px solid #fff;
	background: transparent;
	border-radius: 0px;
}

.btn-white:hover {
	color: #2f2f2f;
	background: #fff;
}

/* HEADER SECTION */

#h {
	background: url(../img/header-bg.jpg) no-repeat center top;
	padding-top: 20px;
	text-align:center;
	background-attachment: relative;
	background-position: center center;
	min-height: 200px;
	width: 100%;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#h h1 {
	font-weight: 300;
	color: white;
	text-align: center;
	text-transform: uppercase;
}

#h hr {
	width: 40%;
	border: 2px solid white;
	margin-bottom: 10px;
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}

.header-text {
	position: relative;
}

.header-btn {
	position: relative;
	margin-top: 15px;
	margin-bottom: 15px;
}

body.has-price-promo .price-promo {
	display: block;
}

.price-promo {
	display: none;
	color: #5cb85c;
	background: white;
	position: absolute;
	text-shadow: none;
	top: -38px;
	right: -55px;
	width: 80px;
	height: 80px;
	transform: rotate(30deg);
	text-align: center;
	border-radius: 50%;
	padding-top: 12px;
	transition: all 0.25s;
}

.price-promo::after {
	content: ' ';
	width: 84px;
	height: 84px;
	border: 3px dashed white;
	position: absolute;
	top: -2px;
	left: -2px;
	border-radius: 50%;
	transition: all 0.25s;
}

.price-promo-label-primary {
	display: block;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.price-promo-label-secondary { display: none; }
.price-promo-price {
	display: block;
	font-weight: bold;
	color: #333;
	transition: all 0.25s;
}

.header-btn:hover .price-promo { background: #333; }
.header-btn:hover .price-promo::after {
	border-color: #333;
	-webkit-animation: spin 3s infinite linear;
	-moz-animation: spin 3s infinite linear;
	-ms-animation: spin 3s infinite linear;
	animation: spin 3s infinite linear;
}
.header-btn:hover .price-promo-price { color: white; }

.promo-header {
	padding-top: 40px;
	background-attachment: relative;
	background-position: center center;
	min-height: 200px;
	width: 100%;

  -webkit-background-size: 100%;
  -moz-background-size: 100%;
  -o-background-size: 100%;
  background-size: 100%;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  background-repeat: no-repeat;
  background-position: center top;
}

/* switch promo header BGs based on page ID */
#promo-page-boardgame .promo-header { background-image: url(../../boardgame/img/sm-boardgame.jpg); }
#promo-page-catan .promo-header { background-image: url(../../catan/img/sm-catan.jpg); }
#promo-page-spike .promo-header { background-image: url(../../spike/img/sm-spike.jpg); }
#promo-page-spellcaster .promo-header { background-image: url(../../spellcaster/img/sm-spellcaster.jpg); }

.promo-header.promo-header-small {
	min-height: none;
	padding: 40px 0;
}

.promo-header.promo-header-small .promo-header-text {
	padding-top: 0;
}

.promo-header-text {
	text-shadow: 0 1px  2px rgba(0,0,0,0.7);
	text-align: center;
	padding-top: 100px;
}

.promo-header-text h1 {
	font-size: 60px;
	color: white;
	line-height: 1.1;
	margin-bottom: 20px;
	font-weight: 400;
}

.promo-header-text p {
	color: white;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 20px;
}

.btn-xl {
	padding: 16px 24px;
	font-size: 24px;
	line-height: 1.33;
	border-radius: 6px;
}

.btn-icon {
	opacity: 0.75;
	margin-left: 6px;
}



/* HEADER SECTION */

#smSpellcaster {
	background: url(../img/sm-spellcaster.jpg) no-repeat center top;
	padding-top: 20px;
	text-align:center;
	background-attachment: relative;
	background-position: center center;
	min-height: 200px;
	width: 100%;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}













/* INFO SECTION */
#info {
	background: #282a2d;
	padding-top: 80px;
	padding-bottom: 80px;
}

#info p {
	color: #ccc;
}

#info i {
	color: #ef8452;
	margin-right: 8px;
}

/* TESTIMONIALS */
.testimonials {
	min-height: 400px;
	margin-top: 15px;
	padding-bottom: 30px;
	text-align: center;
}

.testimonials h2 {
	margin-bottom: 50px;
}

.testimonials p {
	color: #8c9494;
	font-style: italic;
}










.sponsor img {
	max-width: 240px;
	max-height: 160px;
	vertical-align: middle;
}

/* hide footer promos BGs based on page ID */
#promo-page-spike .footer-promo-spike { display: none; }
#promo-page-catan .footer-promo-catan { display: none; }
#promo-page-spellcaster .footer-promo-spellcaster { display: none; }
#promo-page-boardgame .footer-promo-chess { display: none; }
#promo-page-boardgame .footer-promo-casino { display: none; }





/* GREY SECTION */
#g {
	padding-bottom: 20px;
	padding-top: 30px;
	background: #f2f2f2;
}









/* CTA SECTION */
#cta {
	background: url(../img/cta.jpg) no-repeat center top;
	background-color: #f2f2f2;
	padding-top: 150px;
	text-align:center;
	background-attachment: relative;
	background-position: center center;
	min-height: 600px;
	width: 100%;
	margin-top: 50px;
	color: white;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#cta h1 {
	color: white;
	font-size: 60px;
	font-weight: 100;
}












/* CTA2 SECTION */
#cta2 {

	background-color: #000000;
	padding-top: 20px;
	text-align:center;
	background-attachment: relative;
	background-position: center center;
	min-height: 200px;
	width: 100%;
	margin-top: 50px;
	color: white;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}






























/* FORM CONFIGURATION */

input {
	font-size: 16px;
	min-height: 40px;
	border-radius: 2px;
	line-height: 20px;
	padding: 16px 10px 18px;
	border: 1px solid #b9b9af;
	margin-bottom: 10px;
	background-color: #fff;
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

.subscribe-input {
	float: left;
	width: 60%;
	text-align: left;
	margin-right: 2px;
}

.subscribe-submit {
	right: 0;
	padding: 15px 20px 17px;
}




.promo-section {
	background: #333;
	padding-top: 40px;
	padding-bottom: 60px;
	text-align:center;
	width: 100%;
}

.promo-section h2 {
	color: white;
	font-weight: 600;
	margin-bottom: 30px;
}

.promo-section p {
	color: white;
}

.promo-section-white {
	background: white;
}

.promo-section-white h2,
.promo-section-white p {
	color: #333;
}

.promo-section-body-text {
	text-align: left;
}

.promo-sound-samples h4 {
  font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 20px;
	line-height: 30px;
	color: #666;
	font-style: italic;
}

/* 'See it in Action section' */
.promo-action-video {
}

.promo-action-video h1 {
}

.promo-action-video h4 {
	color: white;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
}










/* Pre Footer Image */
#pfs {
	background: url(../img/header-spell2.jpg) no-repeat center top;
	padding-top: 70px;
	text-align:center;
	background-attachment: relative;
	background-position: center center;
   	min-height: 600px;
	width: 100%;

    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;


}

#pfs h1 {
	color: white;
	font-size: 60px;
	font-weight: 900;
}

#pfs h4 {
	color: white;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
}















/* FOOTER SECTION */


