@charset "UTF-8";
/* CSS Document */

body {
    -webkit-font-smoothing: antialiased
    /* this gets rid of the "flicker" during slider transition */
}

/* ################ */
/* #  NAV TWEAKS  # */
/* ################ */
.navbar {
	background-color: rgba(255, 255, 255, 0.5);
}

.tester {
	background-color: #ffffff;
}

.navbar-brand {
	display: block;
	margin-left: 50%;
	padding-left: 50%;
}

.navbar-brand-tiny {
	display: none;
}

/* center the nav */
.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}

/* center the nav */
.navbar .navbar-collapse {
  text-align: center;
}

.navbar-default{
	/* This rule butts up the slider to the navigation bar at the top */
	margin: 0;
	padding: 0;
	border: 0;
	border-radius:0;
}

.carousel-padding {
	margin-top: 0px;
}

/* ############ */
/* #  COLORS  # */
/* ############ */

.red {
	color: #e91440;
}

.white {
	color: #ffffff;
}

.black {
	color: #000000;
}

/* ########### */
/* #  FONTS  # */
/* ########### */

.navbar-default .navbar-nav > li > a {
	font-family: 'Yantramanav', sans-serif;
	font-size: 24px;
	border-bottom: 5px solid transparent;
	display: inline-block;
	line-height: 12px;
	text-transform: capitalize;
    color: #000000; /*Change active text color here*/
}

.nav-over {
	border-bottom: 5px solid transparent;
}

.nav-over:hover, .nav-over:focus {
    color: #e91440; /*Change Rollover text color here*/
	text-decoration: none;
	border-bottom: 5px solid #e91440;
	display: inline-block;
	line-height: 12px;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a,
.navbar-default .navbar-nav .open .dropdown-menu {
    /* Style dropdown menus */
    
    color: #ffffff;
    font-family: 'Yantramanav', sans-serif;
    font-size: 22px;
	min-width: 220px;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
    /* stylize the background color of dropdown menus on mouseover */
    
    background-color: #000000;
    -o-transition: .8s;
    -ms-transition: .8s;
    -moz-transition: .8s;
    -webkit-transition: .8s;
    transition: .8s;
}
.navbar-collapse {
    /* Keep the navbar dropdowns from collapsing to a minimum height and needing users to scroll in the nav menu */
    max-height: none !important;
}

.red-gradient {
    background: #e91440;
    /* For browsers that do not support gradients */    
    background: -webkit-linear-gradient(right top, #790b21, #e91440);
    /* For Safari 5.1 to 6.0 */    
    background: -o-linear-gradient(bottom right, #790b21, #e91440);
    /* For Opera 11.1 to 12.0 */    
    background: -moz-linear-gradient(bottom right, #790b21, #e91440);
    /* For Firefox 3.6 to 15 */    
    background: linear-gradient(to bottom right, #790b21, #e91440);
    /* Standard syntax */
}

.major-headline {
	font-family: 'Yantramanav', sans-serif;
	font-size: 48px;
	line-height: 50px;
}

h1 {
	font-family: 'Yantramanav', sans-serif;
	font-size: 32px;
	line-height: 30px;
}

h2 {
	font-family: 'Quicksand', sans-serif;
	font-size: 26px;
	line-height: 28px;
}

p {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
	line-height: 28px;
}

.carousel-caption {
	position:absolute;
	top: 80%; /* was bottom: 50px; */
    transform: translateY(-80%);
	z-index:10;
	padding: 0px;
	text-align:center;
}

.carousel-caption > h3 {
	text-shadow:0 1px 2px rgba(0,0,0,1.0);
	font-family: 'Oswald', sans-serif; /* 'Yantramanav', sans-serif;*/
	font-size: 60px;
	line-height: 64px;
	overflow: visible;
}

.carousel-inner{
  width:100%;
  max-height: 1100px !important;
}

.carousel img {
        width:100% !important;
        min-width:100 !important;
        height: auto;
    }


/* ##################### */
/* #  Full Page Image  # */
/* ##################### */

.fullscreen-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
	    transform: translate(-50%, -50%);
		/* opacity: 0.5;        <--- This is totally optional, but could help with legibility of text over a moving background */
    }

.fullscreen-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
	}

.content {
      position: absolute;
      top: 100%;
      width: 100%;
	  background: white;
	  padding-top: 15px;
	 /* padding-bottom: 115px; */ /* this should at least be equal to the height of the footer - may need to adjust based on different screen sizes / stacks */
}

.content-edge {
	position: relative;
	top: -30px;
	background: -webkit-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    ); 
    background-image: -moz-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: -o-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
    background-image: -ms-linear-gradient(
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.content-no-hero {
      position: absolute;
      background: white;
	  padding-top: 170px;
	  /* padding-bottom: 115px; */ /* this should at least be equal to the height of the footer - may need to adjust based on different screen sizes / stacks */
    }



/* ########################### */
/* #  IMAGE AS RADIO BUTTON  # */
/* ########################### */

/* HIDE RADIO */
.radio-image { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
.radio-image + img {
  cursor: pointer;
  outline: 2px solid #bcbcbc;
}

/* CHECKED STYLES */
.radio-image:checked + img {
  outline: 2px solid #f00;
}

/* HOVERED STYLES */
.radio-image:hover + img {
  outline: 2px solid #f6ff00;
}

/* CLICKED STATE */
.radio-image:active + img {
  outline: 2px solid #f00;
}

/* REMOVE DIV PADDING */
.no-left-padding {
	padding-left: 0px;
}


/* ################### */
/* #   FORM STYLES   # */
/* ################### */

.form-holder {
	border-radius: 15px; 
	border: 22px solid #ffffff; 
	background-image: url("../images/red-canvas-texture.jpg");
	background-color: #95b5da;
	-webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	-moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
	width: 100%;
}

.form-white-box {
	padding: 10px;
	background-color: #ffffff;
	border-radius: 5px;
	padding-bottom: 2px;
	margin-bottom: 25px;
	width: 100%;
}

.btn-sommer-red {
	background-color: #e91440;
	padding-bottom: 0px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5); 
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5); 
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
}

.btn-sommer-red:hover {
	background-color: #af1333;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); 
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); 
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

.fabric-btn {
	background-color: #e91440;
	text-align: center;
	border-radius: 5px;
	-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5); 
	-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5); 
	box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.5);
}

.fabric-btn:hover {
	background-color: #af1333;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); 
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5); 
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
}

input {
	background-color: #ffffff;
}

input:hover {
	background-color: #eeeeee;
}

input:active {
	background-color: #ffffff;
}

textarea {
	background-color: #ffffff;
}

textarea:hover {
	background-color: #eeeeee;
}

textarea:active {
	background-color: #ffffff;
}

.input-font {
	font-family: 'Quicksand', sans-serif;
	font-size: 18px;
}


/* ##################### */
/* #  SPECIAL EFFECTS  # */
/* ##################### */

.dropshadow {
	-webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	-moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
}

.image-treatment {
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	-moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75); 
	box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.75);
}

.conditional-white-border-left {
	border-left: 1px solid #ffffff;
}

/* #################### */
/* #  PADDING TWEAKS  # */
/* #################### */

.l-and-r-padding {
	padding-left: 3%;
	padding-right: 3%;
}

.section-top-padding {
	padding-top: 3%;
	padding-bottom: 3%
}


/* ################### */
/* #  FOOTER TWEAKS  # */
/* ################### */

.modal-footer{
	background-color: #ffffff; 
	color: #000000;
}

/* ########## */
/* #  MISC  # */
/* ########## */


/* Adjust Carousel Cations on Ipad */
@media (max-width: 992px) {
.carousel-caption {
	position:absolute;
	top: 80%; /* was bottom: 50px; */
    transform: translateY(-80%);
	z-index:10;
	padding:0px;
	text-align:center;
}

.carousel-caption > h3 {
	text-shadow:0 1px 2px rgba(0,0,0,1.0);
	font-family: 'Oswald', sans-serif; /* 'Yantramanav', sans-serif;*/
	font-size: 50px;
	line-height: 54px;
	overflow: visible;
}
}



/*Keep the nav from stacking */
@media (max-width: 840px) {
    .navbar-default .navbar-nav > li > a {
	font-size: 20px;
}
}



/*full width container*/
@media (max-width: 767px) {
    .l-and-r-padding {
	padding-left: 15px;
	padding-right: 15px;
}
	.section-top-padding {
	padding-top: 15px;
	padding-bottom: 15px;
}
	.carousel-padding {
	 margin-top: 0px;
}
	.content-no-hero {
	  padding-top: 70px;
	  /* padding-bottom: 115px; */ /* this should at least be equal to the height of the footer - may need to adjust based on different screen sizes / stacks */
}
	.navbar-default .navbar-nav .open .dropdown-menu>li>a,
	.navbar-default .navbar-nav .open .dropdown-menu {
    /* Style dropdown menus */
	margin-left: calc(50% - 50vw);
  	width: 100vw;
}
	.navbar-collapse { background:#ffffff; /*replace with desired color*/ }
	.dropdown-menu {
		border-radius:0;
}
	.conditional-white-border-left {
	border-left: none;
}
.major-headline {
	font-family: 'Yantramanav', sans-serif;
	font-size: 36px;
	line-height: 34px;
}
}