/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritence from `body` */
  background-color: #fff;
  border: 1px solid #fff;
}

/*
 * Base structure
 */

html,
body {
  
}
body {
  color: #fff;
  text-align: center;
  font-family: 'Open Sans Condensed', sans-serif;
  background: url(../../images/landingdarkbg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color:#000;
}

body#offroad {
  background: url(../images/offroadcycbg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color:#000;
}

body#run {
  background: url(../images/runbg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color:#000;
}

div {
  box-sizing: border-box;
  -moz-box-sizing: border-box; /* Firefox */

}

h1{
  font-size:83px;
  color: #000;
  font-weight:600;
  font-family: 'Open Sans Condensed', sans-serif;
}

h3{
  font-weight:300;
  margin-bottom: 5px;
}


p{
  font-size: 20px;
  /*letter-spacing: -0.15px;*/
  margin: 0 0 15px;

}

label{
  font-weight:normal;
}

label,a 
{
  font-family: 'Open Sans Condensed', sans-serif;
  font-size : 20px; 
}

hr {
  margin-top: 15px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #eee;
}

.top_sub_nav3 ul li a:hover {
    background-color: #222;
    text-decoration: none;
    color: #fff;
    border-right: 1px #000 solid;
    border-bottom: 1px #3aec61 solid;
    background: #000;
}

.top_sub_nav3 ul li a {
    color: #00c9fd;
    font-size: 10pt;
    height: 30px;
    display: block;
    padding-top: 5px;
    border-right: 1px #000 solid;
}

.top_sub_nav3 {
  color: #00c9fd;
  height: 30px;
  background: #222;
  padding: 0 3px 3px 0px;
  z-index: 100;
  list-style: none;
  width: 100%;
  border-bottom: 1px #00c9fd solid;
}

.top_sub_nav3 ul li {
    float: left;
    list-style: none;
    width: 20%;
    height: 30px;
}

.step-floater{
  margin-bottom: -165px;
  margin-top: 42px;
}

.step-floater img{
  width:120px;
}

.spinner {
  position: relative;
  margin: 60px auto 0 auto;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-clip: padding-box;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), black 90%);
  -webkit-transform-origin: 50% 60%;
      -ms-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
  -webkit-transform: perspective(120px) rotateX(45deg);
          transform: perspective(120px) rotateX(45deg);
  -webkit-animation: spinner-wiggle 2.2s infinite;
          animation: spinner-wiggle 2.2s infinite;
}

@-webkit-keyframes spinner-wiggle {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}

@keyframes spinner-wiggle {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  margin-left: -60px;
  margin-top: -4px;
  -moz-box-sizing: inherit;
       box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: .01;
  border: inherit;
  border-color: transparent;
  -webkit-animation: spinner-spin 2.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 2.2s linear infinite;
          animation: spinner-spin 2.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade 2.2s linear infinite;
}

.spinner:before {
  border-top-color: #32c5f3;
}

.spinner:after {
  border-top-color: #ff164d;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes spinner-spin {
  100% {
    -webkit-transform: rotate(110deg);
            transform: rotate(110deg);
  }
}

@keyframes spinner-spin {
  100% {
    -webkit-transform: rotate(110deg);
            transform: rotate(110deg);
  }
}
@-webkit-keyframes spinner-fade {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}
@keyframes spinner-fade {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}






.spinner1 {
  position: relative;
  margin: 60px auto 0 auto;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-clip: padding-box;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), black 90%);
  -webkit-transform-origin: 50% 60%;
      -ms-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
  -webkit-transform: perspective(120px) rotateX(45deg);
          transform: perspective(120px) rotateX(45deg);
  -webkit-animation: spinner-wiggle1 4.2s infinite;
          animation: spinner-wiggle1 4.2s infinite;
}

@-webkit-keyframes spinner-wiggle1 {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}

@keyframes spinner-wiggle1 {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}
.spinner1:before,
.spinner1:after {
  content: "";
  position: absolute;
  margin-left: -60px;
  margin-top: -4px;
  -moz-box-sizing: inherit;
       box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: .01;
  border: inherit;
  border-color: transparent;
  -webkit-animation: spinner-spin1 4.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade1 4.2s linear infinite;
          animation: spinner-spin1 4.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade1 4.2s linear infinite;
}

.spinner1:before {
  border-top-color: #32c5f3;
}

.spinner1:after {
  border-top-color: #ff164d;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes spinner-spin1 {
  100% {
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
  }
}

@keyframes spinner-spin1 {
  100% {
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
  }
}
@-webkit-keyframes spinner-fade1 {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}
@keyframes spinner-fade1 {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}

.spinner2 {
  position: relative;
  margin: 60px auto 0 auto;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-clip: padding-box;
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0.1), black 90%);
  -webkit-transform-origin: 50% 60%;
      -ms-transform-origin: 50% 60%;
          transform-origin: 50% 60%;
  -webkit-transform: perspective(120px) rotateX(45deg);
          transform: perspective(120px) rotateX(45deg);
  -webkit-animation: spinner-wiggle2 6.2s infinite;
          animation: spinner-wiggle2 6.2s infinite;
}

@-webkit-keyframes spinner-wiggle2 {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}

@keyframes spinner-wiggle2 {
  30% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  40% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  50% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
  60% {
    -webkit-transform: perspective(120px) rotateX(45deg);
            transform: perspective(120px) rotateX(45deg);
  }
}
.spinner2:before,
.spinner2:after {
  content: "";
  position: absolute;
  margin-left: -60px;
  margin-top: -4px;
  -moz-box-sizing: inherit;
       box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: .01;
  border: inherit;
  border-color: transparent;
  -webkit-animation: spinner-spin2 6.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade2 6.2s linear infinite;
          animation: spinner-spin2 6.2s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, spinner-fade2 6.2s linear infinite;
}

.spinner2:before {
  border-top-color: #32c5f3;
}

.spinner2:after {
  border-top-color: #ff164d;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@-webkit-keyframes spinner-spin2 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-spin2 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes spinner-fade2 {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}
@keyframes spinner-fade2 {
  20% {
    opacity: .1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: .1;
  }
}


.Facebook {
background: url("../../icon/social/facebook.png") no-repeat scroll 0 6px transparent;
}

.Twitter {
background: url("../../icon/social/twitter.png") no-repeat scroll 0 6px transparent;
}

.Facebook_womens {
background: url("../../icon/social/facebook_womensteam.png") no-repeat scroll 0 6px transparent;
}

.Twitter_womens {
background: url("../../icon/social/twitter_womensteam.png") no-repeat scroll 0 6px transparent;
}

.Social a {
display: block;
float: left;
height: 40px;
opacity: 0.7;
text-indent: -9999px;
width: 32px;
}

.Social a:hover {
  opacity: 1;
}

.Social div {
float: left;
height: 40px;
margin: 0 5px;
width: 32px;
}

.img-responsive {
  margin: 0 auto;
}

#home-phnumber{
  margin-top:10px;
  margin-bottom:0;
  font-weight:700;
  font-size:38px;
}

#home-email{
  font-weight:300;
  margin-top: -5px;
  font-size:18px;
}

.menurow a:hover{
  color:#00c9fd;
  text-decoration:none;
}


.menucol{
  /*margin-left:80px;*/
}

.menurow p{
  color:#fff;
  margin-bottom:3px;
}

.menurow img{
  border-radius: 15px 15px 0 0;
}

/*.menurow p:hover, .menurow img:hover {
  cursor:pointer;
  
}*/

.prodcollapser:hover{
  cursor:pointer;
}

.bs-docs-sidebar li{
  list-style: none;
}

.bs-docs-sidebar li a{
  font-size:16px;
}

.bs-docs-sidebar li a:hover{
  text-decoration:none;
}

#header_row{
  background:#000;
}

.header_nav_large {
margin-top: 78px;
}

.nav>li>a:hover, .nav>li>a:focus {
  text-decoration: none;
  background-color: #333;
}

.nav>li>a {
  position: relative;
  display: block;
  padding: 0px 15px 2px 0px;
  font-size: 15px;
}

#affix-ul{
  top:50px;
}

.prodtxt ul li{
  font-size:16px;
}

.top_sub_comingsoon{
  background-color:#00acd9;
}

.top_sub_comingsoon a{
  color:#666;
}

.step-box{
  margin-right: 25px;
}

.step-box-small{
  margin-right: 5px;
}

.wyz_title{
    height:260px;
  }


#wyz0-animate{
  height: 135px;
  width: 135px;
  background:url(../../images/wyz_choose_btn_an.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: wyzan1 2s steps(4) infinite;
     -moz-animation: wyzan1 2s steps(4) infinite;
      -ms-animation: wyzan1 2s steps(4) infinite;
       -o-animation: wyzan1 2s steps(4) infinite;
          animation: wyzan1 2s steps(4) infinite;
  cursor:pointer;
  }

  #wyz1-animate{
  height: 135px;
  width: 135px;
  background:url(../../images/wyz_design_btn_an.png) no-repeat;
  background-position: 0px;
  -webkit-animation: wyzan2 2s steps(7) infinite;
     -moz-animation: wyzan2 2s steps(7) infinite;
      -ms-animation: wyzan2 2s steps(7) infinite;
       -o-animation: wyzan2 2s steps(7) infinite;
          animation: wyzan2 2s steps(7) infinite;
  cursor:pointer;
  }

  #wyz2-animate{
  height: 135px;
  width: 135px;
  background:url(../../images/wyz_order_btn_an.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: wyzan3 2s steps(10) infinite;
     -moz-animation: wyzan3 2s steps(10) infinite;
      -ms-animation: wyzan3 2s steps(10) infinite;
       -o-animation: wyzan3 2s steps(10) infinite;
          animation: wyzan3 2s steps(10) infinite;
  cursor:pointer;
  }

#step0-animate{
  height: 200px;
  width: 220px;
  background:url(../images/wyz_choose_frames1.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: play1 2s steps(5) infinite;
     -moz-animation: play1 2s steps(5) infinite;
      -ms-animation: play1 2s steps(5) infinite;
       -o-animation: play1 2s steps(5) infinite;
          animation: play1 2s steps(5) infinite;
  cursor:pointer;
  }

#step1-animate{
  height: 200px;
  width: 220px;
  background:url(../images/wyz_choose_frames1.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: play1 2s steps(5) infinite;
     -moz-animation: play1 2s steps(5) infinite;
      -ms-animation: play1 2s steps(5) infinite;
       -o-animation: play1 2s steps(5) infinite;
          animation: play1 2s steps(5) infinite;
  cursor:pointer;
  }

#step2-animate{
  height: 200px;
  width: 220px;
  background:url(../images/wyz_design_frames1.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: play2 4s steps(9) infinite;
     -moz-animation: play2 4s steps(9) infinite;
      -ms-animation: play2 4s steps(9) infinite;
       -o-animation: play2 4s steps(9) infinite;
          animation: play2 4s steps(9) infinite;
  cursor:pointer;
  }

#step3-animate{
  height: 200px;
  width: 220px;
  background:url(../images/wyz_order_frames1.png) no-repeat;
  background-position: 0px;
  float:left;
  -webkit-animation: play 6s steps(13) infinite;
     -moz-animation: play 6s steps(13) infinite;
      -ms-animation: play 6s steps(13) infinite;
       -o-animation: play 6s steps(13) infinite;
          animation: play 6s steps(13) infinite;
  cursor:pointer;
  }

.stepoffroad{
  height: 92px;
  width: 101px;
  background:url(../images/small_wyz_btn_animate.png) no-repeat;
  background-position: 0px;
  float:right;
  -webkit-animation: play0 2s steps(13) infinite;
     -moz-animation: play0 2s steps(13) infinite;
      -ms-animation: play0 2s steps(13) infinite;
       -o-animation: play0 2s steps(13) infinite;
          animation: play0 2s steps(13) infinite;
  cursor:pointer;
}

.stepRoad{
  height: 92px;
  width: 101px;
  background:url(../images/small_wyz_btn_animate.png) no-repeat;
  background-position: 0px;
  float:right;
  -webkit-animation: play0 2s steps(13) infinite;
     -moz-animation: play0 2s steps(13) infinite;
      -ms-animation: play0 2s steps(13) infinite;
       -o-animation: play0 2s steps(13) infinite;
          animation: play0 2s steps(13) infinite;
  cursor:pointer;
}

#step1{
    height: 200px;
    width: 220px;
    background:url(../images/wyz_choose_frames1.png) no-repeat;
    background-position: 0px;
    float:left;
  }
  
  #step1:hover{
    -webkit-animation: play1 2s steps(5) infinite;
       -moz-animation: play1 2s steps(5) infinite;
        -ms-animation: play1 2s steps(5) infinite;
         -o-animation: play1 2s steps(5) infinite;
            animation: play1 2s steps(5) infinite;
  }
  
  #step2{
    height: 200px;
    width: 220px;
    background:url(../images/wyz_design_frames1.png) no-repeat;
    background-position: 0px;
    float:left;
  }
  
  #step2:hover{
    -webkit-animation: play2 2s steps(9) infinite;
       -moz-animation: play2 2s steps(9) infinite;
        -ms-animation: play2 2s steps(9) infinite;
         -o-animation: play2 2s steps(9) infinite;
            animation: play2 2s steps(9) infinite;
  }
  
  #step3{
    height: 200px;
    width: 220px;
    background:url(../images/wyz_order_frames1.png) no-repeat;
    background-position: 0px;
    float:left;
  }
  
  #step3:hover{
    -webkit-animation: play 2s steps(13) infinite;
       -moz-animation: play 2s steps(13) infinite;
        -ms-animation: play 2s steps(13) infinite;
         -o-animation: play 2s steps(13) infinite;
            animation: play 2s steps(13) infinite;
  }
  
   /*NEW FRAMES ANIM0 new bikeatac-home*/

  @-webkit-keyframes wyzan1 {
     from { background-position:    0px; }
     to { background-position: -540px; }
  }
  
  @-moz-keyframes wyzan1 {
     from { background-position:    0px; }
     to { background-position: -540px; }
  }
  
  @-ms-keyframes wyzan1 {
     from { background-position:    0px; }
     to { background-position: -540px; }
  }
  
  @-o-keyframes wyzan1 {
     from { background-position:    0px; }
     to { background-position: -540px; }
  }
  
  @keyframes wyzan1 {
     from { background-position:    0px; }
     to { background-position: -540px; }
  }


  @-webkit-keyframes wyzan2 {
     from { background-position:    0px; }
     to { background-position: -945px; }
  }
  
  @-moz-keyframes wyzan2 {
     from { background-position:    0px; }
     to { background-position: -945px; }
  }
  
  @-ms-keyframes wyzan2 {
     from { background-position:    0px; }
     to { background-position: -945px; }
  }
  
  @-o-keyframes wyzan2 {
     from { background-position:    0px; }
     to { background-position: -945px; }
  }
  
  @keyframes wyzan2 {
     from { background-position:    0px; }
     to { background-position: -945px; }
  }


  @-webkit-keyframes wyzan3 {
     from { background-position:    0px; }
     to { background-position: -1350px; }
  }
  
  @-moz-keyframes wyzan3 {
     from { background-position:    0px; }
     to { background-position: -1350px; }
  }
  
  @-ms-keyframes wyzan3 {
     from { background-position:    0px; }
     to { background-position: -1350px; }
  }
  
  @-o-keyframes wyzan3 {
     from { background-position:    0px; }
     to { background-position: -1350px; }
  }
  
  @keyframes wyzan3 {
     from { background-position:    0px; }
     to { background-position: -1350px; }
  }


  @-webkit-keyframes play0 {
     from { background-position:    0px; }
     to { background-position: -1313px; }
  }
  
  @-moz-keyframes play0 {
     from { background-position:    0px; }
     to { background-position: -1313px; }
  }
  
  @-ms-keyframes play0 {
     from { background-position:    0px; }
     to { background-position: -1313px; }
  }
  
  @-o-keyframes play0 {
     from { background-position:    0px; }
     to { background-position: -1313px; }
  }
  
  @keyframes play0 {
     from { background-position:    0px; }
     to { background-position: -1313px; }
  }



  @-webkit-keyframes play {
     from { background-position:    0px; }
     to { background-position: -2860px; }
  }
  
  @-moz-keyframes play {
     from { background-position:    0px; }
     to { background-position: -2860px; }
  }
  
  @-ms-keyframes play {
     from { background-position:    0px; }
     to { background-position: -2860px; }
  }
  
  @-o-keyframes play {
     from { background-position:    0px; }
     to { background-position: -2860px; }
  }
  
  @keyframes play {
     from { background-position:    0px; }
     to { background-position: -2860px; }
  }
  
  /*NEW FRAMES ANIM1 new bikeatac-home*/
   
   @-webkit-keyframes play1 {
     from { background-position:    0px; }
     to { background-position: -1100px; }
  }
  
  @-moz-keyframes play1 {
     from { background-position:    0px; }
     to { background-position: -1100px; }
  }
  
  @-ms-keyframes play1 {
     from { background-position:    0px; }
     to { background-position: -1100px; }
  }
  
  @-o-keyframes play1 {
     from { background-position:    0px; }
     to { background-position: -1100px; }
  }
  
  @keyframes play1 {
     from { background-position:    0px; }
     to { background-position: -1100px; }
  }
  
  /*NEW FRAMES ANIM2 new bikeatac-home*/
   
   @-webkit-keyframes play2 {
     from { background-position:    0px; }
     to { background-position: -1980px; }
  }
  
  @-moz-keyframes play2 {
     from { background-position:    0px; }
     to { background-position: -1980px; }
  }
  
  @-ms-keyframes play2 {
     from { background-position:    0px; }
     to { background-position: -1980px; }
  }
  
  @-o-keyframes play2 {
     from { background-position:    0px; }
     to { background-position: -1980px; }
  }
  
  @keyframes play2 {
     from { background-position:    0px; }
     to { background-position: -1980px; }
  }

.dyo_wyz_btn_small{
float: left;
width: 113px;
height: 101px;
background: url(../images/dyo_wyz_btn_small.png) no-repeat;
margin-right:5px;
margin-bottom:30px;
margin-top:30px;
cursor:pointer;
}

.cyo_wyz_btn_small{
float: left;
width: 113px;
height: 101px;
background: url(../images/cyo_wyz_btn_small.png) no-repeat;
margin-right:5px;
margin-bottom:30px;
margin-top:30px;
cursor:pointer;
}

.focal_wyz_btn_small{
float: left;
width: 113px;
height: 101px;
background: url(../images/focal_wyz_btn_small.png) no-repeat;
margin-bottom:30px;
margin-top:30px;
cursor:pointer;
}

.focal_wyz_btn_small_na{
float: left;
width: 113px;
height: 101px;
background: url(../images/focal_wyz_btn_small_na.png) no-repeat;
margin-bottom:30px;
margin-top:30px;
}

.dyo_wyz_btn_small:hover{
background-position:-113px;

}

.cyo_wyz_btn_small:hover{
background-position:-113px;

}

.focal_wyz_btn_small:hover{
background-position:-113px;

}


.dyo_wyz_btn{
float: left;
width: 165px;
height: 149px;
background: url(../images/dyo_wyz_btn.png) no-repeat;
margin-right:10px;
margin-bottom:30px;
cursor:pointer;

}

.cyo_wyz_btn{
float: left;
width: 165px;
height: 149px;
background: url(../images/cyo_wyz_btn.png) no-repeat;
margin-right:10px;
margin-bottom:30px;
cursor:pointer;

}

.focal_wyz_btn{
float: left;
width: 165px;
height: 149px;
background: url(../images/focal_wyz_btn.png) no-repeat;
margin-bottom:30px;
cursor:pointer;

}

.focal_wyz_btn_na{
float: left;
width: 165px;
height: 149px;
background: url(../images/focal_wyz_btn_na.png) no-repeat;
margin-bottom:30px;
}

.dyo_wyz_btn:hover{
background-position:-165px;

}

.cyo_wyz_btn:hover{
background-position:-165px;

}

.focal_wyz_btn:hover{
background-position:-165px;

}

.activepage{
  margin: -45px 0 0 85px;
  float:left;
}

.activepage7{
  margin: -45px 0 0 55px;
  float:left;
}

.sub_home_logo{
  text-align:left;
  padding-left:0;
  padding-right:0;
}

.ataccallout{
  letter-spacing:3px;
  font-size:25px;

}

.comingsoon{
  color:#666;

}


.prodid{
  float:right;
  color:#000;
  font-weight:700;
}

.prodtr{
  height:55px;
}

.prodcardtitle{

  font-weight:700;
}

.home_info{

  font-size:30px;
}

.header_nav_divider{

  color:#00c9fd;
  margin-left:10px;
}

.probthumb{
  background: rgb(84,84,84); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(84,84,84,1) 0%, rgba(43,43,43,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(84,84,84,1)), color-stop(100%,rgba(43,43,43,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(84,84,84,1) 0%,rgba(43,43,43,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(84,84,84,1) 0%,rgba(43,43,43,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(84,84,84,1) 0%,rgba(43,43,43,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(84,84,84,1) 0%,rgba(43,43,43,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#545454', endColorstr='#2b2b2b',GradientType=0 ); /* IE6-9 */

 min-height:530px;
  border-radius:10px;
  padding-top:25px;
  border:1px #000 solid;
  padding-top:5px;
  padding-bottom:15px;
}

#hockeypage_btn,#lacrossepage_btn,#trackpage_btn,#footballpage_btn,#rugbypage_btn,#baseballpage_btn,#soccerpage_btn,#basketballpage_btn,#volleyballpage_btn,#ringettepage_btn{
  cursor: pointer;
}

.probthumb p{
  font-size: 15px;
  letter-spacing: .5px;
  margin:0;
}

.probthumb table{
  width:100%;
}

.probthumb table thead tr{
  padding:10px;
}

.probthumb table thead tr a{
  color:#00c9fd;
}


.product-card-table p{
  font-size:18px;
  font-weight:700;
}

.product-card-table .product-card-heading p{
  font-size:18px;

}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #000;
  color:#fff;
}

.anchor-menu {
  font-size: 9pt;
  position: relative;
  float: right;
  margin-top: 16px;
  margin-bottom: 25px;
}

.prod-button {
  float: right;
  margin: 0;
  border-radius: 0;
  padding: 2px 5px 2px 5px;
  margin: -7px -2px 0 0;
  height: 28px;
  max-width: 75px;
  background: #3aec61;
  font-size: 11pt;
  font-weight: 300;
}

.prod-caption {
height: 30px;
width: 100%;
padding: 8px 3px 3px 3px;
text-align:center;
}

.prod-caption h5 {
font-size: 11pt;
font-weight: 300;
margin: 0;
}

.sub_title{
color:#fff;
font-family: 'Raleway', sans-serif;
font-weight: 300;
font-size: 38pt;
letter-spacing: -4px;
margin-top:0;
}

.carousel-indicators{
  bottom:20px;
}

#footerbar{
  text-align:left;
  padding-top:50px;
  margin-bottom:50px;
}

.footer_address{
    list-style:none;
/*    padding-top:25px;
    margin-left: -40px;*/
  }


#footerbar p{
  font-size: 20px;
}

#footerbar small a{
  font-size: 17px;
}

#footerbar small a:hover{
  text-decoration:none;
  color:#00c9fd;
}



.blue{
  color: #00c9fd;
}
.green{
  color:#3aec61;
}

.yellow{
  color:#ffd764;
}

.red{
  color:#f25738;
}

.pink{
  color:#fd00c4;
}

.sm-links {
  margin: 0;
}

.sm-links li {
  float: left;
  margin: 10px 15px 10px 0;
  list-style: none;
}

#big_logo{
  overflow: hidden;
  position: absolute;
  z-index: 300;
  float: left;
  margin-top: 80px;
}

#black_logo{

}

#herobar{
  background-color: #00c9fd;
  height: 180px;
  text-align:center;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 0;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.btn-primary {
color: #000;
background-color: #00c9fd;
width:100%;
}

.btn-success {
color: #000;
width:100%;
}

.atac_color_swatch_page{
  height: 45px;
  padding-top: 14px;
  border: 1px #000 solid;
}

.atac_color_swatch_page small{
  color:#000;
  font-weight:700;
}

.atac_color_swatch{
  height: 45px;
  padding-top: 14px;
}

.atac_color_swatch small{
  color:#000;
  font-weight:700;
}

#color1{background-color:#00bfdf}
#color2{background-color:#d83d96}
#color3{background-color:#fff200}
#color4{background-color:#231f20}
#color5{background-color:#f16521}
#color6{background-color:#ee2f4e}
#color7{background-color:#005aaa}
#color8{background-color:#fff100}
#color9{background-color:#ffe000}
#color10{background-color:#ffd600}
#color11{background-color:#ffe275}
#color12{background-color:#ffd400}

#color13{background-color:#fdb813}
#color14{background-color:#a77836}
#color15{background-color:#faab18}
#color16{background-color:#f9a21a}
#color17{background-color:#f5821f}
#color18{background-color:#ca4d2c}
#color19{background-color:#f36f21}
#color20{background-color:#95463d}
#color21{background-color:#ef4e22}
#color22{background-color:#803f3e}
#color23{background-color:#e01e30}
#color24{background-color:#e0173d}

#color25{background-color:#cd1431}
#color26{background-color:#802939}
#color27{background-color:#d01e5f}
#color28{background-color:#ae2856}
#color29{background-color:#96234e}
#color30{background-color:#ebaba9}
#color31{background-color:#cd1337}
#color32{background-color:#8b0018}
#color33{background-color:#ecbbc0}
#color34{background-color:#8c2649}
#color35{background-color:#f286b6}
#color36{background-color:#e12990}

#color37{background-color:#8f1a6a}
#color38{background-color:#9e2c91}
#color39{background-color:#8c488c}
#color40{background-color:#9283bd}
#color41{background-color:#8a6fb1}
#color42{background-color:#8071b3}
#color43{background-color:#5a69b1}
#color44{background-color:#0071bb}
#color45{background-color:#323f99}
#color46{background-color:#213f99}
#color47{background-color:#cee3f5}
#color48{background-color:#6fa5d3}

#color49{background-color:#003870}
#color50{background-color:#000f47}
#color51{background-color:#7db8de}
#color52{background-color:#00a9e4}
#color53{background-color:#0083ca}
#color54{background-color:#0072b1}
#color55{background-color:#79c4e7}
#color56{background-color:#0089cf}
#color57{background-color:#00547e}
#color58{background-color:#00a3d4}
#color59{background-color:#00466b}
#color60{background-color:#26c1dc}

#color61{background-color:#00abc4}
#color62{background-color:#46c4dc}
#color63{background-color:#23bdc3}
#color64{background-color:#00b2b5}
#color65{background-color:#009491}
#color66{background-color:#006f67}
#color67{background-color:#00b4ac}
#color68{background-color:#00ad8a}
#color69{background-color:#00ad7d}
#color70{background-color:#00aa5b}
#color71{background-color:#00ab5b}
#color72{background-color:#006f4c}

#color73{background-color:#c7e4ca}
#color74{background-color:#00b059}
#color75{background-color:#09864c}
#color76{background-color:#2eb569}
#color77{background-color:#78c153}
#color78{background-color:#98ca4a}
#color79{background-color:#eff0ad}
#color80{background-color:#b1d249}
#color81{background-color:#fef385}
#color82{background-color:#93853a}
#color83{background-color:#f7eb00}
#color84{background-color:#fbed00}

#color85{background-color:#f2e900}
#color86{background-color:#776c5b}
#color87{background-color:#9ea49a}
#color88{background-color:#557382}
#color89{background-color:#edece2}
#color90{background-color:#d9dad0}
#color91{background-color:#bdbcaf}
#color92{background-color:#603500}
#color93{background-color:#d5c296}
#color94{background-color:#e0d5b6}
#color95{background-color:#ddc59e}
#color96{background-color:#624241}

#color97{background-color:#77413f}
#color98{background-color:#e2372c}
#color99{background-color:#35182a}
#color100{background-color:#5f316c}
#color101{background-color:#000e36}
#color102{background-color:#00153e}
#color103{background-color:#5d95ad}
#color104{background-color:#d0dbd8}
#color105{background-color:#00484b}
#color106{background-color:#003c12}
#color107{background-color:#75793e}
#color108{background-color:#b8af8a}

#color109{background-color:#3d2957}
#color110{background-color:#a66a46}
#color111{background-color:#7b423b}
#color112{background-color:#a68051}
#color113{background-color:#b0b9bf}
#color114{background-color:#a654a0}
#color115{background-color:#0066ab}
#color116{background-color:#45449b}
#color117{background-color:#fff}
#color118{background-color:#000}
#color119{background-color:#666}
#color120{background-color:none;color:#F00;padding:0 0 0 4px;line-height: 13px;font-size: 19px;overflow:hidden;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  height: 500px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 500px;
  background-color: #777;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}

.carousel-control.left {
  background:none;
}

.carousel-control.right {
  background:none;
}

#slant_bar{
  text-align:center;
}

.stripebar{
  background: url(../images/lines_pattern.png);
  height:30px;
}

.striped{
  background: url(../images/lines_pattern.png);
}

.striped50{
  background: url(../images/lines_pattern50.png);
}

#big_logo_img{

  width: auto;
}

.row{
  margin-right: 0;
  margin-left:0;
  margin-bottom:20px;
}

.btn-default, .btn-default:hover, .btn-default:focus {
color: #666;
background-color: #888;
border-color: #ccc;
}

.btn-default:hover {
color: #000;
background-color: #444;
border-color: #333;
}

.btn-warning {
color: #000;
}

.wyzprodbtn{
  width: 150px;
  height: 120px;
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 12px;
}

.wyzprodbtn-small{
  width: 110px;
  height: 110px;
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 12px;
}

#sub_nav_number {
  color: #000;
  font-size: 15px;
  margin-top: -2px;
}

.card_link {
width: 45%;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
float:left;
margin-right: 10px;
margin-top:20px;
}

.sub_nav_parent{
float:left;
width: 128px;
float: left;
margin-right: 40px;
margin-top: 30px;
/*background-color: #00c9fd;*/
padding-top: 2px;
cursor:pointer;
text-align:center;
}

.sub_nav_parent_last{
width: 128px;
margin-top: 30px;
float: left;
/*background-color: #00c9fd;*/
padding-top: 2px;
cursor:pointer;
text-align:center;
}

.sub_nav_link7 {

background: url(../images/lines_pattern.png);
margin-bottom:10px;
}

.sub_nav_link_last7 {
width: 128px;
margin-top: 30px;
float: left;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
}

.sub_nav_link2 {
width: 100%;
float: left;
margin-right: 40px;
margin-top: 30px;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
}

.sub_nav_link_last2 {
width: 100%;
margin-top: 30px;
float: left;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
}

.sub_nav_link {
width: 195px;
float: left;
margin-right: 40px;
margin-top: 30px;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
}

.sub_nav_link_last {
width: 195px;
margin-top: 30px;
float: left;
/*background-color: #00c9fd;*/
padding-top: 2px;
background: url(../images/lines_pattern.png);
cursor:pointer;
text-align:center;
}

.sub_nav_link a:hover {
  color:#00c9fd;
  text-decoration: none;
  font-weight:900;
}

.sub_nav_link_last a:hover {
  color:#00c9fd;
  text-decoration: none;
  font-weight:900;
}

.sub_nav_link a {
background-color: #000;
padding: 7px 5px 5px 10px;
height: 40px;
display: block;
/*background-color: #000;*/
color:#fff;
}

.sub_nav_link_last a {
background-color: #000;
padding: 7px 5px 5px 10px;
height: 40px;
display: block;
/*background-color: #000;*/
color:#fff;
}

.sub_nav_link7 a {

margin: 7px 5px 7px 10px;
height: 40px;
display: block;
/*background-color: #000;*/
color:#fff;
}

.sub_nav_link_last7 a {

margin: 7px 5px 7px 10px;
height: 40px;
display: block;
/*background-color: #000;*/
color:#fff;
}

.sub_nav_link7 h4 {
  margin:0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.sub_nav_link_last7 h4 {
  margin:0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.sub_nav_parent h4 {
  margin: 0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.sub_nav_parent_last h4 {
  margin: 0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.sub_nav_link h4 {
  margin: 0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.sub_nav_link_last h4 {
  margin: 0;
  font-weight: 300;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
}

.top_nav{
  color:#fff;
  min-height:50px;
  background: #000;
}

.top_nav a:hover{
  text-decoration:none;
  color:#00c9fd;
}

.low_bar1{
  color:#fff;
  min-height:1px;
  background: #00c9fd;
}
.low_bar2{
  color:#fff;
  min-height:10px;
  background: #000;
}

.navline2{
  border-top:1px dotted #00acd9;

}

.top_sub_nav2{
  color:#fff;
  min-height: 2px;
  background: #00c9fd;
  padding: 0 3px 3px 0px;
  z-index: 100;
  list-style:none;
  width:100%;
}

.top_sub_nav2 ul li{
  float:left;
  list-style:none;
  width:10%;
  height: 30px;
}

.top_sub_nav2 ul li a{
  color:#000;
  font-size:10pt;
  height: 30px;
  display: block;
  padding-top: 5px;
  border-left:1px #009cc4 solid;
}

.top_sub_nav2 ul li a:hover{
background-color:#00acd9;
text-decoration:none;
color:#fff;
}





.top_sub_nav{
  color:#fff;
  height: 30px;
  background: #00c9fd;
  padding: 7px 3px 3px 0px;
  z-index: 100;
  list-style:none;
}

.top_sub_nav ul li{
  float:left;
  list-style:none;

}

.top_sub_nav ul{
 margin-top:-3px;
 margin-left: 215px;
 list-style:none;
}

.top_sub_nav li a{
  color:#000;
  font-size:10pt;
}

.focussection{
  padding-top:15px;
}

.focussection{
  padding-top:15px;
}

.focuslink{
  font-size:16px;
  margin:16px 10px 10px -6px;
  padding-left:5px;
  display: block;
  border-left:2px #00c9fd solid;
  line-height: 18px;
}

.focuslink:hover{
  text-decoration:none;
  color:#00c9fd;
  padding-left:5px;
  border-left:4px #00c9fd solid;
}

.focuswrapper{
  height:55px;
  text-align:left;
  padding:16px 10px 10px -6px;

}

.header_nav{
  height:35px;
  margin-top: 21px;
}

.header_nav ul li{
  float:left;
  margin-right:10px;
  list-style:none;
  font-size:16px;
}


.home_col{
  overflow:hidden;

}

.header_nav_right{
  float:right;
}

.header_nav_right a{
  color:#000;
  font-weight:500;
}

.header_nav_right ul li{
  float:right;
  margin-right:10px;
  list-style:none;
  font-size:12px;
}

#headerman{
  float:left;
  margin-left: 15px;
  padding:10px;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}


/*
 * Header
 */
.masthead-brand {
  margin-top: 10px;
  margin-bottom: 10px;
}

.masthead-nav > li {
  display: inline-block;
}
.masthead-nav > li + li {
  margin-left: 20px;
}
.masthead-nav > li > a {
  padding-right: 0;
  padding-left: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff; /* IE8 proofing */
  color: rgba(255,255,255,.75);
  border-bottom: 2px solid transparent;
}
.masthead-nav > li > a:hover,
.masthead-nav > li > a:focus {
  background-color: transparent;
  border-bottom-color: rgba(255,255,255,.25);
}
.masthead-nav > .active > a,
.masthead-nav > .active > a:hover,
.masthead-nav > .active > a:focus {
  color: #fff;
  border-bottom-color: #fff;
}


@media (max-width: 400px) {
  #stepsrow{
    padding-top: 80px;
  }

  #sub_title{
    font-size: 40px;
  }

  #mobile_indicator{
  }

  .mobile_center{
    margin-left:25px;

  }



}

@media (max-width: 626px) {
  body {
    color: #fff;
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
    background: none;
    background-color:#000;
  }


  .full_left_mobile_center{
    text-align:center;
  }

  .full_right_mobile_center{
    text-align:center;
  }

  .mobile_center{
    margin-left:25px;

  }

  .menurow16{
/*    padding-left:13.666667%;*/
    margin-bottom: 10px;
  }

  #stepsrow{
    padding-top: 90px;
    padding-left: 90px;
  }

  .masthead-brand {
    float: left;
  }
  .masthead-nav {
    float: right;
  }

.top_sub_nav2{
  text-align: center;
  height:auto;
}

.top_sub_nav2 ul{

}

.top_sub_nav2 ul li{
  text-align:center;

}

.top_sub_nav2 ul li a{

}



}
.top_sub_comingsoon{
  display:none;
}


/*
 * Cover
 */

.cover {
  padding: 0 20px;
}
.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold;
}


/*
 * Footer
 */

.mastfoot {
  color: #999; /* IE8 proofing */
  color: rgba(255,255,255,.5);
}


/*
 * Affix and center
 */

@media (min-width: 768px) {
  /* Pull out the header and footer */

 

  .full_left_mobile_center{
    text-align:left;
  }

  .full_right_mobile_center{
    text-align:right;
  }


  .menurow16{
    padding-left:13.666667%;
    margin-bottom: 10px;
  }

  .masthead {
    position: fixed;
    top: 0;
  }
  .mastfoot {
    position: fixed;
    bottom: 0;
  }
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }
  /* Handle the widths */
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }

  /* Remove the edge padding needed for mobile */
  .marketing {
    padding-right: 0;
    padding-left: 0;
  }

  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left:  15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left:  0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}




}

@media (min-width: 992px) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 700px;
  }





}

@media (max-width: 992px) {

/*.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, 
.col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{
  width: 100%;

}*/

 .menuitem {
    height: 110px;
  }

.sub_title {
  font-size: 42pt;
  letter-spacing: -5px;
}

/*.top_sub_nav ul{
  display:none;
}*/

.mini-hide{
  display:none;
}

.sub_home_logo{
  padding-top:25px;
}

#choosearrowsrow{
  display:none;
}

}


@media (max-width: 1200px) {

 #home-phnumber{
    margin-top:10px;
    margin-bottom:0;
    font-weight:700;
    font-size:22px;
  }

  #home-email{
    font-weight:300;
    margin-top: -5px;
    font-size:16px;
  }

.top_sub_nav ul{
  margin-top:-3px;
  margin-left: 0;
}

.top_sub_nav{
  height:auto;
}


.sub_nav_link_last{
  margin-right:40px;
}

.carousel-inner > .item {
  overflow:hidden;
}

.carousel-inner > .item > img {
  position: relative;
  min-width: 1902px;
  height: 500px;
}

.home_info{

  font-size:20px;
}



}

@media (max-width: 800px) {

 /*#headerman{
    padding:75px 10px 75px 10px;
    
  }*/


}

@media (max-width: 310px) {
  .header_nav ul li a{  
  font-size: 14px;
}

}

@media (max-width: 900px) {

ul{
  padding: 0;
}



.comingsoonnav{
  display:none;
}

.top_sub_txt{
  display:none;
}

.top_sub_nav2 ul li a{
  padding-top:8px;
}

#big_logo_img{
  width: 300px;
}

.carousel-control{
  display: none;
}

.header_nav_divider{
 display:none;
}

.header_nav ul li {
  width: 100%;
  text-align: center;
}

.header_nav{
width: 100%;
text-align: center;
margin-bottom:20px;
}

#headerman{
  float:none;
  margin-right: 0; 
}

#header_row{
  padding-bottom: 20px;
}

.footer_address{
  list-style:none;
  padding-top:25px;
  margin-left: 0;
}

}