@import url("content.css");

/*----------Colours----------*/
/*Blue - #0485B5
/*Blue hover - #008dc2

/*Black - #1C1C1C (Backgrounds)

/*Light Grey - #8D8D8D (Text)
/*Dark Grey - #282828 (Inputs)
/*------------------------------*/

/*
*{-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);}
html {-webkit-font-smoothing: antialiased}
*/


/*------------------------------*/
/*----------HTML5 elements----------*/
/*------------------------------*/
section,
article,
aside,
footer,
header,
nav,
hgroup                                                  {display:block;}

#ScriptWarning                                          {padding: 5px; background: #FF4136; color: white; margin: 5px;}


/*------------------------------*/
/*----------General----------*/
/*------------------------------*/
body                                                    {background: #1C1C1C; color: #8D8D8D;}

html, body 												{height:100%;}

/*-----Animate in main col-----*/
.MainContainer											{
														-webkit-animation: FadeInBottom 1s ease forwards;
														animation: FadeInBottom 1s ease forwards;
}





/*------------------------------*/
/*----------Animation----------*/
/*------------------------------*/
/*-----Fade in top-----*/
@-webkit-keyframes FadeInTop {
	0% {-webkit-transform: translate(0px,-100px); opacity: 0;}
	100% {-webkit-transform: translate(0px,0px); opacity: 1;}
}
@-moz-keyframes FadeInTop {
    0% {-moz-transform: translate(0px,-100px); opacity: 0;}
	100% {-moz-transform: translate(0px,0px); opacity: 1;}
}
@keyframes FadeInTop {
    0% {transform: translate(0px,-100px); opacity: 0;}
	100% {transform: translate(0px,0px); opacity: 1;}
}

/*-----Fade in bottom-----*/
@-webkit-keyframes FadeInBottom {
	0% {-webkit-transform: translate(0px,100px); opacity: 0;}
	100% {-webkit-transform: translate(0px,0px); opacity: 1;}
}
@-moz-keyframes FadeInBottom {
    0% {-moz-transform: translate(0px,100px); opacity: 0;}
	100% {-moz-transform: translate(0px,0px); opacity: 1;}
}
@keyframes FadeInBottom {
    0% {transform: translate(0px,100px); opacity: 0;}
	100% {transform: translate(0px,0px); opacity: 1;}
}

/*-----Fade in right-----*/
@-webkit-keyframes FadeInRight {
	0% {-webkit-transform: translate(100px,0px); opacity: 0;}
	100% {-webkit-transform: translate(0px,0px); opacity: 1;}
}
@-moz-keyframes FadeInRight {
    0% {-moz-transform: translate(100px,0px); opacity: 0;}
	100% {-moz-transform: translate(0px,0px); opacity: 1;}
}
@keyframes FadeInRight {
    0% {transform: translate(100px,0px); opacity: 0;}
	100% {transform: translate(0px,0px); opacity: 1;}
}

/*-----Fade in left-----*/
@-webkit-keyframes FadeInLeft {
	0% {-webkit-transform: translate(-100px,0px); opacity: 0;}
	100% {-webkit-transform: translate(0px,0px); opacity: 1;}
}
@-moz-keyframes FadeInLeft {
    0% {-moz-transform: translate(-100px,0px); opacity: 0;}
	100% {-moz-transform: translate(0px,0px); opacity: 1;}
}
@keyframes FadeInLeft {
    0% {transform: translate(-100px,0px); opacity: 0;}
	100% {transform: translate(0px,0px); opacity: 1;}
}

/*-----Fade in-----*/
@-webkit-keyframes FadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@-moz-keyframes FadeIn {
    0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes FadeIn {
    0% {opacity: 0;}
	100% {opacity: 1;}
}

/*-----Fill Border-----*/
@-webkit-keyframes FillBorder {
	0% {width: 0%;}
	100% {width: 100%;}
}
@-moz-keyframes FillBorder {
    0% {width: 0%;}
	100% {width: 100%;}
}
@keyframes FillBorder {
    0% {width: 0%;}
	100% {width: 100%;}
}

/*-----Fill Underline-----*/
@-webkit-keyframes FillUnderline {
	0% {width: 0px;}
	100% {width: 100px;}
}
@-moz-keyframes FillUnderline {
    0% {width: 0px;}
    100% {width: 100px;}
}
@keyframes FillUnderline {
    0% {width: 0px;}
    100% {width: 100px;}
}




/*------------------------------*/
/*----------Buttons----------*/
/*------------------------------*/
.btn                                                    {/*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/ border-radius: 0px; font-size: 18px; color: white; font-family: 'nexa_lightregular', 'Open Sans', sans-serif; font-weight: 300; text-transform: uppercase; padding: 12px; box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}
.btn:hover,
.btn:focus,
.btn:active                                             {box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.8);}

.btn-default                                            {background-color: rgba(255, 255, 255, 0); border-color: white;}
.btn-default:hover,
.btn-default:active,
.btn-default:focus                                      {background-color: rgba(255, 255, 255, 0.25); border-color: white; color: white;}

.btn-primary                                            {background-color: #0485B5; border-color: #0485B5;}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus                                      {background-color: #0097d0; border-color: #0097d0;}


/*-_-_-_-_ Media Queries_-_-_-_- */
@media(max-width:767px){
    .btn                                                    {display: block; float: none; width: 100%;}
}




/*------------------------------*/
/*----------Header----------*/
/*------------------------------*/
/*----------General----------*/
header                                                  {padding: 50px 0; z-index: 1001; position: relative;
														-webkit-animation: FadeIn 1s ease forwards;
														animation: FadeIn 1s ease forwards;
}
header .Logo                                            {}

/*----------Social Links----------*/
.HeaderSocialLinks										{float: right; list-style: none; padding: 0px; margin: -5px 0 0 0;}
.HeaderSocialLinks li									{float: left; opacity: .3;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.HeaderSocialLinks li:hover								{opacity: 1;}
.HeaderSocialLinks li a									{}


/*----------Homepage----------*/
.currentpage_homepage header                            {/*position: absolute; top: 0px; width: 100%;*/ display: none;}

/*-_-_-_-_ Media Queries_-_-_-_- */
@media(max-width:767px){
    header .Logo                                            {margin: 10px auto;}
}





/*------------------------------*/
/*----------Nav----------*/
/*------------------------------*/
.MainNav                                                {float: right;}
.MainNav .navbar-header                                 {}
.MainNav .navbar-header .navbar-toggle                  {}
.MainNav .navbar-header .navbar-toggle .icon-bar        {}

.MainNav .navbar-collapse                               {}
.MainNav .navbar-collapse ul                            {padding: 0px; float: right;}
.MainNav .navbar-collapse ul li                         {display: block; float: left; font-family: 'nexa_lightregular', 'Open Sans', sans-serif; font-weight: 300; text-transform: uppercase; padding: 0 10px 0 12px; background-position: left 7px; background-repeat: no-repeat;
                                                        background-image: url(../images/divider-4.png);
                                                        background-image: linear-gradient(transparent, transparent), url(../images/divider-4.svg);
}
.MainNav .navbar-collapse ul li a                       {color: white; text-decoration: none;}
.MainNav .navbar-collapse ul > li a:after				{content: ''; display: block; height: 1px; background: white; opacity: 0; z-index: 1;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
														-webkit-transform: translateY(-15px);
															-ms-transform: translateY(-15px);
																transform: translateY(-15px);
}
.MainNav .navbar-collapse ul > li a:hover:after,
.MainNav .navbar-collapse ul > li a:focus:after,
.MainNav .navbar-collapse ul > li.active a:after		{opacity: .3;
														-webkit-transform: translateY(0%);
															-ms-transform: translateY(0%);
																transform: translateY(0%);
}

/*----------Second level----------*/
.MainNav .navbar-collapse ul li ul						{position: absolute; max-height: 0px; overflow: hidden; background: rgba(0, 0, 0, 0.25); -webkit-backdrop-filter: blur(5px);
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.MainNav .navbar-collapse ul li:hover ul				{max-height: 1000px;}
.MainNav .navbar-collapse ul li ul li					{display: block; float: none; padding: 0px; background: none;}
.MainNav .navbar-collapse ul li ul li a					{display: block; padding: 2px 8px;}


/*-_-_-_-_ Media Queries_-_-_-_- */
@media(max-width:767px){

    .MainNav .navbar-collapse                               {position: fixed; z-index: 100; width: 100%; top: 0px; bottom: 0px; right: 0px; margin: 0px; padding: 15px; max-height: 100%; -webkit-overflow-scrolling: touch !important; overflow: scroll; -webkit-backdrop-filter: blur(15px); background: rgba(0, 0, 0, .7);}
	.MainNav .navbar-collapse ul                            {float: none; width: 100%; padding: 0px; padding-top: 100px; background-position: center 44px; background-repeat: no-repeat;
															background-image: url(../images/logo-sm.png);
															background-image: linear-gradient(transparent, transparent), url(../images/logo-sm.svg);
	}
    .MainNav .navbar-collapse ul li                         {display: block; width: 100%; float: none; text-align: center; padding: 0px; background: none;}
    .MainNav .navbar-collapse ul li a                       {border-bottom: 1px solid #f1f1f1; padding: 15px 0; display: block; border-bottom: 1px solid rgba(255,255,255,.2);}
	.MainNav .navbar-collapse ul li a:hover,
	.MainNav .navbar-collapse ul li a:focus					{text-decoration: none; background-color: rgba(255, 255, 255, 0.2);}

    .MainNav                                                        {float: none;}
    .MainNav .navbar-header                                         {position: fixed; top: 15px; right: 15px; z-index: 1001;}
    .MainNav .navbar-header .navbar-toggle                          {margin: 0px; width: 52px; height: 52px; background: rgba(0, 0, 0, 0.5); box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4); border-radius: 0px; -webkit-backdrop-filter: blur(15px);}
    .MainNav .navbar-header .navbar-toggle .icon-bar                {height: 1px; background: white; border-radius: 0px; margin-left: auto; margin-right: auto; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;}
    .MainNav .navbar-header .navbar-toggle .icon-bar+.icon-bar      {margin-top: 6px;}

    .MainNav .navbar-header .navbar-toggle .icon-bar:nth-child(2)   {margin-bottom: -4px; margin-top: 10px; -webkit-transform: rotate(136deg); -moz-transform: rotate(136deg); transform: rotate(136deg);}
    .MainNav .navbar-header .navbar-toggle .icon-bar:nth-child(3)   {opacity: 0;}
    .MainNav .navbar-header .navbar-toggle .icon-bar:nth-child(4)   {margin-top: -4px; margin-bottom: 10px; -webkit-transform: rotate(-136deg); -moz-transform: rotate(-136deg); transform: rotate(-136deg);}
    .MainNav .navbar-header .navbar-toggle.collapsed .icon-bar      {margin: 4px; opacity: 1; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg);}

}




/*------------------------------*/
/*----------Homepage Intro----------*/
/*------------------------------*/
/*----------Intro----------*/
.HomeIntro												{position: relative; z-index: 4; top: 50%;
														-webkit-transform: translateY(-65%);
															-ms-transform: translateY(-65%);
																transform: translateY(-65%);
}

.HomeIntro .row											{
														-webkit-animation: FadeInTop 2s ease forwards;
														animation: FadeInTop 2s ease forwards;
}

.HomeIntro .Logo										{margin: 0 auto 30px auto;}
.HomeIntro p											{max-height: 64px; overflow: hidden;}
.HomeIntro .lead										{font-size: 30px; line-height: 45px; max-height: 90px; overflow: hidden; text-shadow: 4px 4px 7px rgba(0,0,0,.5);}

/*-----Social-----*/
.HomeSocialLinks										{display: table; white-space: nowrap; margin-bottom: 10px;}
.HomeSocialLinks ul										{list-style: none; padding: 0px; margin: 0px; text-align: center;}
.HomeSocialLinks ul li									{display: inline-block; opacity: .3;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.HomeSocialLinks ul li:hover							{opacity: 1;}
.HomeSocialLinks ul li a								{}
.HomeSocialLinks ul li a img							{width: 30px; margin: 0 10px;}

.HomeSocialLinks span									{content: ""; position: relative; display: table-cell; width: 50%; vertical-align: middle;}
.HomeSocialLinks span.left:after						{content: ''; display: block; height: 1px; background: white; opacity: .3; float: right;
													    -webkit-animation: FillBorder 2s ease forwards;
													    animation: FillBorder 2s ease forwards;
}
.HomeSocialLinks span.right:after						{content: ''; display: block; height: 1px; background: white; opacity: .3; float: left;
													    -webkit-animation: FillBorder 2s ease forwards;
													    animation: FillBorder 2s ease forwards;
}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

	/*----------Intro----------*/
	.HomeIntro												{top: auto; margin: 50px 0; text-align: center;
															-webkit-transform: none;
																-ms-transform: none;
																	transform: none;
	}
	.HomeIntro .row											{
															-webkit-animation: none;
																	animation: none;
	}
	.HomeIntro p											{max-height: none;}
	.HomeIntro .lead										{max-height: none;}

}





/*------------------------------*/
/*----------Homepage Bar----------*/
/*------------------------------*/
/*----------General----------*/
.HomepageBar											{z-index: 1001; position: absolute; width: 100%; bottom: 140px; /*background: url(../images/navbar-bg.png) center repeat-x;*/ border-top: 1px solid rgba(255, 255, 255, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.2);
														-webkit-animation: FadeInBottom 2s ease forwards;
														animation: FadeInBottom 2s ease forwards;
														/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.15+0,0.4+100 */
														background: -moz-linear-gradient(top,  rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.4) 100%); /* FF3.6-15 */
														background: -webkit-linear-gradient(top,  rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.4) 100%); /* Chrome10-25,Safari5.1-6 */
														background: linear-gradient(to bottom,  rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.4) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
														filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#26ffffff', endColorstr='#66ffffff',GradientType=0 ); /* IE6-9 */

}

/*----------Nav----------*/
.HomepageBar nav										{border-right: 1px solid rgba(255, 255, 255, 0.2);}
.HomepageBar nav ul										{padding: 0px; margin: 0px; float: left;}
.HomepageBar nav ul li									{display: block; float: left; font-family: 'nexa_lightregular', 'Open Sans', sans-serif; font-weight: 300; text-transform: uppercase; font-size: 24px;}
.HomepageBar nav ul li a								{color: white; display: block; padding: 34px 17px 32px 15px; background-position: right center; background-repeat: no-repeat; border-bottom: 2px solid transparent; text-decoration: none;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
														background-image: url(../images/divider-4.png);
														background-image: linear-gradient(transparent, transparent), url(../images/divider-4.svg);
}
.HomepageBar nav ul li:last-child a              		{background: none; padding-right: 0;}

.HomepageBar nav ul li a:hover,
.HomepageBar nav ul li a:focus,
.HomepageBar nav ul li a:active							{border-bottom: 2px solid white;}

/*----------Soundcloud----------*/
/*-----General-----*/
.SoundcloudWidget										{padding-top: 22px; padding-bottom: 21px;}
.SoundcloudWidget iframe								{display: none;}

/*-----Button-----*/
.SoundcloudWidget .Button								{float: left; background-position: right center; background-repeat: no-repeat; padding: 8px 10px 8px 0; margin: 0 10px 0 0; z-index: 10; position: relative;
														background-image: url(../images/divider-4.png);
														background-image: linear-gradient(transparent, transparent), url(../images/divider-4.svg);
}
.SoundcloudWidget .Button button						{display: block; width: 40px; height: 40px; text-indent: -1000px; overflow: hidden; background-color: transparent; border: none;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
														background-image: url(../images/player-play.png);
														background-image: linear-gradient(transparent, transparent), url(../images/player-play.svg);
}
.SoundcloudWidget .Button button:hover					{-ms-transform: scale(1.1); -webkit-transform: scale(1.1); transform: scale(1.1);}
.SoundcloudWidget .Button button.playing				{
														background-image: url(../images/player-pause.png);
														background-image: linear-gradient(transparent, transparent), url(../images/player-pause.svg);
}

/*-----Track info-----*/
.SoundcloudWidget p										{font-size: 16px; margin: 0px; opacity: .6; color: white;}
.SoundcloudWidget p.lead								{font-size: 18px; margin: 0px; line-height: 25px; opacity: 1;}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

	/*----------General----------*/
	.HomepageBar											{position: relative; bottom: auto;
															-webkit-animation: none;
															animation: none;
	}

	/*----------Nav----------*/
	.HomepageBar nav										{}
	.HomepageBar nav ul										{float: none;}
	.HomepageBar nav ul li									{float: none; display: block; width: 100%; text-align: center; }
	.HomepageBar nav ul li a								{background: none; border-bottom-color: rgba(255, 255, 255, 0.1); padding: 24px 17px 22px 15px;}

}




/*------------------------------*/
/*----------Carousel----------*/
/*------------------------------*/
/*----------General----------*/
.carousel-indicators									{
														-webkit-animation: FadeIn 2s ease forwards;
														animation: FadeIn 2s ease forwards;
}
.carousel-indicators li									{width: 14px; height: 14px; border-radius: 0px; margin: 5px; opacity: .3;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.carousel-indicators li:hover							{opacity: 1;}

.carousel-indicators .active							{width: 14px; height: 14px; margin: 5px; background: none; opacity: 1;}
.carousel-indicators .active:after						{content: ''; display: block; width: 10px; height: 10px; background: white; margin: 1px;}

.carousel-control										{z-index: 1001; width: 20px; height: 30px; top: 50%; margin-top: -15px; background-position: center; background-repeat: no-repeat;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.carousel-control span									{display: none !important;}
.carousel-control.left									{
														background-image: url(../images/gal-prev.png);
														background-image: linear-gradient(transparent, transparent), url(../images/gal-prev.svg);
}
.carousel-control.right									{
														background-image: url(../images/gal-next.png);
														background-image: linear-gradient(transparent, transparent), url(../images/gal-next.svg);
}


/*----------Homepage----------*/
#HomepageCarousel                                       {position: fixed; width: 100%; top: 0px; bottom: 0px; z-index: 0;
														-webkit-animation: FadeIn 2s ease forwards;
														animation: FadeIn 2s ease forwards;
}
#HomepageCarousel:before								{display: block; content: ''; position: absolute; z-index: 10; width: 70%; height: 100%; top: 0px; left: 0px;
														/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&1+40,0+100 */
														background: -moz-linear-gradient(left,  rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
														background: -webkit-linear-gradient(left,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 40%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
														background: linear-gradient(to right,  rgba(0,0,0,1) 0%,rgba(0,0,0,1) 40%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
														filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
}
#HomepageCarousel .carousel-inner                       {}
#HomepageCarousel .carousel-inner .item                 {}

#HomepageCarousel .carousel-indicators                  {bottom: 70px; position: fixed;}

/*Full Height*/
#HomepageCarousel,
#HomepageCarousel .item,
#HomepageCarousel .item.active,
#HomepageCarousel .carousel-inner                       {height: 100%;}


#HomepageCarousel .item:before							{content: ''; display: block; position: absolute; left: 0px; right: 0px; bottom: 0px; top: 0px; background: url(../images/overlay-grid.png) center; z-index: 1;}
#HomepageCarousel .item:after							{content: ''; display: block; position: absolute; left: 0px; right: 0px; bottom: 0px; height: 388px; background: url(../images/gradient-home-bottom.png) bottom center repeat-x;}


#HomepageCarousel .carousel-inner .item .SlideBG        {position: absolute; top: 0px; width: 100%; height: 100%; background-position: center;
														-webkit-background-size: cover;
														   -moz-background-size: cover;
															 -o-background-size: cover;
															    background-size: cover;
														-webkit-filter: grayscale(100%);
													    filter: grayscale(100%);
}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

	/*----------Homepage----------*/
	#HomepageCarousel .carousel-inner .item .SlideBG		{opacity: .2;}

	#HomepageCarousel .carousel-indicators                  {display: none;}

}




/*------------------------------*/
/*----------Smooth carousel fade----------*/
/*------------------------------*/
.carousel.fade                                          {opacity: 1;}
.carousel.fade .item                                    {left: 0 !important; opacity: 0; top:0; position:absolute; width: 100%; display:block !important; z-index:1; -moz-transition: opacity ease-in-out 1s; -o-transition: opacity ease-in-out 1s; -webkit-transition: opacity ease-in-out 1s; transition: opacity ease-in-out 1s;}
.carousel.fade .item:first-child                        {top:auto; position:relative;}
.carousel.fade .item.active                             {opacity: 1; transition: opacity ease-in-out 1s; z-index:2; -moz-transition: opacity ease-in-out 1s; -o-transition: opacity ease-in-out 1s; -webkit-transition: opacity ease-in-out 1s;}




/*------------------------------*/
/*----------Fix homepage on small screens----------*/
/*------------------------------*/
@media (max-height: 720px) and (min-width: 767px) {

	/*----------Bar----------*/
	.HomepageBar											{position: relative; bottom: auto;}

	/*----------Intro----------*/
	.HomeIntro												{top: auto; margin-top: 50px; margin-bottom: 50px;
															-webkit-transform: none;
																-ms-transform: none;
																	transform: none;
	}
	/*----------Carousel----------*/
	.carousel-indicators									{display: none;}
	#HomepageCarousel .item:after							{height: 50%; background: url(../images/gradient-home-bottom.png) top center repeat-x;}
	/*Full Height
	#HomepageCarousel,
	#HomepageCarousel .item,
	#HomepageCarousel .item.active,
	#HomepageCarousel .carousel-inner                       {min-height: 720px;}*/
	/*----------Footer----------*/
	.currentpage_homepage footer							{position: relative !important; bottom: auto !important; margin-top: 40px;}
}




/*------------------------------*/
/*----------Home Testimonials----------*/
/*------------------------------*/
.TestimonialsCarouselWrapper							{border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 20px;}
#TestimonialsCarousel									{}

.HomeTestimonial										{padding: 0 35px;}
.HomeTestimonial p										{color: white; margin: 0px; font-style: italic;}
.HomeTestimonial p.TestimonialSource					{color: #8D8D8D; font-style: normal;}




/*------------------------------*/
/*----------Title----------*/
/*------------------------------*/
/*----------General----------*/
.TitleBreads                                            {margin-bottom: 70px;
                                                        -webkit-animation: FadeIn 2s ease forwards;
                                                        animation: FadeIn 2s ease forwards;
}
.TitleBreads:after                                      {content: ''; display: block; width: 100px; height: 1px; background: white; margin: 20px auto 0 auto; opacity: .3;
                                                        -webkit-animation: FillUnderline 2s ease forwards;
                                                        animation: FillUnderline 2s ease forwards;
}

/*----------Breads----------*/
.TitleBreads .Breads                                    {list-style: none; padding: 0px; margin: 0px; text-align: center;}
.TitleBreads .Breads li                                 {font-size: 12px; text-transform: uppercase; display: inline-block; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)" !important; opacity: .5; font-family: 'Open Sans', sans-serif;
														-webkit-transition: all .2s ease;
														   -moz-transition: all .2s ease;
															 -o-transition: all .2s ease;
																transition: all .2s ease;
}
.TitleBreads .Breads li:hover,
.TitleBreads .Breads li:focus							{opacity: 1;}
.TitleBreads .Breads li a                               {color: white; text-decoration: none;}
.TitleBreads .Breads li:after                           {content: ''; display: inline-block; width: 4px; height: 7px; margin: 0 5px 0 10px; background-position: center; background-repeat: no-repeat;
                                                        background-image: url(../images/arrow-bread.png);
                                                        background-image: linear-gradient(transparent, transparent), url(../images/arrow-bread.svg);
}
.TitleBreads .Breads li:last-child:after                {display: none;}
.TitleBreads .Breads li:last-child a					{pointer-events: none;}
.TitleBreads .Breads li:last-child:hover				{opacity: .5;}

/*----------Title----------*/
.TitleBreads .Title                                     {display: table; white-space: nowrap;}
.TitleBreads .Title span                                {content: ""; position: relative; display: table-cell; width: 50%; vertical-align: middle;}
/*--Animations--*/
.TitleBreads .Title span.left:after                     {content: ''; display: block; height: 1px; background: white; opacity: .3; float: right;
                                                        -webkit-animation: FillBorder 2s ease forwards;
                                                        animation: FillBorder 2s ease forwards;
}
.TitleBreads .Title span.right:after                    {content: ''; display: block; height: 1px; background: white; opacity: .3; float: left;
                                                        -webkit-animation: FillBorder 2s ease forwards;
                                                        animation: FillBorder 2s ease forwards;
}

.TitleBreads .Title h1                                  {margin: 0px; padding: 0 15px; font-size: 40px; white-space: nowrap; text-shadow: 4px 4px 7px rgba(0,0,0,.3);}

/*----------Section Title----------*/
.SectionTitle                                           {text-align: center; margin-bottom: 40px; animation: FadeIn 2s ease forwards;}
.SectionTitle h1                                        {font-size: 36px; text-shadow: 4px 4px 7px rgba(0,0,0,.3);}
.SectionTitle h1 a                                      {text-decoration: none;}
.SectionTitle h1:after                                  {content: ''; display: block; width: 100px; height: 1px; background: white; margin: 20px auto 0 auto; opacity: .3; animation: FillUnderline 2s ease forwards;}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){
	/*----------General----------*/
	.TitleBreads                                            {margin-bottom: 50px;}

	/*----------Title----------*/
	.TitleBreads .Title                                     {white-space: normal;}
	.TitleBreads .Title h1                                  {font-size: 30px; white-space: normal; text-align: center;}

	/*----------Section Title----------*/
	.SectionTitle											{margin-bottom: 20px;}
	.SectionTitle h1                                        {font-size: 24px;}
	.SectionTitle h1:after                                  {margin: 10px auto 0 auto;}

}




/*------------------------------*/
/*----------Background image----------*/
/*------------------------------*/
/*----------General----------*/
.BackgroundImage                                        {height: 800px; position: absolute; top: 0px; left: 0px; right: 0px; z-index: -1; overflow: hidden;
                                                        -webkit-animation: FadeInTop 2s ease forwards;
                                                        animation: FadeInTop 2s ease forwards;
}
.BackgroundImage .Image                                 {position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; opacity: .1; background-position: center; background-repeat: no-repeat; background-size: cover;}
.BackgroundImage:after                                  {content: ''; position: absolute; bottom: 0px; display: block; width: 100%; height: 500px; background: url(../images/bg-gradient.png) center bottom repeat-x;}

/*-----Effects-----*/
.BackgroundImage.Blur .Image                            {
                                                        -webkit-filter: blur(10px);
                                                           -moz-filter: blur(10px);
                                                            -ms-filter: blur(10px);
                                                             -o-filter: blur(10px);
                                                                filter: blur(10px);
}




/*------------------------------*/
/*----------Performances----------*/
/*------------------------------*/
/*----------General----------*/
.PerformanceBlock                                       {position: relative; background-color: #262626; padding: 40px; margin-bottom: 30px; box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4); overflow: hidden;}
.PerformanceBlock:hover                                 {z-index: 4; -ms-transform: scale(1.01); -webkit-transform: scale(1.01); transform: scale(1.01);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}
.PerformanceBlock:hover .BG                             {-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)" !important; opacity: .2;}
.PerformanceBlock a                                     {text-decoration: none;}

/*-----Background image-----*/
.PerformanceBlock .BG                                   {position: absolute; z-index: 0; top: -10px; right: -10px; bottom: -10px; left: -10px; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)" !important; opacity: .1; background-position: center; background-size: cover; background-repeat: no-repeat;
														-webkit-filter: blur(10px);
                                                           -moz-filter: blur(10px);
                                                            -ms-filter: blur(10px);
                                                             -o-filter: blur(10px);
                                                                filter: blur(10px);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}

/*----------Date----------*/
.PerformanceBlock .PerformanceBlockDate                                 {position: absolute; z-index: 1; width: 180px; top: 0px; left: 0px; bottom: 0px; border-right: 1px solid rgba(255, 255, 255, .1); text-align: center;}

.PerformanceBlock .PerformanceBlockDate div                             {position: absolute; width: 100%; top: 50%; -ms-transform: translateY(-50%); -webkit-transform: translateY(-50%); transform: translateY(-50%);}
.PerformanceBlock .PerformanceBlockDate div span                        {display: block; font-family: 'Open Sans', sans-serif; text-transform: uppercase; font-size: 20px; color: white;}
.PerformanceBlock .PerformanceBlockDate div span:nth-child(1)           {font-family: 'nexa_boldregular', 'Open Sans', sans-serif; font-size: 80px; line-height: 80px;}
.PerformanceBlock .PerformanceBlockDate div span:nth-child(2)           {}
.PerformanceBlock .PerformanceBlockDate div span:nth-child(3)           {opacity: .5;}

/*----------Info----------*/
.PerformanceBlock .PerformanceBlockInfo                                 {position: relative; z-index: 1; margin-left: 180px;}

/*-----Title-----*/
.PerformanceBlock .PerformanceBlockInfo .Title                          {margin: 0px;}

/*-----Performance info-----*/
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo                {list-style: none; margin: 20px 0; padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, .1); border-bottom: 1px solid rgba(255, 255, 255, .1);}
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo:after          {content: ''; display: block; clear: both;}
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo li             {float: left; background: none; padding: 10px 15px 10px 0;}
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo .Title         {display: block; font-size: 10px; font-family: 'Open Sans', sans-serif; color: white; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)" !important; opacity: .25; margin: -10px 0; text-transform: uppercase;}
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo .Info          {display: block; font-size: 18px; font-family: 'Open Sans', sans-serif; color: white; padding: 0 15px 0 0; background-position: right center; background-repeat: no-repeat;
                                                                        background-image: url(../images/divider-3.png);
                                                                        background-image: linear-gradient(transparent, transparent), url(../images/divider-3.svg);
}
/*Remove last divider*/
.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo li:last-child .Info    {background: none;}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){
	/*----------General----------*/
	.PerformanceBlock                                       				{padding: 15px;}
	.PerformanceBlock .Link													{/*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/ border-radius: 0px; font-size: 18px; color: white; font-family: 'nexa_lightregular', 'Open Sans', sans-serif; font-weight: 300; text-transform: uppercase; padding: 12px; box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4); background-color: rgba(255, 255, 255, 0); border: 1px solid white; display: block; text-align: center;
					                                                        -webkit-transition: all .2s ease;
					                                                           -moz-transition: all .2s ease;
					                                                             -o-transition: all .2s ease;
					                                                                transition: all .2s ease;
	}
	.PerformanceBlock .Link:hover,
	.PerformanceBlock .Link:active,
	.PerformanceBlock .Link:focus                                      		{background-color: rgba(255, 255, 255, 0.25); border-color: white; color: white;}


	/*----------Date----------*/
	.PerformanceBlock .PerformanceBlockDate                                 {position: relative; width: 100%; top: auto; bottom: auto; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, .1); margin-bottom: 20px; padding-bottom: 15px;}
	.PerformanceBlock .PerformanceBlockDate div                             {position: relative; display: block; width: 100%; top: auto; -ms-transform: none; -webkit-transform: none; transform: none;}

	/*----------Info----------*/
	.PerformanceBlock .PerformanceBlockInfo                                 {margin-left: 0px;}

	/*-----Performance info-----*/
	.PerformanceBlock .PerformanceBlockInfo .PerformanceInfo li             {}

}




/*------------------------------*/
/*----------Show----------*/
/*------------------------------*/
/*-----Show info-----*/
.ShowInfo                                               {list-style: none; padding: 20px 0; margin: 20px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1);}

.ShowInfo .ShowInfoBlock                                {padding: 10px 0;}
.ShowInfo .ShowInfoBlock .Title                         {display: block; font-size: 10px; font-family: 'Open Sans', sans-serif; color: white; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)" !important; opacity: .25; margin: -10px 0; text-transform: uppercase;}
.ShowInfo .ShowInfoBlock .Info                          {display: block; font-size: 18px; font-family: 'Open Sans', sans-serif; color: white; background-position: right 11px; background-repeat: no-repeat;
                                                        background-image: url(../images/divider-3.png);
                                                        background-image: linear-gradient(transparent, transparent), url(../images/divider-3.svg);
}

/*Remove dividers from even cols*/
/*Two col*/
.ShowInfo.TwoCol .row .col-sm-6:nth-child(even) .ShowInfoBlock .Info   {background: none;}
.ShowInfo.TwoCol .row .col-sm-6:last-child .ShowInfoBlock .Info        {background: none;}

.ShowInfo.TwoCol .row .col-sm-6:nth-child(odd)							{clear: both;}

.BookLink                                               {padding: 0 0 20px 0; margin: 0 0 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1);}
.BookLink .btn                                          {}

/*-----Animations-----*/
.ShowPosterCol											{
														-webkit-animation: FadeInLeft 1s ease forwards;
														animation: FadeInLeft 1s ease forwards;
}
.ShowInfoCol											{
														-webkit-animation: FadeInRight 1s ease forwards;
														animation: FadeInRight 1s ease forwards;
}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){
	/*-----Animations-----*/
	.ShowPosterCol											{-webkit-animation: none; animation: none;}
	.ShowInfoCol											{-webkit-animation: none; animation: none;}

	/*-----Show poster-----*/
	.ShowPosterCol > img,
	.ShowPosterCol > figure									{width: 300px; max-width: 100%; margin-left: auto; margin-right: auto;}

	.ShowInfo .ShowInfoBlock .Info							{background: none;}

}
@media(min-width:768px){

	/*Remove dividers from even cols*/
	/*Three col*/
	.ShowInfo.ThreeCol .row .col-sm-6:nth-child(even) .ShowInfoBlock .Info   	{background: none;}
	.ShowInfo.ThreeCol .row .col-sm-6:last-child .ShowInfoBlock .Info       {background: none;}

}
@media(min-width:992px){

	/*Remove dividers from even cols*/
	/*Three col*/
	.ShowInfo.ThreeCol .row .col-sm-6:nth-child(even) .ShowInfoBlock .Info  {background-position: right center; background-repeat: no-repeat;
																			background-image: url(../images/divider-3.png);
																			background-image: linear-gradient(transparent, transparent), url(../images/divider-3.svg);
	}
	.ShowInfo.ThreeCol .row .col-sm-6:nth-child(3) .ShowInfoBlock .Info   	{background: none;}
	.ShowInfo.ThreeCol .row .col-sm-6:last-child .ShowInfoBlock .Info       {background: none;}

}
@media(min-width:1200px){

}



/*------------------------------*/
/*----------Image Gallery----------*/
/*------------------------------*/
.ImageGallery                                       {margin-top: 50px;}
.ImageGallery .GalThumb              				{margin-bottom: 40px;}
.ImageGallery figure .GalThumb						{margin-bottom: 10px; box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.4);}

.ImageGallery figcaption							{display: none;}

#blueimp-gallery                                    {background: rgba(0,0,0,.5); -webkit-backdrop-filter: blur(5px);}
#blueimp-gallery .slides                            {}
#blueimp-gallery .slides .slide img                 {padding: 70px;}

/*-----Icons-----*/
#blueimp-gallery .prev,
#blueimp-gallery .next,
#blueimp-gallery .close,
#blueimp-gallery .play-pause						{width: 40px; height: 40px; border-radius: 0px; text-indent: -1000px; overflow: hidden; background-position: center; background-repeat: no-repeat; opacity: .5; border: none;
													-webkit-transition: all .2s ease;
													   -moz-transition: all .2s ease;
														 -o-transition: all .2s ease;
															transition: all .2s ease;
}
#blueimp-gallery .prev:hover,
#blueimp-gallery .next:hover,
#blueimp-gallery .close:hover						{opacity: 1;}
#blueimp-gallery .prev								{
													background-image: url(../images/gal-prev.png);
													background-image: linear-gradient(transparent, transparent), url(../images/gal-prev.svg);
}
#blueimp-gallery .next								{
													background-image: url(../images/gal-next.png);
													background-image: linear-gradient(transparent, transparent), url(../images/gal-next.svg);
}
#blueimp-gallery .close								{
													background-image: url(../images/gal-close.png);
													background-image: linear-gradient(transparent, transparent), url(../images/gal-close.svg);
}

/*Extra space on contact page*/
.currentpage_contact .ImageGallery					{margin-top: 50px;}




/*------------------------------*/
/*----------Menu Block----------*/
/*------------------------------*/
.MenuBlock                                              {margin-bottom: 50px;}
.MenuBlock .SectionTitle                                {margin-bottom: 20px;}
.MenuBlock .btn                                         {margin-top: 25px;}
/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

}
@media(min-width:768px){

	.MenuBlock p.Intro                                      {height: auto;}

}
@media(min-width:992px){

	.MenuBlock p.Intro                                      {height: 128px; overflow: hidden;}

}
@media(min-width:1200px){

}




/*------------------------------*/
/*----------Contact Social Links----------*/
/*------------------------------*/
.ContactSocialLinks                                    {border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 30px 0; margin: 40px 0;}
.ContactSocialLinks li                                 {display: table-cell; width: 1%; background: none; text-align: center; padding: 0px; background-position: right center; background-repeat: no-repeat;
                                                        background-image: url(../images/divider-4.png);
                                                        background-image: linear-gradient(transparent, transparent), url(../images/divider-4.svg);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}
.ContactSocialLinks li:last-child                      {background: none;}
.ContactSocialLinks li a                               {text-decoration: none;}
.ContactSocialLinks li a img                           {display: block; margin: 0 auto; opacity: .3;
                                                        -webkit-transform: translateY(40%);
                                                            -ms-transform: translateY(40%);
                                                                transform: translateY(40%);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}
.ContactSocialLinks li a span                          {font-size: 12px; text-transform: uppercase; display: inline-block; font-family: 'Open Sans', sans-serif; display: block; position: relative; opacity: 0;
                                                        -webkit-transform: translateY(-40%);
                                                            -ms-transform: translateY(-40%);
                                                                transform: translateY(-40%);
                                                        -webkit-transition: all .2s ease;
                                                           -moz-transition: all .2s ease;
                                                             -o-transition: all .2s ease;
                                                                transition: all .2s ease;
}

/*-----Hover-----*/
.ContactSocialLinks li:hover a span                    {opacity: 1;
                                                        -webkit-transform: translateY(0%);
                                                            -ms-transform: translateY(0%);
                                                                transform: translateY(0%);
}
.ContactSocialLinks li:hover a img                    {opacity: 1;
                                                        -webkit-transform: translateY(0%);
                                                            -ms-transform: translateY(0%);
                                                                transform: translateY(0%);
}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

	.ContactSocialLinks                                    {}
	.ContactSocialLinks:after								{content: ''; display: block; clear: both;}
	.ContactSocialLinks li                                 {display: block; width: 50%; float: left;}
	.ContactSocialLinks li:nth-child(even)					{background: none;}

}




/*------------------------------*/
/*----------Contact Social Media----------*/
/*------------------------------*/
.ContactSocialMedia								{/*border-top: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/ padding: 30px 0; margin: 0;}
.ContactSocialMedia li							{display: table-cell; width: 1%; background: none; text-align: center; padding: 0px; color: white; background-position: right center; background-repeat: no-repeat;
                                                background-image: url(../images/divider-4.png);
                                                background-image: linear-gradient(transparent, transparent), url(../images/divider-4.svg);
}
.ContactSocialMedia li:last-child               {background: none;}
.ContactSocialMedia li a						{text-decoration: none; opacity: .3; padding: 10px; display: block;
												-webkit-transition: all .2s ease;
												   -moz-transition: all .2s ease;
													 -o-transition: all .2s ease;
														transition: all .2s ease;
}
.ContactSocialMedia li > span					{opacity: .3; padding: 10px; display: block;}
.ContactSocialMedia li a:hover					{opacity: 1;}

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){

	.ContactSocialMedia                                    {}
	.ContactSocialMedia:after								{content: ''; display: block; clear: both;}
	.ContactSocialMedia li                                 {display: block; width: 50%; float: left;}
	.ContactSocialMedia li:nth-child(even)					{background: none;}

}




/*------------------------------*/
/*----------Forms----------*/
/*------------------------------*/
.ContactForm											{margin-bottom: 60px;}

/*----------General----------*/
label                                                   {color: white; font-family: 'nexa_lightregular', 'Open Sans', sans-serif; font-weight: 300; text-transform: uppercase; font-size: 18px;}
input,
textarea,
.form-control                                           {padding: 13px; border: none; border: none; border-radius: 0px; height: auto; font-weight: 400; color: white; background: #282828; border: 1px solid #393939;}

textarea                                                {min-height: 120px;}

/*----------Placeholders----------*/
::-webkit-input-placeholder                             {font-weight: 200; color: #9E9D9D;}
:-moz-placeholder                                       {font-weight: 200; color: #9E9D9D;}
::-moz-placeholder                                      {font-weight: 200; color: #9E9D9D;}
:-ms-input-placeholder                                  {font-weight: 200; color: #9E9D9D;}




/*------------------------------*/
/*----------Footer----------*/
/*------------------------------*/
/*----------General----------*/
footer                                                  {/*margin-top: 100px;*/ z-index: 1001;}
footer p												{font-size: 14px; opacity: .75;}
footer .FooterLeft                                      {text-align: left;}
footer .FooterRight                                     {text-align: right;}

/*----------Homepage----------*/
.currentpage_homepage footer                            {position: fixed; bottom: 10px; width: 100%;}
.currentpage_homepage .StickyFooterContainer 			{height: 100% !important;}

/*-----Sticky footer-----*/
.StickyFooterContainer 									{min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -42px;}
footer, .push 											{height: 42px; }

/*_-_-_-_-Media Queries-_-_-_-*/
@media(max-width:767px){
    footer                                                  {}
    footer .FooterLeft,
    footer .FooterRight                                     {text-align: center;}

	/*----------Homepage----------*/
	.currentpage_homepage footer                            {position: relative; bottom: auto; margin-top: 40px;}
	.currentpage_homepage .StickyFooterContainer 			{min-height: 0px; height: auto !important; height: auto; margin: auto;}
}
@media(min-width:768px){

}
@media(min-width:992px){

}
@media(min-width:1200px){

}





/*------------------------------*/
/*----------TEMPLATE----------*/
/*------------------------------*/
/*----------Main----------*/
.Thing                                                  {}

/*-----Sub-----*/
.Thing.Two                                              {}

/*--Note--*/

/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
/*_-_-_-_-Media Queries-_-_-_-*/
/*_-_-_-_-_-_-_-_-_-_-_-_-_-_-*/
@media(max-width:767px){

}
@media(min-width:768px){

}
@media(min-width:992px){

}
@media(min-width:1200px){

}
