* {
	box-sizing: border-box;
}

html {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	color: #1e1e1e;
	background: #000;
	color: #fff;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

:focus {
	outline: none !important;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	-webkit-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

iframe {
	max-width: 100%;
}

.form-select select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
}

.object-fit {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-width: unset;
}

/**
  * Typography
*/

h1 h2,
h3,
h4,
h5 {
	font-family: "Montserrat", sans-serif;
}

h1 {
	color: #fff;
	font-weight: 700;
	font-size: 28px;
	line-height: 34px;
}

h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 32px;
	color: #1e1e1e;
	margin-bottom: 15px;
}

h3 {
	font-weight: 600;
	font-size: 16px;
	line-height: 20px;
	color: #1e1e1e;
	margin-bottom: 15px;
}

p {
	font-family: "Montserrat", sans-serif;
	margin-bottom: 15px;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
}

p:last-child {
	margin-bottom: 0px;
}

@media (min-width: 768px) {
	h1 {
		font-size: 48px;
		line-height: normal;
	}
}

@media (min-width: 1025px) {
	h2 {
		font-size: 40px;
		line-height: 50px;
		margin-bottom: 30px;
	}

	p {
		font-size: 16px;
		line-height: 30px;
	}
}


ul,
ol {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

ul li,
ol li {
	padding: 0;
	margin: 0;
}

a {
	word-break: break-word;
}


/*------------------------------------*\
      COMPONENTS
  \*------------------------------------*/

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}


/* icons */

@font-face {
	font-family: 'csj-icon';
	src: url('../icons/csj-icon.eot?ly67no');
	src: url('../icons/csj-icon.eot?ly67no#iefix') format('embedded-opentype'),
		url('../icons/csj-icon.ttf?ly67no') format('truetype'),
		url('../icons/csj-icon.woff?ly67no') format('woff'),
		url('../icons/csj-icon.svg?ly67no#csj-icon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'csj-icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-calender-icon:before {
	content: "\e900";
}

.icon-corner-arrow:before {
	content: "\e901";
}

.icon-drop-down-arrow:before {
	content: "\e902";
}

.icon-left-arrow:before {
	content: "\e903";
}

.icon-next-arrow:before {
	content: "\e904";
}

.icon-next-arrow-1:before {
	content: "\e905";
}

.icon-prev-arrow:before {
	content: "\e906";
}

.icon-prev-arrow-1:before {
	content: "\e907";
}

.icon-right-arrow:before {
	content: "\e908";
}

.icon-right-small-arrow:before {
	content: "\e909";
}

.icon-tick:before {
	content: "\e90a";
}

.icon-up-arrow:before {
	content: "\e90b";
}


/* icons */
/**
   * Buttons
*/

.btn {
	display: inline-block;
	width: max-content;
	padding: 8px 10px;
	font-weight: 700;
	font-size: 14px;
	line-height: 22px;
	border: none;
	border-radius: 10px;
	position: relative;
	font-family: "Montserrat", sans-serif;
	min-width: 211px;
	cursor: pointer;
	text-align: center;
}

.btn-primary {
	background: #850D23;
	color: #fff;
}

.btn-primary:hover {
	background: #e93e5e;
}

.btn-secondary {
	background: #fff;
	color: #850D23;
}

.btn-secondary:hover {
	background: #850D23;
	color: #fff;
}

.btn-arrow {
	padding: 0 31px 0 0;
	color: #0073f8;
}

.btn-arrow::after {
	content: "\e902";
	font-family: "osk";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	font-size: 20px;
}

.btn-arrow:hover {
	color: #000;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn+.btn {
	margin-top: 5px;
}

.text-center {
	text-align: center;
}

@media (min-width: 600px) {
	.btn+.btn {
		margin-top: 0;
		margin-left: 5px;
	}
}

@media (min-width: 768px) {
	.btn {
		padding: 14px 10px;
		font-size: 16px;
		line-height: 22px;
	}

	.btn-arrow {
		padding: 0 41px 0 0;
	}

	.btn-arrow::after {
		font-size: 30px;
	}
}

@media (min-width: 1200px) {
	.btn {
		font-size: 18px;
	}
}

/**
   * Forms
   */
.contact-form-col {
	margin-bottom: 20px;
	display: block;
	position: relative;
}

.contact-form-btn {
	margin-top: 25px;
	text-align: center;
	display: block;
}

.form-col__checkbox {
	position: relative;
	margin: 0 0 20px;
}

.form-col__checkbox label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	padding: 0 0 0 32px;
}


.form-col__checkbox label a {
	text-decoration: underline;
	color: #fff;
}

.contact-form-upload .btn {
	min-width: 134px;
	cursor: pointer;
}

.form-col__checkbox input {
	display: none;
}

.contact-form-upload {
	margin: 0 0 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.form-col__checkbox label::before {
	content: "";
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: #F0F0F3;
	cursor: pointer;
	vertical-align: middle;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.form-col__checkbox input:checked+label:after {
	content: "";
	position: absolute;
	top: 3px;
	left: 7px;
	width: 4px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	background: transparent;
	border-radius: 0;
}

.form-col__checkbox input:checked+label:before {
	background: #850D23;
}

label {
	display: inline-block;
}

select {
	display: inline-block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #fff;
	background: #fff;
	padding: 14px 42px 14px 20px;
	height: 50px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 50px;
	color: #07151E;
	appearance: none;
	background: url(../img/dropdown-arrow.svg) center right 24px no-repeat #fff;
	font-family: "Montserrat", sans-serif;
}

textarea {
	display: inline-block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #fff;
	background: #fff;
	padding: 14px 20px;
	height: 120px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 20px;
	color: #07151E;
	resize: none;
	font-family: "Montserrat", sans-serif;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
	-webkit-appearance: none;
}

input:active,
textarea:active,
select:active,
input:focus,
textarea:focus,
select:focus {
	outline: none;
	/* Removes blue border on focus */
	/* border: 1px solid #ccc; */
	/* TODO: Please add a branded border for active and focus */
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
	display: inline-block;
	width: 100%;
	border: none;
	border-bottom: 1px solid #fff;
	background: #fff;
	padding: 14px 20px;
	height: 50px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 50px;
	color: #07151E;
	font-family: "Montserrat", sans-serif;
}

[type="date"] {
	appearance: none;
}

input::placeholder {
	color: #07151E;
	opacity: 1;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border: none;
	padding: 0;
}

input [type="submit"] {
	cursor: pointer;
}

@media (min-width: 1200px) {
	.form-col {
		margin-bottom: 35px;
	}
}

@media (min-width: 1600px) {
	.form-col__checkbox label {
		min-width: max-content;
	}
}

.container-fluid {
	padding: 0 22px;
}

@media (min-width: 768px) {
	.container-fluid {
		padding: 0 52px;
	}
}

@media (min-width: 1200px) {
	.container-fluid {
		padding: 0 72px;
	}
}

/* header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px 0 10px;
	z-index: 100;
	transition: all 0.5s ease-in-out;
}

.header.active {
	background-color: #fff;
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
}

.toggle-btn {
	width: 26px;
	cursor: pointer;
	z-index: 11111;
	margin-left: 20px;
}

.toggle-btn div {
	width: 100%;
	height: 3px;
	margin-top: 9px;
	background-color: #850d23;
	transition: all 0.3s ease-in-out;
}

.toggle-btn div.one {
	margin-top: 0px;
}

.toggle-btn.open .one {
	transform: rotate(45deg) translate(8px, 8px);
}

.toggle-btn.open .two {
	opacity: 0;
}

.toggle-btn.open .three {
	transform: rotate(-45deg) translate(9px, -9px);
}

.nav-primary {
	position: fixed;
	bottom: 0;
	left: -100%;
	width: 300px;
	height: 100%;
	background: #242424;
	padding: 20px 0 0 22px;
	overflow: auto;
	transition: all 0.3s ease-in-out;
	z-index: 10;
}

.nav-primary.active {
	left: 0;
}

.header-nav {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.nav-right .btn {
	min-width: unset;
	padding: 8px 18px;
	text-transform: uppercase;
	border-radius: 40px;
	font-size: 14px;
}

.logo {
	width: 100px;
	transition: all 0.5s ease-in-out;
}

.nav-primary ul li {
	margin-bottom: 19px;
}

.nav-primary ul li a {
	display: inline-block;
	width: 100%;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.25em;
}

.nav-primary ul li a:hover {
	color: #c92442;
}

.nav-primary ul li.active a {
	color: #c92442;
}

.menu-item-has-children {
	position: relative;
}

.nav-primary .sub-menu {
	display: none;
}

.nav-primary li>.sub-menu.js-toggled,
.nav-primary li>.mega-menu.js-toggled,
.nav-primary li>.mega-menu.js-toggled>.sub-menu {
	display: block;
}

.sub-menu-toggle.fa-solid.fa-angle-down.js-toggled::before {
	content: "\f106";
}

.nav-primary .sub-menu-toggle {
	position: absolute;
	top: 15px;
	right: 10%;
	cursor: pointer;
	display: block;
	line-height: 18px;
	text-align: center;
	color: #fff;
	width: 28px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav-primary .sub-menu-toggle::before {
	content: "\f078";
	font-family: "fontawesome";
	font-size: 10px;
	color: #906941;
}

.sub-menu {
	padding: 10px 10px 0px;
}

.nav-primary ul li .sub-menu li {
	margin-bottom: 8px;
}

.nav-primary ul li .sub-menu li a {
	font-size: 18px;
	line-height: 26px;
}

.nav-social-icon {
	display: none;
	transition: all 0.5s ease-in-out;
}

@media (min-width: 768px) {
	.nav-right .btn {
		padding: 14px 18px;
		font-size: 18px;
	}
}

@media (min-width: 1200px) {
	.header {
		padding: 15px 0 15px;
	}

	.toggle-btn {
		display: none;
	}

	.logo {
		width: 150px;
	}

	.nav-right {
		width: calc(100% - 150px);
		justify-content: flex-end;
		padding-top: 30px;
		transition: all 0.5s ease-in-out;
	}

	.nav-right .btn-primary {
		margin-left: 25px;
	}

	.nav-primary {
		position: unset;
		padding: 0;
		background: transparent;
		overflow: unset;
		width: max-content;
	}

	.nav-primary ul {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}

	.nav-primary ul li {
		margin-right: 10px;
		margin-bottom: 0px;
	}

	.nav-primary ul li:last-child {
		margin-right: 0px;
	}

	.nav-primary li>.sub-menu {
		background-color: #906941;
		border-top: 2px solid #906941;
		width: 240px;
		padding: 0 20px 5px;
		text-align: left;
		display: block;
		position: absolute;
		top: 81px;
		left: 0;
		opacity: 0;
		visibility: hidden;
	}

	.nav-primary li:hover .sub-menu {
		opacity: 1;
		top: 40px;
		visibility: visible;
	}

	.nav-primary li:hover .sub-menu li a:hover {
		color: #000;
	}

	.nav-primary .sub-menu-toggle {
		right: -35px;
	}

	.nav-primary .sub-menu-toggle::before {
		color: #fff;
	}

	.header-nav {
		position: relative;
	}

	.nav-social-icon {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		position: absolute;
		top: 0px;
		right: 0px;
	}

	.nav-social-icon li {
		margin-left: 20px;
	}

	.nav-social-icon li a {
		font-size: 14px;
		color: #fff;
		font-weight: normal;
	}

	.nav-social-icon li a:hover {
		color: #850D23;
	}

	.header.active {
		padding: 10px 0 10px;
	}

	.header.active .logo {
		width: 144px;
	}

	.header.active .nav-social-icon {
		top: -50px;
	}

	.nav-primary ul li.active a {
		color: #850D23;
	}

	.active .nav-primary ul li a {
		color: #000;
	}

	.active .nav-primary ul li.active a {
		color: #850D23;
	}

	.active .nav-right {
		padding-top: 0;
	}
}

@media (min-width: 1366px) {
	.header {
		padding: 35px 0 15px;
	}

	.nav-social-icon {
		top: -15px;
	}

	.logo {
		width: 290px;
	}

	.nav-right {
		width: calc(100% - 290px);
	}

	.active .nav-right {
		padding-top: 0px;
	}

	.nav-primary ul li {
		margin-right: 27px;
	}

	.nav-primary ul li {
		margin-right: 20px;
	}
}

@media (min-width: 1440px) {
	.nav-primary ul li {
		margin-right: 1.275vw;
	}

	.nav-primary ul li a {
		font-size: 18px;
	}
}

/* header end */



/* masterhead */

.masterhead-banner {
	position: relative;
}

.masterhead-banner__image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.masterhead-banner__overlay {
	position: relative;
	z-index: 2;
}

.masterhead-banner {
	padding: 140px 0 0;
}

.masterhead-banner-text {
	text-align: center;
}

.masterhead-banner-text h1 {
	color: #000;
	text-transform: uppercase;
	font-weight: 800;
	margin: 0 0 20px;
}

.masterhead-banner-text h1 span {
	color: #850D23;
	display: block;
}

.banner-text-card {
	text-align: center;
	padding: 30px 20px;
	background-color: #850D23;
	border-radius: 30px;
	position: relative;
}

.banner-text-card h3 {
	font-size: 24px;
	color: #fff;
	line-height: normal;
	margin: 0 0 20px;
}

.banner-text-card h3 span {
	display: block;
	text-transform: uppercase;
}

.banner-text-card__bottom {
	margin: 20px 0 0;
}

.banner-text-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 30px 0 0;
}

.masterhead-banner__image img {
	object-position: bottom;
}

.masterhead-banner:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 500px;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.masterhead-banner-text p {
	color: #000;
	max-width: 522px;
	margin: 0 auto;
}

.masterhead-banner__curve {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
}

.banner-text-cards--homepage .banner-text-card-item:nth-child(2) .banner-text-card {
	background: #18181B;
}


.banner-text-cards--homepage .banner-text-card-item:nth-child(2) .banner-text-card .btn {
	color: #18181B;
}

.banner-text-card__tag {
	position: absolute;
	right: -10px;
	top: -14px;
	background: #850D23;
	color: #fff;
	border-radius: 10px 10px 10px 0;
	padding: 8px 15px;
	font-size: 14px;
	font-weight: 700;
}

.banner-text-card .btn:hover {
	background: #18181B;
	color: #fff;
}

.banner-text-cards--homepage .banner-text-card-item:nth-child(2) .banner-text-card .btn:hover {
	color: #fff;
	background: #850D23;
}

.masterhead-banner--inner {
	min-height: 180px;
	padding: 0 !important;
	overflow: hidden;
}

.masterhead-banner--inner .masterhead-banner__curve {
	bottom: -1px;
}

.masterhead-banner--inner:after {
	opacity: 0.2;
}

.banner-text-blocks__heading {
	text-align: center;
}

.banner-text-blocks__heading h2 {
	color: #fff;
	font-size: 20px;
	line-height: normal;
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.banner-text-blocks__heading h2 span {
	color: #850D23;
}

.banner-text-blocks .banner-text-card__bottom .btn {
	min-width: max-content;
	padding-left: 39px;
	padding-right: 39px;
}

.banner-text-blocks {
	padding: 50px 0;
}

@media(min-width: 768px) {
	.banner-text-cards {
		flex-direction: row;
		gap: 30px;
		flex-wrap: wrap;
		justify-content: center;
		margin: 50px 0 0;
	}

	.banner-text-card-item {
		width: calc(50% - 15px);
	}

	.banner-text-card {
		padding: 30px 30px;
		border-radius: 50px;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.masterhead-banner--inner {
		min-height: 250px;
	}

	.banner-text-blocks__heading h2 {
		font-size: 24px;
	}
}

@media(min-width: 1200px) {
	.banner-text-card-item {
		width: calc(33.333% - 34px);
	}

	.banner-text-cards {
		gap: 50px;
		margin: 64px 0 0;
	}

	.banner-text-cards--homepage .banner-text-card-item:nth-child(2) .banner-text-card {
		position: relative;
		top: 32px;
	}

	.masterhead-banner:after {
		display: none;
	}

	.masterhead-banner {
		padding: 308px 0 0;
	}

	.banner-text-card {
		padding: 50px 32px 37px;
	}

	.masterhead-banner__curve {
		bottom: -32px;
	}

	.banner-text-card__tag {
		right: -20px;
		top: -18px;
		border-radius: 10px 10px 10px 0;
		padding: 16px 18px;
	}

	.banner-text-blocks .banner-text-cards {
		gap: 38px 30px;
		margin: 74px 0 0;
	}

	.banner-text-blocks .banner-text-card-item {
		width: calc(33.333% - 20px);
	}

	.banner-text-blocks {
		padding: 50px 0 95px;
	}

	.banner-text-blocks .banner-text-card-item:last-child {
		width: 100%;
	}
}

@media(min-width: 1600px) {
	.masterhead-banner--inner {
		min-height: 280px;
	}
}

/* image buttons */

.image-buttons {
	position: relative;
	padding-top: 37px;
}

.top-arrow {
	font-size: 65px;
	line-height: 1em;
	color: #850D23;
	margin-bottom: 42px;
}

.image-buttons__heading {
	text-align: center;
	padding: 0 22px 40px;
}

.image-buttons__heading :last-child {
	margin-bottom: 0;
}

.image-buttons__heading h2 {
	color: #fff;
	font-size: 28px;
	margin-bottom: 10px;
	line-height: normal;
}

.image-buttons__heading p {
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 500;
}

.image-button {
	position: relative;
	display: block;
	height: 438px;
}

.image-button img {
	opacity: 0.8;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-button::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(94, 94, 94, 0) 0%, #000000 100%);
}


.image-button__details {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 200px 25px 25px;
	color: #fff;
}

.image-button__details h4 {
	display: flex;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	line-height: normal;
	text-transform: uppercase;
	margin-bottom: 13px;
	padding-right: 80px;
	min-height: 65px;
	align-items: center;
	width: max-content;
	position: relative;
	max-width: 100%;
}

.image-button__details h4::after {
	content: '\e901';
	font-family: 'csj-icon';
	position: absolute;
	width: 65px;
	height: 65px;
	background: #850D23;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	line-height: 1em;
	font-weight: normal;
	transition: all .3s;
}

.image-button__details p {
	font-size: 14px;
	line-height: 1.5em;
}

.image-button__details br {
	display: none;
}

@media (min-width: 768px) {

	.image-buttons__heading {
		padding: 0 52px 40px;
	}

}

@media (min-width: 1025px) {
	.image-button-flex {
		display: flex;
		flex-wrap: wrap;
	}

	.image-button-item {
		width: 33.33%;
	}
}

@media (min-width: 1366px) {
	.image-buttons__heading {
		text-align: center;
		padding: 0 0 75px;
		max-width: 1214px;
		margin: 0 auto;
	}

	.image-buttons__heading h2 {
		font-size: 32px;
	}

	.image-buttons__heading p {
		font-size: 16px;
	}

	.image-button {
		height: 502px;
	}

	.image-button__details {
		padding: 42px 42px 60px;
	}

	.image-button::after {
		height: 298px;
	}

	.image-button__details h4 {
		font-size: 24px;
	}

	.image-button__details br {
		display: block;
	}

	.image-button__details p {
		font-size: 15px;
	}

	.image-button:hover img {
		opacity: 1;
	}

	.image-button:hover .image-button__details h4:after {
		margin-top: -10px;
	}

	.image-buttons {
		padding-top: 64px;
	}
}

/* image cards */

.image-cards {
	padding: 70px 0 54px 0;
}

.image-cards__heading {
	position: relative;
	text-align: center;
	margin-bottom: 24px;
}

.image-cards__heading h2 {
	color: #fff;
	font-size: 20px;
	line-height: normal;
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.image-cards__heading h2 span {
	color: #850D23;
}

.image-card-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -8px;
	row-gap: 16px;
}

.image-card-item {
	width: 100%;
	padding: 0 8px;
}

.image-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 8px;
	background: #18181B;
	border-radius: 10px;
	color: #9CA3AF;
	transition: transform .2s linear;
}

.image-card:hover {
	transform: translate3d(0, -15px, 0);
}

.image-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-card__details {
	padding-top: 12px;
}

.image-card__details h4 {
	color: #fff;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	margin-bottom: 0;
}

.image-card__details p {
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 0;
}

.image-card__cta {
	margin-top: 1px;
}

.image-card__cta {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.5em;
	color: #8C1B23;
	letter-spacing: 0.007em;
	font-weight: 700;
	padding-right: 13px;
}

.image-card__cta::after {
	content: '\e909';
	font-family: 'csj-icon';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	font-weight: normal;
	font-size: 7px;
}

@media (min-width: 768px) {
	.image-cards__heading h2 {
		font-size: 24px;
	}

	.image-card-flex {
		row-gap: 32px;
	}

	.image-card-item {
		width: 50%;
	}

	.image-card {
		padding: 16px;
		border-radius: 20px;
	}


}


@media (min-width: 1025px) {
	.image-cards__heading .btn {
		position: absolute;
		right: 0;
		top: 0;
	}

	.image-cards__heading h2 {
		margin-bottom: 0;
		padding: 10px 0 11px;
	}

	.image-card-item {
		width: 33.33%;
	}

}

@media (min-width: 1366px) {
	.image-card-flex {
		row-gap: 46px;
	}

	.image-cards__wrapper {
		padding: 0 60px;
	}
}

/* full width image text */

.full-width-image-text {
	position: relative;
	padding: 100px 0 80px;
}

.full-width-image-text__bg {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	bottom: 0;
	left: 0;
	opacity: 0.6;
}

.bottom-curve {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: -1px;
	z-index: 1;
}

.full-width-image-text__wrapper {
	position: relative;
	z-index: 2;
	text-align: center;
}

.full-width-image-text__wrapper :last-child {
	margin-bottom: 0;
}

.full-width-image-text h2 {
	color: #fff;
	font-size: 28px;
	line-height: normal;
	font-weight: 800;
}

.full-width-image-text h2 span {
	color: #850D23;
}

@media (min-width: 768px) {
	.full-width-image-text {
		padding: 150px 0 120px;
	}
}

@media (min-width: 1366px) {
	.full-width-image-text {
		padding: 278px 0 184px;
	}

	.full-width-image-text h2 {
		font-size: 36px;
	}
}

/* events */

.events {
	background: #18181B;
	padding: 46px 0 68px;
}

.events__headlines {
	text-align: center;
	margin-bottom: 24px;
}

.events__headlines h2 {
	color: #fff;
	font-size: 20px;
	line-height: normal;
	font-weight: 800;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.events__headlines h2 span {
	color: #850D23;
}

.event-flex {
	display: flex;
	flex-direction: column;
	row-gap: 16px;
}

.event {
	background: #fff;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	border-radius: 10px;
	padding: 8px;
}

.event__date {
	width: 64px;
	height: 70px;
	border: 1px solid #8C1B23;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1em;
	color: #8C1B23;
	flex-direction: column;
}


.event__date span {
	display: block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14em;
}

.event__title {
	width: calc(100% - 64px);
	padding-left: 16px;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.5em;
	color: #4F4F4F;
}

.event__title span {
	display: block;
	color: #9CA3AF;
	font-size: 13px;
	font-weight: 400;
}

.event__btn {
	margin: 20px 0 0;
	width: 100%;
	font-size: 13px;
	cursor: pointer;
}

.events--inner {
	background: #000;
}

.events--inner .events__headlines {
	text-align: center !important;
	justify-content: center;
}

.event-flex__col+.event-flex__col {
	margin-top: 16px;
}

.event:not(:has(.event__date)) .event__title {
	width: 100%;
	padding-left: 0;
}

@media (min-width: 768px) {
	.events__headlines {
		text-align: left;
		margin-bottom: 36px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.events__headlines h2 {
		font-size: 24px;
		margin-bottom: 0;
	}

	.event {
		border-radius: 20px;
		padding: 16px;
		padding-right: 106px;
	}

	.event::after {
		content: '\e908';
		font-family: 'csj-icon';
		position: absolute;
		top: 50%;
		right: 25px;
		transform: translate(0, -50%);
		font-size: 65px;
		line-height: 1em;
		color: #850D23;
		transition: all .3s;
	}

	.event__title {
		font-size: 16px;
	}

	.event__title span {
		font-size: 14px;
	}

	.event:has(.event__btn) {
		padding-right: 310px;
	}

	.event__btn {
		margin: 0;
		width: auto;
		position: absolute;
		right: 120px;
		min-width: 150px;
	}
}

@media (min-width: 1200px) {
	.event {
		padding-right: 104px;
	}

	.event:hover .event__date {
		background: #850D23;
		color: #fff;
	}

	.event:hover::after {
		right: 35px;
	}

	.event-flex__col+.event-flex__col {
		margin-top: 0;
	}

	.event-flex-wrapper {
		display: flex;
		gap: 36px;
	}

	.event-flex__col {
		width: calc(50% - 18px);
	}

	.events:has(.event-flex-wrapper) .container-fluid {
		padding: 0 56px;
	}

	.events:has(.event-flex-wrapper) .events__wrapper {
		padding: 0;
	}
}

@media (min-width: 1366px) {
	.events__wrapper {
		padding: 0 67px;
	}

	.events--inner {
		padding: 46px 0 86px;
	}

	.event__btn {
		right: 229px;
	}

	.event:has(.event__btn) {
		padding-right: 420px;
	}
}



/* footer */

.page-footer {
	background: rgba(0, 0, 0, 0.8);
	padding: 40px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	margin-bottom: 40px;
}

.footer-logo img {
	margin: 0 auto;
}

.footer-link {
	display: flex;
	flex-wrap: wrap;
	gap: 35px 20px;
}

.footer-contact-info ul li {
	position: relative;
}

.footer-contact-info ul li i {
	color: #0073f8;
	font-size: 20px;
	position: absolute;
	top: 5px;
	left: 0;
}

.footer-address p,
.footer-contact-info ul li,
.footer-contact-info ul li a,
.quick-links ul li a {
	font-weight: 400;
	font-size: 14px;
	line-height: normal;
	color: #ffffff;
	text-align: left;
	font-family: "Roboto Condensed", sans-serif;
}

.footer-contact-info ul li a,
.footer-address p,
.quick-links ul li a {
	opacity: 0.6;
}

.footer-contact-info ul,
.quick-links ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-address .nav-social-icon {
	display: flex;
}

.footer-address .nav-social-icon li {
	justify-content: flex-start;
	align-items: center;
	margin: 0 20px 0 0;
}

.copy-right {
	padding: 25px 0 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 35px 0 0;
}

.copy-right ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin: 10px 0 0;
}

.copy-right p {
	font-family: "Roboto Condensed", sans-serif;
}

.copy-right ul li,
.copy-right ul li a,
.copy-right p {
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	color: #ffffff;
	margin: 0;
	opacity: 0.6;
}

.footer-content-text p {
	color: #fff;
	opacity: 0.6;
	line-height: 22px;
	font-size: 14px;
}

.page-footer h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 15px;
}

@media (min-width: 768px) {
	.footer-link {
		justify-content: center;
		gap: 40px 52px;
		max-width: 1052px;
		margin: 0 auto;
	}

	.copy-right {
		max-width: 1052px;
		margin: 35px auto 0;
	}

	.copy-right ul {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.footer-content-text p strong {
		display: block;
	}

	.footer-content-text p {
		margin: 0 auto;
		display: table;
	}

	.footer-content-text {
		width: 100%;
	}

	.copy-right ul li {
		position: relative;
		padding: 0 10px;
	}

	.copy-right ul li::before {
		content: "";
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		left: -10px;
		width: 1px;
		height: 10px;
		background: #fff;
	}

	.copy-right ul li:first-child:before {
		display: none;
	}
}

@media (min-width: 1200px) {
	.footer-content {
		max-width: 1164px;
		margin: 0 auto;
	}

	.footer-contact-info ul li i {
		top: 17px;
	}

	.footer-address .nav-social-icon {
		top: unset;
		position: unset;
		justify-content: flex-start;
	}

	.footer-address .nav-social-icon li a:hover {
		color: #fff;
	}

	.footer-contact-info ul li a:hover,
	.footer-contact-info ul li a:hover,
	.quick-links ul li a:hover,
	.copy-right a:hover {
		color: #fff;
		opacity: 1;
	}

	.page-footer {
		padding: 50px 0 0;
	}

	.copy-right {
		padding: 24px 0 40px;
		display: flex;
		align-items: center;
		margin: 40px auto 0;
		justify-content: space-between;
	}

	.footer-content-text {
		width: auto;
	}

	.copy-right ul {
		margin: 0;
	}

	.quick-links,
	.footer-contact-info,
	.footer-address {
		min-width: 166px;
	}
}


/* footer */


.list-pagination {
	margin: 39px 0 0;
}

.list-pagination ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 60px 0 0;
	margin: 0;
	flex-wrap: wrap;
	position: relative;
}

.list-pagination ul li a {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	border-radius: 6px;
	gap: 10px;
}

.list-pagination ul li.active a {
	background: #850D23 !important;
}

.list-pagination ul li.list-pagination-prev-btn a,
.list-pagination ul li.list-pagination-next-btn a {
	width: auto;
	height: auto;
	background: transparent !important;
}

.list-pagination ul li.list-pagination-prev-btn a span,
.list-pagination ul li.list-pagination-next-btn a span {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

.list-pagination ul li.list-pagination-next-btn a span {
	background: url(../img/pagination-next-icon.svg) center center no-repeat #850D23;
}

.list-pagination ul li.list-pagination-prev-btn a span {
	background: url(../img/pagination-prev-icon.svg) center center no-repeat #850D23;
}

.list-pagination ul li.list-pagination-next-btn a:hover span {
	background: url(../img/pagination-next-icon.svg) center center no-repeat #da2344;
}

.list-pagination ul li.list-pagination-prev-btn a:hover span {
	background: url(../img/pagination-prev-icon.svg) center center no-repeat #da2344;
}

.list-pagination ul li a:hover {
	background: #262626;
}

.list-pagination-prev-btn {
	position: absolute;
	left: 0;
	top: 0;
}

.list-pagination-next-btn {
	position: absolute;
	right: 0;
	top: 0;
}


@media(min-width: 768px) {

	.list-pagination-next-btn,
	.list-pagination-prev-btn {
		position: relative;
	}

	.list-pagination ul {
		padding: 0;
	}
}

.image-text {
	margin: 50px 0;
}

.image-text__image {
	border-radius: 20px;
	aspect-ratio: 2 / 1.65;
	overflow: hidden;
	margin: 0 0 32px;
}

.image-text__content h2 {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	margin: 0 0 15px;
}

.image-text__content h3 {
	font-size: 18px;
	color: #850D23;
	margin: 0 0 25px;
}

.image-text__content h5 {
	font-size: 15px;
	color: #FFF;
	margin: 0 0 25px;
}

.image-text__content .btn {
	margin: 12px 0 0;
}

.text-content-details ul {
	padding: 0;
	margin: 0;
}

.text-content-details ul li {
	padding: 0;
	font-size: 15px;
	margin: 0 0 15px;
}

li ul.dot-list {
	margin: 15px 0 0;
	padding-left: 20px;
}

ul.dot-list li {
	position: relative;
	padding: 0 0 0 15px;
}

.text-content-details h2 {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	margin: 0 0 15px;
}

ul.dot-list li:after {
	content: "";
	position: absolute;
	left: 0;
	width: 5px;
	top: 7px;
	height: 5px;
	background: #fff;
	border-radius: 50px;
}

.text-content-details-col-row+.text-content-details-col-row {
	margin-top: 30px;
}

.text-content-details-col+.text-content-details-col {
	margin-top: 30px;
}

.text-content-details {
	margin: 50px 0;
}

.image-text__date {
	width: 64px;
	height: 70px;
	border: 1px solid #8C1B23;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 14px;
	color: #8C1B23;
	flex-direction: column;
	margin: 0 0 25px;
}

.image-text__date span {
	font-size: 24px;
	font-weight: 700;
}

.contact-form-block {
	margin: 50px 0;
}

.contact-form-block h2 {
	color: #fff;
}

.contact-form-block__heading {
	text-align: center;
}

.contact-form-block h3 {
	font-size: 14px;
	color: #850D23;
	font-weight: 700;
	margin: 0 0 20px;
}

.contact-form-row-col h3 {
	text-align: center;
}

.contact-form-row-col+.contact-form-row-col {
	margin-top: 20px;
}

.contact-form-block__heading__flex .btn {
	padding-left: 8px;
	padding-right: 8px;
	min-width: unset;
	margin: 20px 0;
}

.contact-form {
	margin: 30px 0 0;
}

.contact-form-block__heading__flex h4 {
	font-size: 20px;
}

.contact-form--open-day.contact-form-block h3 {
	font-size: 18px;
}

.contact-form-row-col .contact-form-block__heading__flex {
	margin-bottom: 15px;
}

.contact-form-block__heading__flex {
	text-align: center;
}

.training-form.contact-form-block h3 {
	font-size: 18px;
}

.training-form .btn {
	min-width: 111px;
}

.contact-form-block__heading h5 {
	font-size: 14px;
	color: #850D23;
	font-weight: 700;
	margin: 0 0 15px;
}

.contact-form-block__heading h6 {
	font-size: 18px;
	color: #fff;
	margin: 0 0 20px;
}

.form-submit-detail.contact-form-block h3 {
	font-size: 18px;
	margin: 0 0 30px;
}

.form-submit-detail .btn {
	padding-left: 20px;
	padding-right: 20px;
	margin: 40px 0 0;
}

.form-submit-detail {
	padding: 60px 0 200px;
	margin: 0 !important;
}

@media(min-width: 768px) {
	.contact-form-row {
		display: flex;
		gap: 34px;
		justify-content: space-between;
		align-items: flex-start;
	}

	.contact-form-row-col {
		width: calc(50% - 17px);
	}


	.contact-form-row .contact-form-row {
		gap: 12px;
	}

	.contact-form-row .contact-form-row .contact-form-row-col {
		width: calc(50% - 6px);
	}

	.contact-form-block__heading__flex {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		width: max-content;
		margin: 0 auto;
	}

	.contact-form-block__heading__flex p {
		position: absolute;
		right: -246px;
		font-size: 14px;
		text-align: left;
		width: 234px;
		line-height: 21px;
	}

	.contact-form-block h2 {
		font-size: 32px;
		margin: 0 0 20px;
		line-height: normal;
	}

	.contact-form-block__heading__flex .btn {
		margin: 0;
	}

	.contact-form {
		margin: 45px auto 0;
		max-width: 834px;
	}

	.contact-form--register .contact-form-row-col {
		max-width: 400px;
	}

	.contact-form--register .contact-form {
		max-width: 1020px;
	}

	.contact-form--open-day.contact-form-block h3 {
		font-size: 24px;
	}

	.contact-form--open-day .contact-form-row {
		justify-content: center;
	}

	.contact-form--open-day .contact-form-btn .btn {
		min-width: 111px;
		font-size: 16px;
	}

	.contact-form-row-col+.contact-form-row-col {
		margin-top: 0;
	}

	.training-form.contact-form-block h3 {
		font-size: 24px;
	}

	.contact-form-block__heading h6 {
		font-size: 24px;
	}

	.form-submit-detail.contact-form-block h3 {
		font-size: 24px;
	}
}

@media(min-width: 1200px) {
	.image-text__wrapper {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}

	.image-text__image {
		width: calc(46% - 28px);
		margin: 0;
	}

	.image-text__content {
		width: calc(54% - 28px);
		padding-top: 25px;
	}

	.image-text__content h2 {
		font-size: 32px;
	}

	.image-text__content h3 {
		font-size: 24px;
	}

	.image-text__content h5 {
		font-size: 16px;
		line-height: 24px;
	}

	.image-text__content .btn {
		margin: 45px 0 0;
	}

	.image-text {
		margin: 110px 0 70px;
	}

	.text-content-details {
		margin: 70px 0 50px;
	}

	.text-content-details ul li {
		font-size: 16px;
	}

	.text-content-details-wrapper {
		display: flex;
		gap: 24px;
	}

	.text-content-details-col {
		width: calc(50% - 12px);
	}

	.text-content-details h2 {
		font-size: 32px;
	}

	.text-content-details-col+.text-content-details-col {
		margin-top: 0;
	}

	.contact-form-block {
		margin: 70px 0 50px;
	}

	.training-form .contact-form-row {
		gap: 54px;
	}

	.training-form .contact-form-row-col {
		width: calc(50% - 27px);
	}

	.training-form .contact-form-btn {
		margin-top: 55px;
	}

	.form-submit-detail {
		padding: 60px 0 200px;
	}
}




.calendar {
	width: 100%;
	margin: 0;
}

.cal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	padding: 0 0 26px;
}

.cal-header h2 {
	font-size: 20px;
	margin: 0;
}

.cal-header button {
	background: none;
	border: none;
	color: #c1122f;
	font-size: 22px;
	cursor: pointer;
	padding: 0;
}


.cal-header button:hover img {
	filter: brightness(0) invert(1);
}

.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 15px 12px;
	margin-top: 30px;
}

.day {
	text-align: center;
	cursor: pointer;
	position: relative;
}

.day span {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 42px;
	border-radius: 8px;
}

.day.active span {
	background: #8b0f1f;
}

.day .dot {
	width: 6px;
	height: 6px;
	background: #8b0f1f;
	border-radius: 50%;
	margin: 6px auto 0;
}

.cal-header__right {
	display: flex;
	flex-direction: row;
	gap: 17px;
}

.calendar h5 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 20px 0 0;
	text-align: center;
}

@media(min-width: 1200px) {
	.day span {
		width: 40px;
		height: 40px;
	}
}





/* tabbed */


.club {
	padding: 50px 0;
}

.club-top-tontent h2 {
	display: block;
	font-size: 24px;
	line-height: normal;
	font-weight: 800;
	color: #FFFFFF;
	text-transform: uppercase;
}

.tabbed-content {
	padding: 0;
	margin: 0;
}

.tabbed-content .tabs ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 45px;
}

.tabbed-content .tabs li a {
	display: block;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	color: #FFFFFF;
	padding: 12px 10px;
	border: 1px solid #850D23;
	border-radius: 10px;
	width: 211px;
	text-align: center;
}

.tabbed-content .tabs li a:hover,
.tabbed-content .tabs li a.active {
	color: #FFFFFF;
	background: #850D23;
}

.tabbed-content .item::before {
	display: none;
}

.item.active .item-content {
	padding-top: 0;
}

.tabs-side .tabs li {
	margin-bottom: 2px;
}

.tabbed-content .item .item-content {
	opacity: 0;
	visibility: hidden;
	display: none;
}

.tabbed-content .item.active .item-content {
	opacity: 1;
	visibility: visible;
	display: block;
	padding: 55px 0;
}

@media all and (max-width: 1399px) {
	.tabbed-content .tabs li a {
		padding: 12px 10px;
		width: 175px;
	}
}

@media all and (max-width: 1199px) {
	.tabbed-content .item::before {
		content: attr(data-title);
	}

	.tabbed-content .tabs {
		display: none;
	}

	.item::before {
		cursor: pointer;
		display: block;
		font-size: 16px;
		line-height: 1.5em;
		font-weight: 700;
		color: #FFFFFF;
		padding: 12px 20px;
		border: 1px solid #850D23;
		border-radius: 10px;
	}

	.item::after {
		content: "\e902";
		font-family: 'csj-icon';
		position: absolute;
		top: 17px;
		right: 18px;
		font-size: 14px;
		font-weight: normal;
		color: #FFFFFF;
	}

	.item.active::before {
		color: #FFFFFF;
		background: #850D23;
	}

	.item.active::after {
		transform: rotate(180deg);
	}

	.item {
		margin-bottom: 15px;
		position: relative;
	}

	.tabbed-content .item.active .item-content {
		padding: 20px 0;
	}

	.tabbed-content .tabs li {
		display: block;
	}

	.tabbed-content .item::before {
		display: block;
	}
}


.item-content__top {
	max-width: 696px;
	margin: 0 auto;
}

.item-content h3 {
	margin: 0 0 20px;
	padding: 0;
	font-size: 20px;
	line-height: 1.12em;
	font-weight: 700;
	color: #FFFFFF;
}

.membership-list {
	margin: 20px 0;

}

.membership-list ul li {
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 25px;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 700;
	color: #FFFFFF;
}

.membership-list ul li::before {
	content: "\e90a";
	font-family: 'csj-icon';
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 14px;
	font-weight: normal;
	color: #850D23;
	transform: translate(0, -50%);
}

.membership-col {
	background: #ffffff;
	border-radius: 20px;
	padding: 20px 16px;
	color: #333333;
	margin-bottom: 25px;
}

.membership-col h4 {
	margin: 0 0 15px;
	padding: 0;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	color: #850D23;
}

.membership-col p,
.membership-col ul li {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.42em;
	font-weight: 400;
	color: #333333;
}

.membership-col h5 {
	margin: 25px 0 5px;
	padding: 0;
	font-size: 14px;
	line-height: 1.42em;
	font-weight: 700;
	color: #333333;
}

.membership-col ul {
	padding-left: 10px;
}

.membership-col ul li {
	list-style: disc;
	list-style-position: inside;
}

.membership-btns {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 20px;
}

@media(min-width: 768px) {
	.membership-col {
		padding: 25px 26px;
	}

	.membership-btns .btn {
		padding: 10px 35px;
		font-size: 14px;
		line-height: 1.42em;
	}
}

@media(min-width: 1200px) {
	.membership-list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		max-width: 1050px;
		margin: 40px auto 40px;
		gap: 0 50px;
	}

	.membership-list ul {
		width: calc(50% - 50px);
	}

	.membership-details {
		display: flex;
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 0 36px;
	}

	.membership-left,
	.membership-right {
		width: calc(50% - 18px);
	}

	.item-content h3 {
		margin: 0 0 28px;
		font-size: 32px;
	}

}

.tab-shooting .item-content__top {
	margin-bottom: 30px;
}

.price-list {
	margin: 30px auto 0;
	max-width: 1140px;
}

.tab-shooting .event-flex {
	max-width: 1234px;
	margin: 0 auto;
}

.price-list__col {
	border: 1px solid #850D23;
	border-radius: 15px;
	padding: 10px 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}

.list-name {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	color: #FFFFFF;
}

.price-value {
	margin: 0;
	padding: 7px 27px;
	font-size: 14px;
	line-height: 1.5em;
	font-weight: 700;
	color: #FFFFFF;
	background: #850D23;
	border-radius: 5px;
}

@media(min-width: 1200px) {

	.tab-shooting .item-content__top {
		margin-bottom: 55px;
	}

	.price-list {
		margin: 50px auto 0;
	}

	.price-list__col {
		padding: 14px 15px;
	}
}

.tab-competitions .item-content__top {
	max-width: 1150px;
	margin: 0 auto 30px;
}


@media(min-width: 1200px) {
	.competitions-listing {
		padding: 0 60px;
	}

	.tab-competitions .item-content__top {
		margin-bottom: 55px;
	}
}



.customer-zone {
	padding: 50px 0;
}

.zone-top-content {
	position: relative;
}

.customer-zone-top-content h2 {
	display: block;
	font-size: 24px;
	line-height: normal;
	font-weight: 800;
	color: #FFFFFF;
	text-transform: uppercase;
}

.zone-info {
	margin: 25px 0;
}

.zone-info__left h2 {
	margin: 0 0 8px;
	padding: 0;
	font-size: 30px;
	line-height: 1em;
	font-weight: 700;
	color: #FFFFFF;
}

.zone-info__left p {
	color: #A1A1AA;
}

.zone-info__right {
	margin-top: 15px;
}

.zone-info__right .btn {
	padding: 9px 25px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	gap: 0 5px;
	min-width: auto;
	font-size: 15px;
}

.status-col {
	padding: 24px 20px;
	width: 100%;
	background: #0C0C0C;
	border: 1px solid #27272A;
	border-radius: 48px;
	position: relative;
	overflow: hidden;
	margin-bottom: 16px;
}

.status-name {
	margin: 0 0 15px;
	padding: 0 20px 0 0;
	font-size: 14px;
	line-height: 1.2em;
	font-weight: 500;
	color: #A1A1AA;
	display: block;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	position: relative;
	z-index: 2;
	font-family: "Spline Sans", sans-serif;
}

.status-icon {
	position: absolute;
	width: 96px;
	height: 96px;
	right: -9px;
	top: -9px;
}

.status-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(133, 13, 35, 0.2);
	filter: blur(12px);
	border-radius: 9999px;
}

.status-icon img {
	margin: 32px 30px 0 auto;
}

.status-info {
	margin: 0 0 0;
	padding: 0 0;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 700;
	color: #ffffff;
	font-family: "Spline Sans", sans-serif;
}

.status-info span {
	margin: 0 0 0;
	font-size: 12px;
	font-weight: 400;
	color: #A1A1AA;
	display: block;
}

.status-bar {
	width: 100%;
	height: 6px;
	background: #27272A;
	position: relative;
	border-radius: 99px;
	margin-top: 20px;
}

.status-bar .active {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #850D23;
	border-radius: 99px;
}

.main-menu {
	margin: 30px 0 0;
}

.main-menu h2 {
	margin: 0 0 0;
	padding: 0 0 0 16px;
	font-size: 24px;
	line-height: 1.2em;
	font-weight: 700;
	color: #ffffff;
	font-family: "Spline Sans", sans-serif;
	position: relative;
}

.main-menu h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 8px;
	height: 32px;
	background: #850D23;
	border-radius: 99px;
}

.page-heading {
	position: relative;
	margin-bottom: 30px;
}

.back-to-page {
	position: absolute;
	left: 0;
	top: 0;
}

.back-to-page a {
	display: block;
	font-size: 32px;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 1em
}

.page-heading h2 {
	margin-bottom: 0;
	text-align: center;
}

.breadcrumb {
	margin-bottom: 32px;
}

.breadcrumb ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 21px;
}

.breadcrumb ul li {
	font-size: 14px;
	font-weight: 500;
	color: #850D23;
	line-height: 1.45em;
	font-family: "Spline Sans", sans-serif;
	position: relative;
}

.breadcrumb ul li::before {
	content: "/";
	position: absolute;
	left: -14px;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 20px;
	color: #475569;
	font-family: "Spline Sans", sans-serif;
}

.breadcrumb ul li:first-child:before {
	display: none;
}

.breadcrumb ul li a {
	font-weight: 500;
	color: #9CA3AF;
}

.block-heading {
	margin-bottom: 32px;
}

.block-heading h2 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.25em;
	text-transform: none;
}

.block-heading p {
	margin: 0 0 0;
	font-size: 14px;
	font-weight: 400;
	color: #9CA3AF;
	line-height: 1.55em;
}

.achievements-col {
	padding: 24px 20px;
	width: 100%;
	background: #0A0A0A;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 32px;
	position: relative;
	margin-bottom: 16px;
}

.achievements-icon {
	position: absolute;
	right: 25px;
	top: 30px;
	opacity: 0.2;
}

.achievements-name {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	color: #9CA3AF;
	line-height: 1.5em;
	font-family: "Spline Sans", sans-serif;
	position: relative;
}

.achievements-info {
	margin-bottom: 12px;
	font-size: 36px;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.3em;
	font-family: "Spline Sans", sans-serif;
}

.achievements-bar {
	width: 100%;
	height: 4px;
	background: #27272A;
	position: relative;
	border-radius: 99px;
	margin-top: 20px;
}

.achievements-bar .active {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #850D23;
	border-radius: 99px;
}

.achievements-time {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: #850D23;
	line-height: 1.3em;
	font-family: "Spline Sans", sans-serif;
}

.achievements-visit {
	margin: 0;
	font-size: 12px;
	font-weight: 400;
	color: #9CA3AF;
	line-height: 1.3em;
	font-family: "Spline Sans", sans-serif;
}

.training-search {
	width: 100%;
	height: 46px;
	background: #0A0A0A;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
	border-radius: 9999px;
	position: relative;
	margin: 32px 0;
}

.training-search input {
	display: inline-block;
	width: 100%;
	border: none;
	background: transparent;
	padding: 5px 15px 5px 50px;
	height: 100%;
	font-size: 16px;
	font-weight: 400;
	border-radius: 99px;
	color: #ffffff;
	font-family: "Spline Sans", sans-serif;
}

.training-search input::placeholder {
	opacity: 1;
	color: #64748B;
}

.training-search button {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translate(0, -50%);
	border: none;
	background: transparent;
	cursor: pointer;
}

.training-listing__col {
	padding: 24px 15px;
	background: #0A0A0A;
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 32px;
	margin-bottom: 16px;
}

.training-info {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.training-image {
	width: 96px;
	height: 96px;
}

.training-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.training-description {
	width: calc(100% - 96px);
	padding-left: 14px;
}

.training-description h5 {
	margin: 0 0 12px;
	padding: 0;
	font-size: 12px;
	line-height: 1.2em;
	font-weight: 400;
	color: #64748B;
	font-family: "Spline Sans", sans-serif;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 5px;
}

.training-description h4 {
	margin: 0 0 6px;
	padding: 0;
	font-size: 15px;
	line-height: 1.4em;
	font-weight: 700;
	color: #fff;
	font-family: "Spline Sans", sans-serif;
}

.training-description p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 400;
	color: #94A3B8;
	font-family: "Spline Sans", sans-serif;
}

.training-description p span {
	font-weight: 500;
	color: #ffffff;
}

.training-btn {
	margin-top: 15px;
}

.training-btn .btn {
	padding: 12px 20px;
	font-size: 16px;
	line-height: 1.5em;
	border-radius: 100px;
	min-width: auto;
	display: flex;
	align-items: center;
	gap: 0 10px;
}

@media(min-width: 768px) {
	.zone-info {
		margin: 25px 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.zone-info__right {
		margin-top: 5px;
	}

	.status-zone {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.status-col {
		padding: 24px 20px;
		width: calc(50% - 8px);
		margin-bottom: 0;
	}

	.block-heading h2 {
		font-size: 30px;
	}

	.block-heading p {
		font-size: 16px;
	}

	.achievements-zone {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0 16px;
	}

	.achievements-col {
		padding: 24px 20px;
		height: auto;
		width: calc(50% - 8px);
		margin-bottom: 16px;
	}

	.training-search {
		height: 58px;
	}

	.training-listing__col {
		display: flex;
		align-items: flex-end;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.training-btn {
		margin-top: 0;
	}
}

@media(min-width: 1200px) {
	.customer-zone__wrapper {
		padding: 0 50px;
	}

	.zone-info__left h2 {
		font-size: 48px;
	}

	.zone-info__left p {
		font-size: 18px;
	}

	.status-col {
		padding: 24px 25px;
		width: calc(25% - 12px);
		height: 150px;
	}

	.status-icon img {
		margin: 32px 40px 0 auto;
	}

	.block-heading h2 {
		font-size: 36px;
	}

	.block-heading p {
		font-size: 18px;
	}

	.back-to-page {
		top: -12px;
	}

	.back-to-page a {
		font-size: 50px;
	}

	.achievements-col {
		padding: 24px 24px 30px;
		width: 306px;
	}

	.training-listing__col {
		padding: 24px 24px;
	}

	.training-description {
		padding-left: 24px;
	}

	.training-description h4 {
		font-size: 20px;
	}

	.training-listing {
		padding-bottom: 50px;
	}
}




/* Range */

.tabbed-content .tabs li.large-tab a {
	width: 332px;
}

.range-1 .item-content__top {
	max-width: 1146px;
	margin-bottom: 30px;
}

.range-2 .item-content__top {
	max-width: 1233px;
	margin-bottom: 30px;
}

.range-type {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.range-type select {
	width: 100%;
	background: url(../img/dropdown-arrow-w.svg) center right 12px no-repeat #850D23;
	border-radius: 8px;
	border-bottom: none;
	color: #fff;
}

.range-buttons {
	padding-top: 30px;
}

.range-flex {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -18px;
	row-gap: 32px;
}

.range-button-item {
	width: 100%;
	padding: 0 18px;
}

.range-button {
	background: #fff;
	border-radius: 30px 30px 20px 20px;
}

.range-button__img {
	height: 211px;
}

.range-button__img img {
	border-radius: 20px 20px 0 0;
}

.range-button__details {
	padding: 24px 16px;
}

.range-button__details :last-child {
	margin-bottom: 0;
}

.range-button__details h4 {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5em;
	color: #850D23;
	margin-bottom: 16px;
}

.range-button__details h5 {
	font-size: 14px;
	line-height: 1.5em;
	color: #333333;
	font-weight: 700;
}

.range-button__details ul {
	margin-bottom: 16px;
}

.range-button__details ul li,
.range-button__details p {
	font-size: 14px;
	line-height: 1.5em;
	color: #333333;
	font-weight: 400;
}

.tab-shooting .cal-header h2 {
	color: #fff;
}

.form-col__checkbox--smll {
	padding-left: 27px;
}

.time-flex {
	display: flex;
	flex-wrap: wrap;
	column-gap: 50px;
	padding-top: 25px;
	row-gap: 12px;
}

.time-flex h5 {
	margin: 0;
	padding: 4px 12px 4px 4px;
	border-radius: 6px;
}

.time-flex h5.time-active {
	background: #850D23;
}

.contact-form-btn--sml .btn {
	min-width: 112px;
}

.menu-col {
	margin-top: 24px;
}

.menu-card {
	display: block;
	width: 100%;
	padding: 16px 0 20px 16px;
	background: #0C0C0C;
	border: 1px solid #27272A;
	border-radius: 16px;
	transition: transform .2s linear;
}

.menu-image-item {
	position: relative;
}

.menu-image {
	width: 100%;
	height: 170px;
	border-radius: 48px;
	object-fit: cover;
}

.menu-icon {
	position: absolute;
	bottom: 12px;
	right: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 47px;
	background: rgba(133, 13, 35, 0.9);
	box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(2px);
	border-radius: 9999px;
}

.menu-info {
	padding: 16px 8px 0;
}

.menu-info h5 {
	margin: 0 0 0;
	padding: 0 0 8px 0;
	font-size: 20px;
	line-height: 1.25em;
	font-weight: 700;
	color: #ffffff;
	font-family: "Spline Sans", sans-serif;
}

.menu-info p {
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.57em;
	font-weight: 400;
	color: #A1A1AA;
	font-family: "Spline Sans", sans-serif;
}

.menu-btns {
	margin-top: 53px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.menu-btns .btn {
	padding: 12px 20px;
	font-size: 16px;
	line-height: 1.5em;
	border-radius: 100px;
	font-family: "Spline Sans", sans-serif;
	min-width: auto;
}

@media (min-width: 768px) {
	.range-type select {
		width: auto;
		padding-right: 34px;
		padding-left: 12px;
	}

	.range-button-item {
		width: 50%;
	}

	.range-button__img {
		height: auto;
	}

	.menu-listing {
		display: flex;
		flex-wrap: wrap;
		gap: 0 40px;
	}

	.menu-col {
		width: calc(50% - 20px);
	}

	.menu-card {
		height: 100%;
	}

	.menu-image {
		height: 200px;
	}
}

@media (min-width: 1200px) {

	.range-1 .item-content__top,
	.range-2 .item-content__top {
		margin-bottom: 55px;
	}

	.range-button-item {
		width: 33.33%;
	}

	.range-buttons {
		padding-top: 59px;
		padding-bottom: 250px;
	}

	.menu-col {
		width: calc(33.333% - 28px);
	}

	.menu-image {
		height: 211px;
	}

	.menu-card {
		padding: 16px 0 24px 16px;
	}

	.menu-card:hover {
		transform: translate3d(0, -5px, 0);
	}
}

#range-next-2 {
	display: none;
}

#range-next-3 {
	display: none;
}

#range-next-4 {
	display: none;
}

.hide {
	display: none !important;
}

.show {
	display: block !important;
}

.contact-form-row-col {
	margin: 0 auto;
}

#range-next-2 .contact-form-block__heading__flex {
	margin-bottom: 13px;
}

.range-2-text {
	padding: 46px 0;
}

.range-2-text__wrapper h5 {
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	color: #850D23;
}

.range-2-text__wrapper h2 {
	color: #fff;
}

.range-2-text__wrapper h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: #850D23;
	margin-bottom: 30px;
}

.range-2-text__wrapper h4 {
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: #FFFFFF;

}

.qrcode {
	margin: 60px auto 48px;
	width: 248px;
	height: 248px;
	border-radius: 20px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (min-width: 1200px) {
	.range-2-text {
		padding: 46px 0 184px;
	}
}


.settings-form h4 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0;
	font-family: "Spline Sans", sans-serif;
	width: 100%;
}

.settings-form h3 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	font-family: "Spline Sans", sans-serif;
}

.settings-form h3 span {
	border-radius: 32px;
	background: #262626;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px 13px;
	width: max-content;
}

.settings-form-heading {
	align-items: center;
	display: flex;
	width: 100%;
	margin: 0 0 25px;
	justify-content: space-between;
	flex-wrap: wrap;
}

.settings-form-col label {
	font-size: 14px;
	font-weight: 500;
	color: #9CA3AF;
	display: block;
	margin: 0 0 10px;
	font-family: "Spline Sans", sans-serif;
}

.settings-form-input-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	width: 100%;
}

.settings-form-col {
	width: 100%;
	display: block;
	position: relative;
}

.settings-form-input-flex+.settings-form-input-flex {
	margin-top: 24px;
}

.settings-form-input-breakline {
	margin: 32px 0;
	border: 1px solid #262626;
	opacity: 1;
	height: 1px;
}

.settings-add-input-btn {
	font-size: 12px;
	font-weight: 700;
	color: #850D23;
	padding: 8px 16px;
	background: rgba(133, 13, 35, 0.1);
	border: 1px solid rgba(133, 13, 35, 0.2);
	border-radius: 50px;
	font-family: "Spline Sans", sans-serif;
	display: flex;
	align-items: center;
	cursor: pointer;
	justify-content: center;
	width: max-content;
	gap: 8px;
	margin-left: auto;
}

.settings-form-input-flex-border {
	padding: 16px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px dashed #262626;
	border-radius: 48px;
}

.settings-toggle-radio label {
	width: 48px;
	height: 24px;
	border-radius: 50px;
	background: #262626;
	font-family: "Spline Sans", sans-serif;
	position: relative;
	cursor: pointer;
}

.settings-toggle-radio label:after {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 50px;
	left: 8px;
	top: 50%;
	transform: translate(0, -50%);
	transition: all ease 0.3s;
}


.settings-toggle-radio input:checked+label:after {
	width: 32px;
	height: 32px;
	background: #850D23;
	left: 21px;
}

.settings-toggle-radio input:checked+label:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 7px;
	width: 5px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 3px 3px 0;
	transform: translate(0, -50%) rotate(45deg);
	z-index: 1;
	margin-top: -2px;
	transition: all ease 0.10s;
}

.settings-toggle-radio input {
	display: none;
}

.settings-form-col:has(.settings-toggle-radio) {
	border-radius: 16px;
}

.settings-form-col:has(.settings-toggle-radio input:checked) {
	border: 1px dashed rgba(133, 13, 35, 0.3);
	border-left: 4px solid #850D23;
}

.settings-toggle-radio {
	position: absolute;
	right: 23px;
	top: 16px;
}

.settings-toggle-radio+label {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin: 0 0 25px;
}

.settings-form-input-flex+.settings-form-heading {
	margin-top: 32px;
}

.settings-form-col-delete-button button {
	padding: 0;
	width: 58px;
	height: 50px;
	border: 1px dashed #262626;
	border-radius: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.settings-form-col-delete-button {
	position: absolute;
	right: 16px;
	bottom: 16px;
}

.settings-form-input-flex .settings-form-input-flex:has(.settings-form-col + .settings-form-col-delete-button) {
	padding-right: 90px;
	width: 100%;
	position: relative;
}

.settings-form-col input:disabled {
	background: #808080;
	border-color: #808080;
}

.settings-add-input-btn:hover {
	background: #850D23;
	color: #fff;
}

.settings-add-input-btn:hover img {
	filter: brightness(0) invert(1);
}

.settings-form-input-flex .settings-form-input-flex:has(.settings-form-col + .settings-form-col-delete-button) .settings-form-col {
	width: 100%;
}

.customer-discount-col {
	padding: 24px;
	border: 1px solid #27272A;
	background: #0A0A0A;
	border-radius: 48px;
	position: relative;
	z-index: 1;
}

.customer-discount-col-icon {
	position: absolute;
	right: 16px;
	top: 16px;
	opacity: 0.1;
	z-index: -1;
}

.customer-discount-col h5 {
	font-size: 12px;
	font-weight: 700;
	color: #A1A1AA;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-family: "Spline Sans", sans-serif;
	margin: 0 0 12px;
}

.customer-discount-col h3 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.075em;
	font-family: "Spline Sans", sans-serif;
	color: #fff;
	margin: 0;
}

.customer-discount-col h3 span {
	font-size: 12px;
	color: #A1A1AA;
	font-weight: 400;
	display: block;
	margin: 10px 0 0;
}

.customer-discount-row {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.customer-discount-col p {
	font-size: 14px;
	color: #A1A1AA;
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
}

.customer-discount-progress-bar {
	width: 100%;
	height: 16px;
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid #27272A;
	border-radius: 9999px;
	position: relative;
	margin: 15px 0 0;
}

.customer-discount-progress-bar span {
	width: 65%;
	height: 14px;
	top: 1px;
	left: 1px;
	background: linear-gradient(90deg, #850D23 0%, #A61D36 100%);
	position: absolute;
	border-radius: 9999px;
}

.customer-discount-progress-bar-value {
	position: absolute;
	right: 0;
	top: -51px;
	font-family: "Spline Sans", sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #A61D36;
}

.customer-discount-col:has(.customer-discount-progress-bar) h4,
.customer-discount-col:has(.customer-discount-progress-bar) p {
	padding-right: 100px;
	margin: 0;
}

.customer-discount-col h4 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	display: flex;
	font-family: "Spline Sans", sans-serif;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin: 0 0 22px;
}

.customer-discount-input label {
	font-size: 14px;
	font-weight: 500;
	color: #A1A1AA;
	font-family: "Spline Sans", sans-serif;
	display: block;
	margin: 0 0 10px;
}

.customer-discount-col .btn {
	width: 100%;
	border-radius: 50px;
	font-family: "Spline Sans", sans-serif;
	padding: 14px 10px;
	font-size: 16px;
}

.customer-discount-input .btn {
	margin-top: 24px;
}

.customer-discount-row+.customer-discount-row {
	margin-top: 24px;
}

.customer-discount-area-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.customer-discount-area-left {
	width: 100%;
}

.customer-discount-area-right {
	width: 100%;
}

.customer-discount-area-right-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 16px 0 0;
}

.customer-discount-area-right .customer-discount-col h4 {
	font-size: 24px;
	color: #fff;
	font-weight: 700;
	margin: 0 0 20px;
	justify-content: space-between;
}

.customer-discount-area-right h3 {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	font-family: "Spline Sans", sans-serif;
}

.customer-discount-area-right ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.customer-discount-area-right ul li {
	padding: 0 0 0 22px;
	font-size: 14px;
	font-weight: 500;
	font-family: "Spline Sans", sans-serif;
	position: relative;
}

.customer-discount-area-right ul li:after {
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	width: 14px;
	height: 22px;
	background: url(../img/customer-discount-tick.svg) center center no-repeat;
}

.customer-discount-area-right ul li.star:after {
	background: url(../img/customer-discount-star.svg) center center no-repeat;
}

.customer-discount-area-right .customer-discount-col .btn-border {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 9px 0px;
	background: rgba(133, 13, 35, 0.1);
	border: 1px solid rgba(133, 13, 35, 0.5);
	font-size: 14px;
	color: #850D23;
	font-weight: 700;
	border-radius: 50px;
	margin: 24px 0 0;
}

.customer-discount-area-right .customer-discount-col:nth-child(2) {
	background: #0F0F0F;
	border: 1px solid #850D23;
	box-shadow: 0px 0px 20px rgba(133, 13, 35, 0.25);
}

.customer-discount-area-right .customer-discount-col:nth-child(3) {
	background: linear-gradient(180deg, #1A1113 0%, #0A0A0A 100%);
	border: 1px solid rgba(133, 13, 35, 0.3);
}

.customer-discount-col h3.red {
	color: #850D23;
}

.customer-discount-area-right-list .customer-discount-col:first-child {
	opacity: 0.6;
}

.customer-discount-area-right .customer-discount-col:first-child ul li {
	color: #6B7280;
}

.customer-discount-terms {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 21px 24px;
	background: #0F0F0F;
	border: 1px solid #27272A;
	border-radius: 48px;
	gap: 12px;
	margin: 32px 0 0;
}

.customer-discount-terms p {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.settings-form-right {
	margin-top: 24px;
}

@media(min-width: 768px) {
	.settings-form-col {
		width: calc(50% - 12px);
	}

	.customer-discount-area-left {
		width: calc(60% - 12px);
	}

	.customer-discount-area-right {
		width: calc(40% - 12px);
	}
}

@media(min-width: 1200px) {
	.settings-form-flex {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 50px;
	}

	.settings-form-left,
	.settings-form-right {
		width: calc(50% - 25px);
	}

	.settings-form .container-fluid {
		padding: 0 120px;
	}

	.customer-discount-area-left {
		width: calc(100% - 24px - 357px);
	}

	.customer-discount-area-right {
		width: 357px;
	}

	.customer-discount-row {
		flex-direction: row;
	}

	.customer-discount-col {
		width: calc(33.333% - 13px);
	}

	.customer-discount-area-right .customer-discount-col {
		width: 100%;
	}

	.single .customer-discount-col {
		width: 100%;
	}


	.double .customer-discount-col {
		width: calc(50% - 12px);
	}

	.double .customer-discount-col {
		padding: 24px 24px 80px;
	}

	.customer-discount-area-right .customer-discount-col:last-child {
		padding-bottom: 56px;
	}

	.customer-discount-progress-bar-value {
		right: 38px;
	}

	.customer-discount-area .container-fluid {
		padding: 0 200px;
	}

	.triple {
		gap: 16px;
	}

	.triple .customer-discount-col {
		width: calc(33.333% - 11px);
	}

	.settings-form-right {
		margin-top: 0;
	}
}

@media(min-width: 1600px) {
	.settings-form-flex {
		gap: 90px;
	}

	.settings-form-left,
	.settings-form-right {
		width: calc(50% - 45px);
	}
}


.contact-permision-col+.contact-permision-col {
	margin-top: 25px;
}

.round-radio-col-item label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	position: relative;
	cursor: pointer;
	padding: 0 0 0 30px;
	line-height: 20px;
}

.round-radio-col-item input {
	display: none;
}

.round-radio-col-item label:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background: #F0F0F3;
	border-radius: 50px;
}

.round-radio-col-item label:before {
	content: "";
	position: absolute;
	left: 6px;
	top: 6px;
	width: 8px;
	height: 8px;
	background: #F0F0F3;
	border-radius: 50px;
	z-index: 1;
	transition: all ease 0.3s;
	transform: scale(0);
}

.round-radio-col-item input:checked+label:after {
	background: #850D23;
}

.round-radio-col-item input:checked+label:before {
	transform: scale(1);
}

.round-radio-col {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.contact-permision h3 {
	font-size: 20px;
	text-align: center;
	margin: 0 0 20px;
}

.contact-permision-col p {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
}

.contact-permision-input+.contact-permision-input {
	margin-top: 15px;
}



.range-detail-info-col ul {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.range-detail-info-col ul li {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.range-detail-info-col ul li span {
	font-weight: 700;
	color: #850D23;
	width: 42%;
}

.range-detail-info {
	display: flex;
	gap: 10px;
	flex-direction: column;
	margin: 20px auto 30px;
	text-align: left;
	max-width: 1000px;
}

.range-2-text-heading {
	margin: 0 0 20px;
}

.range-2-text__wrapper {
	margin: 0 auto;
	max-width: 1000px;
}

.range-2-text__wrapper .btn {
	display: table;
	margin: 40px auto 0;
}

@media(min-width: 768px) {
	.contact-permision-col {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 10px;
		flex-wrap: wrap;
	}

	.contact-permision-col p {
		margin: 0;
		display: block;
		width: 100%;
	}

	.round-radio-col {
		margin-bottom: 0;
	}

	.contact-permision-input+.contact-permision-input {
		margin-top: 0;
	}

	#range-next-3.contact-form {
		max-width: 1134px;
	}
}

@media(min-width: 1200px) {
	.contact-permision-col p {
		width: 314px;
		text-align: right;
		line-height: normal;
		margin: 0 10px 0 0;
	}

	.round-radio-col-item {
		min-width: 110px;
	}

	.contact-permision-col+.contact-permision-col {
		margin-top: 20px;
	}

	.contact-permision-input {
		width: 374px;
	}

	.contact-permision-input+.contact-permision-input {
		width: 170px;
	}

	#range-next-3.contact-form .contact-form-btn {
		margin-top: 95px;
	}

	.range-detail-info {
		flex-direction: row;
		gap: 100px;

	}

	.range-detail-info-col {
		width: calc(50% - 50px);
	}

	.range-detail-info-col ul li {
		font-size: 20px;
	}

	.range-2-text-heading {
		margin: 0 0 60px;
	}

	.range-2-text__wrapper .btn {
		padding: 14px 30px;
	}

	.range-3-text {
		padding: 46px 0 68px;
	}
}



.achievements-cards {
	margin-bottom: 40px;
}

.achievements-card__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 12px;
}

.achievements-card__right {
	font-family: "Spline Sans", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	padding: 4px 8px;
	border-radius: 6px;
	display: inline-block;
}

.achievements-card__right.active {
	background: rgba(11, 218, 146, 0.1);
	color: #0BDA92;
}

.achievements-card__right.expires-Soon {
	background: rgba(251, 146, 60, 0.1);
	color: #FB923C;
}

.achievements-card h3 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	color: #FFFFFF;
	margin-bottom: 0;
}

.achievements-card h3 span {
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: #0BDA92;
	margin-left: 8px;
}

.achievements-card h4 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	margin-bottom: 4px;
}

.achievements-card h5 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
}

.achievements-card h6 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
	margin-top: 4px;
}

.btn-primary-text {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #850D23;
}

.two-column-flex {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 37px;
}

.left-panel {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.two-column-title {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #FFFFFF;
	margin: 0 0 16px;
}

.delegations-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	gap: 36px;
	background: #121212;
	border-radius: 12px;
	height: calc(100% - 50px);

}

.delegations-row {
	display: flex;
	gap: 16px;
}

.delegations-date {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 56px;
	height: 56px;
	background: #121212;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
}

.delegations-date span {
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
}

.delegations-content h4 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	color: #FFFFFF;
	margin-bottom: 4px;
}

.delegations-content p {
	margin: 0 0px 0 0;
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.delegations-content p img {
	margin: 0 8px 0 0;
}

.red-text {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	color: #850D23;
}

.red-text:hover {
	color: #fff;
}

@media (min-width: 768px) {
	.left-panel__top {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 16px;
	}

	.left-panel__top h3 {
		margin-bottom: 0;
	}
}

@media (min-width: 1440px) {
	.achievements-cards .achievements-col {
		width: calc(25% - 12px);
		margin-bottom: 0;
		padding: 24px 24px 20px;
	}
}



.table-wrapper {
	border-radius: 10px;
	overflow: hidden;
	background: #121212;
}

table {
	border-top: none;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
	width: 100%;
	table-layout: fixed;
}

table tr {
	border-top: 1px solid #242B32;
}

table tr:first-child {
	border: none;
}

table th,
table td {
	padding: 15px 24px;
	text-align: left;
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

table th {
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
}



.table-flex {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.table-flex p {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
	margin: 0;
	width: calc(100% -42px);
}

.table-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 40px;
	background: #000000;
	border-radius: 6px;
	margin-right: 12px;
}

.btn-table {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	padding: 2px 10px;
	display: inline-block;
	border-radius: 8px;
}

.btn-table.verification {
	color: #EAB308;
	background: rgba(234, 179, 8, 0.1);
	border: 1px solid rgba(234, 179, 8, 0.2);
}

.btn-table.verification:hover {
	color: #FFE8A1;
}

.btn-table.approved {
	color: #0BDA92;
	background: rgba(11, 218, 146, 0.1);
	border: 1px solid rgba(11, 218, 146, 0.2);
}

.btn-table.approved:hover {
	color: #c3e6d9;
}

.btn-table.required-action {
	background: rgba(133, 13, 35, 0.2);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #F87171;
}

.btn-table.required-action:hover {
	color: #EEA9A9;
}

.pistol {
	color: #850D23;
	background: rgba(133, 13, 35, 0.2);
	border: 1px solid rgba(133, 13, 35, 0.3);
}

.rifle {
	color: #60A5FA;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
}

.gun {
	color: #FB923C;
	background: rgba(249, 115, 22, 0.1);
	border: 1px solid rgba(249, 115, 22, 0.2);
}

@media screen and (max-width: 1199px) {
	.table-flex {
		display: unset;
	}

	table {
		border: 0;
	}

	table thead {
		border: none;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}

	table tr {
		display: block;
		margin-bottom: .625em;
		border-top: #000 5px solid;
	}

	table td {
		border-bottom: 1px solid #242B32;
		display: block;
		font-size: .8em;
		text-align: right;
	}

	table td::before {
		content: attr(data-label);
		float: left;
		font-weight: bold;
		text-transform: uppercase;
	}

	table td:last-child {
		border-bottom: 0;
	}
}


@media (min-width:1200px) {
	.two-column-flex {
		flex-direction: row;
		gap: 32px;
	}

	.left-panel {
		width: calc(100% - 452px);
	}

	.right-panel {
		width: 420px;
	}

	.two-column-title {
		margin: 0 0 25px;
	}

	.table-flex {
		min-width: 150px;
	}
}

.discounts-in-the-store {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
	gap: 7.4px;
	isolation: isolate;
	background: linear-gradient(135deg, #850D23 0%, #500B1A 100%);
	border-radius: 12px;
	margin-bottom: 60px;
}


.discounts-in-the-store h3 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
	margin: 0;
}

.discounts-in-the-store p {
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 23px;
	color: rgba(255, 255, 255, 0.8);
	margin: 4px 0;
}

.visit-store {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	color: #FFFFFF;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(2px);
	border-radius: 8px;
	display: inline-block;
}

.discounts-in-the-store img {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0.2;
}

@media (min-width:1200px) {
	.discounts-in-the-store p span {
		display: block;
	}

	.discounts-in-the-store {
		margin-bottom: 146px;
	}
}


.achievements-card-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.achievements-card__left h4 {
	font-family: "Public Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	display: flex;
	align-items: center;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #B79EA3;
	margin-bottom: 4px;
}

.achievements-card__left h4 img {
	margin-right: 11px;
	display: inline-block;
}

.achievements-card__left h3 {
	font-family: "Public Sans", sans-serif;
	font-style: normal;
	font-weight: 700;
	font-size: 30px;
	line-height: 38px;
	display: flex;
	align-items: center;
	color: #FFFFFF;
	margin-bottom: 8px;
}

.achievements-card__right img {
	opacity: 0.05;
}

.achievements-card__left h5 {
	font-family: "Public Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #B79EA3;
}

.membership-card-search {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 16px;
	gap: 16px;
	background: rgba(56, 41, 44, 0.2);
	border: 1px solid #27272A;
	border-radius: 12px;
	margin: 24px 0;
}

.membership-search {
	position: relative;
	width: 100%;
	max-width: 320px;
}

.membership-search input {
	background: #27272A;
	border-radius: 8px;
	border: none;
	font-family: "Public Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #B79EA3;
	padding-left: 46px;
}

.membership-search input::placeholder {
	font-family: "Public Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #B79EA3;
}

.membership-search button {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 15px;
	width: 100%;
	width: max-content;
	background: transparent;
	border: transparent;
}

.membership-select-Year {
	width: 100%;
}

.membership-select-discipline {
	width: 100%;
}

.membership-select-Year select,
.membership-select-discipline select {
	background: #27272A;
	border-radius: 8px;
	border: none;
	font-family: "Public Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
	color: #B79EA3;
	width: 100%;
}


.membership-select-Year select,
.membership-select-discipline select {
	background: #27272A url(../img/dropdown-arrows.svg) center right 24px no-repeat
}

.membership-table {
	border: 1px solid #242B32;
}

.pdf {
	display: inline-block;
}

.membership-table table tr:last-child {
	border-bottom: 1px solid #242B32;
}

.membership-table table th {
	font-family: "Public Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	color: #850D23;
}

.membership-table table td {
	background: #000;
}

.membership-table table td h4 {
	font-family: "Public Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

.membership-table table td h4 span {
	display: block;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #B79EA3;
}

.pagination {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px 0;
	background: #000;
}

.pagination ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.pagination ul li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid #27272A;
	border-radius: 8px;
	font-family: "Public Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #870D24;

}

.pagination ul li.active a {
	border-color: #870D24;
	background: #870D24;
	color: #fff;
}

.pagination p {
	font-family: "Public Sans", sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #870D24;
}

.pagination p span {
	color: #fff;
}

@media (min-width:768px) {
	.membership-select-Year {
		max-width: 140px;
	}

	.membership-card-search {
		flex-direction: row;
	}

	.membership-select-discipline {
		max-width: 201px;
	}
}

@media (min-width:1200px) {
	.membership-table {
		margin-bottom: 100px;
	}

	.membership-card .achievements-col {
		width: calc(33.33% - 11px);
		margin: 0;
	}

	.membership-card {
		margin-bottom: 24px;
	}

	.membership-card-search {
		margin: 24px 0;
	}

	.pagination p {
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		left: 16px;
	}
}



.orders-table-wrapper h2 {
	margin: 0 0 24px;
	padding: 0 0 0;
	font-size: 20px;
	line-height: 1.28em;
	font-weight: 700;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: "Inter", sans-serif;
}

.orders-table table th {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	color: #ffffff;
}

.orders-table table th:last-child,
.orders-table table td:last-child {
	text-align: right;
}

.orders-table table td {
	color: #A1A1AA;
}

.orders-table table td.data-item {
	color: #FFFFFF;
	font-weight: 500;
}

.orders-table table td .status {
	color: #36E27B;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	padding: 2px 10px 2px;
	background: rgba(54, 226, 123, 0.1);
	border: 1px solid rgba(54, 226, 123, 0.2);
	border-radius: 9999px;
	width: max-content;
	gap: 0 5px;
	font-size: 12px;
}

.orders-table table td .status img {
	margin-top: 4px;
}

.orders-table table td a {
	color: #A1A1AA;
	font-weight: 500;
	text-decoration: underline;
}

.orders-table-wrapper {
	padding-top: 30px;
	border-top: 1px solid #27272A;
}

.service-log {
	padding: 24px 24px;
	background: #121212;
	border: 1px solid #27272A;
	box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	margin-bottom: 20px;
}

.service-log h2 {
	margin: 0 0 16px;
	padding: 0 0 0;
	font-size: 18px;
	line-height: 1.28em;
	font-weight: 700;
	color: #FFFFFF;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: "Inter", sans-serif;
}

.service-log ul {
	margin: 0;
	padding: 0;
	border-left: 3px solid #3F3F46;
	;
}

.service-log ul li {
	margin: 0 0 24px;
	padding: 0 0 0 30px;
	font-size: 14px;
	line-height: 1.28em;
	font-weight: 400;
	color: #A1A1AA;
	font-family: "Inter", sans-serif;
	position: relative;
}

.service-log ul li.active {
	color: #FFFFFF;
}

.service-log ul li:last-child {
	margin-bottom: 0;
}

.service-log ul li::before {
	content: "";
	position: absolute;
	left: -1px;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 6px solid #121212;
	background: #3F3F46;
}

.service-log ul li span {
	display: block;
	font-size: 12px;
	padding-bottom: 5px;
}

.service-log ul li.active span {
	color: #A1A1AA;
}

.service-log ul li.active::before {
	background: #850D23;
}

.service-center {
	margin-bottom: 24px;
}

.service-center {
	background: #121212;
	border: 1px solid #27272A;
	box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
}

.service-center__info {
	position: relative;
	padding: 24px 15px;
}

.service-center__image {
	display: flex;
	width: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
	padding-bottom: 20px;
	justify-content: center;
	align-items: center;
}

.service-center__description h5 {
	margin: 0 0 10px;
	padding: 0;
	font-size: 20px;
	line-height: 1.28em;
	font-weight: 700;
	color: #FFFFFF;
	font-family: "Inter", sans-serif;
}

.service-center__description ul li {
	margin: 0 0 12px;
	padding: 0;
	font-size: 14px;
	line-height: 1.25em;
	font-weight: 400;
	color: #FFFFFF;
	font-family: "Inter", sans-serif;
}

.service-center__description ul li span {
	color: #A1A1AA;
}

.service-center__description ul li.delivery {
	color: #008D52;
}

.service-progress {
	background: #18181B;
	padding: 24px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.progress-col {
	text-align: center;
	position: relative;
	width: 25%;
}

.progress-col::before {
	content: "";
	position: absolute;
	left: 0;
	top: 32px;
	width: 100%;
	height: 4px;
	background: #f00;
}

.progress-col:first-child {
	text-align: left;
}

.progress-col:last-child {
	text-align: right;
}

.progress-col p {
	margin: 0 0 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.25em;
	font-weight: 700;
	color: #A1A1AA;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
}

.progress-col img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: #27272A;
	border: 4px solid #18181B;
	border-radius: 9999px;
	margin: 0 auto 8px;
}

.progress-col:first-child img {
	margin: 0 0 8px 14px;
}

.progress-col:last-child img {
	margin-left: auto;
	margin-right: 14px;
}




.tracker {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 20px;
	background: #18181B;
	border-radius: 8px;
}

.tracker::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	height: 4px;
	background: #2a2a2a;
	transform: translateY(-50%);
}

/* active red line */
.progress {
	position: absolute;
	top: 50%;
	left: 20px;
	width: 60%;
	height: 4px;
	background: #850D23;
	transform: translateY(-50%);
}

/* step */
.step {
	position: relative;
	text-align: center;
	color: #555;
	z-index: 2;
}

.step span {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #27272A;
	border: 2px solid #18181B;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: relative;
}

.step.done span img {
	margin: 0 auto;
}

.step p {
	margin-top: 10px;
	font-size: 11px;
	line-height: 1.25em;
	font-weight: 700;
	color: #A1A1AA;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
}

.step.done span {
	background: #850D23;
	border-color: #850D23;
}

.step.done p {
	color: #850D23;
}

.step.current span {
	border-color: #850D23;
	background: #111;
	width: 32px;
	height: 32px;
}

.step.current p {
	color: #fff;
}

.step.done span::before {
	content: "";
	position: absolute;
	top: -9px;
	left: -9px;
	width: 31px;
	height: 31px;
	border: 3px solid #850D23;
	border-radius: 50%;
}

.heading-info-btn {
	margin-top: 20px;
}

.heading-info-btn .btn {
	padding: 13px 24px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 0 5px;
	min-width: auto;
	font-size: 16px;
	font-family: "Inter", sans-serif;
}

.service-center-status {
	position: absolute !important;
	right: 10px !important;
	top: 10px;
	left: unset !important;
	background: none;
	transform: unset;
	width: max-content;
	font-size: 12px;
	font-weight: 700;
	padding: 0 12px 0 28px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
}

.service-center-status:after {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translate(0, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50px;
}

.service-center-status-progress {
	color: #EAB308;
	border: 1px solid rgba(234, 179, 8, 0.2);
	background: rgba(234, 179, 8, 0.1);
	line-height: normal;
}

.service-center-status-progress:after {
	background: #EAB308;
}

@media (min-width: 768px) {
	.service-center__description h5 {
		font-size: 24px;
	}

	.service-center__description ul li {
		display: flex;
		flex-wrap: wrap;
	}

	.service-center__description ul li span {
		width: 200px;
	}

	.step p {
		font-size: 12px;
	}

	.service-center-status {
		right: 24px !important;
		top: 24px;
	}
}

@media (min-width: 1200px) {
	.service-center__info {
		padding: 0 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0 24px;
	}

	.service-center__image {
		width: 300px;
		background: #0A0A0A;
		padding-bottom: 0;
		padding: 24px 24px;
		border-radius: 12px 0 0 12px;
	}

	.service-center__image img {
		margin: 0 auto;
		display: block;
	}

	.service-center__description h5 {
		font-size: 24px;
	}

	.service-center__description ul li {
		display: flex;
		flex-wrap: wrap;
	}

	.service-center__description ul li span {
		width: 270px;
	}

	.block-heading {
		position: relative;
	}

	.heading-info-btn {
		margin-top: 0;
		position: absolute;
		top: 0;
		right: 0;
	}
}


.customer-panel {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 32px 0;
}

.customer-panel-card {
	position: relative;
	overflow: hidden;
	margin: 0;
}

.customer-panel-card-bg {
	position: absolute;
	top: -20px;
	right: -20px;
}

.customer-panel-card__top h4 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #9CA3AF;
	margin-bottom: 10px;
}

.customer-panel-card__top h3 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	color: #FFFFFF;
	margin: 0;
}

.customer-panel-card__top h3 span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 2px 8px;
	gap: 2px;
	background: rgba(11, 218, 146, 0.1);
	border: 1px solid rgba(11, 218, 146, 0.2);
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	color: #4ADE80;
	border-radius: 10px;
	margin-left: 12px;
}

.customer-panel-tab__header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
	padding: 8px;
	background: rgba(12, 12, 12, 0.5);
	border: 1px solid #262626;
	backdrop-filter: blur(2px);
	border-radius: 32px;
	padding: 16px;
	margin: 32px 0;
}

.customer-panel-tab__header .tabs ul {
	gap: 0 6px;
}

.customer-panel-tab__header .tabs li a {
	padding: 7px 24px;
	box-shadow: 0px 4px 6px -1px rgba(133, 13, 35, 0.2), 0px 2px 4px -2px rgba(133, 13, 35, 0.2);
	border-radius: 9999px;
	gap: 0 6px;
	width: unset;
}


.customer-panel-tab__search {
	position: relative;
	width: calc(100% - 48px);
}

.customer-panel-tab__search button {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 16px;
	border: none;
	background: transparent;
}

.customer-panel-tab__search input {
	height: 48px;
	padding: 15px 16px 15px 48px;
	background: #000000;
	border: 1px solid #262626;
	border-radius: 9999px;
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #475569;
}

.customer-panel-tab__search input::placeholder {
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 17px;
	color: #475569;
}

.customer-panel-tab__wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.customer-panel-card--store .customer-panel-card__top h3 span {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #9CA3AF;
}

@media (min-width: 768px) {
	.customer-panel {
		flex-direction: row;
	}

	.customer-panel .customer-panel-card {
		width: calc(50% - 8px);
	}
}

@media (min-width:1200px) {
	.customer-panel .customer-panel-card {
		width: calc(25% - 12px);
	}

	.customer-panel-tab__header {
		justify-content: space-between;
	}

	.customer-panel-tab__wrapper {
		width: max-content;
	}

	.customer-panel-tab__search {
		width: 264px;
	}
}

.customer-panel-table table tr:first-child {
	border-bottom: 1px solid #242B32;
}

.customer-panel-table table th,
.customer-panel-table table td {
	padding: 20px 24px;
}

.customer-panel-table table th {
	font-family: "Spline Sans", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: #64748B;
}

.customer-panel-table table td {
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #64748B;
}

.customer-panel-table table td h5 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

.customer-panel-table table td h4 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	color: #FFFFFF;
}

.customer-panel-table table h4 span {
	display: block;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: #64748B;
}

.customer-panel-table table td h4.return-amount {
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	text-decoration-line: line-through;
	color: #9CA3AF;
}

.flex-table {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
}

.btn-table.return,
.btn-table.completed {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	padding: 4px 12px;
	gap: 6px;
	background: rgba(11, 218, 146, 0.1);
	border: 1px solid rgba(11, 218, 146, 0.2);
	border-radius: 9999px;
	font-family: "Spline Sans", sans-serif;
	font-style: normal;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	color: #4ADE80;
}

.btn-table.return {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.2);
	color: #F87171;
}

.customer-panel-table .pagination ul li a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 32px;
	height: 32px;
	border: 1px solid #262626;
	border-radius: 9999px;
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9CA3AF;
}

.customer-panel-table .pagination ul li.active a {
	background: #850D23;
	border-color: #850D23;
	color: #fff;
}

.tabbed-content.customer-panel-tab {
	margin: 33px 0;
}

.customer-panel-table .pagination ul li a:hover {
	background: #850D23;
	border-color: #850D23;
	color: #fff;
}

.more-ammunition-card a:hover {
	color: #6B0A1C;
}

.more-ammunition-card a:hover img {
	filter: unset;
}

.more-ammunition-card.active a:hover {
	color: #fff;
}

.more-ammunition-card.active a:hover img {
	filter: brightness(0) invert(1);
}

@media (max-width: 1200px) {
	.flex-table {
		flex-direction: row-reverse;
	}
}

.more-ammunition {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 33px 0 50px 0;
}

.more-ammunition-card {
	position: relative;
	padding: 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 77.29px;
	isolation: isolate;
	background: #0C0C0C;
	border: 1px solid #262626;
	border-radius: 15px;
	max-width: 456px;
}

.more-ammunition-card.active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(133, 13, 35, 0.05) 0%, rgba(133, 13, 35, 0) 100%);
	z-index: -1;
}

.more-ammunition-card h3 {
	font-family: "Spline Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #FFFFFF;
	margin: 0 0 4px 0;
}

.more-ammunition-card p {
	font-family: "Spline Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	color: #9CA3AF;
	margin: 0 0 16px 0;
}

.more-ammunition-card a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	border-radius: 32px;
	font-family: "Spline Sans", sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	color: #FFFFFF;
}

.more-ammunition-card.active a {
	color: #6B0A1C;
}

.more-ammunition-card a img {
	filter: brightness(0) invert(1);
	transition: all 0.4s ease-in-out;
}

.more-ammunition-card.active a img {
	filter: unset;
}

.more-ammunition-card__conten {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.more-ammunition-card__conten {
	width: calc(100% - 100px);
}

.shoping-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 9999px;
}

.more-ammunition-card.active .shoping-icon {
	background: rgba(133, 13, 35, 0.2);
	border: 1px solid rgba(133, 13, 35, 0.2);
}

@media (min-width:768px) {
	.more-ammunition {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 16px;
	}

	.more-ammunition-card {
		width: calc(50% - 8px);
	}
}


@media (min-width:1200px) {
	.more-ammunition {
		margin: 33px 0 100px 0;
	}

	.more-ammunition-card {
		padding: 32px;
		border-radius: 32px;
	}
}