/*
	Prefixed by https://autoprefixer.github.io
	PostCSS: v7.0.29,
	Autoprefixer: v9.7.6
	Browsers: last 4 version
*/

/*
Theme Name: wp-bootstrap-4-child
Template: wp-bootstrap-4
*/

/* ***** ***** ***** ***** ***** FONT FACE ***** ***** ***** ***** ***** */

@font-face {
	/*Brand Font*/
	font-family: NemoArms;
	src: url("/wp-content/themes/wp-bootstrap-4-child/fonts/NemoArms.otf");
	font-weight: normal;
}

@font-face {
	font-family: Ronduit;
	src: url("/wp-content/themes/wp-bootstrap-4-child/fonts/RonduitCapitals-Light.otf");
	font-weight: normal;
}

/* ***** ***** ***** ***** ***** GLOBAL STYLES ***** ***** ***** ***** ***** */

body {
	font-family: "Titillium Web", sans-serif;
}

.centered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.site {
	overflow-x: hidden;
}

.site a {
	color: #c41520;
}

.site a:hover {
	color: #b0131d;
}

.site a:focus {
	outline: none;
}

.nemoFont {
	font-family: "NemoArms", sans-serif;
	text-transform: uppercase;
}

.nemoFontColor {
	color: #c41520;
}

.nemoBgColor {
	background-color: #c41520;
}

.button,
.btn, .btn-primary,
.nemoButton {
	color: white !important;
	background-color: #c41520;
	background-image: url("/wp-content/uploads/2020/08/red-texture.png");
	background-size: cover;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
	padding: 12px 36px !important;
	margin: 12px;
	display: inline-block;
	z-index: 10;
	-webkit-transition: all 0.2s !important;
	-o-transition: all 0.2s !important;
	transition: all 0.2s !important;
	border: none !important;
	border-radius: 4px !important;
}

.button:hover,
.btn:hover, .btn-primary:hover,
.nemoButton:hover {
	background-color: #b0131d;
	color: white;
	text-decoration: none;
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 6px 10px -4px #000000;
	box-shadow: 0 6px 10px -4px #000000;
}

.button:active,
.btn:active, .btn-primary:active,
.nemoButton:active {
	-webkit-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	transform: translateY(-1px);
	-webkit-box-shadow: 0 2px 4px -1px #000000;
	box-shadow: 0 2px 4px -1px #000000;
}

/* ***** ***** ***** ***** ***** LOADER STYLES ***** ***** ***** ***** ***** */

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader {
	display: block;
	position: relative;
	background-image: url("/wp-content/uploads/2020/08/loader2.png");
	background-size: 25%;
	background-repeat: no-repeat;
	background-position: center;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	margin: 0;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@media screen and (max-width: 1024px) {
	#loader {
		background-size: 50%;
	}
}

@media screen and (max-width: 576px) {
	#loader {
		background-size: 75%;
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}

#loader-wrapper .loader-section.section-left {
	left: 0;
	background: #000000;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
	background: rgb(196, 21, 33, 0.25);
}

#loader {
	z-index: 1001;
}

.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
}

.loaded #loader-wrapper .loader-section.section-right,
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s 1s ease-out;
	-o-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}

.no-js #loader-wrapper {
	display: none;
}

/* ***** ***** ***** ***** ***** HEADER STYLES ***** ***** ***** ***** ***** */

#secondary-menu-wrap {
	display: flex;
	flex-basis: auto;
	flex-grow: 1;
}

#secondary-menu {
	font-family: "Ronduit", sans-serif;
	text-transform: uppercase;
	font-size: 12px;
}

#secondary-menu a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000000;
}

#secondary-menu a i {
	margin-right: 0.5rem;
}

#site-navigation-2 {
	background: #c41520;
	background-image: url("/wp-content/uploads/2020/08/red-texture.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom;
	padding: 0.5rem;
}

#primary-menu {
	width: 100%;
	text-transform: uppercase;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	font-family: "Ronduit", sans-serif;
	font-size: 14px;
}

#primary-menu a {
	color: #ffffff;
}

#primary-menu .active a {
	color: #ebebeb;
}

#primary-menu .dropdown:hover .dropdown-menu {
	display: inherit;
}

.dropdown-menu {
	font-size: inherit;
	background-image: url("/wp-content/uploads/2020/08/red-texture.png");
	padding: 0;
	margin: 0;
}

.dropdown-menu li.nav-item:not(:last-child) {
	border-bottom: 1px solid #ebebeb;
}

.dropdown-menu a:hover {
	background-image: url("/wp-content/uploads/2020/08/gray-texture.png");
}

.navbar-toggler {
	margin: 12px auto;
	line-height: inherit;
	background-color: transparent;
	border: 4px solid #c41520;
}

.navbar-toggler-icon:after {
	font-family: "FontAwesome";
	content: "\f0c9";
	color: #c41520;
	vertical-align: bottom;
}

@media only screen and (max-width: 991px) {
	#secondary-menu a {
		justify-content: flex-end;
		padding: 0;
	}
}

@media screen and (max-width: 576px) {
	.navbar {
		padding: 4px;
	}
	#secondary-menu-wrap {
		margin-top: 12px;
	}
}

/* ***** ***** ***** ***** ***** FRONT PAGE - GLOBAL SLIDER STYLES ***** ***** ***** ***** ***** */

.slide {
	position: relative !important;
	z-index: 0 !important;
}

.slick-next,
.slick-prev {
	z-index: 1;
	height: 100% !important;
	width: 10% !important;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.slick-next {
	right: 0 !important;
}

.slick-prev {
	left: 0 !important;
}

.slick-next:before,
.slick-prev:before {
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.slick-next:hover:before,
.slick-prev:hover:before {
	color: #c41520;
}

/* ***** ***** ***** ***** ***** FRONT PAGE - JUMBOTRON SLIDER STYLES ***** ***** ***** ***** ***** */

.video-header__container {
	width: 100%;
	background: #000000;
	background-image: -webkit-gradient(linear, left top, right top, from(#333), to(#444) ),
		url("/wp-content/uploads/2020/08/gray-texture.png");
	background-image: -o-linear-gradient(left, #333, #444),
		url("/wp-content/uploads/2020/08/gray-texture.png");
	background-image: linear-gradient(to right, #333, #444),
		url("/wp-content/uploads/2020/08/gray-texture.png");
	background-blend-mode: hard-light;
	padding-top: 43.75%;
	position: relative;
	overflow: hidden;
}

.video-header {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.slide .slide__text {
	position: absolute;
}

.slide .slide__text a {
	font-size: calc(100vw * 0.02);
	letter-spacing: 2px;
	padding: 4px 12px;
}

.slide .slide__text a:hover {
	-webkit-box-shadow: 0 6px 10px -4px #aaa;
	box-shadow: 0 6px 10px -4px #aaa;
}

.slide .slide__text a:active {
	-webkit-box-shadow: 0 2px 4px -1px #aaa;
	box-shadow: 0 2px 4px -1px #aaa;
}

.slide .slide__text.slide__text--battle-light {
	top: 35%;
	right: 10vw;
	text-align: right;
}

.slide .slide__text.slide__text--shotgun,
.slide .slide__text.slide__text--holiday {
	bottom: 6%;
	right: 6%
}

@media only screen and (max-width: 500px){
	.slide .slide__text.slide__text--shotgun,
	.slide .slide__text.slide__text--holiday{
		bottom: -3%;
		right: 33%
}
}

.slide .slide__text.slide__text--shirts {
	top: 20%;
	right: 12.5vw;
}

.slide .slide__text.slide__text--patches {
	top: 37.5%;
	right: 19vw;
}

.slide .slide__text.slide__text--financing {
	top: 10%;
	right: 10%;
	text-align: right;
}

.slide .slide__text.slide__text--financing span {
	font-family: 'exo 2', sans-serif;
	color: #ffffff;
	text-transform: uppercase;
	font-size: calc(100vw * 0.05);
	text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.75);
}

.slide > a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.slide > a:hover img {
	-webkit-transform: scale(1.05) translateY(-4px);
	-ms-transform: scale(1.05) translateY(-4px);
	transform: scale(1.05) translateY(-4px);
}

@media screen and (max-width: 576px) {
	.slide .slide__text a {
		font-size: 12px;
	}
	.slide .slide__text.slide__text--battle-light,
	.slide .slide__text.slide__text--patches {
		top: unset;
		bottom: 0;
		right: 0;
	}
	.slide .slide__text.slide__text--mask,
	.slide .slide__text.slide__text--shirts {
		top: 14.5%;
		right: 6vw;
	}
}

/* ***** ***** ***** ***** ***** FRONT PAGE - PRODUCT SLIDER STYLES ***** ***** ***** ***** ***** */

.front-page-rifles [class*="col-"] {
	padding: 0;
}

.product-header {
	display: inline-block;
	border-bottom: 4px solid #c41520;
	padding-left: 10%;
}

.product-header h2 {
	color: white;
	text-align: right;
	font-size: 3rem;
	font-family: "NemoArms", sans-serif;
	margin: 12px 0 0 0;
	display: inline-block;
}

.products-slider .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.product-buttons {
	position: absolute;
	bottom: 5%;
}

.products-slider .buttons {
	position: absolute;
	bottom: 10%;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.product-buttons .nemoButton {
	font-size: 16px;
	text-align: center;
	padding: 12px 24px !important;
	min-width: 250px;
	margin: 0;
}

/* .product-buttons .nemoButton#rifle-class {
	font-family: NemoArms;
} */

.product-slider-side {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.product-slider-side img {
	padding: 10px 0;
	width: 80%;
	display: block;
	margin: 0 auto;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}

.product-slider-side img.hidden {
	display: none;
}

@media screen and (max-width: 768px) {
	.product-slider-side {
		display: none;
	}
}

@media screen and (max-width: 576px) {
	.front-page-rifles [class*="col-"] {
		padding: 0 15px;
	}
	.product-header {
		margin-left: -15px;
	}
	.product-header h2 {
		font-size: 2rem;
	}
	.products-slider .buttons {
		bottom: 0;
	}
	.product-buttons {
		margin-left: -15px;
	}
	.product-buttons .nemoButton {
		font-size: 12px;
		width: 100%;
		padding: 12px 0 !important;
		min-width: auto;
	}
}

/* ***** ***** ***** ***** ***** FRONT PAGE - PRODUCT CATEGORIES STYLE ***** ***** ***** ***** ***** */

.category-container {
	position: relative;
}

.category-container img:first-of-type {
	width: 100%;
	z-index: 0;
	-webkit-filter: drop-shadow(0 6px 6px #222);
	filter: drop-shadow(0 6px 6px #222);
}

.category-container h2 {
	text-transform: uppercase;
	font-weight: 900;
	position: absolute;
	top: 12px;
	text-align: center;
	width: 100%;
	font-size: calc(0px + 100vw * 0.0275);
	z-index: 1;
}

.category-container h2 span {
	font-weight: 100;
}

.category-container img:last-of-type {
	position: absolute;
	bottom: 40px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 100%;
	max-height: 50%;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-filter: drop-shadow(0 20px 4px #222);
	filter: drop-shadow(0 20px 4px #222);
}

.category-container:hover img:last-of-type {
	-webkit-transform: translateX(-50%) scale(1.1);
	-ms-transform: translateX(-50%) scale(1.1);
	transform: translateX(-50%) scale(1.1);
}

@media screen and (min-width: 1200px) {
	.category-container h2 {
		font-size: 32px;
	}
}

@media screen and (max-width: 576px) {
	.category-container h2 {
		font-size: 16px;
	}
	.category-container img:last-of-type {
		bottom: 20px;
	}
}

/* ***** ***** ***** ***** ***** FRONT PAGE - CATALOG STYLE ***** ***** ***** ***** ***** */

.catalog-link {
	width: 50%;
	text-align: center;
	height: calc(100vw * 0.42);
	padding-top: 10%;
	text-transform: uppercase;
}

.catalog-link h2 {
	font-size: calc(100vw * 0.125);
	line-height: .5;
	color: #c41520;
	font-family: "NemoArms", sans-serif;
}

.catalog-link h3 {
	font-size: calc(100vw * 0.065);
	line-height: 0.75;
	font-family: "NemoArms", sans-serif;
}

/* ***** ***** ***** ***** ***** FOOTER STYLE ***** ***** ***** ***** ***** */

footer.site-footer {
	padding-top: 16px;
	padding-bottom: 16px;
}

.footer-widgets .widget ul li {
	list-style: none !important;
}

#nav_menu-2 h5 {
	text-transform: uppercase;
	font-size: 24px;
}

.menu-support-container ul {
	padding-left: 0 !important;
}

.menu-support2-container,
.menu-support-container ul li {
	line-height: 12px;
	text-transform: capitalize;
}

.menu-support2-container ul li a,
.menu-support-container ul li a {
	color: white !important;
}

.menu-support2-container ul li a:hover,
.menu-support-container ul li a:hover,
.menu-social-container ul a:hover {
	color: #c41520 !important;
}

.menu-social-container ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin: 0 auto;
}

.menu-social-container ul li {
	line-height: 32px;
}

.menu-social-container ul a {
	color: white !important;
	font-size: 32px;
	margin: 20px;
}

.menu-social-container ul li:first-child a {
	margin-left: 0;
}

.menu-social-container ul li:last-child a {
	margin-right: 0;
}

#nav_menu-4 .menu-support2-container {
	text-align: right !important;
}

#media_image-2 {
	text-align: right;
}

@media screen and (max-width: 576px) {
	.menu-social-container ul,
	.menu-support2-container ul {
		padding-left: 0 !important;
		text-align: center !important;
	}
	.menu-social-container ul a {
		margin: 10px !important;
	}
}

/* ***** ***** ***** ***** ***** FOOTER - INSTAGRAM STYLE ***** ***** ***** ***** ***** */

#sb_instagram .sb_instagram_header,
#sb_instagram #sbi_load {
	display: none;
}

.instagram-container p {
	font-weight: 700;
}

.instagram-container p i {
	font-size: 32px;
	vertical-align: middle;
}

.site-footer .instagram-container a {
	color: #c41520 !important;
}

.insta-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 auto 16px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-shadow: 0 8px 16px -4px #000000;
	box-shadow: 0 8px 16px -4px #000000;
}

.insta-gallery a {
	width: 12.5%;
}

.insta-gallery a:focus {
	border: none;
}

.insta-gallery .gallery-item {
	overflow: hidden;
	height: 12.4vw;
	position: relative;
	border: 2px solid #000000;
}

.insta-gallery .gallery-image {
	overflow: hidden;
	min-width: 100%;
	max-width: 200%;
	min-height: 100%;
	max-height: 200%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.insta-gallery a:hover .gallery-image {
	-webkit-transform: translate(-50%, -50%) scale(1.1);
	-ms-transform: translate(-50%, -50%) scale(1.1);
	transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 768px) {
	.insta-gallery a {
		width: 25%;
	}
	.gallery-item {
		height: 24.5vw;
	}
}

/* ***** ***** ***** ***** ***** FOOTER - BLUE 42 STYLE ***** ***** ***** ***** ***** */

.blue42footer {
	background: #0d140c;
	padding: 12px 0;
}

.blue42footer p {
	color: #fff;
	margin-bottom: 0px;
	font-size: 12px;
}

.blue42footer p span a {
	color: #00ccff !important;
}

.blue42footer p span a img {
	width: 20px;
	height: 24px;
	vertical-align: text-bottom;
	border-radius: 4px;
	padding: 2px;
	margin: 0 2px;
	background: #ffffff;
}

/* ***** ***** ***** ***** ***** BACK TO TOP STYLE ***** ***** ***** ***** ***** */

#back-to-top {
	display: inline-block;
	background-color: #c41520;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
	-webkit-box-shadow: 0 12px 24px -8px #000000;
	box-shadow: 0 12px 24px -8px #000000;
}

#back-to-top::after {
	content: "\f077";
	font-family: "FontAwesome";
	font-weight: normal;
	font-style: normal;
	font-size: 2rem;
	line-height: 50px;
	color: #fff;
}

#back-to-top:hover {
	cursor: pointer;
	text-decoration: none;
	background-color: #a2111b;
}

#back-to-top:active {
	background-color: #e92f3c;
}

#back-to-top.show {
	opacity: 1;
	visibility: visible;
}

/* ***** ***** ***** ***** ***** HERO BANNER STYLE ***** ***** ***** ***** ***** */

.hero-banner {
	position: relative;
	margin-bottom: 42px;
}

.hero-banner.le-program {
	background-image: url(/wp-content/uploads/2020/10/le.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 60vh;
}

.hero-banner.le-program::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(100,100,100,0.5);
	z-index: 1;
}

.hero-banner.le-program h1 {
	z-index: 2;
}

.hero-banner.military-program {
	background-image: url(/wp-content/uploads/2020/09/blackout300.png),
		url(/wp-content/uploads/2020/09/red-concrete.jpg);
	background-size: 200%, 200%;
	background-position: center top, center;
	background-repeat: no-repeat, no-repeat;
	background-blend-mode: darken;
	height: 60vh;
}

.hero-banner.media-center {
	background-image: url(/wp-content/uploads/2020/09/Nemo-30.jpg);
	background-size: cover;
	background-position: bottom;
	height: 60vh;
}

.hero-banner.support {
	background-image: url(/wp-content/uploads/2020/09/hero-support-2.png);
	background-size: cover;
	background-position: 50% 90%;
	height: 60vh;
	margin-bottom: 0;
}

.hero-banner.financing {
	background-image: url(/wp-content/uploads/2020/09/nemo-financing.jpg);
	background-size: cover;
	background-position: center;
	height: 60vh;
}

.hero-banner h1 {
	position: absolute;
	font-family: "NemoArms";
	color: white;
	top: 12%;
	right: 20px;
	text-align: right;
	font-size: calc(100vw * 0.05);
	background-image: url("/wp-content/uploads/2020/08/red-texture.png");
	background-position: top;
	background-size: cover;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	border-bottom: 4px solid transparent;
	-o-border-image: url("/wp-content/uploads/2020/08/red-texture.png") 10;
	border-image: url("/wp-content/uploads/2020/08/red-texture.png") 10;
	line-height: normal;
	-webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 1));
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 1));
}

.hero-banner.military-program h1 {
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	-o-border-image: url(/wp-content/uploads/2020/08/gray-texture.png) 10;
	border-image: url(/wp-content/uploads/2020/08/gray-texture.png) 10;
}

.hero-banner h2 {
	position: absolute;
	top: 30%;
	right: 20px;
	text-align: right;
	font-family: "Ronduit", sans-serif;
	font-weight: 600;
	font-size: calc(100vw * 0.025);
	color: white;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 1024px) {
	.hero-banner.military-program,
	.hero-banner.media-center,
	.hero-banner.support,
	.hero-banner.financing {
		height: 30vh;
	}
	.hero-banner h1 {
		border-width: 0px;
	}
}

@media screen and (max-width: 768px) {

	.hero-banner h1 {
		font-size: calc(100vw * 0.07);
	}
	.hero-banner h2 {
		font-size: calc(100vw * 0.045);
	}
	.military-program.hero-banner h2 {
		top: 50%;
	}
}

@media screen and (max-width: 576px) {
	.hero-banner {
		margin-bottom: 24px;
	}
	.hero-banner.military-program,
	.hero-banner.media-center,
	.hero-banner.support,
	.hero-banner.financing {
		height: 20vh;
	}
	.hero-banner h1 {
		top: 10px;
		font-size: 36px;
		width: 100%;
		right: 0;
		padding-right: 12px;
	}
	.breadcrumb {
		margin-bottom: 0;
		padding: 12px;
		font-size: 12px;
	}
}

/* ***** ***** ***** ***** ***** CONTENT PAGES STYLE ***** ***** ***** ***** ***** */

.contact-us-div {
	padding-top: 48px;
}

.contact-us-div h4 {
	font-family: "Ronduit", sans-serif;
}

.support-div {
	padding: 48px 0 0;
}

.support-div h1 {
	font-family: "Ronduit", sans-serif;
	font-size: /*48px*/ 36pt;
	margin-bottom: 32px;
}

.support-div h3 {
	font-family: "Ronduit", sans-serif;
	font-size: /*32px*/ 24pt;
	margin-bottom: 20px;
}

.support-div hr {
	background-color: #c41521;
	border-style: inset;
	border-width: 1px;
}

.support-div__inner {
	padding: 0 36px;
	margin-bottom: 24px;
	text-align: justify;
}

.accordion__heading {
	padding: 0;
	margin: 12px 0;
	cursor: pointer;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
	background-image: url("/wp-content/uploads/2020/08/gray-texture.png");
	border-top: 4px groove;
	border-right: 4px ridge;
}

.accordion__heading h4 {
	padding: 12px 24px;
	text-align: left;
	text-transform: uppercase;
}

.accordion__text {
	padding: 12px 32px 4px 24px;
	margin-top: -12px;
}

.accordion__text.collapse {
	padding-right: 24px;
	-o-border-image: url("/wp-content/uploads/2020/08/gray-texture.png") 1;
	border-image: url("/wp-content/uploads/2020/08/gray-texture.png") 1;
	border-left: 8px solid transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

@media screen and (max-width: 576px) {
	.support-div h1 {
		font-size: 40px;
	}
	.support-div h3 {
		font-size: 24px;
	}
	.support-div {
		padding: 0;
	}
	.support-div__inner {
		padding: 0 8px;
	}
	.accordion__heading h4 {
		font-size: 18px;
	}
	.contact-us-div {
		padding-top: 0;
		text-align: center;
	}
}

/* ***** ***** ***** ***** ***** LE PROGRAM STYLE ***** ***** ***** ***** ***** */

.le-program__products ul.products {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.le-program__products ul.products li {
	margin: 0;
}

/* ***** ***** ***** ***** ***** MILITARY PROGRAM STYLE ***** ***** ***** ***** ***** */

.military-program a img {
	-webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.military-program a img:hover {
	-webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
	-webkit-transform: translateY(-12px) scale(1.05);
	-ms-transform: translateY(-12px) scale(1.05);
	transform: translateY(-12px) scale(1.05);
}

.military-program a img:active {
	-webkit-box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
	-webkit-transform: translateY(-4px) scale(1.01);
	-ms-transform: translateY(-4px) scale(1.01);
	transform: translateY(-4px) scale(1.01);
}

.military-program__product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 20px;
	-webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-radius: 4px;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.military-program__product:hover {
	-webkit-box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.5);
	-webkit-transform: translateY(-6px) scale(1.02);
	-ms-transform: translateY(-6px) scale(1.02);
	transform: translateY(-6px) scale(1.02);
}

.military-program__product a:hover {
	text-decoration: none;
}

.military-program__product:active {
	-webkit-box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
	-webkit-transform: translateY(-2px) scale(1.01);
	-ms-transform: translateY(-2px) scale(1.01);
	transform: translateY(-2px) scale(1.01);
}

/* ***** ***** ***** ***** ***** NEWS STYLE ***** ***** ***** ***** ***** */

.single-post .format-video .post-thumbnail {
	display: none;
}

.responsive-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.comments-link,
.comments-area {
	display: none !important;
}

article.post {
	padding: 5vh 10vw;
}

@media only screen and (max-width: 600px) {
	article.post {
		padding: 2.5vh 5vw;
	}
}

/* ***** ***** ***** ***** ***** MEDIA CENTER STYLE ***** ***** ***** ***** ***** */

.container.media-center {
	margin-bottom: 42px;
}

.media-center__card {
	position: relative;
	width: 100%;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	border: 4px outset;
	margin: 0 auto 24px;
	font-family: "Ronduit", sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 24px;
	color: white;
	cursor: pointer;
	background-size: 80%, cover;
	background-position: 170% 270%, center;
	background-repeat: no-repeat, no-repeat;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.media-center .row > div:nth-child(odd) .media-center__card {
	background-image: url("/wp-content/uploads/2020/09/tri-lug-red.png"),
		url("/wp-content/uploads/2020/08/red-texture.png");
	color: white;
	background-blend-mode: multiply;
}

.media-center .row > div:nth-child(even) .media-center__card {
	background-image: url("/wp-content/uploads/2020/09/tri-lug-white.png"),
		url("/wp-content/uploads/2020/08/gray-texture.png");
	color: #c41520;
	background-blend-mode: soft-light;
}

.media-center__card:hover {
	background-size: 90%, cover;
	background-position: center, center;
}

.media-center__card:hover .media-center__card__link {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

.media-center__card h3 {
	-webkit-transform: translateY(28px);
	-ms-transform: translateY(28px);
	transform: translateY(28px);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.media-center__card:hover h3 {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.media-center__card__link:link,
.media-center__card__link:visited {
	font-family: "Titillium Web", sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 3px;
	padding: 4px 12px;
	border: 4px outset;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
}

.media-center .row > div:nth-child(even) .media-center__card__link:link,
.media-center .row > div:nth-child(even) .media-center__card__link:visited {
	background-image: url("/wp-content/uploads/2020/08/red-texture.png");
}

.media-center .row > div:nth-child(odd) .media-center__card__link:link,
.media-center .row > div:nth-child(odd) .media-center__card__link:visited {
	background-image: url("/wp-content/uploads/2020/08/gray-texture.png");
}

.media-center__card__link:hover {
	text-decoration: none;
	color: #ffffff !important;
}

.msrp-pricing h2 {
	margin-top: 80px;
	text-align:center;
	font-family: "Ronduit";
}

.msrp-pricing h2 ~ div {
	border-bottom: 4px solid #c41520;
	box-shadow: 0px 20px 24px -16px rgba(0, 0, 0, 1);
}

@media only screen and (hover: none) {
	.media-center__card h3 {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	.media-center__card__link:link,
	.media-center__card__link:visited {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

/* ***** ***** ***** ***** ***** MEDIA CENTER - PRODUCT LINE CARDS STYLE ***** ***** ***** ***** ***** */

.media-center__product-line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product-line__card {
	position: relative;
	margin: 20px 20px 100px;
	width: 600px;
	height: 400px;
	-webkit-perspective: 2000px;
	perspective: 2000px;
	cursor: pointer;
}

.product-line__card__side {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	background-position: center;
	background-size: cover;
}

.product-line__card__side--back {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.product-line__card:hover .product-line__card__side--front {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.product-line__card:hover .product-line__card__side--back {
	-webkit-transform: rotateY(0);
	transform: rotateY(0);
}

.product-line__card__link {
	position: absolute;
	left: 50%;
	bottom: -50px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media only screen and (hover: none) {
	.product-line__card {
		height: auto;
		background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
		background-position: center;
		background-size: cover;
	}
	.product-line__card__side {
		position: relative;
		background-image: none;
	}
	.product-line__card__side--back {
		-webkit-transform: rotateY(0);
		transform: rotateY(0);
	}
	.product-line__card:hover .product-line__card__side--front {
		-webkit-transform: rotateY(0);
		transform: rotateY(0);
	}
	.product-line__card:hover .product-line__card__side--back {
		-webkit-transform: rotateY(0);
		transform: rotateY(0);
	}
}

/* ***** ***** ***** ***** ***** MEDIA CENTER - BROWSE IMAGES STYLE ***** ***** ***** ***** ***** */

.media-center__gallery .gallery {
	display: -ms-grid;
	display: grid;
	height: calc(100vw * 0.66);
	max-height: 800px;
	width: 100%;
	-ms-grid-rows: 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr;
	grid-template-rows: repeat(8, 1fr);
	-ms-grid-columns: 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr 1vw 1fr;
	grid-template-columns: repeat(8, 1fr);
	grid-gap: 1vw;
}

.media-center__gallery .gallery > *:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(3) {
	-ms-grid-row: 1;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(4) {
	-ms-grid-row: 1;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(5) {
	-ms-grid-row: 1;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(6) {
	-ms-grid-row: 1;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(7) {
	-ms-grid-row: 1;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(8) {
	-ms-grid-row: 1;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(9) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(10) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(11) {
	-ms-grid-row: 3;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(12) {
	-ms-grid-row: 3;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(13) {
	-ms-grid-row: 3;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(14) {
	-ms-grid-row: 3;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(15) {
	-ms-grid-row: 3;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(16) {
	-ms-grid-row: 3;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(17) {
	-ms-grid-row: 5;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(18) {
	-ms-grid-row: 5;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(19) {
	-ms-grid-row: 5;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(20) {
	-ms-grid-row: 5;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(21) {
	-ms-grid-row: 5;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(22) {
	-ms-grid-row: 5;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(23) {
	-ms-grid-row: 5;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(24) {
	-ms-grid-row: 5;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(25) {
	-ms-grid-row: 7;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(26) {
	-ms-grid-row: 7;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(27) {
	-ms-grid-row: 7;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(28) {
	-ms-grid-row: 7;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(29) {
	-ms-grid-row: 7;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(30) {
	-ms-grid-row: 7;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(31) {
	-ms-grid-row: 7;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(32) {
	-ms-grid-row: 7;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(33) {
	-ms-grid-row: 9;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(34) {
	-ms-grid-row: 9;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(35) {
	-ms-grid-row: 9;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(36) {
	-ms-grid-row: 9;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(37) {
	-ms-grid-row: 9;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(38) {
	-ms-grid-row: 9;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(39) {
	-ms-grid-row: 9;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(40) {
	-ms-grid-row: 9;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(41) {
	-ms-grid-row: 11;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(42) {
	-ms-grid-row: 11;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(43) {
	-ms-grid-row: 11;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(44) {
	-ms-grid-row: 11;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(45) {
	-ms-grid-row: 11;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(46) {
	-ms-grid-row: 11;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(47) {
	-ms-grid-row: 11;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(48) {
	-ms-grid-row: 11;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(49) {
	-ms-grid-row: 13;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(50) {
	-ms-grid-row: 13;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(51) {
	-ms-grid-row: 13;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(52) {
	-ms-grid-row: 13;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(53) {
	-ms-grid-row: 13;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(54) {
	-ms-grid-row: 13;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(55) {
	-ms-grid-row: 13;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(56) {
	-ms-grid-row: 13;
	-ms-grid-column: 15;
}
.media-center__gallery .gallery > *:nth-child(57) {
	-ms-grid-row: 15;
	-ms-grid-column: 1;
}
.media-center__gallery .gallery > *:nth-child(58) {
	-ms-grid-row: 15;
	-ms-grid-column: 3;
}
.media-center__gallery .gallery > *:nth-child(59) {
	-ms-grid-row: 15;
	-ms-grid-column: 5;
}
.media-center__gallery .gallery > *:nth-child(60) {
	-ms-grid-row: 15;
	-ms-grid-column: 7;
}
.media-center__gallery .gallery > *:nth-child(61) {
	-ms-grid-row: 15;
	-ms-grid-column: 9;
}
.media-center__gallery .gallery > *:nth-child(62) {
	-ms-grid-row: 15;
	-ms-grid-column: 11;
}
.media-center__gallery .gallery > *:nth-child(63) {
	-ms-grid-row: 15;
	-ms-grid-column: 13;
}
.media-center__gallery .gallery > *:nth-child(64) {
	-ms-grid-row: 15;
	-ms-grid-column: 15;
}

.media-center__gallery .gallery .gallery-item {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	overflow: hidden;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.media-center__gallery .gallery .gallery-item:hover {
	-webkit-transform: scale(1.025);
	-ms-transform: scale(1.025);
	transform: scale(1.025);
}

.media-center__gallery .gallery .gallery-item:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-row-span: 4;
	-ms-grid-column: 1;
	-ms-grid-column-span: 2;
	grid-area: 1 / 1 / span 4 / span 2;
}

.media-center__gallery .gallery .gallery-item:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-row-span: 4;
	-ms-grid-column: 3;
	-ms-grid-column-span: 2;
	grid-area: 1 / 3 / span 4 / span 2;
}

.media-center__gallery .gallery .gallery-item:nth-child(3) {
	-ms-grid-row: 4;
	-ms-grid-row-span: 4;
	-ms-grid-column: 5;
	-ms-grid-column-span: 2;
	grid-area: 4 / 5 / span 4 / span 2;
}

.media-center__gallery .gallery .gallery-item:nth-child(4) {
	-ms-grid-row: 4;
	-ms-grid-row-span: 4;
	-ms-grid-column: 7;
	-ms-grid-column-span: 2;
	grid-area: 4 / 7 / span 4 / span 2;
}

.media-center__gallery .gallery .gallery-item:nth-child(5) {
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
	-ms-grid-column: 5;
	-ms-grid-column-span: 4;
	grid-area: 1 / 5 / span 3 / span 4;
}

.media-center__gallery .gallery .gallery-item:nth-child(6) {
	-ms-grid-row: 5;
	-ms-grid-row-span: 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 4;
	grid-area: 5 / 1 / span 3 / span 4;
}

/* ***** ***** ***** ***** ***** CUSTOM FINISH PAGE STYLE ***** ***** ***** ***** ***** */

.container.finishes h2,
.container.finishes h3 {
	text-align: center;
}

.container.finishes h3 a {
	font-family: "Ronduit", sans-serif;	
}

#gallery-1 .gallery-item {
	width: calc(25% - 24px);
	margin: 0 12px 24px;
	border: 2px solid #c41520;
	background-color: #c41520;
	box-shadow: 0px 8px 16px -4px rgba(0, 0, 0, 0.75);
	transition: all .3s;
}

#gallery-1 .gallery-item:hover {
	transform: scale(1.025) translateY(-4px);
}

#gallery-1 .gallery-item figcaption {
	padding-top: .75rem;
	color: #ffffff;
}

/* ***** ***** ***** ***** ***** WOOCOMMERCE STYLE ***** ***** ***** ***** ***** */

.button:focus {
	outline: none;
}

.xoo-wsc-modal .xoo-wsc-basket {
	background-color: #c41520;
	color: #ffffff;
	box-shadow: 0 12px 24px -8px #000000;
}

.xoo-wsc-basket:hover {
	background-color: #a2111b;
}

.xoo-wsc-basket .xoo-wsc-items-count {
	top: unset;
	left: unset;
	bottom:-12px;
	right: -12px;
	background-color: #ffffff;
	color: #c41520;
}

.xoo-wsc-icon-basket1:before {
	content: "\f07a" !important;
	font-family: "Font Awesome 5 Pro";
}

/* ***** ***** ULTIMATE MEMBER ***** ***** */

.um {
	margin: 40px auto !important;
	padding: 20px 0 !important;
}

.um .um-button:not(.um-alt) {
	background: #c41520 !important;
	background-image: url(/wp-content/uploads/2020/08/red-texture.png) !important;
	background-size: cover !important;
	color: #ffffff !important;
}

.um .um-button {
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
	text-transform: uppercase !important;
	transition: all .3s;
}

.um .um-button:hover{
	transform: translateY(-3px);
	box-shadow: 0px 6px 10px -4px #000000 !important;
}

.um .um-request-button {
	background-color: #ebebeb;
	color: #6b6b6b;
	transition: transform .3s;
} 

.um .um-request-button:hover {
	background-color: #ebebeb;
	color: #6b6b6b;
	transform: translateY(-2px);
	box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.5);
}

.um-profile.um .um-profile-headericon a:hover, 
.um-profile.um .um-profile-edit-a.active,
.um .um-account-link.current i,
.um a.um-link {
	color: #c41520 !important;
}

.um .um-profile-nav-item.active a {
	background: #c41520 !important;
}

.wcpa_image_wrap ~ label {
	font-size: 12px;
	text-align: center;
	width: 80px;
	margin: 0 auto;
}

/* ***** ***** MY ACCOUNT ***** ***** */

.woocommerce-MyAccount-navigation {
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	padding: 20px 0;
	margin: 0 -15px 20px;
}

.woocommerce-MyAccount-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;

}

.woocommerce-MyAccount-navigation ul li {
	width: fit-content;
	padding: 4px 16px;
	text-transform: uppercase;
	text-align: center;
}

.woocommerce-MyAccount-navigation ul li a {
	color: #ffffff;
	transition: none;
}

.password-input {
	width: 100%;
}

/* ***** ***** SIDEBAR ***** ***** */

button[type="submit"] {
    margin: 8px 0 0;
    border: none;
	padding: 8px;
	background-color: #c41520;
	background-image: url(/wp-content/uploads/2020/08/red-texture.png);
	background-size: cover;
	border-radius: 4px;
	text-transform: uppercase;
	color: #ffffff;
	transition: all .3s;
}

button[type="submit"]:hover {
	transform: translateY(-4px);
	box-shadow: 0px 4px 8px -4px #000000;
}

button[type="submit"]:focus {
	outline: none !important;
}

button[type="submit"]:active {
	transform: translateY(-2px);
	box-shadow: 0px 2px 4px -2px #000000;
}

#secondary.card,
#secondary.card .border-bottom:last-child {
	border-width: 0 !important;
}

#woocommerce_product_search-3 button {
	margin-left: auto !important;
}

.brand-widget .nemoButton {
	width: 100%;
	font-family: NemoArms;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	border: 8px outset #c41520 !important;
}

@media only screen and (max-width: 900px) {
	.brand-widget .nemoButton {
		font-size: 12px;
	}
}

/* ***** ***** PRODUCTS DISPLAY ***** ***** */

mark,
.mark {
	background-color: transparent;
}

ul.products {
	display: flex !important;
	flex-wrap: wrap;
}

ul.products > li.product {
    max-width: 480px;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s;
    flex-direction: column;
}

ul.products > li.product:not(.product-category) {
	border: 4px ridge #c41520;
    border-radius: 8px;
    overflow: hidden;
	padding: 10px;
}

ul.products li.product .woocommerce-loop-product__title {
    padding: 8px 0;
    background: #3b3b3b;
    color: white;
	margin: 0 -10px 10px;
}

.star-rating {
	margin: 0 auto;
}

ul.products > li.product:not(.product-category):hover {
	transform: translateY(-8px) scale(1.05);
}

ul.products > li.product-category {
	justify-content: center;
}

ul.products > li.product-category > a {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 0 !important;
	height: 100px !important;
	border: 8px outset #c41520 !important;
	background: #c41520 !important;
	background-image: url(/wp-content/uploads/2020/08/red-texture.png) !important;
	background-size: cover !important;
	color: #ffffff !important;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25) !important;
	text-transform: uppercase !important;
	transition: all .3s;
}

ul.products > li.product-category > a:hover {
	transform: translateY(-3px);
	text-decoration: none;
	box-shadow: 0px 6px 10px -4px #000000 !important;
}

ul.products > li.product-category img,
ul.products > li.product-category h2 > mark {
	display: none !important;
}

ul.products > li.product-category h2 {
	font-family: Ronduit;
	font-size: 20px;
	margin-bottom: 0;
	letter-spacing: -1.5px;
	padding: 0 12px;
}

ul.products li.product img {
	margin: 0 auto 12px;
}

ul.products > li.product .xoo-wl-btn-container {
	display: none;
}

h2.woocommerce-loop-category__title {
	text-align: center;
	border-radius: 12px;
	font-size: 24px;
}

.widget_price_filter .ui-slider .ui-slider-range,
.widget_price_filter .ui-slider .ui-slider-handle,
.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	background: #c41520 !important;
}

.widget_price_filter .ui-slider-handle {
	border-radius: 50%;
}

.quantity input[type="number"] {
	width: auto !important;
}

p.stock.available-on-backorder,
p.stock.out-of-stock {
	font-size: 1.5em;
	font-weight: 700;
    color: #c41521;
}

.brandAddOn {
	font-size: 12px;
	letter-spacing: 3px;
}

@media only screen and (max-width: 900px) {
	ul.products > li.product-category h2 {
		font-size: 15px;
	}
	ul.products > li.product:not(.product-category) {
		padding: 4px;
	}
	
	ul.products > li.product:not(.product-category) .button {
		padding: 12px 24px !important
	}	
}

@media only screen and (max-width: 576px) {
	ul.products li.product {
		width: 100%;
	}
}

/* ***** ***** SINGLE PRODUCT ***** ***** */

.blog .col-md-8.wp-bp-content-width,
.single-product .col-md-8.wp-bp-content-width,
.woocommerce-checkout .col-md-8.wp-bp-content-width {
	max-width: 100%;
	-webkit-box-flex: 100%;
	-ms-flex: 100%;
	flex: 100%;
}

.blog .col-md-4.wp-bp-sidebar-width,
.single-product .col-md-4.wp-bp-sidebar-width,
.woocommerce-checkout .col-md-4.wp-bp-sidebar-width {
	display: none;
}

.woocommerce-product-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
}

.single-product div.product, 
.woocommerce-product-gallery .flex-viewport {
	width: 100%;
}

.woocommerce-product-gallery .flex-control-thumbs {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
	margin-top: 12px !important;
	margin-right: 8px !important;
	width: 100px !important;
}

.woocommerce-product-gallery .flex-control-thumbs li {
	width: 100% !important;
}

.woocommerce .zoomImg {
	background-color: #ffffff;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
	width: 100%;
	border: 1px solid #c41520;
	border-radius: 4px;
	margin: 4px;
	overflow: hidden;
}

.rifle-financing {
    font-family: 'exo 2', sans-serif;
    font-size: 1.5em;
    border-bottom: 2px solid #c41520;
    border-right: 2px solid #c41520;
    padding-bottom: 8px;
    padding-right: 8px;
}

.wcpa_form_id_3692 {
	margin-bottom: 10px !important;
    background: transparent !important;
    font-size: 20px;
    padding: 4px !important;
}

.wcpa_form_outer .wcpa_form_item {
    background: rgba(196,21,32,0.1);
    padding: 8px;
}

.wcpa_form_outer .wcpa_form_item .wcpa_checkbox {
	font-size: 1.25em;
    color: #c41520;
}

.wcpa_form_outer .wcpa_form_item .wcpa_checkbox .wcpa_check {
	border-color: #c41520;
	background-color: #ffffff;
	margin-bottom: -1px;
}

@media (min-width: 768px) {
	.single-product div.product .col-md-7 {
		flex: 0 0 40%;
		max-width: 40%;
	}
	.single-product div.product .col-md-5 {
		flex: 0 0 60%;
		max-width: 60%;
	}
}

@media only screen and (max-width: 768px) {
	.woocommerce-product-gallery {
		flex-direction: column-reverse !important;
	}
	.woocommerce-product-gallery .flex-control-thumbs {
		flex-direction: row !important;
		width: auto !important;
	}
}

/* ***** ***** CART ***** ***** */

#post-267 {
	border-width: 0;
}

.hentry.card .card-body {
	padding: 0 !important;
}

/* ***** ***** CHECKOUT ***** ***** */

#wufdc_div {
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	background-size: cover;
	padding: 12px;
	color: #c41520;
	border: 8px outset;
	border-radius: 8px;
}

#wufdc_div h6 {
	text-align: center;
	padding: 12px;
	background: rgba(255, 255, 255, 0.5);
}

.address-field > span,
.woocommerce-input-wrapper {
	width: 100%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-noreviews, p.no-comments {
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	border-width: 0 !important;
	color: #ffffff !important;
}

.woocommerce-info {
	margin: 1rem 8px;
}

/* ***** ***** ***** ***** ***** OTHER CATALOG STYLE ***** ***** ***** ***** ***** */

.page-id-2597 .site-header,
.page-id-2597 .site-footer {
	display: none !important; 
}

.page-id-2597 body.custom-background {
	background-color: #ebebeb !important;
}

/* ***** ***** ***** ***** ***** SPECIAL MODAL STYLE ***** ***** ***** ***** ***** */

#specialModal .modal-content {
	border: 2px solid #000;
	border-radius: 4px;
	overflow: hidden;
}

#specialModal .close {
	position: absolute;
	top: 0;
	right: 10px;
	color: #3b3b3b;
	font-size: 36px;
}

#specialModal .close:hover {
	color: #c41520 !important;
}

#specialModalImage {
	width: 100% !important;
	height: auto !important;
	background-size: cover;
/* 	cursor:  crosshair;  */
/* 	cursor: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/4273/circular-cursor.png) 53 53, crosshair;  */
}

/* ***** ***** ***** ***** ***** 12 DAYS OF GIVEAWAYS ***** ***** ***** ***** ***** */

@media (min-width: 576px) { .modal-xl { max-width: 500px; margin: 1.75rem auto; } }
@media (min-width: 992px) { .modal-xl { max-width: 800px; } }
@media (min-width: 1220px) { .modal-xl { max-width: 1140px; } }

.giveaway-banner {
	min-height: 40vw;
	background-image: url(/wp-content/uploads/2020/08/gray-texture.png);
	background-size: cover;
}

.giveaway {
	margin-bottom: 40px;
}

.giveaway__content {
	text-align: center;
	padding: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.giveaway__header {
	font-size: 42px;
    font-family: 'Titillium Web';
    color: #c41520;
    font-weight: 700;
}

.giveaway__subheader {
	font-size: 27px;
	font-family: 'titillium web', sans-serif;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #1b5733;
	border-bottom: 2px solid #c41520;
}

[class*="giveaway__text"] {
	font-size: 24px;
	color: #c41520;
}

.giveaway__text--1 {
	font-weight: 700;
}

.giveaway__text--3 {
	color: #1b5733;
	margin-bottom: 0;
}

.giveaway__image {
	max-width: 800px;
	min-width: 300px;
	width: 60%;
	margin-bottom: 20px;
}

.giveaway-products {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	max-width: 1200px;
	margin: 0 auto 100px;
}

[class*="giveaway-products__box"] {
	margin: 0 20px 40px;
	-webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

[class*="giveaway-products__box"]:hover {
	-webkit-transform: translateY(-8px) scale(1.005);
	    -ms-transform: translateY(-8px) scale(1.005);
	        transform: translateY(-8px) scale(1.005);
	-webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
	        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.giveaway-products__box--bundle {
	width: calc(33% - 40px);
}

.giveaway-products__box--square {
	width: calc(25% - 40px);
}

.giveaway-products__box--banner {
	width: 100%;
}

.giveaway-products__image {
	width: 100%;
}

.giveaway-sponsors {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.giveaway-sponsors__sponsor {
	width: calc(16.667vw - 14px);
	height: calc(16.667vw - 14px);
	margin: 0 5px 10px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 2px solid #1b5733;
	background-color: #ffffff;
	padding: 10px;
	-webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
	        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.giveaway-sponsors__sponsor:nth-child(even) {
	border-color: #c41520;
}

.giveaway-sponsors__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.giveaway-sponsors__image {
	width: 100%;
	display: block;
}

.giveaway-sponsors__sponsor:hover .giveaway-sponsors__link {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}

@media only screen and (min-width: 1200px) {
	.giveaway-sponsors__sponsor {
		width: 186px;
		height: 186px;
	}	
}

@media only screen and (max-width: 900px) {
	.giveaway-products__box--bundle,
	.giveaway-products__box--square {
		margin: 0 10px 20px;
		width: calc(33% - 20px);
	}
	.giveaway-products__box--banner {
		margin: 0 10px 10px;
	}
	.giveaway-sponsors__sponsor {
		width: calc(25vw - 14px);
		height: calc(25vw - 14px);
	}
}

@media only screen and (max-width: 600px) {
	.giveaway__content {
		padding: 40px 20px;
	}
	.giveaway__header {
		font-size: 32px;
	}
	.giveaway__subheader {
		font-size: 20px;
	}
	[class*="giveaway__text"] {
		font-size: 18px;
	}
	.giveaway-products__box--bundle,
	.giveaway-products__box--square {
		margin: 0 5px 10px;
		width: calc(50% - 10px);
	}
	.giveaway-sponsors__sponsor {
		width: calc(33vw - 14px);
		height: calc(33vw - 14px);
	}
}