:root {
	--da-primary: #0d406b;
	--da-secondary: #d30000;
	--da-fnt-oswald: "Oswald", sans-serif;
}

body {
	overflow-x: clip;
}

/* fonts */
h1,
h2,
h3,
h4,
h5 {
	font-family: "Oswald", sans-serif;
	color: var(--da-primary);
}

p,
a,
li {
	font-family: "Source Sans 3", sans-serif;
}

p {
	font-size: 18px;
}

.fnt-oswald {
	font-family: "Oswald", sans-serif;
}


.menu-item-has-children>a>i {
	font-size: .7rem;
}

footer {
	background: var(--da-primary);
	padding: 15px 0;
}

.footer-menu li {
	list-style: none;
}

.footer-menu li a {
	color: #fff;
	font-weight: 600;
	line-height: 30px;
	text-transform: uppercase;
	text-decoration: none;
}

.footer-address p {
	font-weight: 600;
	font-size: 18px;
}

.hr-short {
	height: 2px;
	width: 250px;
	margin-top: 16px;
	margin-left: auto;
	margin-right: auto;
	background-color: #fff;
	border: none;
}

.da-bg-primary {
	background-color: var(--da-primary);
}

.schedule-table th {
	background: var(--da-primary);
	color: #fff;
}

.schedule-table th, td {
	padding: 15px !important;
}

.home-card {
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.form-control {
	border: 2px solid #a3a3a3 !important;
}

/* hide recaptcha badge */
.grecaptcha-badge { visibility: hidden; }

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


/**COMBINATIONS**/

/**SM & DOWN*/
@media (max-width: 767px) {
	#page-wrap {
		transition: filter .3s;
	}

	#page-wrap.navactive {
		filter: blur(5px);
	}

	#topnav {
		transition: .3s;
		z-index: 1000;
	}

	#nav-wrap {
		position: fixed;
		top: 0;
		right: -100%;
		left: 100%;
		bottom: 0;
		transition: .3s;
		background: rgba(0, 0, 0, .85);
		z-index: 2000;
		padding-top: 45px;
	}

	.topnav_ul {
		margin: 0;
		padding: 0;
	}

	.topnav_ul li {
		list-style: none;
	}

	.topnav_ul li a {
		text-decoration: none;
		display: block;
		font-size: 19px;
		color: #fff;
		padding: 8px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		transition: .3s;
	}

	.topnav_ul li a:hover {
		text-decoration: none;
		background: rgba(0, 0, 0, .5);
	}

	#navbtn {
		display: block;
		width: 25px;
		height: 25px;
		position: absolute;
		z-index: 9000000;
		right: 15px;
		top: 15px;
		cursor: pointer;
		transition: .3s;
		border: 1px solid transparent;
        background-color: transparent;
	}

	#navbtn .bar1,
	#navbtn .bar2,
	#navbtn .bar3 {
		content: "";
		display: block;
		height: 2px;
		width: 100%;
		position: absolute;
		background: #FFF;
		transition: .3s;
		outline: 1px solid #00542b;
	}

	#navbtn .bar1 {
		top: 3px;
	}

	#navbtn .bar2 {
		top: 12px;
		opacity: 1;
	}

	#navbtn .bar3 {
		bottom: 0px;
	}

	.navactive #navbtn .bar2 {
		opacity: 0;
	}

	.navactive #navbtn .bar1 {
		transform: rotate(45deg) translateY(8px) translateX(5px);
		outline: none;
	}

	.navactive #navbtn .bar3 {
		transform: rotate(-45deg) translateY(-8px) translateX(5px);
		outline: none;
	}

	.navactive #navbtn {
		display: block;
	}

	.navactive #nav-wrap {
		right: 0;
		left: 0;
	}

	.sub-wrap {
		display: grid;
		grid-template-rows: 0fr;
		transition: .3s;
	}

	.sub-menu {
		overflow: hidden;
		padding-left: 0;
	}

	.sub-menu a {
		padding-left: 1.5rem;
	}

	.menu-item-has-children.hsactive .sub-wrap {
		grid-template-rows: 1fr;
	}

	.footer-logo {
		margin: 0 auto;
		display: block;
	}
	
	.header-image-container {
		background-image: url("https://daytonaarchersinc.com/wp-content/themes/daytonaarchers/assets/images/home-header-1920x500.jpg");
		height: 20vh;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color:#737373;
	}
}

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

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

/**MD & UP*/
@media (min-width: 768px) {
	#navbtn {
	 display:none;
	}
	.logo-main {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#topnav {
		position: absolute;
		width: 100%;
		top: 80px;
		z-index: 1000;
		background: var(--da-primary);
		transition: .3s;
	}

	.topnav_ul {
		margin: 0;
		padding: 0;
		overflow: hidden;
	}

	.topnav_ul:hover {
		overflow: visible;
	}

	.topnav_ul>li {
		margin: 0;
		padding: 0;
		display: inline-block;
		list-style: none;
		position: relative;
	}

	.topnav_ul>li>a {
		display: block;
		position: relative;
		font-size: 17px;
		font-weight: 600;
		color: #FFF;
		text-align: center;
		transition: .3s;
		padding: 8px 15px;
		text-decoration: none;
		text-transform: uppercase;
	}

	.topnav_ul>li:hover {
		background: #092c49;
		transition: .2s ease;
	}

	.topnav_ul>li:hover>a {
		text-decoration: none;
		color:#f0f0f0;
	}

	.sub-wrap {
		display: block;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: -100;
		opacity: 0;
		transition: opacity .3s;
		min-width: 105%;
	}

	.sub-menu {
		margin: 0;
		padding: 0;
	}

	.sub-menu>li {
		display: block;
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.sub-menu>li>a {
		display: block;
		padding: 5px 17px;
		background: var(--da-primary);
		color: #FFF;
		white-space: nowrap;
		text-align: left;
		text-decoration: none;
	}

	.sub-menu>li>a:hover {
		text-decoration: none;
		background: #092c49;
	}

	.topnav_ul>li:hover>.sub-wrap {
		z-index: 10000000;
		opacity: 1;
	}

	.nav-fill {
		display: flex;
	}

	.nav-fill>li {
		flex: 1 1 auto;
		text-align: center;
	}

	.nav-fill>li>a {
		width: 100%;
	}

	.hm-box-button a:hover {
		background: #9e0000 !important;
		transition: .2s ease;
	}

	.arrow-heading-container h2 {
		padding: 0 90px;
	}

	.arrow-heading-container {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		box-sizing: border-box;
	}

	.arrow-line {
		flex: 1 1 auto;
		height: 2px;
		background-color: var(--da-secondary);
		position: relative;
		min-width: 0;
	}

	.arrow-left::after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(50%, -50%);
		width: 0;
		height: 0;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 8px solid var(--da-secondary);
	}

	.arrow-right::after {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 0;
		height: 0;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-right: 8px solid var(--da-secondary);
	}
	
	.header-image-container {
		background-image: -webkit-image-set(
			url("https://daytonaarchersinc.com/wp-content/themes/daytonaarchers/assets/images/home-header-1920x500.jpg") 1x,
			url("https://daytonaarchersinc.com/wp-content/themes/daytonaarchers/assets/images/home-header-2560w.jpg") 2x
		);
		height: 60vh;
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		background-color:#737373;
	}

	.header-overlay-container {
		position: relative;
		background: #000;
	}

	.header-overlay {
		position: absolute;
		right: 20%;
		top: 40%;
	}

	.header-overlay p {
		color: #FFF;
		font-size: 2.5rem;
		font-family: var(--da-fnt-oswald);
		font-style: italic;
		margin-bottom: 3px;
		font-weight: 600;
	}

	.header-overlay p:nth-of-type(2) {
		font-size: 1.6rem;
		text-align: right;
		font-style: normal;
	}
}

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

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

/**XXLG & UP**/
@media (min-width: 1400px) {}

/**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) {
	.arrow-line,
	.arrow-left::after,
	.arrow-right::after {
		display: none;
	}
}

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

/**XLG**/
@media (min-width: 1200px) and (max-width: 1399px) {
	.header-overlay {
		top: 200px;
	}
}

/**XXLG**/
@media (min-width: 1400px) {}