@import url(//fonts.googleapis.com/css?family=PT+Sans;
@import url(//fonts.googleapis.com/css?family=Kaushan+Script);

/*------------------------------------------*/
/*	     01 - General & Basic Styles
/*------------------------------------------*/

html {
    overflow-x: hidden;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
    color: #111;
    line-height: 21px;
/*	font-weight: 300;*/
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    font-smoothing: antialiased !important;
    vertical-align: baseline;
	overflow-x:hidden;
}

strong, b {
	font-weight: 600;
}

ul, ol {
	list-style: none;
}

ul {
    padding: 0;
    margin: 0;
}

p {
    font-size: 18px;
    font-weight: 400;
    color: #222;
    line-height: 1.5em;
}

a {
    transition: color 0.2s ease-in-out;
    -moz-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
}

a:hover {
    color: #222;
}

a, 
a:hover, 
a:focus,
a:active{
    outline: 0;
    text-decoration: none;
}


.white {
    color: #fff !important;
}

img {
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-primary {
    background: #b6131e;
    border-color: #b6131e;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: transparent;
    border-color: #b6131e;
    color: #b6131e;
}

.btn-cancel {
    background: #222;
    border: 1px solid #222;
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: transparent;
    border-color: #222;
    color: #222;
}


/* Start Section Title */

.section-title {
    margin-bottom: 80px;
}
.section-title h2{
    color: #111;
    font-size: 48px;
    font-family: 'Roboto', Arial, sans-serif;
    text-transform: none;
}

.section-title p {
    //padding-bottom: 60px;
    color: #111;
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 300;
}
/* End Section Title */


.page-header {
    background: url(../../background_images/header.jpg) no-repeat;
    padding: 50px 0;
    margin-top: 00px;
	background-size:cover;
    background-attachment: fixed;
    position: relative;
}

.page-header:before {
    content: "\00A0";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    top: 0px;
    left: 0px;
}

@supports (-webkit-touch-callout: none) {
	.page-header {
		background-attachment: scroll;
	}
}

.page-header h1 {
    color: #fff;
    font-family: "Cinzel", serif !important;
	text-transform:none;
}

.page-header p {
	color:#fff;
}


/*------------------------------------------*/
/*	     02 - Header & Navigation
/*------------------------------------------*/


.top-bar {
	background-color: #fff;

}


.top-bar a {
	color: #aaa;
	border-bottom: 1px solid #f2f2f2;
}

.top-bar .contact-details {
    //border-left: 1px solid #f2f2f2;
    //padding-top: 8px;
}
.top-bar .contact-details li {
	display: inline-block;
    padding: 5px 15px;
    //font-size: 18px;
	line-height: 32px;
    border-left: 1px solid #f2f2f2;
}

.top-bar .contact-details li:last-child {
    border-right: 1px solid #f2f2f2;
}

.top-bar .contact-details li a:before {
	color: #aaa;
}

.top-bar .contact-details li:first-child a:before {
	display: none;
}

.top-bar .contact-details li a {
	font-size: 14px;
    letter-spacing: 1px;
	display: block;
	line-height: 32px;
}


/* Top Bar Social */

ul.social-list li {
    float: right;
    border-left: 1px solid #f2f2f2;
	margin-left:6px;
	margin-right:6px;
}

ul.social-list li a {
    display: inline-block;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
}

ul.social-list li:first-child {
    border-right: 1px solid #f2f2f2;
}

ul.social-list li a:hover{
    background: #b6131e;
}


ul.social-list li a i {
	font-size: 28px;
	display: block;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

ul.social-list li a i.fa-youtube {
	color:red;
}

ul.social-list li a i.fa-facebook {
	color:navy;
}

ul.social-list li a i.fa-instagram {
	color:black;
}

ul.social-list li a i.x-logo {
	color:black;
}

.x-logo svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

ul.social-list li a:hover i {
	-webkit-animation: toRightFromLeft 0.3s forwards;
	-moz-animation: toRightFromLeft 0.3s forwards;
	animation: toRightFromLeft 0.3s forwards;
    color: #fff;
}

@-webkit-keyframes toRightFromLeft {
	49% {
		-webkit-transform: translate(40%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toRightFromLeft {
	49% {
		-moz-transform: translate(40%);
	}
	50% {
		opacity: 0;
		-moz-transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toRightFromLeft {
	49% {
		transform: translate(40%);
	}
	50% {
		opacity: 0;
		transform: translate(-40%);
	}
	51% {
		opacity: 1;
	}
}







/* ----------------------------------------------------------------*/
/* Start Navigation Section */
/* ----------------------------------------------------------------*/
.navbar-logo .sulfur-logo-text{
    margin-top: 15px !important;
}

.navbar {
	margin-bottom: 0;
	background: #fff;
    border-bottom: 1px solid #f2f2f2 !important;
	border: none;
	border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
	z-index:222;
}

.navbar-toggle {
	margin-right:40px;
}

.navbar-brand {
	position: relative;
	//padding: 27px 0;
    padding-top: 0;
	margin: 0!important;
	transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	top:-30px;
}

a.navbar-brand {
    font-family: "Kaushan Script","Helvetica Neue",Helvetica,Arial,cursive;
    font-size: 40px;
    padding-top: 0px;
    color: #b6131e !important;
	background-color:transparent !important;
	border-top:2px solid transparent !important;
}

.navbar-default .navbar-nav {
	margin-right: 20px!important;
	position: relative;
	transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.navbar-default .navbar-nav > li {
    margin-left: 1px;
}

.navbar-default .navbar-nav > li:first-child {
    margin-left: 0;
}


.navbar-default .navbar-nav > li > a {
	color: #b6141e;
	display: block;
    font-size: 16px;
    line-height: 10px;
	font-weight: 300;
    padding: 25px 12px 30px;
	overflow: hidden;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
	text-transform:uppercase;
	border-top: 2px solid #EFEFEF;
}

.dropdown {
	font-weight: 300;
}

.navbar-default .navbar-nav > li > a i {
    padding-left: 10px;
}

.navbar-default .navbar-nav > li > a.active, 
.navbar-default .navbar-nav > li:hover > a {
	border-top: 2px solid #b6141e;
    color: black;
    background: #EFEFEF;
    //padding: 25px 15px 30px;
}

.navbar-default .navbar-nav > li > a i {
	margin: 0 -2px 0 -5px;
}


.navbar-default .navbar-nav .dropdown {
    position: absolute;
    left: 0;
    top: 97%;
    width: 220px;
	background-color: #fff;
    border-top: 3px solid #b6131e;
    visibility: hidden;
    z-index: 2;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-default .navbar-nav > li.drop:hover .dropdown {
    visibility: visible;
	opacity: 1;  
}

.dropdown li, .sup-dropdown li {
	position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dropdown li:first-child, 
.sup-dropdown li:first-child {
    border-top: none;
}

.dropdown li a, 
.sup-dropdown li a {
    display: block;
    color: #6b6b6b;
    padding: 10px 12px;
    text-decoration: none;
    text-transform: uppercase;
    transition: padding 0.2s ease-in-out;
    -moz-transition: padding 0.2s ease-in-out;
    -webkit-transition: padding 0.2s ease-in-out;
    -o-transition: padding 0.2s ease-in-out;
}


.dropdown > li:hover > a, 
.sup-dropdown li:hover > a {
    background: #b6131e;
    color: #fff;
}

.dropdown  li a.active, 
.sup-dropdown li a.active {
	background: #b6131e;
    color: #fff;
}

.dropdown li a i {
	margin: 0 0 0 -4px;
}

.navbar-default .navbar-nav .sup-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    width: 180px;
	background-color: #fff;
    margin-top: 10px;
    transition: margin-top 0.2s ease-in-out;
    -moz-transition: margin-top 0.2s ease-in-out;
    -webkit-transition: margin-top 0.2s ease-in-out;
    -o-transition: margin-top 0.2s ease-in-out;
    visibility: hidden;
    z-index: 3;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-default .navbar-nav li.drop .dropdown li:hover .sup-dropdown {
    visibility: visible;
    margin-top: 0;
}





/*--------------------------------------------------*/
/* Start Header Section                             */
/*--------------------------------------------------*/



.banner {
    text-align: center;
    color: #fff;
    background: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.banner .overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
	position:relative;
	cursor:pointer;
	z-index:22;
}

.intro-text {
    position: relative;
    padding: 20% 0 15% 0;
}

.banner .intro-text h1 {    
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 5px;
    margin-bottom: 55px;
    -webkit-animation: bounceIn;
    -moz-animation: rubberBand;
    -o-animation: bounceIn;
    animation: bounceIn;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
    font-family: 'Oswald', sans-serif;
}

.banner .intro-text h1 {
    color: #b6131e;
}

.banner .intro-text h1 span {
    color: blue;
}

.banner .intro-text p {
    color: #fff;
    font-size: 30px;
    font-weight: 300;
    line-height: 35px;
    letter-spacing: 3px;
    margin-bottom: 55px;
    -webkit-animation: bounceInLeft;
    -moz-animation: fadeInLeft;
    -o-animation: fadeInLeft;
    animation: bounceLeft;
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

.banner .intro-text .btn-primary {
    padding: 15px 25px;
    font-size: 16px;
    border-color: #fff;
    color: #fff;
    border-radius: 0;
    width: 130px;
}

.banner .btn-primary:hover {
	background: #fff;
	border-color: #fff;
    color: #111;
}








/*---------------------------------------------------------*/
/* Start About Us Section                                  */
/*---------------------------------------------------------*/


#about-section {
    padding-top: 40px;
    padding-bottom: 40px;
    // background: url(../images/parallax/bg-01.jpg) no-repeat;
    background-size: cover;
    background-position:bottom center;
}

#about-section-2 {
    background: #f9f9f9;
    padding-top: 80px;
    padding-bottom: 80px;
}



iframe {
    border: none;
}


.about-img {
    position: relative;
}

.about-img .head-text {
    position: absolute;
    left: 0;
    bottom: 5%;
    background: #fff;
    padding: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.about-list h4 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.about-list li {
    margin-bottom: 5px;
    color: #222;
}

.about-list li i {
    margin-right: 10px;
}



/** Toggles & Accordion **/

.panel-group .panel {
    border-radius: 0;
}
.panel {
    border-radius: 0;
    border: none !important;
    box-shadow: none !important
}

.panel-default > .panel-heading {
	background: transparent;
    border: 1px solid #111;
    border-radius: none;
    font-weight: 400;
}

.panel-body {
	padding: 15px 10px;
    border: none !important;
    color: #111;
    font-size: 16px;
    background-color: transparent !important;
}

.panel-heading {
	padding: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-title {
	font-size: 14px;
	font-weight: 400;
    padding: 10px;
    color: #666;
}

.panel-title a {
	position: relative;
	display: block;
	padding: 6px 12px;
	background-color: #fff;
	box-shadow: none;
	-o-box-shadow: none;
	-moz-box-shadow: none;
  	-webkit-box-shadow: none;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.panel-title a.collapsed {
	color: #222;
}

.panel-title a.collapsed:hover {
	color: #666;
}

.panel-title a .control-icon {
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -11px;
	transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    display: none;
}

.panel-title a.collapsed .control-icon {
    display: block;
}

.panel-title a i {
	font-size: 22px;
    padding-right: 5px;
    color: #5BB12F;
}




/* progress bar */

.skill-shortcode {
    margin-top: 40px;
}

.skill {
    padding-bottom: 10px;
}

.skill p {
    margin-bottom:7px;
    font-size: 13px;
}

.progress {
  //background: #fff;
  overflow: visible;
  height: 5px;
  margin-bottom: 10px;
  background: #f9f9f9;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.progress-bar {
    background: #5BB12F;
  float: left;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
  position:relative;
}

 .progress-bar-span { 
     opacity:1;
     position:absolute;
     top:-7px;
     background:#ACB2B8;
     padding:0px 10px;
     color:#FFF;
     border-radius: 0px;
     right:0px;
     -webkit-transition: all .5s ease-in-out;
     -moz-transition: all .5s ease-in-out;
     -o-transition: all .5s ease-in-out;
     -ms-transition: all .5s ease-in-out;
     transition: all .5s ease-in-out; 
 }

.skill:hover .progress-bar-span {
    opacity:1;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}




/**** Start Modal Section ****/

.section-modal .modal-content {
    padding: 100px 0 !important;
    min-height: 100%;
    border: 0 !important;
    border-radius: 0;
    background-clip: border-box;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    color: #888;
    font-weight: 300;
}



.section-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 75px;
    height: 75px;
    background-color: transparent;
    cursor: pointer;
}

.section-modal .close-modal:hover {
    opacity: .3;
}

.section-modal .close-modal .lr {
    z-index: 1051;
    width: 1px;
    height: 75px;
    margin-left: 35px;
    background-color: #222;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 1px;
    height: 75px;
    background-color: #222;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}






/*---------------------------------------------------------------*/
/* Start Call To Action
/*---------------------------------------------------------------*/


.call-to-action {
    background: url(../images/parallax/call-to.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 90%;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

@supports (-webkit-touch-callout: none) {
	.call-to-action {
		background-attachment: scroll;
	}
}

.call-to-action p {
    color: #fff;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 3px;
}

.call-to-action .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.call-to-action .btn-primary:hover {
    background: transparent;
}




/* ----------------------------------*/
/* Start Team Member Section         */
/* ----------------------------------*/


#team-section {
    padding-top: 80px;
    padding-bottom: 120px;
    background: #fff;
    color: #111;
    overflow: hidden;
}

#team-section .section-title h2 {
    //color: #fff;
}

#team-section .section-title p {
    //color: #fff;
}

.team-member {
    position: relative;
    overflow: hidden;
}

.team-member .team-details {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 67, 46, 0.8);
    color: #fff;
    padding: 0 2px;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.team-member .team-details h4 {
    padding-top: 15%;
    padding-bottom: 5%;
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
}

.team-member .team-details h4 span { 
	font-size:0.6em;
}

.team-member .team-details p {
	padding:10px;
    padding-bottom: 20%;
    font-size: 16px;
    color: #fff;
}


.team-member .team-details li {
    display: inline-block;
    padding-top: 20px;
}

.team-member .team-details li a {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid transparent;
    color: #111;
    font-size: 16px;
}

.team-member .team-details li:hover a {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}


.team-details h4,
.team-details p,
.team-details li{
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

.team-member:hover .team-details h4,
.team-member:hover .team-details p,
.team-member:hover .team-details li {
    -webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.team-member:hover .team-details {
    opacity: 1;
    filter: Alpha(Opacity=100);
}

.team-member:hover .team-details h4 {
    -webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.team-member:hover .team-details p {
    -webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.team-member:hover .team-details li:nth-child(n+1) {
    -webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.team-member:hover .team-details li:nth-child(n+2) {
    -webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.team-member:hover .team-details li:nth-child(n+3) {
    -webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.team-member:hover .team-details li:nth-child(n+4) {
    -webkit-transition-delay: 0.35s;
	transition-delay: 0.35s;
}

.team-member:hover .team-details li:nth-child(n+5) {
    -webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}





/*------------------------------------------*/
/* Start Portfolio Section
/*------------------------------------------*/

.portfolio-section-1 {
    padding-top: 80px;
    padding-bottom: 120px;
    background: #efefef;
}

.portfolio-section-2 {
    padding-top: 80px;
    padding-bottom: 120px;
    //background: #f7f7f7;
}

.portfolio-section-3 {
    padding-top: 80px;
    padding-bottom: 120px;
    background: #111;
}



#portfolio-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}

.portfolio-section-2 #portfolio-list li {
    margin-left: -2px;
}
#portfolio-list li {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 50%;
    margin-left: -4px;
    margin-bottom: -5px;
    padding: 0;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

@media only screen 
and (max-width : 1400px) {
	.special_event_link {
		display:none !important;
	}
}

@media only screen 
and (max-width : 550px) {

}

@media only screen 
and (max-width : 550px) {
    
     #portfolio-list li {
      width: 100%;
  }
  
	.client-box ul li, .client-box ul li:last-child {
		margin-left: 0% !important;
		margin-right:0% !important;
		min-width:100% !important;
	}
}

@media only screen 
and (max-width : 767px)
and (min-width : 551px){
    
     #portfolio-list li {
      width: 49.9%;
  }
}

@media (min-width: 768px) {
  #portfolio-list li {
     width: calc(33% - 10px);
  }
  
   .navbar-nav {
	   	padding-top:20px;
	}
}

@media (max-width: 768px) {
	.navbar-brand {
		top:-40px;
	}


  .navbar-header {
      float: none;
   }
   
   .navbar-nav {
	   	padding-top:20px;
		margin-left:10px !important;
	}
	
	.navbar-default .navbar-nav {
	   	 margin-right: 0px !important;
		 margin-left: 0px !important;
		 width:100%;
	}
	
	 .client-box ul li {
		list-style: none;
		float: left;
		padding: 0 1px;
		min-width: 33%;
	}
	
	.client-box ul li:last-child {
		margin-left: 25%;
		margin-right:25%;
	}
}

.portfolio-item {
   width: 100%;
   height: 100%;
   position: relative;
   text-align: center;
   cursor: default;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
	padding-bottom: 100%;
	background-size:cover;
	background-position:50% 30%;
}

.portfolio-caption {
    
   width: 100%;
   height: 100%;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
    opacity: 0;
    filter: Alpha(Opacity=0);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}


.portfolio-caption h4 {
    display: inline-table;
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    padding-top: 10%;
}

.portfolio-caption p {
    position: relative;
    top: 12%;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    padding: 0 10%;
}

.portfolio-caption a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 20px;
    font-size: 25px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    //background: #fff;
    color: #fff;
    position: absolute;
    top: 70%;
}

.portfolio-caption a.link-1 i {
    left: 30%;
}

.portfolio-caption a.link-2 i {
    left: 50%;
}

.portfolio-caption h4,
.portfolio-caption p,
.portfolio-caption a i {
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,200%,0);
	transform: translate3d(0,200%,0);
}

.portfolio-item:hover .portfolio-caption h4,
.portfolio-item:hover .portfolio-caption p,
.portfolio-item:hover .portfolio-caption a i {
    -webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.portfolio-item:hover .portfolio-caption {
    background-color: rgba(255, 67, 46, 0.8);
    opacity: 1;
    filter: Alpha(Opacity=100);
}

.portfolio-item:hover .portfolio-caption h4 {
    -webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.portfolio-item:hover .portfolio-caption p {
    -webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.portfolio-item:hover .portfolio-caption a.link-1 i {
    -webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.portfolio-item:hover .portfolio-caption a.link-2 i {
    -webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}



/********************************/
/* Start Service Section
/********************************/

#service-section {
    padding-top: 80px;
    padding-bottom: 40px;
}

.services-post {
  text-align: center;
    margin-bottom: 80px;
}

.services-post p {
	color:red;
}

.services-post p.open {
	color:blue
}

.services-post a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  width: 100px;
  height: 100px;
  margin: 0 0 24px;
  line-height: 100px;
  color: #111;
  font-size: 30px;
  text-align: center;
  background: transparent;
  border: 2px solid #111;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.services-post:hover a,
.services-post a.active {
  background: #b6131e;
  color: #ffffff;
  border:2px solid transparent;
}
.services-post h2 {
  color: #111;
  font-weight: 400;
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}



/*----------------------------------------------------------*/
/* Start Fun Facts Counter Section
/*----------------------------------------------------------*/

.fun-facts {
    background: url(../images/parallax/bg-02.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
	.fun-facts {
		background-attachment: scroll;
	}
}

.counter-item {
    position:relative;
    text-align:center;
    margin-bottom: 40px;
    background: #fff;
    padding: 0 0px 40px 0px;
}

.counter-item p {
    padding-bottom: 10px;
    color: #111;
}

.counter-item h3 {
  text-align:center;
  margin-bottom:0px;
  color:#111;
    text-transform: none;
    font-size: 20px;
}

.counter-item i {
  font-size:40px;
    color: #fff;
    background: blue;
    padding: 40px 50px;
	width:100%;
}


.timer {
    padding: 10px 0;
    color: red;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
    text-align:center;
    line-height:80px;
    //font-family: 'Oswald', sans-serif;
}



/****************************************/
/* Start Pricing Section
/****************************************/


.pricing-section {
    padding-top: 80px;
    padding-bottom: 120px;
}

.pricing {
    text-align: center;
    box-shadow: 0 0 2px #999;
}

.pricing-header {
    background: #f1f1f1;
    padding: 30px 0;
	padding:0px;
}

.pricing-header i {
    font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}

.pricing-body {
    padding: 30px;
}

h3.pricing-title {
    margin-bottom: 20px;
}

.pricing-body p {
    margin-bottom: 20px;
}

.pricing-body a {
    font-size: 20px;
    text-transform: none;
}

.colored-bg {
    background: #5BB12F;
}

.colored-bg i {
    border: 2px solid #fff;
}


.google-map #map {
    width: 100%;
    height: 500px;
}






/***************************************/
/* Start Client & Testimonial Section
/***************************************/


#testimonial-section {
    background: url(../images/parallax/call-to.jpg) no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
	background-attachment:fixed;
}

@supports (-webkit-touch-callout: none) {
	#testimonial-section {
		background-attachment:scroll;
	}
}
.testimonial-item {
    text-align: center;
}

.testimonial-item p {
    color: #fff;
    margin-left: 20%;
    margin-right: 20%;
	font-size:22px;
}

.testimonial-item img {
    width: 200px;
    height: 200px;
    margin-top: 30px;
    margin-bottom: 30px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.testimonial-item img[src*=guest] {
    width: 120px;
    height: 120px;
}

.testimonial-item .desgnation {
    margin-top: 5px;
    margin-bottom: 30px;
}




/*******************************************/
/* Start Clients Section
/*******************************************/

#client-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.client-box ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.client-box ul li {
  list-style: none;
  float: left;
  padding: 0 1px;
  width: 20%;
}
.client-box ul li a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  border: 1px solid #cccccc;
  opacity: 1;
  width: 100%;
  padding: 0px;
}
.client-box ul li a img {
  width: 100%;
}



/* Start Footer Section */

.footer-section {
    border-bottom: 1px solid #0f0f0f;
    background: #222222;
    color: #999;
    font-weight: 400;
    padding: 80px 0 60px;
}

.footer-section p {
    color: #999;
}

.footer-section .section-title {
    color: #c5c5c5;
}

.footer-section .section-heading-2 span:after {
    background: #434343;
}

.footer-section .section-heading-2 .section-title:after {
    background-color: #363636;
}

.footer-section .section-heading-2 h3{
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-address ul li {
    padding: 5px 0;
}

.footer-address ul li .fa {
    color: #6a6a6a;
    font-size: 16px;
    margin-right: 5px;
}

.footer-address ul li a {
    color: #9d9d9d;
}

.footer-address ul li a:hover {
    color: #b6131e;
}

.latest-tweet .media-body {
    padding: 5px 14px 5px 6px;
}

.latest-tweet .media-body p {
    font-size: 13px;
    color: #aaa;
}

.latest-tweet h4.media-heading {
    font-size: 10px;
    color: #b6131e;
}


.footer-social ul.social-list li {
    padding-right: 2px;
}

.footer-social ul.social-list li a i {
    font-size: 18px;
	display: block;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
}

.footer-social ul.social-list li a {
    background: #2e2e2e;
    color: #9d9d9d;
    transition: background 0.3s;
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    -o-transition: background 0.3s;
}

.footer-social ul.social-list li a:hover {
    background: #b6131e;
    color: #000;
}

.flickr-widget li {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 23.97%;
}

.flickr-widget li img {
    width: 100%;
    height: auto;
}

/* End Footer Section */

/* Start Copyright Section */

.copyright-section {
    border-top: 1px solid #363636;
    font-size: 12px;
    padding: 20px 0;
    background: #1d1d1d;
    color: #7f7f7f;
}

.copyright {
    font-size: 16px;
}

.copyright-section a {
    color: #7f7f7f;
}

.copyright-section a:hover {
    color: #b6131e;
}

.copyright-menu li {
    display: inline;
    padding-left: 10px;
}

.copyright-menu li a {
    color: #7f7f7f;
    font-weight: 500;
}

.copyright-menu li a.active {
    color: #fff;
    font-size: 13px;
}

.copyright-menu li a:hover {
    color: #b6131e;
}

/* End Copyright Section */


/* Start Blog Page Section */


.blog-post {
    margin-bottom: 40px;
}

.blog-post .post-img {
    position: relative;
}

.blog-post .post-img img {
    margin: 0 0 16px 0;
    border-radius: 8px;
    width: 100%;
}

.blog-post .post-type {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.blog-post .post-type i {
    padding: 15px;
    background: #fff;
    font-size: 16px;
    color: #b6131e;
    border-radius: 3px;
    position: absolute;
    top: 45%;
    left: 48%;
}

.blog-post .post-img:hover .post-type{
    opacity: 1;
}

.blog-post .post-img:hover .post-type i {
    -webkit-animation: fadeInDownBig;
    animation: fadeInDownBig;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

h1.post-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    padding: 10px 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
}

h1.post-title a {
    color: #5c5c5c;
}

.blog-post ul.post-meta {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.blog-post .post-meta li {
    display: inline-block;
    padding-right: 10px;
    color: #959595;
}

.blog-post .post-meta li a {
    color: #5c5c5c;
}

.blog-post .post-meta li a:hover {
    color: #b6131e;
}

.blog-post .post-meta li i {
    color: #b6131e;
    margin-right: 10px;
}

.blog-post p.post-content {
    margin-bottom: 30px;
}

.blog-post a.btn-primary {
    background: #b6131e;
    border: 1px solid #b6131e;
    font-weight: 300;
}

.pagination li a {
    color: #b6131e;
}

.pagination li a:hover,
.pagination li a:focus {
    color: #b6131e;
}

.pagination li.active a {
    background: #b6131e;
    border-color: #b6131e;
}

.blog-body .pagination {
    margin-bottom: 70px;
}

/* End Blog Page Section */


/* Start Single Blog Page Section */


.single-blog-post {
    margin-bottom: 40px;
}

.single-blog-post .post-img {
    position: relative;
}

.single-blog-post .post-img img {
    margin: 0 0 16px 0;
    border-radius: 3px;
}

.single-blog-post .post-type {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.single-blog-post .post-type i {
    padding: 15px;
    background: #fff;
    font-size: 16px;
    color: #b6131e;
    border-radius: 3px;
    position: absolute;
    top: 45%;
    left: 48%;
}

.single-blog-post .post-img:hover .post-type{
    opacity: 1;
}

.single-blog-post .post-img:hover .post-type i {
    -webkit-animation: fadeInDownBig;
    animation: fadeInDownBig;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
}

.single-blog-post h1.post-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 110%;
    padding: 10px 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
}

.single-blog-post h1.post-title a {
    color: #5c5c5c;
}

.single-blog-post .post-meta {
    //margin-bottom: 20px;
}

.single-blog-post .post-meta li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    color: #959595;
}

.single-blog-post .post-meta li a {
    color: #5c5c5c;
}

.single-blog-post .post-meta li a:hover {
    color: #b6131e;
}

.single-blog-post .post-meta li i {
    margin-right: 3px;
}

.single-blog-post .post-meta ul.pull-right li {
    border-right: 1px solid #ddd;
}

.single-blog-post .post-meta ul.pull-right li:last-child {
    border-right: none;
}

.single-blog-post .post-meta ul.pull-right li i {
    padding-left: 5px;
}

.single-blog-post p.post-content {
    //margin-bottom: 30px;
    margin-top: 20px;
    display: inline-block;
}


.item-content-footer {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    margin-top: 30px;
}

.item-content-footer li {
    display: inline;
    border-left: 1px solid #ddd; 
    padding-left: 20px;
    padding-right: 10px;
}

.item-content-footer li:first-child {
    border-left: none;
    padding-left: 0;
}

.item-content-footer .rating i {
    font-size: 20px;
}

.item-content-footer .rating .active i {
    color: #b6131e;
}


.blog-author h3 {
    color: #32313b;
    text-transform: capitalize;
    font-size: 30px;
    line-height: 33px;
}
.blog-author .media {
    margin: 25px 0 16px 0;
    padding: 8px;
}

.blog-author .media img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    border-radius: 8px;
    border: 6px solid #f2f2f2;
}

.blog-author .media-body h4 a {
    text-transform: capitalize;
    color: #323232;
    font-size: 20px;
}

.blog-author .media-body p {
    color: #778899;
}


.blog-user {
    margin-bottom: 100px;
}


#comments .comments-list {
	padding: 0;
	margin: 0 0 35px 0;
}

#comments .comments-title {
	font-weight: 400;
	margin-bottom: 20px;
    text-transform: lowercase;
    font-size: 30px;
}

#comments .comments-list li .comment-box {
	padding: 20px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
	margin-bottom: 20px;
	border-bottom: 1px solid #e8e8e8;
}

#comments .comments-list li ul {
	margin-left: 70px;
}

#comments .avatar {
	float: left;
}

#comments .avatar img {
	width: 72px;
    height: 72px;
    margin-right: 30px;
    margin-bottom: 15px;
    border-radius: 100%;
    border: 5px solid #f2f2f2;
}

#comments .comment-content {
	padding-left: 72px;
}

#comments .comment-content .comment-meta {
	margin-bottom: 5px;
}


.comment-content .comment-meta .comment-by {
	font-weight: 400;
	color: #323232;
    font-size: 18px;
}

.comment-content .reply-link a {
    color: #555;
    font-size: 11px;
    text-decoration: underline;
}

.comment-content .comment-date {
	color: #959595;
    font-style: italic;
    margin-bottom: 10px;
}

.comment-content p {
    margin-top: 5px;
}

#respond {
    margin-bottom: 120px;
}


#respond .respond-title {
	font-weight: 400;
    text-transform: none;
    color: #32313b;
}

#respond .form-caution {
    color: #cecece;
    font-style: italic;
	margin-bottom: 15px;
}

#respond form {
    margin-top: 20px;
}


/* End Single Blog Page Section */


/* Start Sidebar Scetion */

.sidebar .section-heading-2 {
    margin-bottom: 30px;
}

.sidebar .section-heading-2 h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: #32313b;
    font-weight: 400;
}

.sidebar .widget {
    margin-bottom: 50px;
}



.sidebar .flickr-widget .flickr-list li {
    width: 61px;
    height: 61px;
}



.sidebar .widget-recent-post ul li {
    display: inline;
}

.sidebar .widget-recent-post .media-left img {
    width: 130px;
    height: 75px;
}

.sidebar .widget-recent-post h4.media-heading a {
    font-size: 16px;
    color: #323232;
    text-transform: capitalize;
}

.sidebar .widget-recent-post h4.media-heading a:hover {
    color: #b6131e;
}

.sidebar .widget-recent-post .media-body li,
.sidebar .widget-recent-post .media-body li a {
    color: #959595;
}

.widget-categories li {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #cecece;
}

.widget-categories li a {
    color: #323232;
}

.widget-categories li i {
    padding-right: 15px;
}

.widget-categories li a.cat-counter {
    margin-left: 20px;
    font-size: 10px;
    background: #b6131e;
    color: #fff;
    padding: 3px;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    line-height: 12px;
    text-align: center;
    display: inline-block;
}


.sidebar .tagcloud a {
    display: inline-block;
    color: #6a6a6a;
    font-size: 14px;
    padding: 5px 8px;
    background: #f2f2f2;
	margin: 0 1px 5px 0;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.sidebar .tagcloud a:hover {
    background: #b6131e;
    color: #fff;
}

/* End Sidebar Scetion */





/***********************************/
/* Start Contact Section
/***********************************/

.contact {
    //background: #f9f9f9;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 100px;
}

@supports (-webkit-touch-callout: none) {
	.contact {
		background-attachment: scroll;
	}
}



.form-control {
    border-radius: 4px;
    border: 1px solid #444;
}

.contact .form-group {
    margin-bottom: 25px;
}

textarea {
    width: 100%;
}
.contact .form-group input,
.contact .form-group textarea {
    padding: 20px;
}

.contact .form-group input.form-control {
    height: auto;
}

.contact .form-group textarea.form-control {
    height: 236px;
}

.contact::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-moz-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact::-moz-placeh;older {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact .text-danger {
    color: #e74c3c;
}

.contact button {
    font-weight: 400;
    margin-top: 30px;
}


@media (max-width: 360px) {
	.navbar-brand {
		width:65%;
		margin-top:15px !important;
	}
}


.navbar .container {
    width: 100%;
	padding-left:0px;
	padding-right:0px;
}

.navbar-default .navbar-collapse {
	padding-right:0px;
	margin-right:-20px;
}

@media (min-width: 767px) {
	.navbar .container .navbar-brand {
		padding-left:0px;
	}
}

.navbar .container img[src*="logo.png"] {
	background-color:white;
	border-bottom-right-radius:12px;
}

h2, h3, p.header {
  font-family: "Cinzel", serif !important;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin-bottom:1em;
  text-transform:none !important;
}

h2, p.header {
  color:#b6131e !important;
/*  text-shadow:-1px -1px 1px rgba(255,255,255,0.4), 1px 1px 1px rgba(255,255,255,0.4), 1px -1px 1px  rgba(255,255,255,0.4), -1px 1px 1px rgba(255,255,255,0.4); */
  font-weight: 500;
}

.testimonial-item {
	position:relative;
	text-align:center;
}

.testimonial-item p.header {
	font-size:1.6em !important;
	border-bottom:1px solid white;
	width:fit-content;
	margin:auto;
	left:50%;
	white-space:nowrap;
}

.testimonial-item .desgnation {
	letter-spacing:2px;
}

.banner .overlay {
	opacity:1;
	transition:0.5s opacity;
}

.banner:hover .overlay {
	opacity:0;
}


div#quotes-section > div {
	background:url(../../background_images/seats.jpg);
	background-size:cover;
	background-attachment:fixed;
	background-position:bottom;
	min-height:10vw;
	margin-bottom:2em;
	overflow:hidden;
	color:white;
	font-size:2em;
	padding:1em;
	border-radius:15px;
	position:relative;
	margin-top:1em;
}

@supports (-webkit-touch-callout: none) {
	div#quotes-section > div {
		background-attachment: scroll;
	}
}

div#quotes-section > div:before {
	content:"\00A0";
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	background-color:rgba(0,0,0,0.4);
	left:0px;
	top:0px;
	z-index:0;
}

div#quotes-section > div > div {
	position:relative;
	z-index:2;
}
div#quotes-section p {
	color:white;
	font-size:2em;
}

.showMobile {
	display:none;
}

@media (max-width: 768px) {
	.hideMobile {
		display:none;
	}	

	.navbar .container img[src*="logo.png"] {
		max-height: 102px !important;
	    height: 102px !important
	}
}



tr.altRow, tr.altRow td {
	background-color:#efefef;
}

table#showTable {
	width:100%;
	border-radius:8px;
	overflow:hidden;
	border:1px solid #b6141e !important;
	outline:1px solid #b6141e;
	margin-bottom:2em;
	table-layout:auto;
}

table#showTable thead {
	width:100%;
}


table#showTable thead tr th:last-child {
	width:100%;
}

.headshot {
	position:relative;
	width:20%;
	height:0px;
	padding-bottom:20%;
	margin-bottom:3em;
	overflow:hidden;
	float:left;
}


@media screen and (max-width:1200px) {
	.headshot {
		width:25%;
		padding-bottom:25%;
	}
}

@media screen and (max-width:1024px) {
	.headshot {
		width:33%;
		padding-bottom:33%;
	}
}

@media screen and (max-width:767px) {
	.headshot {
		width:50%;
		padding-bottom:50%;
	}
}


@media screen and (max-width: 480px) {
	.headshot {
		width:80%;
		margin-left:10%;
		padding-bottom:80%;
	}

}

blockquote {
	border-left:2px solid white;
}

blockquote p {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-left:1em;
  margin-right:1em;
}

blockquote p::before {
  content: "\201C";
  position: absolute;
  left: -0.3em;
  top: -0.2em;
  font-size: 4em;
  line-height: 1;
  opacity: 0.2;
}

blockquote p::after {
  content: "\201D";
  position: absolute;
  right: -0.35em;
  bottom: -0.65em;
  font-size: 4em;
  line-height: 1;
  opacity: 0.2;
}

blockquote cite {
    padding-left: 1.8em;
}

blockquote cite:before {
	content:" - ";
	opacity: 0.5;
}

.headshot img {
	position:absolute;
	width:80%;
	margin:10%;
	z-index:1;
	border-radius:50%;
	background-color:#efefef;
}
.headshot .header {
	position:absolute;
	top:0px;
	left:50%;
	text-align:center;
	z-index:2;
	width:100%;
	font-weight:600;
	text-shadow:-1px -1px 1px rgba(255,255,255,1), 1px 1px 1px rgba(255,255,255,1), 1px -1px 1px  rgba(255,255,255,1), -1px 1px 1px rgba(255,255,255,1);
	white-space:nowrap;
	transform:translateX(-50%);
	text-transform: capitalize !important;
}
.headshot .desgnation {
	position:absolute;
	bottom:15%;
	left:50%;
	z-index:2;
	background-color:#b6141e;
	border-radius:1em;
	text-align:center;
	color:white;
	padding:0.15em 1.5em;
	min-width:80%;
	white-space:nowrap;
	transform:translateX(-50%);
}


.logo-spacer {
	background-image:url("../../background_images/jester.png");
	width:50%;
	height:6em;
	margin:auto;
	background-size:25% auto;
	background-repeat:repeat-x;
	background-position:40% 50%;
	clear:both;
}

@media (max-width: 768px) {
	.client-list li:nth-child(n+4) {
		display:none;
	}

	#client-section {
		border:none !important;
	}
		
	.client-box ul li, .client-box ul li a {
		width:100%;
		text-align:center;
		border:none !important;
	}
	
	.client-box ul li {
		width:33%;
	}
	
	.client-box ul li img {
		width:auto !important;
		margin:auto;
		border:1px solid #efefef;
		padding:2px;
	}
	.logo-spacer {
		width:80%;
		background-position:50% 50%;
		background-size:33% auto;
	}
	
	#quotes-section {
		margin-left:5%;
		margin-right:5%;
		width:90%;
	}

	.navbar-default .navbar-nav .dropdown {
		width:100%;
	}

	.copyright, .copyright > span {
		float:none !important;
		display:block !important;
		text-align:center;
		margin-top:1em;
	}
	
	.navbar-default .navbar-nav > li.drop:hover .dropdown {
	    position: relative;
	    height: fit-content;
	}
	
	.navbar-collapse {
		overflow:hidden;
		border-top:1px solid white !important;
	}
}



@media (min-width: 767px) {
	.col-md-8 .logo-spacer {
		width:60%;
		background-position:50% 50%;
		background-size:33% auto;
/*		margin-left:33%; */
	}
}

@media (max-width: 550px) {
	.client-list li:nth-child(n+3) {
		display:none;
	}
}

.container > img, .container > p > img, .about-img > img, img.curved {
	border-radius:8px;
}

.portfolio-item {
	border-radius:8px;
	overflow:hidden;
}
#copyright > span {
	float:none;
	display:block;
	text-align:center;
	margin-top:1em;
}

.flashing {
	  animation: flash-bg 1.5s infinite;
}

@keyframes flash-bg {
  0% {
    background-color: rgba(0, 0, 0, 1);
  }
  50% {
    background-color: rgba(0, 0, 0, 0);
	background-color: #b6141e;
  }
  100% {
    background-color: rgba(0, 0, 0, 1);
  }
}

.h3.injectedH3 {
	margin-top:1em;color:#b6141e;clear:both;
}

#showTable tr[data-src] td {
	cursor:pointer;
}

#showTable tr[data-src]:hover, #showTable tr[data-src]:hover td {
	background-color:#b6141e;
	color:white;
}

h2[data-category], h3[data-category] {
	padding-right:2.5em;
	position:relative;
}

.findmedia h3[data-category="video"] {
	padding-right:1.5em;
	background-image:url(../../background_images/icons/video.png);
	background-repeat:no-repeat;
	background-position:right bottom;
	background-size:auto 50%
}

h2[data-category]:before, h3[data-category]:before {
	content:"\00A0";
	position:absolute;
	top:-0.4em;
	right:0px;
	height:0.9em;
	width:1.6em;
	font-size:3em;
	background-size:contain;
	background-position: right 50%;
	background-repeat:no-repeat;
	background-size:auto 0.8em;
	display:block! important;
	z-index:0;
}

.findmedia h3[data-category="video"]:before {
	display:none !important;
}

@media screen and (max-width:768px) {
	h2[data-category]:before, h3[data-category]:before {
		top:-0.2em;
		background-size:auto 0.65em;
	}
	
	h2[data-category], h3[data-category] {
 		padding-right: 3.5em;
	}
}

h2[data-category='committee']:before, h3[data-category='committee']:before {
	background-image:url('../../background_images/icons/meet.png');
}

h2[data-category='video']:before, h3[data-category='video']:before {
	background-image:url('../../background_images/icons/video.png');
}

h2[data-category='cast']:before, h3[data-category='cast']:before {
	background-image:url('../../background_images/icons/masks.png');
}

h2[data-category='crew']:before, h3[data-category='crew']:before {
	background-image:url('../../background_images/icons/tools.png');
}

h2[data-category='chorus']:before, h3[data-category='chorus']:before {
	background-image:url('../../background_images/icons/dancers.png');
}

h2[data-category='news']:before, h3[data-category='news']:before {
	background-image:url('../../background_images/icons/news.png');
}

h2[data-category='easter']:before, h3[data-category='easter']:before {
	background-image:url('../../background_images/icons/easter.png');
}

h2[data-category='christmas']:before, h3[data-category='christmas']:before {
	background-image:url('../../background_images/icons/tree.png');
}

h2[data-category='foh']:before, h3[data-category='foh']:before {
	background-image:url('../../background_images/icons/tickets.png');
}

h2[data-category='thanks']:before, h3[data-category='thanks']:before {
	background-image:url('../../background_images/icons/thanks.png');
}

h2[data-category='love']:before, h3[data-category='love']:before {
	background-image:url('../../background_images/icons/heart.png');
}

h2[data-category='roadtrip']:before, h3[data-category='roadtrip']:before {
	background-image:url('../../background_images/icons/road.png');
}

h2[data-category='announcement']:before, h3[data-category='announcement']:before {
	background-image:url('../../background_images/icons/news.png');
}

.section-title > h3 {
	margin-top:1em;
}

h4.media-heading > a > h3:before {
	display:none;
}
@media screen and (max-width:768px) {
	ul#otherteams {
		columns:2 !important;
		background-clip: padding-box;
	}	
	
	.section-title > h3:before {
		display:none;
	}
	
	.section-title > h3 {
		margin-top:0;
	}
}


ul#otherteams li {
	height:fit-content;
	padding:1em 0px;
	vertical-align:bottom;
	position:relative;
	break-inside: avoid;
}

ul li {
	break-inside: avoid;
}

ul#otherteams li a {
	white-space:nowrap;
	transition:background-color 0.5s;
	background-color:black;
}

ul#otherteams li a:hover {
	background-color:#b6141e;
}

h4.archive {
	border-top:1px dotted #eee;
	padding-top:1em;
}

.seen {
	position:relative;
}

.seen:after {
	content:"\2713";
	position:absolute;
	color:#b6141e;
	top:1em;
	right:0px;
}

.chorus .headshot img {
	filter: grayscale(1);
	transition: all 0.5s;
	cursor:pointer;
}

.chorus .headshot:hover img {
	filter: grayscale(0);
	transition: all 0.5s;
}

.blog-body a {
	color:#b6141e;
	border-bottom:1px dotted black;
}

.debug {
	width:90%;
	margin:10px 5%;
	padding:5px;
	background-color:#DDD;
	border:1px solid #AAA;
	background-repeat:no-repeat;
	background-size:auto 100%;
	position:relative;
	overflow:hidden;
}

.debug > div {
	background-color:white;
	position:relative;
	height:81px;
	margin-bottom:-15px;
	margin-right:1em;
	border-right:1px solid #aaa;
	display: inline-block;
    float: left;
	transform:translate(-5px,-5px);
}
	
#simulateDate:not(:empty) {
	display:block;
	position:absolute;
	top:0px;
	font-size:1.5em;
	padding:0.4em 1em;
	color:white;
	background-color:#b6141e;
	border-bottom-left-radius:7px;
	border-bottom-right-radius:7px;
	box-shadow:0px 0px 5px 5px rgba(0,0,0,0.6);
	z-index:555;
	left:50%;
	transform:translateX(-50%);
}

.row.countdown h3 {
	width:fit-content;margin:auto;margin-bottom:1em;padding-bottom:0.3em;border-bottom:1px solid #b6131e;position:relative;z-index:2;
}

.gradientanimation {
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  margin: 0;
  height: 100%;
  overflow: hidden;
  /* Use a pseudo-element to hold the scrolling gradient */
  position: relative;
  background-color:#b6131e !important;
  color:transparent !important;
}

.gradientanimation::before {
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  color:white;
  /* Smooth gradient with subtle red/white variants */
  background: linear-gradient(
    -45deg,
    #b6131e 0%,
	#b6131e 38%,
    #c94a52 42%,
    #e4d6d8 46%,
    #f3f3f3 50%,
    #e4d6d8 54%,
    #c94a52 58%,
    #b6131e 66%,
	#b6131e 100%
  );

  background-size: 100% 100%; /* each half is a full gradient */
  
  /* Animate right-to-left continuously */
  animation: scroll-gradient 8s linear infinite;
  z-index:0;
}

.gradientanimation h3 {
	color:white !important;
	border-bottom:1px solid black !important;
}

.gradientanimation.test::before {
    transform: translate(-50%,0%);
}

.stopped {
	background:#f3f3f3;
}

@keyframes scroll-gradient {
  0% {
    transform: translate(0,0);
	opacity:0;
  }
  50% {
  	opacity:0.8;
  }
  100% {
    transform: translate(-100%);
	opacity:0;
  }
}

@media (max-width: 768px) {
	.gradientanimation::before {
		animation: none !important;
		width: 250%;
	    transform: translateX(-1%);
	}
}

#waitlist button.gradientanimation:before {
	z-index:0;
	width: 400%;
    color:white !important;
}

#waitlist button.gradientanimation:after {
	content:"JOIN THE WAITLIST";
	position:absolute;
	z-index:1;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:white !important;
}

h4.media-heading > a > h3:before {
	top:-0em;
}

p.header {
	font-size:17px;
}

#mainimage-list {
    height:0px;
	overflow:hidden;
	padding-bottom:146%;
	position:relative;
}

#mainimage-list img {
	width:100%;
	position:absolute;
}

#quotes-section div.container {
	max-width:100%;
}

#pricing-section.schools {
	padding-left:8%;
	padding-right:8%;
}

#pricing-section.schools .pricing {
	box-shadow:none;
}

.pricing-header {
	background-color:white !important;
}

ul.twocol {
	columns:2;margin-bottom:1em;list-style:disc;padding-left:20px;
}

.navbar-default .navbar-nav li:last-child .dropdown {
	left:auto;
	right:0%;
}

.navbar-default .navbar-nav li a[onclick] {
	color:#CCCCCC !important;
}

.blog-body ul {
	margin-top:1em;
}

img[src^="qr.php"] {
	width:111px;
	height:111px;
	margin-right:1px;
	float:right;
}

div.tt-widget {
	position:relative;
}

div#tt-container.pending {
	display:block;
	min-height:50px;
}

div#tt-container.pending:before {
    position: absolute;
    content: "\00A0";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(../../background_images/loading.gif);
    background-repeat: no-repeat;
    background-position: 50% 100px;
    background-color: white;
    background-size: 100px;
    z-index: 6;
    border-radius: 10px;
}

.tt-widget-fallback {
    text-transform: uppercase;
/*    transform: translateY(-2.4em); */
	position: relative;
    z-index: 5;
    display: none;
}

.tt-widget-fallback p {
	text-align: center;
    border-radius: 5px;
    /* color: white; */
    border: 1px solid #b6141e;
    background-color: #EFEFEF;
}

.tt-widget-fallback p > a {
    display: block;
	letter-spacing:1px;
	text-transform:uppercase;
	color:#b6141e !important
}

img[src^="https://static.xx.fbcdn.net/images/emoji.php"] {
	width:auto;
	height:auto;
}

#cookerConfirm {
	position:fixed;
	bottom:0;
	left:0;
	right:0;
	min-height:5em;
	background-color:white;
	padding:1.5em;
	z-index:82;
	background-color:#DEDEDE;
	border-top:1px solid black;
	box-shadow:0px 0px 5px 5px rgba(0,0,0,0.4);
	transition: all 1s;
	opacity:1;
	display:block !important;
}

#cookerConfirm.dismissed {
	opacity:1;
	bottom:-9999px;
}

@media only screen and (min-width:768px) {

	#copyright-section div.credit {
		text-align:right;
	}
}


@media only screen and (max-width:824px) {
	#cookerConfirm {
		text-align:center;
	}
	
	#cookerConfirm a.btn {
		clear: both;
		display: block;
		margin-top: 1em;
		margin-left:auto !important;
		margin-right:auto !important;
		max-width:20em;
	}
}

.btn-secondary {
	background-color:#AAAAAA;
	color:white;
	padding: 8px 15px;
    font-size: 16px;
}

.noVideos {
	cursor:pointer;
}

.noVideos:before {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    display: block;
    background-color: black;
    content: "\00A0";
    padding-top: 40%;
	text-align:center;
    color: #AAAAAA;
	z-index:2;
	background-repeat:no-repeat;
	background-position:50% 50%;
}

.blog-post .noVideos:before {
	padding-top:50%;
	background-image:url(../../background_images/youtube.svg);
	background-size:200px 200px;
	content: "COOKIE CONSENT IS REQUIRED FOR VIDEO PLAYBACK";

}

.noVideos:hover iframe[data-src] {
	z-index:1;
	pointer-events:none;
}

.noVideos:hover:before {
	background-image:url(../../background_images/youtube.svg);
	background-size:200px 200px;
	content: "COOKIE CONSENT IS REQUIRED FOR VIDEO PLAYBACK";
}