@charset "UTF-8";
html {
	height: 100vh;
}

body {
	display: flex;
    flex-direction: column;
    min-height: 100vh;
	color: #572E18;
	background-color: transparent;
}

/* bag background image */
.background-image {
	/* [disabled]background-image: url(../images/bag_background.jpg); */
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

.background-image-top {
	background-position: center top;
	background-size: cover;
	background-image: url(../images/bag_background.jpg);
}

.background-image-top::after {
	content: "";
	background: rgba(255,255,255,0.60);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.background-image-top > * {
    z-index: 10;
}

.line-below {
	border-bottom: 2px solid #572E18;
   }

.logo-shadow {
	-webkit-filter: drop-shadow(1px 1px 5px #ffffff);
	filter: drop-shadow(1px 1px 5px #ffffff);
   }

/* middle container fills space between nav and footer */
.container-background {
	/* [disabled]background-color: rgba(255,255,255,0.60); */
	flex: 1;
}

.height-full {
  height: 100vh;
}

/* text styling */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 600;
	color: #572E18;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 1rem; }

p {
	line-height: 1.5;
	font-family: 'Open Sans', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	color: #572E18;
}

.text-muted {
  color: #82551e !important;
}

/* responsive text queries */
@media (min-width: 768px) {
  p { font-size: 16px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }
  h5 { font-size: 1.25rem; }
  h6 { font-size: 1rem; }
}

/* link styling */
a {
	color: #8F0E11;
	font-weight: 600;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:hover {
	color: #C83700;
	text-decoration: underline;
}

/* nav bar background */
.bg-light {
	/* [disabled]background-color: rgba(255,255,255,0.80) !important; */
}

/* nav bar text colors */
.nav-text-size {
	font-size: 18px;
	font-weight: 600;
}

@media (min-width: 992px) {
  .nav-text-size {
	font-size: 16px; }
	}

.navbar-light .navbar-brand {
  color: #572E18;
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: #8F0E11;
}

.navbar-light .navbar-nav .nav-link {
  color: #572E18;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #8F0E11;
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: #572E18;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #572E18;
}

.navbar-light .navbar-text {
  color: #572E18;
}

.navbar-light .navbar-text a {
  color: #572E18;
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: #8F0E11;
}

.nav-link {
	display: block;
	padding-top: 0.2rem;
	padding-right: 1rem;
	padding-left: 1rem;
	padding-bottom: 0.2rem;
	text-align: right;
	margin-right: .5rem;
}

.dropdown-item {
	font-weight: 400;
	color: #572E18;
	padding-top: 0rem;
	padding-right: 1.5rem;
	padding-left: 0rem;
	padding-bottom: 0rem;
	font-size: 13pt;
}

@media (min-width: 992px) { .nav-link {
	text-align: left;
	margin-right: 0rem;
}
.dropdown-item {
    font-weight: 400;
    color: #572E18;
	padding-top: .5rem;
	padding-right: 1.5rem;
	padding-left: .8rem;
	padding-bottom: 0rem;
}
	}

.dropdown-item:hover, .dropdown-item:focus {
	color: #8F0E11;
	background-color: transparent;
}

.dropdown-menu {
	color: #572E18;
	background-color: rgba(255,255,255,0.0) !important;
	border: 0px solid rgba(87,46,24,0.15);
	border-radius: 0rem;
	text-align: right;
	padding-top: 0rem;
	padding-right: 0rem;
	padding-left: 0rem;
	padding-bottom: 0rem;
}

@media (min-width: 992px) {
.dropdown-menu {
	background-color: rgba(255,255,255,0.90) !important;
	border: 1px solid rgba(87,46,24,0.15) !important;
	text-align: left;
	margin-right: 0rem;
	}
}

/* nav bar hamburger styling */
.navbar-light .navbar-toggler {
	color: #572E18;
	border-color: transparent;
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23572E18' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); 
}

/* carousel arrows */ 
.carousel-control-prev-icon {
  background-image: none;
}

.carousel-control-next-icon {
  background-image: none;
}

.carousel-control-next, 
.carousel-control-prev {
	width: 2%;
	opacity: 1.0;
}

.photo-carousel, 
.photo-carousel{
	width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	font-size: 1rem;
	font-family: FontAwesome;
	color: #8F0E11;
	opacity: 1.0;
    -webkit-text-stroke: .5px #ffffff;
}

@media (min-width: 567px) {
.carousel-control-prev-icon,
.carousel-control-next-icon {
	font-size: 1.2rem;
	}
}

@media (min-width: 992px) {
.carousel-control-prev-icon,
.carousel-control-next-icon {
	font-size: 1.4rem;
	}
}

.carousel-control-next-icon:after {
  content: '\f054';
}

.carousel-control-prev-icon:after {
  content: '\f053';
}

.carousel-control-prev-icon:hover, .carousel-control-prev-icon:focus,
.carousel-control-next-icon:hover,
.carousel-control-next-icon:focus {
	color: #C83700;
	opacity: 1.0;
}

/* form styling */
.form-control {
	display: block;
	width: 100%;
	padding-top: 0.375rem;
	padding-right: 0.75rem;
	padding-left: 0.75rem;
	padding-bottom: 0.375rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #82551e;
	background-color: rgba(175,136,95,0.10);
	background-clip: padding-box;
	border: 1px solid rgba(87,46,24,0.3);
	border-radius: 0rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #82551e;
  background-color: rgba(255,255,255,0.90);
  border-color: rgba(87,46,24,0.15);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder {
  color: #82551e;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #82551e;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #82551e;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #82551e;
  opacity: 1;
}

.form-control::placeholder {
  color: #82551e;
  opacity: 1;
}

/* button color */
.btn-primary {
  color: #DDC8B3;
  background-color: #8F0E11;
  border-color: #572e18;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #c83700;
  border-color: #572e18;
}

/* accordion styling */
button.accordion {
	width: 100%;
	box-sizing: border-box;
	padding: 2px 0px 3px;
	color: #8F0E11;
	font-weight: bold;
	text-align: left;
	border-width: 0px;
	border-style: none;
	border-color: none;
	background-color: transparent;
	align-items: flex-start;
	cursor: default;
	border-image: initial;
	transition: 0.4s;
}

.accordion:hover {
	background-color: none;
	color: #c83700;
}

.panel {
	padding: 0;
	display: none;
	overflow: hidden;
}

.accordion:after {
	font-family: FontAwesome;
	content: '\f067'; 
	font-size: 14px;
	color: #8F0E11;
	float: right;
	margin-left: 5px;
	font-weight: bold;
}

.accordion.active:after {
	font-family: FontAwesome;
	content: '\f068'; 
}

/* portfolio nav link styling */
.text-nav-link {
	font-size: 18px;
	font-weight: bold;
}

@media (min-width: 768px) {
.text-nav-link {
	font-size: 16px;
}
	}

a.text-nav-link {
	color: #8F0E11 !important;
}

a.text-nav-link:hover, a.text-nav-link:focus {
    color: #c83700 !important;
	text-decoration: none !important;
}

a.text-nav-link.current {
    color: #8F0E11 !important;
}

/* footer text styling */
.footer-text-size {
	font-size: .9rem;
	font-weight: 400;
	color: #DDC8B3;
}

.text-light {
	font-weight: 500;
	color: #AF885F !important;
}

a.text-light:hover, a.text-light:focus {
	color: #DDC8B3 !important;
	text-decoration: none;
}

.fa-style {
	font-size: 18px;
	letter-spacing: 2px;
}

/* footer background color */
.footer-background {
	background-color: #572E18;
}
