<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* @import url("https://www.vacheh.com/fonts/sans-serif/opensans/opensans.css"); */
/* @import url("https://www.vacheh.com/fonts/sans-serif/Inter/Inter-Web/inter.css"); */
@import url("https://www.vacheh.com/fonts/sans-serif/redhat/redhat_italic.woff2");
@import url("https://www.vacheh.com/fonts/sans-serif/redhat/redhat.woff2");

@font-face {
  font-family: 'Red Hat';
  src: url('https://www.vacheh.com/fonts/sans-serif/redhat/redhat.woff2') format('woff2');
  font-weight: 100 900; /* Define the range of weight */
  font-stretch: 25% 150%; /* Define the range of width */
  font-style: normal;
}
@font-face {
  font-family: 'Red Hat';
  src: url('https://www.vacheh.com/fonts/sans-serif/redhat/redhat_italic.woff2') format('woff2')
  font-weight: 100 900; /* Define the range of weight */
  font-stretch: 25% 150%; /* Define the range of width */
  font-style: italic;
}

body
{
/* font-family:"Inter",sans-serif; */
font-family: "Red Hat",Helvetica, Arial,sans-serif;
font-size: 13pt;
font-weight: 300;
}

container {
    display: flex;
    width: 1200px;
    margin: auto;
    margin-bottom: 100px;
    flex-direction: column;
    flex-wrap: nowrap;
}

header {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-direction: row;
}

logoSec img {
  max-width: 300px;
}

navLinks {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
}

nav a {
    color: #000;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.icon {
  display: none;
}

ol li, ul li {
    margin-bottom: 10px;
}

body a:hover {
  cursor: pointer !important;
}

/* HOME PAGE */

searchbox {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding-bottom: 50px;
}

searchbox h1 {
    font-size:35px;
}

span#homeSlogan {
    margin-top: -20px;
    margin-bottom: 50px;
    color: #004D0E;
    font-weight: 400;
}

searchbox form {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 5px;
    position: relative;
}

searchbox form input[type="text"] {
    font-size: 17px;
    font-family: 'Inter',sans-serif;
    padding: 17px 20px;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    min-width: 300px;
    box-shadow: 0px 0px 15px #dfdfdf;
}

select {
  -webkit-appearance: none; /* for Safari */
  -moz-appearance: none;    /* for Firefox */
  appearance: none;         /* standard syntax */

  /* Custom styles */
  background-image: url('images/arrow.png'); /* Path to your arrow image */
  background-position: right 10px center; /* Position the arrow on the right and center it vertically */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  background-size: 10px; /* Optionally, set the size of your arrow */
  padding-right: 30px; /* Add some padding to make space for the arrow */
  /* Other styling as needed (border, padding, etc.) */
}

searchBox form select#distance {
    font-size: 17px;
    font-weight: 200;
    font-family: 'Inter',sans-serif;
    padding: 17px 20px !important;
    border: 1px solid #dfdfdf !important;
    border-radius: 3px !important;
    min-width: 120px !important;
    box-shadow: 0px 0px 15px #dfdfdf;
}

searchbox form input[type="submit"] {
    background: #004D0E;
    color: #fff;
    border: 1px solid #004D0E;
    font-size: 17px;
    padding: 17px 20px;
    border-radius: 3px;
    line-height: 19px;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer !important;
    box-shadow:0px 0px 15px #B3B6B7 !important;
}

searchbox form input[type="submit"]:hover {
    cursor: pointer !important;
    background: #FF4A00;
    border: 1px solid #FF4A00;
}

note {
    display: flex;
    background: rgba(255,74,0,0.1);
    width: fit-content;
    line-height: 40px;
    padding: 0px 15px;
    border-radius: 5px;
}

note a {
  color:#000;
}

note.body_note {
    margin: 10px 0px 10px 0px;
}

sidebox h3 {
    margin-bottom: 0px;
}

sidebox a {
  color:#000;
}

stateBox {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: auto;
  align-items: center;
  margin-top: 100px;
}

books {
    display: flex;
    row-gap: 50px;
}
bookbox {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
bookbox img {
    width: calc(100% - 20px);
    border-radius: 5px;
}
bookbox span a {
    display: flex;
    width: fit-content;
    background: #004D0E;
    color: #fff;
    line-height: 30px;
    padding: 0px 10px;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}
bookbox span a:hover{
  background:#FF4A00;
}

statebox states {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 50px;
    row-gap:10px;
    /* text-align: center; */
    width: 100%;
    margin-top: 30px;
}

ul#suggestions {
    list-style: none;
    border: 0px;
    margin: 0px;
    padding: 0px;
    position: absolute;
    top: 35px;
    width: 300px;
}

ul#suggestions li {
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #efefef;
    border-top: 0px;
    margin-bottom: 0px;
}

ul#suggestions li:hover {
    background:#f9f9f9;
}

states span a {
    color: #000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 300;
}

states span a:hover {
    color: #000;
    text-decoration: underline;
}

gunBox, ammoBox, opticsBox {
    display: flex;
    flex-direction: column;
    width: 70%;
    margin: auto;
    align-items: center;
    border-top: 1px solid #dfdfdf;
    margin-top: 50px;
    padding-bottom: 0px;
}

.logos {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    column-gap: 50px;
    margin-bottom: 50px;
    margin-top: 30px;
    align-items: center;
}

.logos span {
  flex:1;
}

div.logos span img {
    width: 100%;
    height: auto;
    filter:grayscale(100%);
    transition: filter 0.3s ease;
}

seeall {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
}

gunBox .blackLink, ammoBox .blackLink, opticsBox .blackLink {
    color: #000;
    font-size: 115%;
    font-weight: 300;
    text-decoration-color: #004D0E;
}

gunBox .blackLink:hover, ammoBox .blackLink:hover, opticsBox .blackLink:hover {
  text-decoration: none;
}

/* Addresses */
addresscontainer {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 20px;
    column-gap: 20px;
}

addresscontainer.gaAddressGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}

addressbox {
    display: flex;
    flex-flow: row-reverse;
    column-gap: 20px;
    border:1px solid #efefef;
    padding: 20px;
    border-radius: 5px;
}

addressboxrange {
    display: flex;
    flex-direction: column;
    border: 1px solid #efefef;
    border-radius: 5px;
    padding: 20px;
}

weburl a {
    color: #000;
}

citiescontainer {
    display: flex;
    flex-direction: column;
    /* background: rgba(0,0,0,0.01); */
    margin-top: 20px;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #efefef;
}
citiesContainer h2 {
    margin: 0px;
    margin-bottom: 20px;
    font-weight: 100;
    font-size: 15pt;
}
citiesContainer ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
citiesContainer ul li {
    margin: 0px;
}
citiesContainer ul li a {
    display: flex;
    background: #f9f9f9;
    line-height: 40px;
    padding: 0px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
}
citiesContainer ul li a:hover {
    background:#FF4A00;
    color: #fff;
}

/* individual listing */
addressboxrange.gun_range {
    border: 0px;
    padding: 0px;
    border-top: 1px solid #efefef;
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

manLogo img {
  width: 80px;
}

afterlogo {
    display: flex;
    flex-direction: column;
    flex:1;
}

listingname {
    font-size: 130%;
    font-weight: 700;
}
listingname a {
  color: #000;
}
origin {
    display: flex;
    background: rgba(0,77,14,0.1);
    width: fit-content;
    border-radius: 3px;
    margin: 5px 0px;
    overflow: hidden;
    font-size: 90%;
}

yearFounded {
  padding: 5px 7px;
}

countryFounded {
  padding: 5px 7px;
  background: rgba(0,77,14,0.2);
}

/* CONTACT */
main#contact {
    display: flex;
    width: fit-content;
    align-items: center;
    margin: auto;
    flex-direction: column;
}
div.form form {
    display: flex;
    flex-direction: column;
    width: 700px;
}
div.form form b {
    margin-top: 20px;
}
div.form form input, div.form form textarea {
    border: 1px solid #dfdfdf;
    font-size: 17px;
    line-height: 30px;
    padding: 0px 10px;
    font-family: 'Red Hat',Helvetica, Arial, sans-serif;
    border-radius: 5px;
}
input.btn-primary {
    display: flex;
    width: fit-content;
    border: 0px !important;
    background: #004D0E;
    color: #fff;
    font-weight: 600;
}
input.btn-primary:hover {
    background:#FF4A00;
    cursor: pointer;
}
/* FOOTER */
footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 100px;
    align-self: center;
    column-gap: 20px;
    color: #444;
    font-weight: 300;
}

div#footerLeft {
    border-right: 1px solid #efefef;
    padding-right: 20px;
}

#footerRight{
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  column-gap: 10px;
  color: #444;
  font-weight: 300;
}

footer a {
    color: #444;
}

footer a:hover {
    text-decoration: none;
}

/* Pages &amp; Articles */
div.page {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

div.article {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

/* div  h1 {
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #ff4a00 10%, #000000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */

div.page h1 {
  justify-content: center;
  display: flex;
}

div.article h1 {
    text-align: center;
}

div.page p, div.article p {
  margin:0px 0px 15px 0px;
  line-height: 130%;
}

div.page a, div.article a {
  color:#000;
}

/* Range Pages */
main.MainRange,main.searchResults {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 30px;
}

.range {
    flex-grow: 1;
    width: 100%;
}

rangetagsbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    margin-top: 10px;
}
rangetags {
    display: flex;
    background: rgba(0,77,14,0.1);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 90%;
    text-transform: capitalize;
}

div#sideBar {
    width: 100%;
    max-width: 300px !important;
    display: flex;
    flex-direction: column;
}

/* MAP */
mapbox {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
path {
    stroke: white;
    fill:#dfdfdf !important;

    transition: fill .4s ease;
}

path:hover {
    fill: #FF4A00 !important;
}

#us-map {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* END MAP */

/* TARGETS */
targetsurround {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
targetbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}
targetBox span {
    font-size: 90%;
    margin-bottom: 10px;
}
targetBox img {
    width: 300px;
    height: auto;
    border: 1px solid #dfdfdf;
}


/* BLOG */
breadcrumb {
    font-size: 90%;
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    color:#666;
}
breadcrumb a {
    color: #666;
}
div.article breadcrumb a {
  color:#666;
}
crumbLast {
  position: relative;
  overflow: hidden;
}

postdata {
    display: flex;
    flex-direction: row;
    width: fit-content;
    margin: auto;
    border-radius: 5px;
    overflow: hidden;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 90%;
}

postdate {
    display: flex;
    background: rgba(0,77,14,0.1);
    line-height: 30px;
    padding: 0px 20px;
}

postcat {
    display: flex;
    background: rgba(0,77,14,0.2);
    line-height: 30px;
    padding: 0px 20px;
}

blogcontent {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
}
blogimg {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    align-items: stretch;
}
blogimg img {
    border-radius: 5px;
}

blogbigbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:50px;
}

blogbox {
    display: flex;
    flex-direction: column;
    max-width: 370px;
}

blogboximg {
    display: flex;
    width: 370px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 1px solid #efefef;
}

blogbox img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

blogbox a {
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    margin: 0px 5px;
    padding-bottom: 3px;
}

blogBox a:hover {
  background:rgba(0,77,14,0.1);
}

articledate {
    display: flex;
    margin-top: auto;
    padding: 3px 5px 0px 5px;
    border-top: 1px solid #efefef;
    font-size: 11pt;
}
.article ul li img {
    display: flex;
    width: -webkit-fill-available;
}
.imgContainer {
    display: flex;
    flex-direction: column;
    border: 1px solid #efefef;
    padding: 30px;
    margin: 20px 0px 30px 0px;
}
span.imgCaption {
    display: flex;
    justify-content: flex-end;
    background: #f9f9f9;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 10px;
    white-space: pre-wrap;
}

/* shotgun caliber */
#gun-calibers table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        #gun-calibers th, td {
            padding: 12px;
            border: 1px solid #ddd;
            text-align: left;
        }
        #gun-calibers th {
            background-color: #f2f2f2;
        }



/* shotgun Chokes */
.grid-table {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    border: 1px solid #004D0E;
    margin: 10px 0px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    overflow: scroll;
}
        .grid-header {
            background-color: #004D0E;
            color: white;
            padding: 12px;
            font-weight: bold;
            text-align: center;
        }
        .grid-cell {
            background-color: #fff;
            padding: 12px;
            text-align: center;
            border: 0.5px solid #ddd;
        }

/* resource */
div.resourceBigbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 10px;
    border-radius: 5px;
}
div.resourcebox {
    display: flex;
    flex-direction: column;
    max-width: 353px;
    border-radius: 5px;
    padding: 20px;
    background: #f9f9f9;
    border:1px solid rgba(0,77,14,1);
}
div.resourceBigBox h3 {
    margin: 0px 0px 5px 0px;
}
div.resourceBox p {
    display: flex;
    flex-grow: 1;
}
.resourceBox span {
    display: flex;
    justify-content: flex-end;
}
.resourceBox span a:hover {
    text-decoration: none;
}

/* MOBILE */
@media screen and (max-width:600px) {

  container {
    width: auto;
    padding: 10px;
  }

  header {
    flex-direction: column;
  }

  nav {
    display:none;
    cursor:pointer;
  }

  logosec {
    display: flex;
    width: 100%;
    margin-top: 30px;
  }

  logosec a {
    flex: 1;
  }

  .icon {
    display:block;
    font-size: 20px;
  }

  .close {
    display:none;
  }

  .open {
    display:block;
  }

  navlinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 15px #dfdfdf;
    row-gap: 10px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 120%;
  }


  main.Mainrange {
    display: flex;
    flex-direction: column;
  }

  addresscontainer.gaAddressGrid {
    display: flex;
    flex-direction: column;
  }

  addresscontainer {
    grid-template-columns: repeat(1,1fr);
  }

  footer {
    flex-direction: column;
  }

  SearchBox{
    flex-direction: column;
    width: 80%;
    text-align: center;
  }

  searchbox form{
    flex-direction: column;
    row-gap:20px;
  }

  mapbox {
    display: none;
  }

  stateBox{
    width: 90%;
  }

  statebox h2 {
    display: flex;
    text-align: center;
    width: 70%;
  }

  statebox states {
    grid-template-columns: repeat(2,1fr);
  }


  .logos {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap:30px;
  }

  div#footerLeft {
      border-right: 0px;
      padding-right: 0px;
      margin-bottom: 10px;
  }

  main.MainRange, main.searchResults{
    flex-direction: column;
  }

  targetsurround {
    display: flex;
    flex-direction: column;
  }

  blogcontent {
    flex-direction:column;
  }

  blogImg img {
    display: flex;
    margin-bottom: 15px;
  }

  books {
    flex-direction: column;
  }

  /* gun calibers */
  #gun-calibers table, thead, tbody, th, td, tr {
                  display: block;
              }
              #gun-calibers th {
                  position: absolute;
                  top: -9999px;
                  left: -9999px;
              }
              #gun-calibers tr {
                  margin: 0 0 1rem 0;
                  border: 1px solid #ddd;
              }
              #gun-calibers td {
                  border: none;
                  border-bottom: 1px solid #ddd;
                  position: relative;
                  padding-left: 50%;
                  text-align: left;
              }
            #gun-calibers   td:before {
                  content: attr(data-label);
                  position: absolute;
                  left: 10px;
                  width: calc(50% - 20px);
                  padding-right: 10px;
                  white-space: nowrap;
                  font-weight: bold;
              }



}
</pre></body></html>