@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Nunito:wght@300;500&display=swap');
body{
	background-color:  #fff;
	font-family: 'Nunito', sans-serif;
	font-weight: 300;
}
/*div{
	outline: solid 1px red;
}*/
section{
	padding: 20px 0px;
}
.row{
	padding: 20px 0px;
}
.checkered div{
	padding: 10px 20px;
	border-radius: 5px;
}
.checkered div:nth-child(odd){
	background-color: #eee;
}
.checkered img{
	border-radius: 3px;
	box-shadow: 1px 1px 3px #333;
}
nav{
	background-color: #d7be69;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 200;
	box-shadow: 0px 0px 3px #333;
}
nav .row{
	padding:0px;
}
nav .textCenter a{
	display: block;
	padding: 10px;
	width: 100%;
}
nav .textCenter a:hover{
	background-color: #333;
	color: #fff;
}
nav a{
	color: #000;
	-webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
nav a h1{
	-webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
nav a h1:hover{
	color: #000;
	opacity: .5;
	text-decoration: none;
}
nav h1{
	text-align: left;
}
nav h2{
	text-align: right;
}
.navbar{
	position: fixed;
	top:0px;
	left:0px;
	width: 100%;
	background-color: #d7be69;
	display: none;
	box-shadow: 0px 0px 3px #333;
	z-index: 100;
}
.navbar-toggler{
    background-color: white;
    border: solid 1px #888;
}
.navbar-collapse{
	position: absolute;
	top: 76px;
	right: 0px;
	width: 30%;
	text-align: right;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.8);
}
.navbar-collapse a{
	display: block;
	padding: 10px;
}
.navbar-collapse a:hover{
	color: #fff;
}
.carousel-caption{
	position: relative;
	width: 70%;
	color: #000;
	text-align: left;
}
.carousel-item h5{
	text-align: center;
}
.carousel-item h6{
	padding: 10px;
	background-color: #eee;
	border-radius: 5px;
}
a{
	color: #d7be69;
	font-weight: 500;
	-webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
a:hover{
	color: #000;
}
.altBG{
	background-color: #eee;
	border-radius: 5px;
}
.titleArea{
	background-color: #333;
	color: #fff;
	padding: 150px 0px;
	background-attachment: fixed;
	-webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	background-position: center;
}
header.titleArea{
	padding-top: 250px;
	background-image: url(../_images/bg.jpg);
}
#one{
	background-image: url(../_images/bg1.jpg);
}
#two{
	background-image: url(../_images/bg2.jpg);
}
#three{
	background-image: url(../_images/bg3.jpg);
}
#four{
	background-image: url(../_images/bg4.jpg);
}
#five{
	background-image: url(../_images/bg5.jpg);
}
#six{
	background-image: url(../_images/bg6.jpg);
	background-position: center top;
}
.textRight{
	text-align: right;
}
.textCenter{
	text-align: center;
}
.inboundOffset {
    position: relative;
    top: -50px;
}
.carousel-control-prev-icon {
    background-image: url(../_images/arrowL.svg);
}
.carousel-control-next-icon {
    background-image: url(../_images/arrowR.svg);
}
.carousel-indicators [data-bs-target] {
	background-color: #d7be69;
}
.btn {
    background-color: #d7be69;
    float: right;
    -webkit-transition: all .15s ease-out;
    -moz-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
}
.btn:hover{
	background-color: #eee;
}
h1, h2{
	text-align: center;
}
h1{
	border-bottom: solid 1px #d7be69;
	padding-bottom: 5px;
	font-family: 'Marcellus', serif;
}
h2{
	font-weight: 300;
}
h3{
	text-align: center;
	border-bottom: solid 1px #ddd;
	padding-bottom: 10px;
}
ul {
  list-style: none; /* Remove default bullets */
}

ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #d7be69; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.navbar ul li::before{
	content: none;
}
.img-fluid{
	display: block;
	margin: 0px auto 10px auto;
}
footer{
	background-color: #d7be69;
}
footer a{
	color: #000;
}
.mobileShow{
	display: none;
}
@media (max-width: 1399.98px) {

}
@media (max-width: 1199.98px) {

}
@media (max-width: 991.98px) {

}
@media (max-width: 767.98px) {
	nav{
		display: none;
	}
	.navbar{
		display: block;
	}
	.checkered div:nth-child(odd){
		background-color: transparent;
	}
	.titleArea{
		padding: 75px 0px;
	}
	.inboundOffset {
	    position: relative;
	    top: -50px;
	}
	header.titleArea{
		padding-top: 150px;
		background-position: center top;
		background-size: 180%;
	}
	.d-md-block {
	    display: block!important;
	}
}
@media (max-width: 575.98px) {
	.mobileShow{
		display: inline-block;
	}
}