/*
Theme Name: Twoseventwo Theme
Theme URI: http://wordpress.org
Author: Twoseventwo
Author URI: http://twoseventwo.us
Description: A theme for twoseventwo clients, built on the Bootstrap framework.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive
Text Domain: twoseventwo

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Basic Styles */

* {
	padding:0px;
	margin:0px;
}

html, body {
	margin:0px;
	padding:0px;
}

body {
	height:100%;
	font-family: 'Josefin Sans', sans-serif;
	color:#252525;
	font-size:1em;
}

a {
	cursor:pointer;
	word-wrap: break-word;
}

/* Icons and Fonts */

@font-face {
	font-family: 'icomoon';
	src:url('fonts/icomoon.eot?coof0a');
	src:url('fonts/icomoon.eot?coof0a#iefix') format('embedded-opentype'),
		url('fonts/icomoon.woff2?coof0a') format('woff2'),
		url('fonts/icomoon.ttf?coof0a') format('truetype'),
		url('fonts/icomoon.woff?coof0a') format('woff'),
		url('fonts/icomoon.svg?coof0a#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-OLogo:before {
	content: "\e900";
}
.icon-facebook3:before {
	content: "\e901";
}
.icon-instagram:before {
	content: "\e902";
}
.icon-twitter3:before {
	content: "\e903";
}
.icon-youtube:before {
	content: "\e904";
}
.icon-apple:before {
	content: "\e905";
}

.icon-circle-cross:before {
    content: "\e043";
}

a .icon-OLogo {
	text-decoration: none;
	color:#A1D8CF;
}

a:hover .icon-OLogo {
	text-decoration: none;
	color:#A1D8CF;
}

.icon-OLogo {
	font-size:60px;
	color:#A1D8CF;
}

/* Header */

header {
	background-color:#506362;
	padding-top:100px;
}

.hero-img {
	background:url(assets/header_bkg.jpg) #506362 no-repeat center top;
	height:300px;
	width:100%;
	background-size:cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	margin-bottom:50px;
}

/* Nav */

.cbp-af-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 100;
	height: 150px;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.cbp-af-header .cbp-af-inner {
	width: 90%;
	max-width: 100em;
	margin: 0 auto;
	padding: 0 1.875em;
}

.cbp-af-header h1,
.cbp-af-header nav {
	display: inline-block;
	position: relative;
}

 /* We just have one-lined elements, so we'll center the elements with the line-height set to the height of the header */
.cbp-af-header h1,
.cbp-af-header nav a {
	line-height: 150px;
}

.cbp-af-header h1 {
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 4px;
	font-size: 3em;
	margin: 0;
	float: left;
}

.cbp-af-header nav {
	float: right;
}

.cbp-af-header nav a span {
	color: #fff;
	font-weight: 400;
	margin: 0 0 0 10px;
	font-size: 1.6em;
	padding:5px;
	text-transform: uppercase;
}

.cbp-af-header nav a:hover  {
	text-decoration:none;
}

.cbp-af-header nav .dropdown a:hover {
	color: #fff;
	background-color:#de007b;
	text-decoration: none;
}

/* Transitions and class for reduced height */
.cbp-af-header h1,
.cbp-af-header nav a,
.cbp-af-header .dropdown {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.cbp-af-header.cbp-af-header-shrink {
	height: 90px;
	background:#fff;
}

.cbp-af-header.cbp-af-header-shrink h1,
.cbp-af-header.cbp-af-header-shrink nav a,
.cbp-af-header.cbp-af-header-shrink .dropbtn,
.cbp-af-header.cbp-af-header-shrink .dropdown,
.cbp-af-header.cbp-af-header-shrink nav a span {
	line-height: 90px;
	color:#252525;
}

.cbp-af-header.cbp-af-header-shrink nav a span {
	vertical-align:baseline;
}

.cbp-af-header.cbp-af-header-shrink nav a:hover {
	color:#fff;
}

.cbp-af-header.cbp-af-header-shrink h1 {
	font-size: 2em;
}

.cbp-af-header nav a, .cbp-af-header.cbp-af-header-shrink nav dropbtn {
	color:#252525;
}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
	background: none;
    color: white;
    padding-left: 20px;
	font-size:1.5em;
    border: none;
    cursor: pointer;
}

.dropbtn:focus {
	outline-width:0px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	line-height:150px;
	background-color:none;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	right:-10px;
	top:85px;
	height:auto;
	text-align:right;
	margin-left:0px;
}

/* Links inside the dropdown */
.cbp-af-header nav .dropdown-content a {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
	line-height:20px;
	margin-left:0px;
	font-size:1.5em;
	text-transform:uppercase;
}

.dropdown-content a:hover {background-color: #f1f1f1}


.show {display:block;}

/* Example Media Queries */
@media screen and (max-width: 55em) {

	.cbp-af-header .cbp-af-inner {
		width: 100%;
	}

	.cbp-af-header h1,
	.cbp-af-header nav {
		display: block;
		margin: 0 auto;
		text-align: center;
		float: none;
	}

	.cbp-af-header h1 {
		line-height: 75px;
	}


	.cbp-af-header nav a {
		margin: 0;
		line-height:25px;
	}

	.cbp-af-header nav a span {
		padding:0;
	}


	.cbp-af-header.cbp-af-header-shrink h1,
.cbp-af-header.cbp-af-header-shrink nav a,
.cbp-af-header.cbp-af-header-shrink .dropbtn,
.cbp-af-header.cbp-af-header-shrink .dropdown,
.cbp-af-header.cbp-af-header-shrink nav a span  {
		line-height:normal;
	}
	

	.dropdown {
		line-height:25px;
	}

	.dropdown-content {
		top:30px;
	}
	.cbp-af-header.cbp-af-header-shrink h1,
	.cbp-af-header.cbp-af-header-shrink nav a {
		line-height: 45px;
	}

	.cbp-af-header.cbp-af-header-shrink h1 {
		font-size: 2em;
	}

	.cbp-af-header.cbp-af-header-shrink nav a {
		font-size: 1em;
	}
}

@media screen and (max-width: 32.25em) {
	.cbp-af-header nav a {
		font-size: 1.4em;
	}
}

@media screen and (max-width: 24em) {
	.cbp-af-header nav a,
	.cbp-af-header.cbp-af-header-shrink nav a {
		line-height: 2;
	}
}

/* Headings */

h1 {

}

h2 {
	font-size:2em;
	text-transform:uppercase;
	font-weight:bold;
}

h2.tour-title {
	background-color:white;
	float:left;
	padding:15px 10px 15px 10px;
	font-size:2em;
	margin-top:0px;
	margin-left:-15px;
}

h2.tour-title:after {
	content:'';
    display:block;
    clear: both;
}

h2.about-title {
	font-size:2em;
	text-align:center;
	color:#a1d8cf;
}

h2.video-title {
	color:#1ba991;
	text-align:center;
	padding-bottom:50px;

}

.music h2.about-title {
	margin-bottom:0px;
	padding-bottom:0px;
}

.music h3 {
	margin-top:0px;
	padding-top:0px;
	font-weight:bold;
}

.album-cover {
	border:10px solid #ededed;
}

.store h1 {
	font-size:1.5em;
}


#contact h4 {
	background-color:white;
	padding:8px 5px;
	margin-bottom:20px;
	text-align:center;
	letter-spacing:2px;
	font-size:1.4em;
}

#contact h4 a {
	color:#A1D8CF;
	text-transform:uppercase;
	font-weight:bold;
}


.branding {
	color:#252525;
}

.branding p {
	color:#252525;
}

/* Fonts */

p {
	color:#fff;
	font-size:1.8em;
	line-height:1.4;
	letter-spacing:2px;
}

.single p {
	color:#000;
}

.music p {
	color:#000;
	text-align:center;
}

p.disco  {
	margin-top:25px;
}

p.disco a {
	color:RGBA(21, 182, 163, 1);
}

/* Sections */

.tour {
	background-color:#a1d8cf;
}

.tour a.btn.btn-default.more-dates {
	margin-top:20px;
	float:right;
}


.bit-widget-container {
	font-family:'Josefin Sans', sans-serif !important;
	font-size:1.8em !important;
}

a.bit-event-data {
	font-family: inherit;
}

#bit-events .bit-events td {
	border:none !important;
	height:50px !important;
}

td.bit-date {
	width:auto !important;
}

.bit-events th {
	display:none !important;
}

#bit-events td .bit-uiButton {
	height:auto !important;
}

a.bit-buy-tix {
	color:#fff;
	text-transform: uppercase;
	font-size:0.8em;
}

a.bit-track-artist-header {
	display:none !important;
}

.about {
	background:url(assets/about_bkg.jpg) #113c4a no-repeat center top;
	background-size:contain;
	-moz-background-size:contain;
	-webkit-background-size:contain;

}

.about p {
	text-align:justify;
	letter-spacing:normal;
	font-size:1.5em;
	line-height:1.3;
}

.about .mobile-push {
	margin-top:210px;
	padding-bottom:50px;
}

.instagram {
	background-color:#1BA991;
	padding-top:50px;
	padding-bottom:50px;
}

.insta {
	border:5px solid #A1D8CF;
}

.video {
	background:#ededed;
	height:auto;
}

.video-push {
	margin-top:50px;
	margin-bottom:20px;
}

.video-meta {
	padding-bottom:15px;
}

.video-meta p {
	color:#252525;
	padding:0;
	margin:0;
	font-size:1.3em;
}

.video-meta a.btn.btn-default.more-dates {
	float:none;
}

.music {
	padding-top:50px;
}

.music ul.dropdown-menu {
	border:none;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin:0;
	width:100%;
}

ol {
	text-align:left;
}

.news {
	margin-top:100px;
}

.store {
	background:#ededed;
	padding-top:100px;
}

.store .container-fluid {
	background:url(assets/store_bkg.png) #86CDC1 no-repeat center -2px;
	padding-bottom:100px;
}

.store .container-fluid .col-xs-4 {

}

.logo-phrase-left {
	padding-right:15px;
	background-color:none;
	z-index:1;
}

.logo-phrase-right {
	padding-left:15px;
	background-color:none;
	z-index:1;
}

.store .logo {
	margin:0px;
	padding:0px;
	background-color:transparent;
	z-index:10;
}

.store .circle-logo {
	margin-top:-20px;
}

.store .panel {
	padding:5px;
}

.store .panel p {
	color:#252525;
}


.img-circle {
	border:5px solid white;
	margin-bottom:15px;
	margin-top:30px;
}

section.email {
	padding:25px 0 75px 0;
}

section.email .form-space {
	margin:10px 0;
}

section.email .form-control {
	border-radius:0px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	font-size:20px;
	height:45px;
}

section.email .btn {
	height:45px;
	line-height:25px;
}

.d2b {
	background-color:#252525;
}

.d2b .push {
	padding:50px 0;
}

.d2b .btn-default {
	font-weight:300;
}

.glimmer {
	margin-top:50px;
	margin-bottom:50px;
}

.glimmer h4 {
	text-transform: uppercase;
	font-size:1.8em;
	font-weight:bold;
	text-align:center;
	padding-top:0px;
}

.glimmer img {
	margin:20px 0;
}

.glimmer .img-responsive {
	margin-left: auto !important;
	margin-right: auto !important;
}

.hfj {
	background-color:#ededed;
	padding-top:15px;
	padding-bottom:15px;
}

.hfj .container-fluid {
	background-color:#fff;
	padding-top:15px;
	padding-bottom:15px;
}

.hfj .img-responsive {
	margin:0 auto !important;
}
/* Salvattore */

.salva .panel {
	background:#ededed;
	border:none;
	padding:0px;
}

.salva .panel p {
	padding:10px 25px;
	color:#000;
}

.salva .panel h3 {
	background-color:#1ba991;
	padding:25px 25px;
	margin:0;
	color:#fff;
}

.salva .panel img {
	margin-top:10px;
	padding:0 10px;
}

.salva .panel .read-more {
	background-color:#525252;
	color:#fff;
}

.salva .panel .read-more p {
	padding:10px 25px;
	margin:0;
	color:#fff;
}

.salva .panel .read-more a {
	color:#fff;
	text-decoration:none;
}

.fa-angle-right {
	font-size:70%;
}

#columns[data-columns]::before {
    content: '1 .col-xs-12';
}

#contact {
	background-color:#A1D8CF;
	color:white;
	padding-bottom:25px;
	padding-top:25px;
}


.branding {
	padding-top:50px;
	padding-bottom:50px;
}

.branding a {
	color:#A1D8CF;
	transition:0.3s ease;
	font-size:20px;
}

.branding a:hover {
	text-decoration: none;
	color:#90CDC4;
}


/* Blog */

.blog-title {
	background-color:#15B6A3;
	padding:15px;
	font-size:2em;
	color:white;
}

.back-link a {
	color:#15B6A3;
}

/* Buttons */

.btn-default {
	border-radius:0px;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	background-color:#525252;
	border-color:#525252;
	color:#fff;
	text-transform: uppercase;
	transition:0.3s ease;

}

.btn-default:hover {
	background-color:#333;
	color:#ededed;
	border-color:#333;
	cursor:pointer;
}

a.btn.btn-default.more-dates {
	float:right;
	margin-top:0px;
}

.btn-default.light {
	background-color:#a1d8cf;
	color:#525252;
	border-color:#a1d8cf;
	font-size:1.3em;
}

.btn-default:hover.light {
	background-color:#AAF2E5;
	border-color:#AAF2E5;
}

.open>.dropdown-toggle.btn-default {
	background-color:#AAF2E5;
	border-color:#AAF2E5;
	color:#525252;
}

.btn-default.dark {
	font-size:1.3em;
}

.d2b .btn-default {
	margin-top:100px;
	font-weight:300;
	font-size:1.3em;
	letter-spacing:2px;
}

#contact .btn-other {
	background-color:#fff;
	color:#86CDC1;
	transition:0.3s ease;
	font-size:1.3em;
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	margin-top:15px;
	margin-bottom:10px;
	text-transform: uppercase;
	font-weight: bold;
	text-align:center;
}

#contact .btn-other:hover {
	background-color:#50605E;
	color:#fff;
}


/* Modal */

#btn-close-modal {
    width:100%;
    text-align: right;
    cursor:pointer;
    color:#fff;
    padding:20px 20px 0 0;
}

.icon-circle-cross {
	font-size:4em;
 }

.modal-content {
	border:none;
	box-shadow:none;
	background-color:transparent;
	color:#fff;
	font-size:1em;
}

.modal-content p {
	text-align:left;
}


/* Small devices (tablets, 768px and up) */
@media (min-width:768px) {
	header {
		padding-top:100px;
	}

	.hero-img {
		height:670px;
	}

	h2.tour-title {
		font-size:2.5em;
		padding:20px 15px 20px 15px;
	}
	.about {
		height:auto;
		background-size:cover;
		-webkit-background-size:cover;
		-moz-background-size:cover;
		padding-top:50px;
		padding-bottom:50px;
	}
	.about p {
		margin-bottom:50px;
		font-size:2.3em;
		line-height:1.5;
	}
	h2.video-title {
		font-size:2.5em;
		text-align:center;
	}
	 #columns[data-columns]::before {
        content: '2 .col-sm-6';
    }
    .store h1 {
		font-size:3em;
	}
	.d2b .btn-default {
		margin-top:100px;
		font-size:2em;
	}
	.btn-default.light, .btn-default.dark {
		font-size:2em;
	}
	.glimmer h4 {
		text-align:right;
		padding-top:40px;
	}
	#contact h4 {
		font-size:1.8em;
	}
	.store .circle-logo {
		margin-top:-40px;
	}
	.img-circle {
		margin-top:0px;
	}
	.logo-phrase-left {
		padding-right:45px;
		background-color:#fff;
		z-index:1;
	}
	.logo-phrase-right {
		padding-left:45px;
		background-color:#fff;
		z-index:1;
	}
	#contact .btn-other {
		font-size:1.3em;
	}
	.modal-content {
		font-size:1.4em;
	}
	.modal-content p {
		text-align:justify;
	}
	.about .mobile-push {
		margin-top:0px;
		padding-bottom:0px;
	}


}

/* Medium devices (desktops, 992px and up) */
@media (min-width:992px) {
	header {
		padding-top:0px;
	}

	.hero-img {
		height:680px;
	}

	h2.tour-title {
		font-size:3em;
		padding:25px 20px 25px 20px;
	}
	h2.about-title {
		font-size:3em;
	}
	#columns[data-columns]::before {
        content: '3 .col-md-4';
    }
    .store h1 {
		font-size:4em;
	}
	.d2b .btn-default {
		margin-top:100px;
	}
	.store .circle-logo {
		margin-top:-50px;
	}
	#contact .btn-other {
		font-size:1.8em;
	}
	.modal-content {
		font-size:1.6em;
	}


}

/* Large devices (large desktops, 1200px and up) */
@media (min-width:1200px) {

	.hero-img {
		height:870px;
	}
	.store .circle-logo {
		margin-top:-90px;
	}

}

