@charset "utf-8";
/* custom styles */

.full-width-img {
  width: 100vw; /* 100% of viewport width */
  margin-left: calc(-50vw + 50%); /* Breaks out of container */
  max-width: none;
}
body {
  background-color: #000000;
}
.nav-link {
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
	color: #FFFFFF;
}
.nav-link:hover{
	color: #777777;
	font-weight: bold;
	
}
.nav-link.current-page {
	color: #777777;
}

.navbar-nav {
  gap: 30px; 
}
.jumbocap{
	color: #FFF000;
	font-family: "Roboto Condensed";
	text-shadow: 1px 1px 6px #000000;
}

.cap_sub {
	color: #FFF000;
	font-family: "Roboto Condensed";
	text-shadow: 1px 1px 6px #000000;
}

.desat{
	filter:grayscale(0%);
	transition: .2s ease-in;
}
.desat:hover{
	filter:grayscale(100%);
}

.bi_clr {
	color: #ffffff;
	font-size: 30px;	
}
.bi_clr:hover{
	color:#777777;
}

.cust_card {
	font-family: "Roboto Condensed";
	text-transform: uppercase; 
	color: #FFFFFF;
	text-shadow: 1px 1px 6px #000000;
}
    /* Hover Blur Effect */


    .text {
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
    color: #6DB9A9;	
	font-size: 25px;
	font-weight: bold;
    }

	.subtext {
	display: block;
	font-family: "Geologica", sans-serif;
	text-transform: uppercase;
	color: #6DB9A9;
	font-size: 15px;
	margin-top: 5px;
	
	}

    .hover-blur a {
      display: block;
      position: relative;
      overflow: hidden;
    }
/*
    .hover-blur img {
      width: 100%;
      height: auto;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
    .hover-blur:hover img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
      -webkit-filter: grayscale(0.6) blur(1px);
      filter: grayscale(0.6) blur(1px);
    }
*/


.hover-blur img {
  width: 100%; /*Adjust this - try 70%, 75%, 80%, 90% */
  height: auto;
  margin: 0 auto; /* Centers the image */
  display: block; /* Needed for margin auto to work */
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.hover-blur a {
	display: block; 
	justfiy-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
	width: 90%; /* match image width */
	margin: 0 auto;
}
    .hover-blur a h2 {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      margin-top: 0px;
      margin-bottom: 0px;
      height: 100%;
      width: 100%;
      padding: 45% 20px;
      text-align: center;
      background-color: #064739;
      background-size: 3px 3px;
      -webkit-transition: all 0.25s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.25s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
      opacity: 0;
    }
    .hover-blur:hover a h2 {
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      opacity: 1;
    }
    .hover-blur .text-white {
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -o-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);
      -webkit-transition: all 0.5s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.5s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
      opacity: 0;
    }
    .hover-blur:hover .text-white {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -o-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
      -webkit-transition: all 0.5s linear;
      -moz-transition: all 0.5s linear;
      -o-transition: all 0.5s linear;
      -ms-transition: all 0.5s linear;
      transition: all 0.5s linear;
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=1)";
      filter: alpha(opacity=1);
      opacity: 1;
    }
	