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

 /* @font-face { font-family: Archivo Black; src: url('Archivo Black Bold.otf'); }  */


body {
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: top center; /* Aligns the background to the top center */
	background-repeat: no-repeat;
	background-size: cover; /* Ensures the background covers the entire viewport */
	background-color: #000000;
	color: #000000;
	font-family: 'Roboto Condensed', sans-serif;
	font-style: normal;
	font-size: 18px; 
	border: 0px;
	margin: 0; /* Removes default body margin that might cause spacing issues */
	padding: 0;
}

img { border: 0px; }


/* TEXT */
.text-black-large-archivo {
	color: #000000;
	font-family: 'Archivo Black', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1.2;
}

.text-black-small-archivo {
	color: #000000;
	font-family: 'Archivo Black', sans-serif;
	font-size: 20px;
	line-height: 1.2;
}

.text-black-med{
	color: #000000;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-black-small{
	color: #000000;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}

.text-purple-large-archivo {
	color: #7f51a2;
	font-family: 'Archivo Black', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1.2;
}

.text-purple-small-archivo {
	color: #7f51a2;
	font-family: 'Archivo Black', sans-serif;
	font-size: 20px;
	line-height: 1.2;
}

.text-purple-med{
	color: #7f51a2;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-purple-small{
	color: #7f51a2;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}
.text-gray-large-archivo {
	color: #797979;
	font-family: 'Archivo Black', sans-serif;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1.2;
}

.text-gray-small-archivo {
	color: #797979;
	font-family: 'Archivo Black', sans-serif;
	font-size: 20px;
	line-height: 1.2;
}

.text-gray-med{
	color: #797979;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.text-gray-small{
	color: #797979;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
}



/* ND */

.znd{
	color: #ffffff;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 12px;
    text-transform: uppercase;
	padding: 10px;
	font-weight: 300;
	letter-spacing: 0.2em;
}

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


/* SUBPAGE HEADERS */

.subpage-headers-bg {
	background-image: url("images/subpage2025_03.jpg");
	width: 555px;
	height: 132px;
}

.subpage-headers-bg h1{
	color: #662d91;
	font-family: 'Archivo Black', sans-serif;
	font-size: 55px;
	text-transform: uppercase;
	line-height: 1.0;
	padding-top: 35px;
}

.subpage-headers-bg-2lines {
	background-image: url("images/subpage2025customer_03.jpg");
	width: 555px;
	height: 132px;
	display: flex;
	justify-content: center;  /* Centers horizontally */
	align-items: center;      /* Centers vertically */
	text-align: center;       /* Ensures the text stays centered */
}

.subpage-headers-bg-2lines h1 {
	color: #662d91;
	font-family: 'Archivo Black', sans-serif;
	font-size: 55px;
	text-transform: uppercase;
	line-height: 1.0;
	margin: 0;               /* Removes default margin that may cause extra spacing */
	padding: 0;              /* Ensures no extra padding */
}



/* MENU */

.menu-index {
    background-color: #000000;
    width: 950px;
    height: 54px;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex; /* Ensures links line up horizontally */
    justify-content: space-around; /* Adjust spacing as needed */
    align-items: center; /* Vertically centers links */
}

.menu-index a {
    text-decoration: none;
    transition: color 0.4s ease, transform 0.2s ease;
    padding: 6px 10px;
    position: relative; /* Needed for underline animation */
}

/* Alternating colors */
.menu-index a:nth-child(odd) {
    color: #ffffff;
}

.menu-index a:nth-child(even) {
    color: #c2c2c2;
}

/* Hover effect */
.menu-index a:hover {
    color: #8259a1; /* Updated hover color */
}

/* Underline animation */
.menu-index a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #8259a1; /* Matches the hover color */
    left: 0;
    bottom: 2px; /* Moved closer to the text */
    transition: width 0.4s ease;
}

.menu-index a:hover::after {
    width: 100%;
}

.menu-subpage {
    background-color: #000000;
    width: 950px;
    height: 54px;
    color: #ffffff;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 21px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex; /* Ensures links line up horizontally */
    justify-content: space-around; /* Adjust spacing as needed */
    align-items: center; /* Vertically centers links */
}

.menu-subpage a {
    text-decoration: none;
    transition: color 0.4s ease, transform 0.2s ease;
    padding: 6px 6px;
    position: relative; /* Needed for underline animation */
}

/* Alternating colors */
.menu-subpage a:nth-child(odd) {
    color: #ffffff;
}

.menu-subpage a:nth-child(even) {
    color: #c2c2c2;
}

/* Hover effect */
.menu-subpage a:hover {
    color: #8259a1; /* Updated hover color */
}

/* Underline animation */
.menu-subpage a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #8259a1; /* Matches the hover color */
    left: 0;
    bottom: 2px; /* Moved closer to the text */
    transition: width 0.4s ease;
}

.menu-subpage a:hover::after {
    width: 100%;
}


/* UPDATES */

.index-updates {
	background-image: url("images/index2025_04.jpg");
	width: 334px;
	height: 113px;
	color: #000000;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 1.2;
}

.index-updates a{
	color: #000000;
}

.index-updates-big {
	color: #662d91;
	font-family: 'Archivo Black', sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	line-height: 1.0;
}


/* LINKS AND BORDER */

a {
	color: #797979;
}

.border {
	border: 3px solid #662d91;
}
.pageborder {
	box-shadow: 0px 1px 10px 5px rgba(0,0,0,0.85); }



/* CONTACT */

.sub-bg-index-contact {
	background-color: #000000;
	width: 950px;
	height: 103px;
}

.sub-bg-index-contact table {
	color: #dddddd;
	font-family: "Roboto Condensed", sans-serif;
	text-transform: uppercase;
	font-size: 17px;
	line-height: 1.2;
}

.sub-bg-index-contact table a{
	color: #dddddd;
	text-decoration: none;
}

.contact-names {
	color: #ffffff;
	font-family: 'Archivo Black', sans-serif;
	font-size: 23px;
	text-transform: uppercase;
	line-height: 1.0;
}




/* BACKGROUNDS */

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


 