@charset "utf-8";
/* CSS Document */

 @font-face { font-family: Onetrick; src: url('images/onetrick.ttf'); }  


body {
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000000;
	color: #000000;
	font-family: "Encode Sans Condensed", sans-serif;
	font-style: normal;
	font-size: 16px;
	border: 0px;
}

img { border: 0px; }


/* TEXT */
.text-black-block-large{
	color: #000000;
	font-family: "Braah One", sans-serif;
	font-size: 55px;
	text-transform: uppercase;
	line-height: 0.8;
}

.text-black-block-small{
	color: #000000;
	font-family: "Braah One", sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	line-height: 0.8;
}

.text-black-large{
	color: #000000;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 32px;
	font-weight: 600;
}

.text-black-med{
	color: #000000;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
}

.text-black-small{
	color: #000000;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 19px;
	font-weight: 300;
	line-height: 1.2;
}
.text-black-xsmall{
	color: #000000;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
}
.text-grey-xsmall{
	color: #8b8b8b;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
}

.text-red-block-large{
	color: #C12032;
	font-family: "Braah One", sans-serif;
	font-size: 55px;
	text-transform: uppercase;
	line-height: 0.8;
}

.text-red-block-small{
	color: #C12032;
	font-family: "Braah One", sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	line-height: 0.8;
}

.text-red-large{
	color: #C12032;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 32px;
	font-weight: 600;
}

.text-red-med{
	color: #C12032;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
}

.text-red-small{
	color: #C12032;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 19px;
	font-weight: 300;
	line-height: 1.2;
}
.text-red-xsmall{
	color: #C12032;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 13px;
	font-weight: 300;
	line-height: 1.2;
}
.text-white-med{
	color: #fff;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1.2;
}

.text-white-small{
	color: #fff;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.2;
}



/* ND */

.znd{
	color: #ffffff;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 11px;
    text-transform: uppercase;
	padding: 10px;
	font-weight: 300;
	letter-spacing: 0.35em;
}

.znd a{
	color: #ffffff;
	text-decoration: none;
}


/* MENU */
.index-menu1 {
    background-color: #000000;
    width: 950px;
    height: 60px;
}

.index-menu1 table {
    color: #ffffff;
    font-family: "Braah One", sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 5px;
}

/* Apply red color to text in odd cells */
.index-menu1 table td:nth-child(odd) a {
    color: #c12032;
}

/* Apply white color to text in even cells */
.index-menu1 table td:nth-child(even) a {
    color: #ffffff;
}

/* Apply animated underline to all cells */
.index-menu1 table td a {
    text-decoration: none;
    position: relative; /* Required for positioning pseudo-element */
}

/* Animated underline for links with white text */
.index-menu1 table td:nth-child(even) a::after {
    background-color: #ffffff; /* White underline for links in even cells */
}

/* Animated underline for links with red text */
.index-menu1 table td:nth-child(odd) a::after {
    background-color: #c12032; /* Red underline for links in odd cells */
}

/* Animated underline */
.index-menu1 table td a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust based on your design */
    width: 0; /* Start with no width */
    height: 2px; /* Underline thickness */
    transition: width 0.3s ease; /* Animation duration and easing */
}

/* Hover effect */
.index-menu1 table td a:hover::after {
    width: 100%; /* Full width on hover */
}

.index-menu2 {
    background-color: #000000;
    width: 535px;
    height: 63px;
}

.index-menu2 table {
    color: #ffffff;
    font-family: "Braah One", sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 5px;
}

/* Apply red color to text in odd cells */
.index-menu2 table td:nth-child(odd) a {
    color: #c12032;
}

/* Apply white color to text in even cells */
.index-menu2 table td:nth-child(even) a {
    color: #ffffff;
}

/* Apply animated underline to all cells */
.index-menu2 table td a {
    text-decoration: none;
    position: relative; /* Required for positioning pseudo-element */
}

/* Animated underline for links with white text */
.index-menu2 table td:nth-child(even) a::after {
    background-color: #ffffff; /* White underline for links in even cells */
}

/* Animated underline for links with red text */
.index-menu2 table td:nth-child(odd) a::after {
    background-color: #c12032; /* Red underline for links in odd cells */
}

/* Animated underline */
.index-menu2 table td a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px; /* Adjust based on your design */
    width: 0; /* Start with no width */
    height: 2px; /* Underline thickness */
    transition: width 0.3s ease; /* Animation duration and easing */
}

/* Hover effect */
.index-menu2 table td a:hover::after {
    width: 100%; /* Full width on hover */
}



/* LINKS AND BORDER */

a {
	color: #8b8b8b;
}

.border {
	border: 2px solid #C12032;
}
.pageborder {
	box-shadow: 0px 10px 25px 10px rgba(0,0,0,0.65); }



/* CONTACT */

.sub-bg-index-contact {
	background-color: #000000;
	width: 655px;
	height: 209px;
	color: #ffffff;
	font-family: "Encode Sans Condensed", sans-serif;
	font-size: 21px;
	text-transform: uppercase;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.sub-bg-index-contact a{
	color: #c12032;
	text-decoration: none;
}
.contact-names {
	color: #c12032;
    font-family: "Braah One", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: 0em;
}



/* SUBPAGE HEADERS */

.subpage-headers {
	background-image: url("images/subpage2024_06.jpg");
	width: 950px;
	height: 141px;
	color: #000000;
	font-family: "Braah One", sans-serif;
	font-size: 52px;
	text-transform: uppercase;
	font-weight: 500;
	line-height: 0.8;
}



/* BACKGROUNDS */

.sub-bg {
	background-color: #ffffff;
	padding: 0px 20px 0px 20px;
}


.sub-bg-index {
	background-image: url("images/index2024_06.jpg");
	width: 950px;
	height: 741px;
}

 