/* --- SASS Variables ------------------------------  ------------------------------ --- */
/* --- SASS Mixins ------------------------------  ------------------------------ --- */
/* --- General Definitions ------------------------------  ------------------------------ --- */
.togetherSite *, .togetherSite *:after, .togetherSite *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.togetherSite {
  color: #222;
  font: 15px/1.4em "Open Sans", sans-serif;
}
/*Updated*/
.togetherSite section {
    padding: 1em;
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
}
.togetherSite section[aria-labelledby=seo] {
  text-align: center;
  padding: 1.5em 3em;
  width: 100%;
}
.togetherSite a:not(.btn) {
  color: #222;
  text-decoration: none;
  padding: 1em;
}
.togetherSite p {
  font: 15px/1.4em "Open Sans", sans-serif;
}
.togetherSite h1 {
  font: 700 calc(40px + 80 * ((100vw - 500px) / 1500))/0.85em "Open Sans", sans-serif;
}
.togetherSite h2 {
  font: 700 2.25em/1.4em "Open Sans", sans-serif;
  margin: 1em 0 0;
  text-align: center;
  text-transform: none;
}
.togetherSite h3 {
  color: #222;
  font: 700 15px "Open Sans", sans-serif;
  margin: 0 auto;
  padding: 1em 0;
  position: relative;
  text-align: center;
  text-transform: none;
  z-index: 9;
}
.togetherSite section > div {
  float: left;
}
/*Updated*/
.togetherSite section .row {
    border: none;
    flex: 1 0 100%;
    align-items: center;
    justify-content: center;
    padding: 1em;
    display: flex;
    flex-direction: row;
    text-align: center;
    position: relative;
    overflow: hidden;
    float: none;
    width: 100%;
    flex-wrap: wrap;
}
.togetherSite section.disclaimer p {
  color: #999;
  text-align: justify;
  line-height: 1.4em;
  margin-bottom: 1em;
  font-size: 11px;
}
.togetherSite .mobileOnly {
  display: none;
}
.togetherSite .desktopOnly {
  display: block;
}

/* --- Buttons ------------------------------  ------------------------------ --- */
.btn {
  border-radius: 6px;
  cursor: pointer;
  font: 700 18px "Open Sans", sans-serif;
  display: table-cell;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  position: relative;
  padding: 0.5em 1em;
  -webkit-appearance: none;
}
.btn.secondary {
  background: none;
  border: 1px solid #000;
  color: #000;
}
.btn.white {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}

/* --- Heading ------------------------------  ------------------------------ --- */
.togetherSite section[role=heading] {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)), url("http://assetshare.basspro.com/content/dam/bps-general-assets/web/templates/sitelets/images/2014cirMOflht0071.jpg") no-repeat fixed center top/100%;
  overflow: hidden;
  padding: 20% 0 0;
  position: relative;
}
.togetherSite section[role=heading] .data {
  display: inline-block;
  float: right;
  padding: 0 1em 1em;
  position: relative;
}
.togetherSite section[role=heading] .data h1 {
  color: #fff;
  float: right;
  margin: 0 auto;
  text-align: right;
  width: 100%;
  z-index: 2;
}
.togetherSite section[role=heading] .data h1 span {
  font-size: 0.5em;
  display: block;
}
.togetherSite section[role=heading] .data .btn {
  float: right;
}

/* --- Features (animations/etc) ------------------------------  ------------------------------ --- */
.togetherSite section img.grow {
  margin: 5% auto;
  transition: transform 0.65s ease 0s;
  flex: 1;
  max-width: 150px;
  vertical-align: middle;
  width: 30%;
}

.togetherSite section img.grow:hover {
  transform: scale(1.3);
}

/* --- Navigation ------------------------------  ------------------------------ --- */
.togetherSite > nav {
  text-align: center;
  margin: 1em 0;
  z-index: 2;
}

.togetherSite > nav #menu-btn {
  display: none;
}
.togetherSite > nav ul {
  font-size: 15px;
  margin: 0;
  list-style: none;
}
.togetherSite > nav ul li {
  display: inline-block;
}
.togetherSite > nav ul li a {
  color: #222;
}
.togetherSite > nav a:hover {
  text-decoration: underline;
}
.togetherSite > nav a.mobileOnly {
  display: none;
}

.togetherNav .menu-btn ~ .menu {
  max-height: 0;
  display: none;
}

/* --- Special Hover with Info (also column layout) ------------------------------  ------------------------------ --- */
.togetherSite section figure figcaption {
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.3s;
  width: 100%;
  padding: 1em 1.5em;
  transform: scale(1.2);
}

.togetherSite section figure img[src*="plus.png"] {
  position: absolute;
  width: 40px;
  bottom: 1em;
  right: 1em;
  transition: 0.3s;
  opacity: 0.65;
}

.togetherSite section figure:hover figcaption {
  opacity: 1;
  transition: 0.5s;
  transform: scale(1);
}

.togetherSite section figure:hover > img[src*="plus.png"] {
  opacity: 0;
}

.togetherSite section figure figcaption p {
  color: #fff;
  text-align: center;
  padding: 1em 0;
}

/* --- Media Queries ------------------------------  ------------------------------ --- */
@media (min-width: 901px) {
  .togetherSite {
    font-size: 12px;
  }
  .togetherSite .togetherNav .menu-btn ~ .menu {
    display: block;
  }
}
@media (max-width: 900px) {
  .togetherSite {
    font-size: 10px;
  }

  .togetherSite nav {
    margin: 0;
  }

  .togetherNav .menu-icon {
    display: block;
  }

  #gallery img.grow:hover {
    transform: scale(1.2);
  }

  .togetherNav li a:hover,
  .togetherNav .menu-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
  }

  #navigation {
    height: inherit;
  }

  .mobileOnly {
    display: block;
  }

  .desktopOnly {
    display: none;
  }

  .usopen-logo img[src*=ogo] {
    width: 100%;
    max-width: 200px;
    z-index: 9;
    position: relative;
    margin: 0 auto;
  }

  .togetherNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }

  .togetherNav .menu {
    position: absolute;
    clear: both;
    max-height: 0;
    transition: max-height 0.2s ease-out;
    top: 0;
    width: 100%;
    vertical-align: bottom;
  }

  .togetherNav li a {
    color: #222;
    background: rgba(255, 255, 255, 0.8);
  }

  .togetherNav ul {
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
  }

  .togetherNav li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: block;
  }

  .togetherNav .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 28px 20px;
    position: relative;
    user-select: none;
    background: #000;
    z-index: 9;
  }

  .togetherNav .menu-icon .navicon {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 18px;
  }

  .togetherNav .menu-icon .navicon:before,
  .togetherNav .menu-icon .navicon:after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }

  .togetherNav .menu-icon .navicon:before {
    top: 5px;
  }

  .togetherNav .menu-icon .navicon:after {
    top: -5px;
  }

  .togetherNav .menu-btn {
    display: none;
  }

  .togetherSite > nav ul li {
    display: block;
  }

  .togetherSite > nav ul li a {
    text-align: left;
  }

  .togetherNav .menu-btn:checked ~ .menu {
    display: block;
    max-height: 100vh;
    padding: 0;
  }

  .togetherNav .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }

  .togetherNav .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .togetherNav .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .togetherNav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .togetherNav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
}
/* --- Videos ------------------------------  ------------------------------ --- */
.togetherSite .videos {
  display: none;
}
.togetherSite .video-pop {
  display: none;
  left: 50%;
  margin-left: -320px;
  position: fixed;
  top: 25%;
  width: 640px;
  z-index: 15000;
}
.togetherSite .box img.video-play {
  display: block;
  position: relative !important;
  margin: 6em auto 0 auto;
  width: 24%;
}
.togetherSite #tv-back {
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.togetherSite .close-button.close-pop {
  background: #c70505;
  color: #fff;
  cursor: pointer;
  font: 700 12px/1.4em "Open Sans", sans-serif;
  padding: 0.5em 2em;
  position: absolute;
  right: 0;
  text-align: right;
  top: -26px;
  border-radius: 5px 5px 0 0;
}

@media only screen and (min-width: 701px) and (max-width: 1100px) {
  .video-pop {
    width: 640px;
    height: 360px;
    margin-left: -320px;
  }

  .video-pop iframe {
    left: 50%;
    margin-left: -320px;
    position: fixed;
    top: 25%;
    height: 360px;
    width: 640px;
    z-index: 15000;
  }
}
@media only screen and (max-width: 700px) {
  .video-pop {
    width: 320px;
    height: 180px;
    margin-left: -160px;
  }

  .video-pop iframe {
    left: 50%;
    margin-left: -160px;
    position: fixed;
    top: 25%;
    height: 180px;
    width: 320px;
    z-index: 15000;
  }
}
/* --- Responsive Framework ------------------------------  ------------------------------ --- */
.togetherSite .row::after {
  content: "";
  display: block;
  clear: both;
}
.togetherSite .tablet1 {
  width: 8.333333%;
}
.togetherSite .tablet2 {
  width: 16.666666%;
}
.togetherSite .tablet3 {
  width: 25%;
}
.togetherSite .tablet4 {
  width: 33.333333%;
}
.togetherSite .tablet5 {
  width: 41.666666%;
}
.togetherSite .tablet6 {
  width: 50%;
}
.togetherSite .tablet7 {
  width: 58.333333%;
}
.togetherSite .tablet8 {
  width: 66.666666%;
}
.togetherSite .tablet9 {
  width: 75%;
}
.togetherSite .tablet10 {
  width: 83.333333%;
}
.togetherSite .tablet11 {
  width: 91.666666%;
}
.togetherSite .tablet12 {
  width: 100%;
}

@media (min-width: 1400px) {
  .togetherSite .desktop1 {
    width: 8.333333%;
  }
  .togetherSite .desktop2 {
    width: 16.666666%;
  }
  .togetherSite .desktop3 {
    width: 25%;
  }
  .togetherSite .desktop4 {
    width: 33.333333%;
  }
  .togetherSite .desktop5 {
    width: 41.666666%;
  }
  .togetherSite .desktop6 {
    width: 50%;
  }
  .togetherSite .desktop7 {
    width: 58.333333%;
  }
  .togetherSite .desktop8 {
    width: 66.666666%;
  }
  .togetherSite .desktop9 {
    width: 75%;
  }
  .togetherSite .desktop10 {
    width: 83.333333%;
  }
  .togetherSite .desktop11 {
    width: 91.666666%;
  }
  .togetherSite .desktop12 {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .togetherSite .mobile1 {
    width: 8.333333%;
  }
  .togetherSite .mobile2 {
    width: 16.666666%;
  }
  .togetherSite .mobile3 {
    width: 25%;
  }
  .togetherSite .mobile4 {
    width: 33.333333%;
  }
  .togetherSite .mobile5 {
    width: 41.666666%;
  }
  .togetherSite .mobile6 {
    width: 50%;
  }
  .togetherSite .mobile7 {
    width: 58.333333%;
  }
  .togetherSite .mobile8 {
    width: 66.666666%;
  }
  .togetherSite .mobile9 {
    width: 75%;
  }
  .togetherSite .mobile10 {
    width: 83.333333%;
  }
  .togetherSite .mobile11 {
    width: 91.666666%;
  }
  .togetherSite .mobile12 {
    width: 100%;
  }
}
@media (max-width: 601px) {
  .togetherSite .mobile1 {
    width: 8.333333%;
  }
  .togetherSite .mobile2 {
    width: 16.666666%;
  }
  .togetherSite .mobile3 {
    width: 25%;
  }
  .togetherSite .mobile4 {
    width: 33.333333%;
  }
  .togetherSite .mobile5 {
    width: 41.666666%;
  }
  .togetherSite .mobile6 {
    width: 50%;
  }
  .togetherSite .mobile7 {
    width: 58.333333%;
  }
  .togetherSite .mobile8 {
    width: 66.666666%;
  }
  .togetherSite .mobile9 {
    width: 75%;
  }
  .togetherSite .mobile10 {
    width: 83.333333%;
  }
  .togetherSite .mobile11 {
    width: 91.666666%;
  }
  .togetherSite .mobile12 {
    width: 100%;
  }
}

/*# sourceMappingURL=together.css.map */