.phone a{
	font-size:26px;
	color:#c3512f;
	font-weight: bold;
}
.hr{
	color:#000;	
	font-size:34px;	
	font-weight: bold;	
}
::selection {
  background: #c3512f; /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #c3512f; /* Gecko Browsers */
}
.orange{
	color: #c3512f;
}
.cursive{
	font-family: 'Estonia', cursive;
	font-weight: bold;
	font-size: 62px;
}
.brands{
	border-top:solid 3px #ddd;
	border-bottom:solid 3px #ddd;
}
.body{
	
}
.btn-light{
	background-color:#c3512f;
	color:#fff;
	font-weight: bold;
}
h1{
	
}
h2{
	font-size: 26px;
	
	display: inline-block;
}
h3{
	font-weight: bold;
	padding-bottom:20px;
	color:#c3512f;
}
h4{
	padding-bottom:20px;
}
.bi{
	font-size:50px;
	}
.box{
	
}

.copyright, .copyright a{
	text-align: center;
	background: #c3512f;
	color:#fff;
}
/**NAVBAR**/

.navbar { /* navbar styles */
	background-color:transparent;
	padding:0 1rem;
}

.nav-link { /* top level link */
  color:#000;
  font-size:15px;
}

.nav-link:hover {
  color:#00F; /* top level link hover */
}

.dropdown-menu { /* dropdown menu styles */
	background:#FFF;
}

.dropdown-item { /* dropdown link */
	 color:#000;
}

.dropdown-item:hover { /* dropdown link hover */
	 color:#FFF;
	 background:#00F;
}

.navbar-toggler { /* styles the mobile nav button border */
	border-color:#000;
	border-radius:8px;
}

.navbar-toggler-icon { /* sets color of the mobile nav button lines, only edit the "stroke='rgb(0,0,0)'" value */
	  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='rgb(0, 0, 0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* mobile nav styles */
@media (max-width: 767px) {
	.navbar { /* navbar styles */
		padding:.25rem 1rem;
	}
	
	.nav-link { /* top level link */
		text-align:left;
		font-size:18px;
		border-bottom:1px solid rgba(0,0,0,0.2);
	}
	
	.dropdown-menu { /* dropdown menu styles */
		padding-top:0;
		padding-bottom:0;
		background:none;
		border:none;
	}
	
	.dropdown-item { /* dropdown link */
		padding-top:10px;
		padding-bottom:10px;
		font-size:18px;
		border-bottom:1px solid rgba(0,0,0,0.2);
	}
}


/*DIVIDERS*/

.nav-link {
	position:relative;
}

/*lines*/
/*
.nav-link:before {
	display:block;
	content:"";
	position:absolute;
	right:0;
	top:5px;
	bottom:5px;
	background:#000;
	width:1px;
}
*/

/*dots*/
.nav-link:before {
	display:block;
	content:"";
	position:absolute;
	right:4px;
	top:50%;
	margin-top:-4px;
	background:#000;
	width:8px;
	height:8px;
	border-radius:8px;
}

.nav-item:last-child .nav-link:before {
	display:none;
}

/*END DIVIDERS*/


/**END NAVBAR**/


/************************/
/**SIZE SPECIFIC STYLES**/
/************************/

/**COMBINATIONS**/

/**SM & DOWN*/
@media (max-width: 767px) {
.logo{
	margin:0px auto;
}
}

/**MD & DOWN*/
@media (max-width: 991px) {
	
}

/**LG & DOWN**/
@media (max-width: 1199px) {
	
}

/**MD & UP*/
@media (min-width: 768px) {
	
}

/**LG & UP**/
@media (min-width: 992px) {

}

/**INDIVIDUAL SIZES**/

/**XS**/
@media (max-width: 575px) {

}

/**SM**/
@media (min-width: 576px) and (max-width: 767px) {

}

/**MD**/
@media (min-width: 768px) and (max-width: 991px) {

}

/**LG**/
@media (min-width: 992px) and (max-width: 1199px) {

}

/**XLG**/
@media (min-width: 1200px) {

}