/*!
***************** PRODUCTION SITE **************************
Theme Name: fime
Theme URI: http://underscores.me/
Author: Take Studios
Author URI: http://underscores.me/
Description: Description
Version: 1.5a
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fime
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

fime is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/*--------------------------------------------------------------
## Custom CSS
--------------------------------------------------------------*/

.logged-in .navbar-fixed-top {
	top: 32px;
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
    line-height: 1; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    font-size: 14px; /* 10px = 1rem */
  }
  
  /* Sections
     ========================================================================== */
  
  /**
   * Remove the margin in all browsers.
   */
  
  body {
    margin: 0;
  }
  
  /**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  /* Grouping content
     ========================================================================== */
  
  /**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
  
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /* Text-level semantics
     ========================================================================== */
  
  /**
   * Remove the gray background on active links in IE 10.
   */
  
  a {
    background-color: transparent;
  }
  
  /**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
  
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  
  /**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
  
  b,
  strong {
    font-weight: bolder;
  }
  
  /**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
  
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  
  /**
   * Add the correct font size in all browsers.
   */
  
  small {
    font-size: 80%;
  }
  
  /**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
  
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  
  /* Embedded content
     ========================================================================== */
  
  /**
   * Remove the border on images inside links in IE 10.
   */
  
  img {
    border-style: none;
  }
  
  /* Forms
     ========================================================================== */
  
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  
  button,
  input { /* 1 */
    overflow: visible;
  }
  
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  
  button,
  select { /* 1 */
    text-transform: none;
  }
  
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  
  /**
   * Remove the inner border and padding in Firefox.
   */
  
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  /**
   * Restore the focus styles unset by the previous rule.
   */
  
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  /**
   * Correct the padding in Firefox.
   */
  
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  /**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
  
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  
  /**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
  
  progress {
    vertical-align: baseline;
  }
  
  /**
   * Remove the default vertical scrollbar in IE 10+.
   */
  
  textarea {
    overflow: auto;
  }
  
  /**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
  
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  
  /**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  /**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
  
  [type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  
  /**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  
  /**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
  
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  
  /* Interactive
     ========================================================================== */
  
  /*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
  
  details {
    display: block;
  }
  
  /*
   * Add the correct display in all browsers.
   */
  
  summary {
    display: list-item;
  }
  
  /* Misc
     ========================================================================== */
  
  /**
   * Add the correct display in IE 10+.
   */
  
  template {
    display: none;
  }
  
  /**
   * Add the correct display in IE 10.
   */
  
  [hidden] {
    display: none;
  }


/* ==================================
        00. Preload 
=================================== */


#preloader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
}

.loading-icon img {
  width: 100%;
}

.pace {
-webkit-pointer-events: none;
pointer-events: none;

-webkit-user-select: none;
-moz-user-select: none;
user-select: none;

z-index: 2000;
position: fixed;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
height: 1px;
width: 200px;
background: #eee;

overflow: hidden;
}

.pace .pace-progress {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;

-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);

max-width: 200px;
position: fixed;
z-index: 2000;
display: block;
position: absolute;
top: 0;
right: 100%;
height: 100%;
width: 100%;
background: #000;
}

.pace.pace-inactive {
display: none;
}

/* ==================================
        01. Global 
=================================== */

html, body {font-family: 'Open Sans Condensed', sans-serif;}
.clear {clear:both;}
a {text-decoration: none; color: #47aeba;}
img { width: 100%; }

/* ==================================
        02. Header 
=================================== */

#fim-nav-fixed {
    width: 100%;
    height: 80px;
    background-color: #2e313a;
    z-index: 5;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

@media(min-width: 1000px) {
  #fim-nav-fixed {
      display: block;
  }
}

#fim-nav-fixed .fim-store {
    margin: 18px 30px 0 0;
}

#fim-fixed-nav-products {
    width: 100%;
    height: 0;
    background-color: #f9f9f9;
    z-index: -1;
    position: absolute;
    top: 80px;
    left: 0;
    overflow: hidden;
}

#fim-nav-fixed .products-container {
    padding: 20px 0 0 0;
}

#fim-nav-fixed .company-about-button-container {
    height: 110px;
}

#fim-nav-fixed .company-3-column {
  height: 650px;
}

#fim-fixed-nav-company {
  width: 100%;
  height: 0;
  background-color: #000;
  z-index: -2;
  position: absolute;
  top: 80px;
  left: 0;
  overflow: hidden;
}

#fim-fixed-nav-company .company-container {
  padding: 0;
}

.nav-item-fixed {
  width: 150px;
  height: 80px;
  font-size: 1.6rem;
  line-height: 8.5rem;
  letter-spacing: 0.1rem;
  text-align: center;
  float: left;
  background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
  background-repeat: no-repeat;
  background-position: right bottom 25px;
  background-size: 15px;
  cursor: pointer;
  position: relative;
}

.nav-sns .nav-item-fixed {
  width: 50px;
  height: 80px;
  font-size: 1.6rem;
  line-height: 8.5rem;
  letter-spacing: 0.1rem;
  text-align: center;
  float: right;
  background: none!important;
}

.nav-sns i {
  color: #eee;
  transition: color 0.5s ease;
}

.nav-sns i:hover {
  color: #40c8d8;
}

.nav-item-fixed .underline {
  width: 0%;
  height: 3px;
  background: #40c8d8;
  position: absolute;
  bottom: -2px;
  right: 0;
}

.nav-item-fixed .underline-active {
  width: 0%;
  height: 3px;
  background: #40c8d8;
  position: absolute;
  bottom: -2px;
  right: 0;
}

.nav-left-fixed {
  display: none;
  width: 65%;
  height: 80px;
  margin-left: 40px;
  float: left;
  color: #fff;
  font-weight: 700;
}

@media(min-width: 1000px) {
.nav-left-fixed {
  display: block;
}
}

@media(min-width: 1050px) { .nav-left-fixed { width: 70%; } }
@media(min-width: 1150px) { .nav-left-fixed { width: 72%; } }
@media(min-width: 1300px) { .nav-left-fixed { width: 75%; } }

.fixed-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 5;
}

.fixed-logo-container {
    width: 60px;
    height: auto;
    margin: 9px 0 0 20px;
    float: left;
}

#fim-nav {
    width: 100%;
    position: absolute;
    top: 0; 
    left: 0;
    z-index: 9999;
    display: none;
}

@media(min-width: 1000px) {
    #fim-nav {
        display: block;
    }
}
@media(max-width: 999px) {
    #fim-nav {
        display:block;
        width:100px;
    }
}

.nav-container {
    position: relative;
    width: 100%;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    width: 60px;
    height: 60px;
    margin: 20px 0 0 30px;
    float: left;
}

.logo-container img {
    width: 100%;
}

.nav-left {
    display: none;
    width: 65%;
    height: 80px;
    margin-left: 40px;
    float: left;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #8b92a3;
}

@media(min-width: 1000px) {
  .nav-left {
    display: block;
  }
}

@media(min-width: 1050px) { .nav-left { width: 70%; } }
@media(min-width: 1150px) { .nav-left { width: 72%; } }
@media(min-width: 1300px) { .nav-left { width: 75%; } }

.nav-mobile {
  display: block;
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0 0;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #47aeba;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
}

@media(min-width: 1000px) {
  .nav-mobile {
    display: none;
  }
}

.nav-mobile-container {
  display: block;
  width: 100%;
  height: 0;
  background-color: #fff;
  position: absolute;
  z-index: 9999;
  overflow: hidden;
}

@media(min-width: 1000px) {
  .nav-mobile-container {
    display: none;
  }
}

.panel {
  display: none;
}

.panel p {
  font-size: 1.5rem;
  display: block;
  padding: 5px 0 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.nav-mobile-close {
  display: block;
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0 0;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
}

.nav-mobile-menu {
  padding: 100px 0 0 0;
  text-align: left;
}

.nav-mobile-menu ul {
  padding: 0 50px;
  margin: 0;
  list-style-type: none;
}

.nav-mobile-menu ul li {
  padding: 10px 0;
  font-size: 1.7rem;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  color: #000;
  cursor: pointer;
}

.store-button-container {
    display: none;
    float: right;   
}

@media(min-width: 1000px) {
  .store-button-container {
    display: block;
  }
}

.fim-store {
    padding: 15px 40px;
    background-color: #47aeba;
    color: #fff;
    border: none;
    margin: 35px 30px 0 0;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
    cursor: pointer;
    -webkit-appearance: none;
}

.fim-store:focus {
    outline: none;
}

.nav-item {
    width: 150px;
    height: 80px;
    font-size: 1.4rem;
    line-height: 9rem;
    letter-spacing: 0.1rem;
    text-align: center;
    float: left;
    background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
    background-repeat: no-repeat;
    background-position: right bottom 12px;
    background-size: 15px;
    cursor: pointer;
    position: relative;
}

.nav-sns .nav-item {
    width: 50px;
    height: 80px;
    font-size: 1.6rem;
    line-height: 9rem;
    letter-spacing: 0.1rem;
    text-align: center;
    float: right;
    background: none!important;
}

.nav-item .underline {
    width: 0%;
    height: 3px;
    background: #40c8d8;
    position: absolute;
    bottom: -2px;
    right: 0;
}

.nav-item .underline-active {
    width: 0%;
    height: 3px;
    background: #40c8d8;
    position: absolute;
    bottom: -2px; 
    right: 0;
}

.nav-sns {
    width: 300px;
    height: 80px;
    font-size: 1.6rem;
    line-height: 11rem;
    letter-spacing: 0.1rem;
    text-align: right;
    float: right;
}

#fim-nav-products {
    width: 100%;
    height: 0;
    background-color: #f9f9f9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9990;
    overflow: hidden;
    border-bottom:1px solid #868686;
    /* background-image: url('/wp-content/themes/fime/assets/img/fim-products.jpg');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: bottom right; */
    display: none;
}

@media(min-width: 1000px) {
  #fim-nav-products {
    display: block;
  }
} 

#fim-nav-company {
    width: 100%;
    height: 0;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9990;
    overflow: hidden;
    display: none;
}
@media(min-width: 1000px) {
  #fim-nav-company {
    display: block;
  }
} 

.products-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 750px;
    padding: 80px 0 0 0;
    box-sizing: border-box;
}

.company-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 750px;
  padding: 80px 0 0 0;
  box-sizing: border-box;
}

.company-3-column {
  width: 33.33%;
  height: 670px;
  float: left;
  box-sizing: border-box;
}

.company-about-container {
  width: 100%;
  height: 540px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-company-about.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.company-about-button-container {
  width: 100%;
  height: 130px;
  text-align: center;
}

.company-distributor-container {
  width: 100%;
  height: 540px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-company-distributor.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.online-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 150px;
}

.company-media-container {
  width: 80%;
  height: 280px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-company-media.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.75rem;
  box-sizing: border-box;
  padding: 135px 0 0 0;
}

.company-media-container:hover {
  color: #40c8d8;
}

.company-rest-container {
  padding-top: 5px;
  color: #fff;
}

.company-rest-container ul {
  list-style: none;
  font-size: 1.8rem;
  letter-spacing: 0.09rem;
  text-transform: uppercase;
}

.company-rest-container ul li a {
  padding: 10px 0;
  color: #eee;
  width: 80%;
  display: block;
}

.company-rest-container ul li a:hover {
  color: #40c8d8;
}

.about-button {
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 60px;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.about-link:hover .about-button {
  background-color: #47aeba;
  border: 1px solid #47aeba;
}

.distributor-link:hover .about-button {
  background-color: #47aeba;
  border: 1px solid #47aeba;
}

.about-button:focus,
.about-button:active {
  outline: none;
}

.products-sub-nav {
    width: 380px;
    height: 450px;
    margin-top: 80px;
    border-right: 1px solid #ddd;
    text-align: left;
    padding: 0 30px 0 130px;
    box-sizing: border-box;
    float: left;
}

.products-sub-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
}

.products-sub-nav ul li {
    color:#000000;
    padding: 18px 30px 18px 0;
    cursor: pointer;
    background-image: url('/wp-content/themes/fime/assets/img/fim-right-black.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right top 12px;
    transition: all 0.25s ease;
    border-bottom: 1px solid #ddd;
}

.products-sub-nav ul li:hover { 
    padding-left: 5px;
    color: #47aeba;
}

.products-sub-nav ul a {
  color: #666;
}

.products-sub-nav-all ul li {
    transition: all 0.25s ease;
}

.products-sub-nav-all ul li:hover { 
    padding-left: 5px;
    color: #47aeba;
}

.products-sub-nav-pistols {
    width: auto;
    height: 500px;
    margin-top: 80px;
    text-align: left;
    padding: 0 30px 0 50px;
    box-sizing: border-box;
    float: left;
    display: none;
    opacity: 0;
}

.products-sub-nav-pistols ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
}

.products-sub-nav-pistols ul li {
    margin-bottom: 20px;
    padding: 0 30px 0 0;
    cursor: pointer;
    background-image: url('/wp-content/themes/fime/assets/img/fim-right-black.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right center;
    transition: all 0.25s ease;
}

.pistols-sub {
    width: 175px;
    height: auto;
    margin-bottom: 20px;
    font-family: 'Open Sans', helvetica, arial;
}

.pistols-sub-copy {
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    text-align: center;
    color: #333;
    padding: 10px 0;
    border: 1px solid #ddd;
    transition: background-color 0.25s ease;
}

.pistols-sub:hover .pistols-sub-copy {
    color: #fff;
    background-color: #47aeba;
    border: 1px solid #47aeba;
}

.products-sub-nav-pistols ul li:hover { 
    padding-left: 5px;
}

.products-sub-nav-rifles {
    width: 250px;
    height: 500px;
    margin-top: 80px;
    text-align: left;
    padding: 0 30px 0 50px;
    box-sizing: border-box;
    float: left;
    display: none;
    opacity: 0;
}

.products-sub-nav-rifles ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    letter-spacing: 0.06rem;
}

.products-sub-nav-rifles ul li {
    margin-bottom: 20px;
    padding: 0 30px 0 0;
    cursor: pointer;
    background-image: url('/wp-content/themes/fime/assets/img/fim-right-black.png');
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: right center;
    transition: all 0.25s ease;
}

.rifles-sub {
    width: 350px;
    height: auto;
    margin-bottom: 20px;
    font-family: 'Open Sans', helvetica, arial;
}

.rifles-sub-copy {
    font-size: 1.3rem;
    letter-spacing: 0.05rem;
    text-align: center;
    color: #333;
    padding: 10px 0;
    border: 1px solid #ddd;
    transition: background-color 0.25s ease;
}

.rifles-sub:hover .rifles-sub-copy {
    color: #fff;
    background-color: #47aeba;
    border: 1px solid #47aeba;
}

.products-sub-nav-rifles ul li:hover { 
    padding-left: 5px;
}

.products-sub-nav-shotguns {
  width: 250px;
  height: 500px;
  margin-top: 80px;
  text-align: left;
  padding: 0 30px 0 50px;
  box-sizing: border-box;
  float: left;
  display: none;
  opacity: 0;
}

.products-sub-nav-shotguns ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: 0.06rem;
}

.products-sub-nav-shotguns ul li {
  margin-bottom: 20px;
  padding: 0 30px 0 0;
  cursor: pointer;
  background-image: url('/wp-content/themes/fime/assets/img/fim-right-black.png');
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: right center;
  transition: all 0.25s ease;
}

.shotguns-sub {
  width: 350px;
  height: auto;
  margin-bottom: 20px;
  font-family: 'Open Sans', helvetica, arial;
}

.shotguns-sub-copy {
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  text-align: center;
  color: #333;
  padding: 10px 0;
  border: 1px solid #ddd;
  transition: background-color 0.25s ease;
}

.shotguns-sub:hover .shotguns-sub-copy {
  color: #fff;
  background-color: #47aeba;
  border: 1px solid #47aeba;
}

.products-sub-nav-shotguns ul li:hover { 
  padding-left: 5px;
}


/* ==================================
        03. Homepage 
=================================== */

#fim-hero {
  position: relative;
}

.slide-rpk {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/rpk-home-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;    
}

.slider {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #000;
}
.slide-fmar {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fmar/fm-ar-new-arrivals-v2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-delta {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-slide-rex-delta.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-a {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-slide-tc-2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-b {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-spare-parts.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-c {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-slide-c.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-d {
    width: 100%;
    height: 350px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-vepr-shotguns.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slide-e {
    width: 100%;
    height: 350px;
/*    background-image: url('/wp-content/themes/fime/assets/img/fim-spare-parts.jpg');*/
    background-image: url('/wp-content/themes/fime/assets/img/shot-show-banner-FIME-2020v2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width:600px) {
    .slide-e {
         background-image: url('/wp-content/themes/fime/assets/img/shot-show-banner-FIME-2020_600x.jpg');
    }
}
@media screen and (max-width:990px) and (min-width:601px) {
    .slide-e {
         background-image: url('/wp-content/themes/fime/assets/img/shot-show-banner-FIME-2020_850x.jpg');
    }
}
@media screen and (max-width:1200px) and (min-width:991px) {
    .slide-e {
         background-image: url('/wp-content/themes/fime/assets/img/shot-show-banner-FIME-2020_1200.jpg');
    }
}
@media screen and (min-width:1201px) {
    .slide-e {
         background-image: url('/wp-content/themes/fime/assets/img/shot-show-banner-FIME-2020v2.jpg');
    }
}
@media(min-width: 375px) { .slider, .slide-rpk, .slide-a, .slide-b, .slide-c, .slide-d, .slide-e, .slide-delta, .slide-fmar { height: 420px; } }
@media(min-width: 450px) { .slider, .slide-rpk, .slide-a, .slide-b, .slide-c, .slide-d, .slide-e, .slide-delta, .slide-fmar { height: 550px; } }
@media(min-width: 500px) { .slider, .slide-rpk, .slide-a, .slide-b, .slide-c, .slide-d, .slide-e, .slide-delta, .slide-fmar { height: 650px; } }
@media(min-width: 600px) { .slider, .slide-rpk, .slide-a, .slide-b, .slide-c, .slide-d, .slide-e, .slide-delta, .slide-fmar { height: 750px; } }

.dots-container {
  width: 100%;
  height: 50px;
  max-width: 1400px;
  margin: 0 auto;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  font-size: 0;
  z-index: 2;
}

.dots-container ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 45px;
}

.dots-container ul li {
  display: inline-block;
  margin: 0 7px;
}

.dots-container ul li button {
  width: 10px;
  height: 10px;
  line-height: 0;
  padding: 0;
  border-radius: 100%;
  background-color: #a8b0c4;
  border: none;
  cursor: pointer;
}

.dots-container ul li button:active,
.dots-container ul li button:focus {
  outline: none;
}

.slick-active button {
  background-color: #5cbcc7!important;
}

/* ===== Scroll Down Starts ==== */

.fim-scroll-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

.fim-scroll {
  position: relative;
  width: 100%;
  height: 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.scroll a span {
  position: absolute;
  top: 0;
  right: 30px;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  z-index: 3;
}

.scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: scrolldown 2s infinite;
  animation: scrolldown 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes scrolldown {
  0% { -webkit-transform: translate(0, 0); opacity: 0; }
  40% { opacity: 1; }
  80% { -webkit-transform: translate(0, 20px); opacity: 0; }
  100% { opacity: 0; }
}

@keyframes scrolldown {
  0% { transform: translate(0, 0); opacity: 0; }
  40% { opacity: 1; }
  80% { transform: translate(0, 20px); opacity: 0; }
  100% { opacity: 0; }
}

/* ===== Scroll Down Ends ==== */

/* ===== Slider Starts ===== */
/* 
.hero-container img:focus,
.slick-slide:focus {
	outline: none;
}

.slick-arrow {
	position: absolute;
}

ul.slick-dots {
	position: absolute;
	margin: 0;
	padding: 0;
}

.slick-active button {
	background-color: #eaa000!important;
}

ul.slick-dots button {
	background-color: #21759b;
	color: #fff;
	border: 0;
	border-radius: 0;
	margin-bottom: 10px;
	padding: 15px 15px 15px 25px;
	font-size: 1.4rem;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

ul.slick-dots button:focus {
	outline: none;
}

.dots-container {
	position: absolute;
	top: 200px;

} */

/* ===== Slider Ends ===== */

#fim-pods {
    width: 100%;
}

.pod {
    width: 100%;
    height: 200px;
    text-align: center;
    float: left;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

@media(min-width: 500px) { .pod { width: 33.33%; height: 300px; } }
@media(min-width: 500px) { .pod { width: 33.33%; height: 300px; } }

.pod-a { border-top: 10px solid #fff; border-right: 10px solid #fff; border-bottom: 5px solid #fff; border-left: 10px solid #fff; }
.pod-b { border-top: 5px solid #fff; border-right: 10px solid #fff; border-bottom: 5px solid #fff; border-left: 10px solid #fff; }
.pod-c { border-top: 5px solid #fff; border-right: 10px solid #fff; border-bottom: 5px solid #fff; border-left: 10px solid #fff; }

@media(min-width: 500px) {
  .pod-a { border-top: 10px solid #fff; border-right: 5px solid #fff; border-bottom: 10px solid #fff; border-left: 10px solid #fff; }
  .pod-b { border-top: 10px solid #fff; border-right: 5px solid #fff; border-bottom: 10px solid #fff; border-left: 5px solid #fff; }
  .pod-c { border-top: 10px solid #fff; border-right: 10px solid #fff; border-bottom: 10px solid #fff; border-left: 5px solid #fff; }
}

.pod img {
	height: 280px;
}

@media(min-width: 1500px) { .pod img { height: 320px; }}
@media(min-width: 1700px) { .pod img { height: 380px; }}

.pod figcaption {
  /* padding: 3em; bdk */
  height: 100%;
  width: 100%;
  position: absolute;
/*  top: 0;
  left: 0;*/
  bottom: 0;
  right: 0;
  box-sizing: border-box;
}

.pod figcaption::before,
.pod figcaption::after {
	position: absolute;
	content: '';
	opacity: 0;
}

.pod figcaption::before {
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.pod figcaption::after {
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.pod p {
	padding: 0.5em 0.5em 0 0.5em;
	text-transform: uppercase;
  text-align: right;
  color: #fff;
  font-weight: 600;
  font-size: 3rem;
  z-index: 2;
}

@media(min-width: 500px) {
    .pod p {
      padding: 3.2em 0em 0 0;
    }
}

@media(min-width: 957px) {
    .pod p {
      padding: 3.8em 0.3em 0 0;
    }
}

@media(min-width: 1024px) {
    .pod p {
      padding: 2.8em 0.8em 0 0;
    }
}

.pod .pod-dec {
  display: block;
  font-weight: 300;
  text-transform: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
  margin-top: 5px;
}

.pod img {
  width: auto;
}

.pod img,
.pod figcaption::before,
.pod figcaption::after,
.pod p {
	transition: opacity 1s, transform 1s;
}

.pod:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}

.pod:hover figcaption::before,
.pod:hover figcaption::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.pod:hover h2,
.pod:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pod:hover figcaption::after,
.pod:hover h2,
.pod:hover p,
.pod:hover img {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 50px;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #888;
  box-sizing: border-box;
  font-family: 'Open Sans', Helvetica, sans-serif
}

@media(min-width: 720px) {
  .about-container {
    padding: 120px 150px;
  }
}

.about-container h3 {
  color: #333;
  font-size: 2.3rem;
}

#fim-brand {
  width: 100%;
  height: auto;
  background-color: #000;
  color: #fff;
}

.brand-left {
  width: 100%;
  height: 300px;
  position: relative;
  z-index: 2;
  background-image: url('/wp-content/themes/fime/assets/img/fim-rex-brand.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  box-sizing: border-box;
  padding: 80px 0 0 0;
}

@media(min-width: 600px) {

  .brand-left {
    width: 100%;
    height: 500px;
    padding: 150px 0 0 0;
  }

}

@media(min-width: 768px) {

  .brand-left {
    width: 50%;
    height: 500px;
    float: left;
    padding: 150px 120px 0 0;
  }

}

.brand-right {
  width: 100%;
  height: 300px;
  position: relative;
  background-image: url('/wp-content/themes/fime/assets/img/fim-molot.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  box-sizing: border-box;
  padding: 80px 0 0 0;
}

@media(min-width: 600px) {

  .brand-right {
    width: 100%;
    height: 500px;
    padding: 150px 0 0 0;
  }

}

@media(min-width: 768px) {

  .brand-right {
    width: 50%;
    height: 500px;
    float: right;
    padding: 150px 0 0 120px;
  }

}

.brand-divider {
  width: 126px;
  height: 500px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-divider.png');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: 0;
  right: -60px;
  z-index: 2;
  display: none;
}

@media(min-width: 768px) {

  .brand-divider {
    display: block;
  }

}

.brand-cta-left {
  width: 100%;
  text-align: center;
}

@media(min-width: 768px) { .brand-cta-left { text-align: right; } }

.brand-cta-right {
  width: 100%;
  text-align: center;
}

@media(min-width: 768px) { .brand-cta-right { text-align: left; } }

#fim-brand h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

#fim-brand button {
  color: #fff;
  font-size: 1.4rem;
  background-color: #47aeba;
  border: 0;
  padding: 15px 80px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-appearance: none;
}
button,
#fim-brand button:hover {
    cursor: pointer;
}

#fim-brand button:focus,
#fim-brand button:active {
  outline: none;
}

#fim-subscribe {
  padding: 100px 50px 50px 50px;
  box-sizing: border-box;
  text-align: center;
  color: #999;
  font-size: 1.4rem;
  font-family: 'Open Sans', Helvetica, sans-serif;
}

/*@media(min-width: 1000px) {

  #fim-subscribe {
    padding: 100px 50px 130px 50px;
  }  

}*/

#fim-subscribe h3 {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  font-weight: 400;
  color: #eee;
}

#fim-subscribe p {
  margin-bottom: 40px;
}

#fim-subscribe input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  border: 0;
  box-sizing: border-box;
}

@media(min-width: 650px) {

  #fim-subscribe input[type="email"] {
    width: 350px;
    padding: 12px 20px;
    border: 0;
    box-sizing: content-box;
  }
  
}

#fim-subscribe input[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  margin-top: 20px;
  margin-left: 0;
  border: 0;
  background-color: #2e313a;
  color: #fff;
  cursor: pointer;
}

@media(min-width: 650px) {

  #fim-subscribe input[type="submit"] {
    width: 150px;
    padding: 12px 20px;
    margin-top: 0;
    margin-left: -1px;
    border: 0;
    background-color: #2e313a;
    color: #fff;
    cursor: pointer;
  }
  
}

#fim-subscribe input:focus,
#fim-subscribe input:active {
  outline: none;
}

#fim-instagram {
  background-color: #000;
  border-bottom: 1px solid #2e313a;
}

#fim-instagram h3 {
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 0.5rem;
  padding-bottom: 50px;
  font-weight: 400;
  color: #eee;
  margin: 0;
  font-family: 'Open Sans', helvetica, sans-serif;
}

.instagram-container {
  padding: 90px 0;
}

/* ==================================
        04. Internal 
=================================== */

.fim-hero-wrapper {
  overflow: hidden;
  background-color: #000;
  background-image: url('/wp-content/themes/fime/assets/img/fim-slides-background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fim-hero-wrapper-fcg {
  overflow: hidden;
  background-color: #000;
  background-image: url('/wp-content/themes/fime/assets/img/fim_fcg_header.jpg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center; 
  height: 350px;
}

@media screen and (max-width: 550px){
  .fim-hero-wrapper-fcg {
    height: 150px;
    background-size: contain;
  }
}

.fcg-main-slide {
  max-width: 520px;
}

/** ALPHA **/
.slide-alpha-black {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-alpha-black.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.parts-and-accessories {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fime-parts-and-accessories.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.flex-pna {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.pna-header {
  line-height: 44px;
  font-family: 'Open Sans Condensed', sans-serif;
}

.flex-pna-item {
  flex: 1;
}

.pna-item-rex {
  background: url('/wp-content/themes/fime/assets/img/fim-pna-rex.png') no-repeat center;
  background-size: contain;
  width: 190px;
  height: 100px;
}

.and-copy {
  padding-top: 35px;
}

.pna-item-molot {
  background: url('/wp-content/themes/fime/assets/img/fim-pna-molot.png') no-repeat center;
  background-size: contain;
  width: 190px;
  height: 100px;
}

.slide-alpha-white {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-alpha-white.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-alpha-red {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-alpha-red.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-alpha-blue {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-alpha-blue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** ZERO S **/
.slide-zero-s-black {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-black.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-black-hogue {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-black-hogue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-black-mascus {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-black-mascus.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-nickel {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-nickel.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-nickelslide {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-nickelslide.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-grey {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-grey.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-fde {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-fde.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-fde-hogue {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-fde-hogue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-fde-mascus {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-fde-mascus.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.slide-zero-s-od {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-s-od.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** ZERO CP **/
.slide-zero-cp-black {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-black.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-black-hogue {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-black-hogue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-black-mascus {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-black-mascus.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-grey {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-grey.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-fde {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-fde.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-fde-hogue {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-fde-hogue.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-fde-mascus {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-fde-mascus.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-nickel {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-nickel.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-nickelslide {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-nickelslide.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-cp-od {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-cp-od.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** ZERO T **/
.slide-zero-t-black {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-t-black.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-t-fde {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-t-fde.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-t-grey {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-t-grey.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** ZERO TC **/
.slide-zero-tc-black {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-tc-black.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-tc-fde {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-tc-fde.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.slide-zero-tc-grey {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-zero-tc-grey.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/** SHOTGUN VEPR **/
.slide-shotgun-vepr {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-shotgun.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/** RIFLE VEPR **/
.slide-rifle-vepr {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-rifle.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/** RIFLE VEPR **/
.slide-retailer {
  width: 100%;
  height: 350px !important;
  background-image: url('/wp-content/themes/fime/assets/img/slide-retailer.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.slide-distributor {
  width: 100%;
  height: 350px !important;
  background-image: url('/wp-content/themes/fime/assets/img/slide-distributor.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/** RIFLE FMAK **/
.slide-rifle-fmak {
  width: 100%;
  height: 350px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-fmak.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/** RIFLE FMAK **/
.slide-rifle-rpk {
  width: 100%;
  /*height: 600px;*/
  background-image: url('/wp-content/themes/fime/assets/img/FM-RPK47-33_1200.png');
  background-repeat: no-repeat;
  /*background-size: cover;*/
  background-position: top center;
}

@media(min-width: 375px) { .slider, #showcase { height: 420px; } }
@media(min-width: 450px) { .slider, #showcase { height: 550px; } }
@media(min-width: 500px) { .slider, #showcase { height: 650px; } }
@media(min-width: 600px) { .slider, #showcase { height: 750px; } }

.fim-features-container {
  width: 100%;
  height: auto;
  padding: 20px 0;
  background-color: #000;
}

/*@media(min-width: 1000px) {

  .fim-features-container {
    padding: 150px 0;
  }

}*/

.fim-features {
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #ccc;
  box-sizing: border-box;
  font-family: 'Open Sans', Helvetica, sans-serif;
}

@media(min-width: 1000px) {

  .fim-features {
    padding: 0 150px;
  }

}

.fim-features h3 {
  font-size: 4rem;
  font-weight: 300;
  color: #ddd;
  line-height: 4.5rem;
}

.fim-options-container {
  width: 100%;
  position: absolute;
/*  top: 15px;
  bottom: auto;*/
  top: auto;
  bottom: -25px;
}

@media(min-width: 600px) {
  .fim-options-container {
    width: 100%;
    position: absolute;
    top: auto;
    bottom: 0px;
  }
}

.fim-options {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  box-sizing: border-box;
}

@media(min-width: 600px) {

  .fim-options {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 50px;
    box-sizing: border-box;
  }

}

.fim-options select {
  width: 150px;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #888;
  border-radius: 0;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.6rem;
  margin-right: 15px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
  display: block;
  margin-top: 5px;
}

@media(min-width: 330px) {

  .fim-options select {
    width: 220px;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #888;
    border-radius: 0;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.6rem;
    margin-right: 0;
    background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    display: block;
    margin-top: 10px;
  }

}

@media(min-width: 600px) {

  .fim-options select {
    width: 220px;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #888;
    border-radius: 0;
    color: #fff;
    padding: 10px 30px;
    font-size: 1.6rem;
    margin-right: 15px;
    background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    display: inline-block;
    margin-bottom: 0;
  }

}

.fim-options select:focus,
.fim-options select:active {
  outline: none;
}

.fim-options option {
  background-color: #000;
  -webkit-appearance: none;
  appearance: none;
}

.hideme,
#zero-s-option-color,
#zero-cp-option-color,
#zero-t-option-color,
#zero-tc-option-color {
  display: none;
}

.option-display {
  display: inline-block!important;
}

.spec-container {
  width: 100%;
  background-color: #fff;
  padding: 50px 0;
}

@media(min-width: 1000px) {

  .spec-container {
    width: 100%;
    background-color: #fff;
    padding: 100px 0 150px 0;
  }

}

.spec-option-tab-container {
  width: 100%;
  height: auto;
  background-color: #eee;
}

.spec-option-tab-wrapper {
  padding: 0 0 0 0;
  box-sizing: border-box;
  font-family: 'Open Sans', helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

@media(min-width: 1025px) {

  .spec-option-tab-wrapper {
    max-width: 1400px;
    padding: 0 50px 0 50px;
    margin: 0 auto;
  }

}

.spec-option-header {
  padding-top: 45px;
  width: 100%;
  float: none;
  text-align: center;
  padding-bottom: 45px;
}

@media(min-width: 1025px) {

  .spec-option-header {
    padding-top: 45px;
    width: 50%;
    float: left;
    text-align: left;
    padding-bottom: 0;
  }

}

.spec-option-tab {
  width: 100%;
  float: none;
  height: 100%;
}

@media(min-width: 1025px) {

  .spec-option-tab {
    width: 50%;
    float: right;
    height: 100%;
  }

}

.tabs {
  width: 33.33%;
  height: 100px;
  box-sizing: border-box;
  padding: 45px 0 0 0;
  text-align: center;
  float: left;
  cursor: pointer;
}

@media(min-width: 1025px) {

  .tabs {
    width: 150px;
    height: 100px;
    box-sizing: border-box;
    padding: 45px 0 0 0;
    text-align: center;
    float: right;
    cursor: pointer;
  }

}

.tabs:hover {
  background-color: #f6f6f6;
}

.spec-option-tab .active {
  background-color: #fff;
}

.tabcontent {
  display: none;
}

.spec {
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  margin: 0 auto;
  box-sizing: border-box;
}

.spec h3 {
  font-size: 4rem;
  font-weight: 300;
  text-transform: uppercase;
}

.spec-header {
  width: 100%;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 600;
  float: none;
}

@media(min-width: 500px) {

  .spec-header {
    width: 180px;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-weight: 600;
    float: left;
  }

}

.spec-desc {
  font-size: 1.6rem;
  float: none;
  margin-top: 10px;
}

@media(min-width: 500px) {

  .spec-desc {
    font-size: 1.6rem;
    float: left;
    margin-top: 0;
  }

}

.spec-left {
  width: 100%;
  padding-right: 0;
  box-sizing: border-box;
  float: none;
}

@media(min-width: 1000px) {

  .spec-left {
    width: 50%;
    padding-right: 30px;
    box-sizing: border-box;
    float: left;
  }

}

.spec-head h3 {
  display: inline-block;
  margin-right: 30px;
}

.spec-head select {
  width: 220px;
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #aaa;
  border-radius: 0;
  color: #000;
  padding: 8px 20px;
  font-size: 1.6rem;
  margin-right: 15px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-down-black.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px;
  display: inline-block;
  margin-bottom: 0;
  position: relative;
  top: -9px;
}
body.page-template-page-basic-page-light .spec-head select,
body.page-template-page-basic-page-dark .spec-head select{
  background-image: url('/wp-content/themes/fime/assets/img/fim-down.png');
}

.spec-head select:focus, 
.spec-head select:active {
  outline: none;
}

.spec-row {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.gallery-right {
  width: 100%;
  float: none;
  padding-top: 50px;
  box-sizing: border-box;
  text-align: center;
}

@media(min-width: 1000px) {

  .gallery-right {
    width: 50%;
    float: right;
    padding-top: 50px;
    box-sizing: border-box;
    text-align: center;
  }

}

.gallery-main {
  width: 100%;
  height: auto;
}

.gallery-thumb {
  width: 25%;
  float: left;
}

.gallery-copy {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 30px;
}

.dist-button {
  border: 1px solid #666;
  background-color: transparent;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.6rem;
  margin-top: 30px;
  max-width: 350px;
  width: 100%;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.dist-button:focus,
.dist-button:active {
  outline: none;
}

.data-table {
  width: 100%;
  margin-bottom: 50px;
  font-size: 1.5rem;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

.data-table thead {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}

.data-table thead th {
  padding: 10px 0;
}

.data-table tbody td {
  padding: 10px 0;
}

/* Distributors Starts */

@keyframes mapload {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.full-width {
	width: 100%;/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#51515e+0,19181d+100 */
  background: #51515e; /* Old browsers */
  background: -moz-radial-gradient(center, ellipse cover, #51515e 0%, #19181d 100%); /* FF3.6-15 */
  background: -webkit-radial-gradient(center, ellipse cover, #51515e 0%,#19181d 100%); /* Chrome10-25,Safari5.1-6 */
  background: radial-gradient(ellipse at center, #51515e 0%,#19181d 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#51515e', endColorstr='#19181d',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  padding-top: 100px;
}
.map-container {
	width: 1100px;
	height: 680px;
  background: transparent;
	margin: 20px auto;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.map {
	width: 80%;
	margin: 50px auto;
} 
.state {
	position: absolute;
	transition: all .15s ease-in-out;
	animation: mapload .5s ease-in;
}
.state:hover {
	cursor: pointer;
}
.state-text {
	position: absolute;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	border-radius: 4px;
	padding: 15px 8px;
	background: #fff;
	color: #001;
	box-shadow: 0px 3px 3px rgba(0,0,0,0.5);
	display: none;
	opacity: 0;
	z-index: 9999;
	transition: opacity .2s ease-in-out;
}
.state-text a {
	color: #001;
}
.state-text li {
	padding: 3px 10px;
	list-style: none;
}
.state-text li:nth-child(1){
	position: absolute;
	top: -10px;
	right: 10px;
	padding: 3px 7px;
	border: 1px solid #eee;
	background: #fff;
	cursor: pointer;
	border-radius: 50%;
}
.state-text img {
  width: 60%;
}
.nevada {
	left: 220px;
	top: 185px;
	width: 11%;
}
.nevada-text {
	top: 15px;
	left: 25px;
}
.texas {
	width: 23%;
	top: 305px;
	left: 405px;
}
.texas-text {
    top: 275px;
    left: 50px;
}
.alabama {
    width: 9%;
    top: 326px;
    right: 303px;
}
.alabama-text {
    top: 405px;
    right: 100px;
}
.louisiana {
    width: 11%;
    top: 367px;
    right: 369px;
}
.louisiana-text {
    top: 245px;
    right: 100px;
}
.illinois {
    width: 9%;
    top: 178px;
    right: 363px;
}
.illinois-text {
    top: 15px;
    right: 100px;
}
.minnesota {
    width: 13%;
    top: 55px;
    right: 406px;
}
.minnesota-text {
    top: 10px;
    right: 370px;
}
.indiana {
    width: 8%;
    top: 195px;
    right: 321px;
}
.indiana-text {
    top: 70px;
    right: 410px;
}
.distribution-container-wrapper {
  padding: 50px 0;
}
.distribution-container {
	display: flex;
	margin: 40px auto;
	max-width: 1200px;
}
.distributor {
	width: 500px;
  padding: 0px 15px;
  font-size: 1.3rem;
}
.distributor ul {
	list-style: none;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	min-width: 250px;
	margin: 10px auto;
	padding: 0px;
}
.distributor ul li {
  margin: 10px 0;
}
.distributor ul li a {
	color: #001;
}
.distributor-image {
  min-height: 80px;
}
.distributor-name {
  font-weight: 600;
  font-size: 1.6rem;
}
.distributor-email a {
  color: #47aeba!important;
}
.distribution-intro {
	margin: 30px auto;
	max-width: 800px;
	text-align: center;
	padding: 20px;
}
.distributor img {
  width: 45%;
}
@media screen and (max-width: 1150px){
	.map-container {
		display: none;
	}
}
@media screen and (max-width: 600px){
	.distribution-container {
		display: block;
	}
	.distributor {
		padding: 20px;
		max-width: 300px;
		margin: 0 auto;
	}
}

.distribution-header-container {
  width: 100%;
  padding: 100px 0;
  background-color: #000;
  color: #eee;
  margin-top: -20px;

}
.distribution-header {
  width: 100%;
  max-width: 1400px;
  padding: 0 30px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  font-family: 'Open Sans', Helvetica, sans-serif;
}

.distribution-header h3 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 2.4rem;
  letter-spacing: 1rem;
}

.distribution-header p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  box-sizing: border-box;
  padding: 0 30px;
} 

@media(min-width: 600px) {

  .distribution-header p {
    padding: 0 80px;
  }   

}

/* Distributors Ends */

/* ==================================
        05. Footer
=================================== */

#fim-footer {
  width: 100%;
  height: auto;
  background-color: #000;
  border-top: 1px solid #2e313a;
}

@media(min-width: 1000px) {

  #fim-footer {
    height: auto; /* 700px; */
  }  

}

#footer-column-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #aaa;
}

.footer-column {
  width: 100%;
  float: none;
  box-sizing: border-box;
  padding: 30px 50px;
}

@media(min-width: 1000px) {

  .footer-column {
    width: 25%;
    float: left;
    box-sizing: border-box;
    padding: 50px;
  }

}

.footer-column a {
  color: #fff;
  transition: color 0.5s ease;
}

.footer-column a:hover {
  color: #40c8d8;
}

.footer-column p {
  font-size: 1.5rem;
}

.footer-column h3 {
  font-size: 1.6rem; 
  margin: 0;
}

.column-a {
  padding-top: 35px;
  text-align: center;
}

@media(min-width: 1000px) {

  .column-a {
    padding-top: 35px;
    text-align: left;
  }

}

.column-a img {
  width: 80%;
  max-width: 200px;
}

@media(min-width: 1000px) {
  .column-a img {
    width: 80%;
  }
}

.column-b {
  text-align: center;
}

@media(min-width: 1000px) {

  .column-b {
    text-align: left;
  }

}

.column-b ul {
  padding: 0;
  margin-top: 20px;
  list-style: none;
}

.column-b ul li {
  display: inline-block;
  font-size: 2rem;
  margin: 10px 30px;
  cursor: pointer;
}

@media(min-width: 1000px) {

  .column-b ul li {
    display: inline-block;
    font-size: 2rem;
    margin: 0;
    margin-right: 15px;
    cursor: pointer;
  }

}

.column-c {
  width: 100%;
  text-align: center;
  display: none;
}

@media(min-width: 1000px) {

  .column-c {
    width: 20%;
    text-align: left;
    display: block;
  }

}

.column-c ul {
  padding: 0;
  list-style-type: none;
}

.column-c ul li {
  font-size: 1.6rem;
  padding: 5px 0;
}

.column-d {
  width: 100%;
  text-align: center;
}

@media(min-width: 1000px) {

  .column-d {
    width: 30%;
    text-align: left;
  }

}

/**Start CSS for Registration Form**/
.gform_wrapper form {
    font-size: 2em;
    padding: 30px;
    max-width: 800px !important;
    font-family: Arial, sans-serif;
}
.gform_wrapper .gf_progressbar:after, .gform_wrapper .gf_progressbar, .gform_wrapper .gf_progressbar_percentage {
    border-radius: 0px !important;
}
.gform_wrapper .gf_progressbar {
  padding: 0px !important;
}
.gform_wrapper .gf_progressbar_percentage span {
  line-height: 1.5 !important;
}
.gform_wrapper .gform_page_footer .button.gform_button, .gform_wrapper .gform_page_footer .button.gform_next_button {
    margin-right: 10px;
    padding: 10px 50px;
    background: #ff9000;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    cursor: pointer;
}
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
    margin: 0px !important;
    font-size: .7em !important;
    font-weight: bold;
    text-transform: uppercase;
}
.gform_wrapper div.validation_error, .gform_wrapper .gform_page_footer {
  max-width: 725px !important;
}
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="image"], .gform_wrapper .gform_footer input[type="submit"] {
    display: block !important;
}
/**End CSS for Registration Form**/

.fim-hero-reg-container {
  width: 100%;
  height: 200px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-reg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media(min-width: 1000px) {
  .fim-hero-reg-container {
    width: 100%;
    height: 500px;
  }
}

.about-hero-container {
  max-height: 750px;
  overflow: hidden;
}

#fim-about-video {
  width: 100%;
  display: block;
}

#fim-about .spec-description {
  padding: 0px 40px;
}

.about-hero-header {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  padding: 300px 0 0 0;
}

.about-hero-header-container {
  display: none;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 100px;
}

@media(min-width: 1000px) {

  .about-hero-header-container {
    display: block;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 100px;
  }

}

.about-hero-header h3 {
  font-size: 4rem;
  font-weight: 300;
  color: #ddd;
  font-family: 'Open Sans', helvetica, sans-serif;
}

.about-hero-header p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #fff;
  font-family: 'Open Sans', helvetica, sans-serif;
}

.about-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.4;
  z-index: 1;
}

.fim-partner-left {
  width: 100%;
  height: 60px;
  float: none;
  font-size: 2.4rem;
  letter-spacing: 0.25rem;
  text-align: center;
  padding-right: 0;
  box-sizing: border-box;
}

@media(min-width: 768px) {
  .fim-partner-left {
    width: 15%;
    height: 80px;
    float: left;
    text-align: left;
    padding-right: 50px;
    box-sizing: border-box;
  }
}

.fim-partner-right {
  width: 100%;
  height: auto;
  float: none;
  font-size: 1.3rem;
  line-height: 2rem;
  text-align: center;
  padding-left: 0;
  padding-top: 40px;
  border-top: 1px solid #ddd;
  border-left: none;
  box-sizing: border-box;
}

@media(min-width: 768px) {
  .fim-partner-right {
    width: 85%;
    float: right;
    text-align: left;
    padding-left: 50px;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
  }
}

.fim-partner-container > div {
  margin-bottom: 80px;
}

.fim-past {
  width: 33.33%;
  height: 70px;
  padding-top: 25px;
  line-height: 1.2;
  float: left;
  font-size: 1.3rem;
  border: 1px solid #fff;
  box-sizing: border-box;
  background-color: #f6f6f6;
}

@media(min-width: 600px) {
  .fim-past {
    width: 33.33%;
    height: 130px;
    padding-top: 50px;
    float: left;
    font-size: 1.9rem;
    border: 1px solid #fff;
    box-sizing: border-box;
    background-color: #f6f6f6;
  }
}

.fim-past.active {
  background-color: #fff;
}

.fim-past-desc h3 {
  font-weight: 600!important;
  font-size: 2rem;
}

.fim-partner-past-container {
  margin-top: 50px;
  padding-bottom: 70px;
  box-sizing: border-box;
}

#fim-partnership {
  width: 100%;
  height: auto;
  padding: 80px 0 150px 0;
  background-color: #fff;
}

#fim-partnership h3  {
  font-weight: 300;
}

div.basic-page,
.fim-partnership-container {
  width: 100%;
  max-width: 1400px;
  padding: 0 50px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #2e313a;
  box-sizing: border-box;
  font-family: 'Open Sans', Helvetica, sans-serif;
}
@media (min-width: 1000px) {
   div.basic-page, 
  .fim-partnership-container {
      padding: 0 150px;
  }
  /*  50% for the 4 FM-AR SKUs   **/
  body.page-template-page-fmar-php .fim-product-list {
      width:50%;
  }
}

.fim-product-container {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.6rem;
  box-sizing: border-box;
}

.fim-product-list {
  width: 100%;
  height: auto;
  float: left;
  box-sizing: border-box;
  padding: 70px 60px;
  border-bottom: 1px solid #ddd;
  color: #2e313a;
}
@media(min-width: 670px) {
  .fim-product-list {
    width: 50%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 120px 60px;
    border-bottom: 1px solid #ddd;
    color: #2e313a;
  }
}
@media(min-width: 1000px) {
  .fim-product-list {
    width: 33.33%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 120px 60px;
    border-bottom: 1px solid #ddd;
  }
}

.fim-product-list:nth-child(1) {
  border-right: 1px solid #ddd;
}
.fim-product-list:nth-child(2) {
  border-right: 0;
}
.fim-product-list:nth-child(3) {
  border-right: 1px solid #ddd;
}
.fim-product-list:nth-child(4) {
  border-right: 0;
}
.fim-product-list:nth-child(5) {
  border-right: 1px solid #ddd;
}
.fim-product-list:nth-child(6) {
  border-right: 0;
}
.fim-product-list:nth-child(7) {
  border-right: 1px solid #ddd;
}
.fim-product-list:nth-child(8) {
  border-right: 0;
}
.fim-product-list:nth-child(9) {
  border-right: 1px solid #ddd;
}

@media(min-width: 1000px) {
  .fim-product-list:nth-child(1) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(2) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(3) {
    border-right: 0;
  }
  .fim-product-list:nth-child(4) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(5) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(6) {
    border-right: 0;
  }
  .fim-product-list:nth-child(7) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(8) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(9) {
    border-right: 0;
  }
  .fim-product-list:nth-child(10) {
    border-right: 1px solid #ddd;
  }
  .fim-product-list:nth-child(11) {
    border-right: 1px solid #ddd;
  }
}

.fim-product-list-image img {
  display: block;
}

.fim-product-list-name {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
}

.fim-product-list-button {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.fim-product-list-button button {
  width: 100%;
  max-width: 250px;
  border-radius: 0;
  -webkit-appearance: none;
  border: 1px solid #ccc;
  background-color: transparent;
  padding: 15px 40px; 
  font-size: 1.4rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-family: 'Open Sans', Helvetica, sans-serif;
  transition: all 0.25s ease;
}

.fim-product-list-button button:active,
.fim-product-list-button button:focus {
  outline: none;
}

.fim-product-list:hover > .fim-product-list-button > button {
  background-color: #47aeba;
  color: #fff;
  border: 1px solid #47aeba;
}

#fim-product-gallery {
  padding: 20px 0 0 0;
}

.goback {
  margin-top: 50px;
  font-size: 1.8rem;
}

.view-more {
  width: 100%;
  text-align: center;
  padding: 50px 0;
  font-size: 1.4rem;
  letter-spacing: 0.25rem;
  font-family: 'Open Sans', Helvetica, sans-serif;
  text-transform: uppercase;
  background-color: #f7f7f7;
}

.view-more a {
  color: #2e313a;
}

/* MEDIA */

.fim-header-media {
  width: 100%;
  height: 400px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-media.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
}

.fim-header-media h1 {
  width: 100%;
  max-width: 1400px;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 220px 30px 10px 30px;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5rem;
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
}

.archive-description {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 30px;
  font-size: 1.4rem;
}

#primary {
  width: 100%;
  float: none;
  box-sizing: border-box;
  padding: 0 0 0 0;
}

@media(min-width: 1000px) {

  #primary {
    width: 70%;
    float: left;
    box-sizing: border-box;
    padding: 0 50px 0 0;
  }

}

#primary .entry-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

#secondary {
  width: 100%;
  float: none;
}

@media(min-width: 1000px) {

  #secondary {
    width: 30%;
    float: right;
  }

}

#secondary ul {
  padding: 0;
  list-style-type: none;
}

#secondary ul li {
  padding: 5px 0;
  font-weight: 600;
  font-size: 1.4rem;
}

#secondary ul li .post-date {
  display: inline-block;
  margin: 0 0 0 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}

.fim-media-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 30px;
  box-sizing: border-box;
  font-size: 16px;
}

.fim-media-wrapper img {
  width: inherit;
  max-width: 100%;
  height: auto;
}

.type-post {
  padding: 0 0 80px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 70px;
}

.entry-footer span {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  border-right: 1px solid #eee;
}

.entry-content {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.comment-form-comment label {
  display: block;
}

.comment-form-comment textarea {
  width: 100%;
}

/* ==================================
        06. Contact
=================================== */

#fim-hero-contact {
  position: relative;
}

.contact-header {
  height: 400px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-hero-contact.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
}

.contact-header h3 {
  width: 100%;
  max-width: 1400px;
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 220px 30px 10px 150px;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5rem;
  font-weight: 100;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}

.fim-contact-container {
  max-width: 1400px;
  padding: 100px 150px;
  margin: 0 auto;
  box-sizing: border-box;
}

.fim-contact {
  float: left;
  width: 65%;
}

.fim-address {
  float: right;
  width: 25%;
  font-size: 1.5rem;
  line-height: 2.2rem;
}

.fim-address p {
  margin: 0;
}

#wpforms-submit-147 {
    font-size: 1.5em;
    font-weight: bold;
  }

@media screen and (max-width: 840px){
  .fim-contact, .fim-address {
    float: none;
  }
  .fim-contact, .fim-address {
    width: 100%;
  }
  .fim-contact-container {
    padding: 100px 40px;
  }
}

/*--------------------------------------------------------------
07. Pistol
--------------------------------------------------------------*/

.fim-pistol-container {
  width: 100%;
  height: auto;
}

.delta {
  width: 100%;
  background-color: #000;
  box-sizing: border-box;
  border-bottom: 1px solid #2e313a;
  height: 600px;
  padding: 130px 0 0 0;
  text-align: center;
}
@media(max-width: 500px) {
  .delta {
    height:500px;
  }
}
.delta img {
  width:auto!important;
  max-width: 100%;
}

.delta-container {
  width:100%;
  margin: 0 auto;
}

.delta-logo {
  width:300px;
  max-width:100%;
  margin:-250px auto;
}
.delta-logo img {
  max-width:100%;
}

.alpha {
  width: 100%;
  background-image: url('/wp-content/themes/fime/assets/img/fim-pistol-alpha-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
  float: left;
  box-sizing: border-box;
  border-bottom: 1px solid #2e313a;
  height: 400px;
  padding: 130px 0 0 0;
  text-align: center;
}

@media(min-width: 1000px) {

  .alpha {
    width: 50%;
    height: 900px;
    padding: 400px 0 0 0;
    border-right: 1px solid #2e313a;
    border-bottom: none;
  }

}

.alpha-container, .zero1-container {
  width: 300px;
  margin: 0 auto;
}

.delta-copy h3, .alpha-copy h3, .zero1-copy h3 {
  font-size: 1.75rem;
  font-weight: 300;
  color: #ddd;
  margin: 0;
  margin-top: 20px;
  font-family: 'Open Sans', helvetica, sans-serif;
}

.zero1 {
  width: 100%;
  background-image: url('/wp-content/themes/fime/assets/img/fim-pistol-zero-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
  float: right;
  box-sizing: border-box;
  height: 400px;
  padding: 130px 0 0 0;
  text-align: center;
}

@media(min-width: 1000px) {
  .zero1 {
    width: 50%;
    height: 900px;
    padding: 400px 0 0 0;
  }
}

.pistol-button {
  padding: 15px 50px;
  background-color: #47aeba;
  color: #fff;
  border: none;
  margin: 35px 0 0 0;
  font-family: 'Open Sans', helvetica, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  -webkit-appearance: none;
}

.pistol-button:active,
.pistol-button:focus {
  outline: none;
}

#gform_confirmation_message_2, .gform_confirmation_message_2 .gform_confirmation_message {
  font-size: 3em;
  text-align: center;
}

.vepr-rifle {
  width: 100%;
  height: 400px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-rifle-vepr-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
  float: left;
  box-sizing: border-box;
  border-bottom: 1px solid #2e313a;
  padding: 130px 0 0 0;
  text-align: center;
}

@media(min-width: 1000px) {

  .vepr-rifle {
    width: 50%;
    height: 900px;
    padding: 400px 0 0 0;
    border-right: 1px solid #2e313a;
    border-bottom: none;
  }

}

.vepr-fmak {
  width: 100%;
  height: 400px;
  background-image: url('/wp-content/themes/fime/assets/img/fim-rifle-fmak-bg.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000;
  float: left;
  box-sizing: border-box;
  padding: 130px 0 0 0;
  text-align: center;
}

@media(min-width: 1000px) {

  .vepr-fmak {
    width: 50%;
    height: 900px;
    padding: 400px 0 0 0;
  }

}

#fim-parts-and-accessories, #stocking-dealer {
  font-size: 1.5em;
  background: #000;
  color: #fff;
}

#fim-fcg-page {
  font-size: 1.5em;
  background: #001;
  color: #fff;
}

.full-width-fcg {
  width: 100%;
  background: #fff;
}

.fcg-video {
  max-width: 1000px;
  padding: 40px;
  line-height: 1.5em;
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  color: #001;
  text-align: center;
  margin: 0 auto;
}

.fcg-video p {
  padding: 25px 0px;
}

.flex-pna-two, .flex-fcg-two {
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  padding: 40px 0px;
}

.flex-fcg-three {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px;
  line-height: 1.5em;
  font-family: 'Open Sans', sans-serif;
}

.flex-fcg-two-item {
  padding: 0px 30px;
}

.flex-fcg-three .flex-item {
  padding: 0px 15px;
}

@media screen and (max-width: 800px){
  .flex-fcg-two {
    display: block;
  }
  .fcg-comparison {
    display: block;
  }
  .fcg-table {
    margin: 0 auto;
  }
}

.flex-fcg-two h2 {
  margin-top: 0;
  padding-top: 0;
}

.fcg-table {
  padding-bottom: 20px;
}

.fcg-comparison .flex-item {
  margin: 0 auto;
}

.fcg-comparison .flex-item img {
  max-width: 400px;
  margin: 0 auto;
}

.fcg-table tr td {
  padding-right: 50px;
  font-size: 14px;
  text-align: left !important;
  padding-bottom: 10px;
}

.flex-pna-two-item h3, .flex-fcg-two-item h3 {
    font-size: 2.5em;
    padding-top: 0;
    margin-top: 0;
}

.flex-pna-two-item p, .flex-fcg-two-item p {
    max-width: 450px;
    line-height: 1.5em;
    padding-right: 20px;
    font-family: 'Open Sans', sans-serif;
}

.flex-pna-two-item ul, .flex-fcg-two-item ul {
    list-style: none;
    max-width: 390px;
    margin: 0;
    padding: 0;
}
.flex-pna-two-item ul li, .flex-fcg-two-item ul li {
    display: inline-block;
    margin: 0;
}
.flex-pna-two-item ul li:hover, .flex-fcg-two-item ul li:hover {
    cursor: pointer;
}
.flex-pna-two-item:nth-child(1) {
    padding: 0px 40px;
}
.flex-pna-three {
    display: flex;
    max-width: 490px;
}
.flex-pna-two-item p small, .flex-fcg-two-item p small {
    line-height: 12px;
}

.flex-pna-two-item .rex-logo, .flex-fcg-two-item .rex-logo {
    width: 80px;
}

.flex-pna-three div, .flex-fcg-slider div {
    padding-right: 10px;
    padding-top: 5px;
}
.flex-pna-three div img, .flex-fcg-slider div img {
    border: 1px solid #000;
    transition: all .25s ease-in-out;
}
.flex-pna-three div img:hover, .flex-fcg-slider div img:hover {
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #666;
}

.flex-pna-three div:nth-child(4), .flex-fcg-three div:nth-child(4){
    padding-right: 0px;
}

.fcg-comparison {
  padding: 50px 0px;
  text-align: center;
  margin: 0 auto;
}

.full-width-banner-rex, .full-width-banner-sbs, .full-width-banner-pistol {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px;
    height: 200px;
    font-size: 1em;
    text-align: center;
}
.full-width-banner-sbs a {
    text-decoration: underline;
    color: #fff;
}
.full-width-banner-rex {
    background: url('/wp-content/themes/fime/assets/img/rex-alpha-grips-bg.jpg') no-repeat right #000;
    background-size: contain;
    margin-bottom: 20px;
}
.full-width-banner-pistol {
    background: url('/wp-content/themes/fime/assets/img/fim-sdp-pistols.jpg') no-repeat center #000;
    background-size: cover;
    margin-bottom: 20px;
}
.full-width-banner-sbs {
    background: url('/wp-content/themes/fime/assets/img/fim-sdp-left-sbs-2.jpg') no-repeat center #000;
    background-size: cover;
}
@media screen and (max-width: 1050px){
  .full-width-banner-rex {
    background: none;
  }
}
.full-width-banner-rex h3, .full-width-banner-molot h3, .full-width-banner-sbs h3, .full-width-banner-pistol h3 {
    font-family: 'Open Sans Condensed', sans-serif;
    margin-top: 15px;
    font-size: 2.5em;
}
.full-width-banner-rex p, .full-width-banner-sbs p, .full-width-banner-pistol p {
    font-size: 1.5em;
}
.full-width-banner-rex button {
    background: none;
    font-size: 1em;
    padding: 10px 25px;
    border: 1px solid #fff;
    font-weight: bold;
    color: #fff;
}
.full-width-banner-molot {
    background: url('/wp-content/themes/fime/assets/img/pna-molot.png') no-repeat left;
    background-size: contain;
    border: 1px solid #333;
    max-width: 940px;
    margin: 0 auto;
    padding: 30px;
    height: 300px;
}
.pna-molot-copy {
    float: right;
    margin-right: 25px;
    text-align: left;
    max-width: 450px;
}

.full-width-banner-molot p {
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
}

.pna-molot-logo {
    width: 190px;
}

.full-width-container-grey {
    background: #222;
}

@media screen and (max-width: 800px){
    .full-width-banner-rex {
        background-size: cover;
        text-shadow: 1px 1px 0px #001;
        height: auto;
    }
    .full-width-banner-molot {
        background: none;
        height: auto;
        padding: 20px 40px;
    }
    .pna-molot-copy {
        float: none;
        text-align: center;
        margin: 0 auto;
    }
    .flex-fcg-two-item p {
      max-width: 100%;
    }
}

@media screen and (max-width:580px){
    .flex-pna-two {
        display: block;
    }
    .flex-pna-two-item:nth-child(2), .flex-fcg-two-item:nth-child(2){
        padding: 20px 40px;
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 440px){
    .flex-pna-two-item h3 {
        font-size: 2em;
    }
}

#fim-button, #gform_submit_button_6 {
    color: #fff;
    font-size: 1.4rem;
    background-color: #47aeba;
    border: 0;
    padding: 15px 80px;
    text-transform: uppercase;
    font-weight: 600;
    -webkit-appearance: none;
}
.spec-description {
    max-width: 1300px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6em;
    padding-bottom: 30px;
}
.spec-description h3 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 3em;
  font-weight: normal;
}

#gform_confirmation_message_5, #gform_confirmation_message_2, #gform_confirmation_message_6 {
  padding: 0px 20px;
  font-size: 2em;
  text-align: center;
}

#zero-hero-shot {
  width: 100%;
  height: 520px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 520px){
  #zero-hero-shot {
    height: 350px;
  }
}

.rex-zero-standard-black {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-a.jpg");
}

.rex-zero-standard-black-hogue {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-black-hogue.jpg");
}

.rex-zero-standard-black-dark-earth {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-bde.jpg");
}

.rex-zero-standard-nickel {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-nickel.jpg");
}

.rex-zero-standard-fde {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-fde.jpg");
}

.rex-zero-standard-fde-hogue {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-fde-mascus.jpg");
}

.rex-zero-standard-od-green {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-od-green.jpg");
}

.rex-zero-standard-fde-mascus {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-fde-de.jpg");
}

.rex-zero-compact-black {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c.jpg");
}

.rex-zero-compact-black-hogue {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c.jpg");
}

.rex-zero-compact-grey {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-grey.jpg");
}

.rex-zero-compact-fde {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-fde.jpg");
}

.rex-zero-compact-fde-hogue {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-fde-mascus.jpg");
}

.rex-zero-compact-nickel {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-nickel.jpg");
}

.rex-zero-compact-nickelslide {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-nickel-slide.jpg");
}

.rex-zero-compact-od-green {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-c-od-green.jpg");
}

.rex-zero-tactical-black {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-t-black.jpg");
}

.rex-zero-tactical-fde {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-t-fde.jpg");
}

.rex-zero-tactical-grey {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-t-grey.jpg");
}

.rex-zero-tactical-compact-black {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-tc-black.jpg");
}

.rex-zero-tactical-compact-fde {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-tc-fde.jpg");
}

.rex-zero-tactical-compact-grey {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-tc-grey.jpg");
}

.rex-zero-standard-nickelslide {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-nickel-slide.jpg");
}

.rex-zero-standard-grey {
  background: url("/wp-content/themes/fime/assets/img/fim-gallery-zero-s-grey.jpg");
}

/*Rex Delta*/
.rx-wrapper {
    max-width: 900px;
    padding: 0px 20px;
    margin: 0 auto;
    height: auto;
}

.rx-pistol-wrapper {
    position: relative;
    background: #001;
    height: 550px;
    width: 100%;
    margin-top:100px;
}

.rx-alpha {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50px;
    left: 30px;
    opacity: 0;
    background: url('/wp-content/themes/fime/assets/img/rexAlpha.jpg') no-repeat center;
    background-size: contain;
}

.rx-zero {
    width: 300px;
    height: 300px;
    background: #eee;
    position: absolute;
    top: 50px;
    right: 30px;
    opacity: 0;
    background: url('/wp-content/themes/fime/assets/img/rexZero.jpg') no-repeat center;
    background-size: contain;
}

.rx-delta {
    width: 800px;
    height: 450px;
    background: #999;
    position: absolute;
    opacity: 0;
    top: 60%;
    left: 50%;
    background: url('/wp-content/themes/fime/assets/img/rexDelta.png') no-repeat center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

.rx-delta-description {
    clear: both;
    font-size: 1.4rem;
    line-height: 1.8rem;
    text-align: center;
    padding: 15px 0px;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.rx-exposed-pistol {
    width: 100%;
    height: 600px;
    position: relative;
    background-size: contain;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.5);
    background: url('/wp-content/themes/fime/assets/img/exposedbackground.jpg') no-repeat center;
}

.rx-exposed-pistol button {
    margin: 0 auto;
    text-align: center;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 2px;
    border: 0;
    color: #001;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    padding: 7px 15px;
    background: #ffe400;
    font-family: 'Oswald', sans-serif;
    transition: .5s all ease-in-out;
    transform: translate(-50%, -50%);
}

.rx-rex-frame {
    width: 400px;
    position: absolute;
    top: 29%;
    left: 28%;
    z-index: 4;
}

.rx-rex-spring {
    position: absolute;
    width: 170px;
    top: 27%;
    left: 30%;
    z-index: 2;
}

.rx-rex-barrel {
    position: absolute;
    width: 200px;
    top: 26%;
    left: 27%;
    z-index: 3;
}

.rx-rex-slide {
    position: absolute;
    width: 400px;
    top: 20%;
    left: 27.5%;
    z-index: 5;
}

.rx-rex-grip-1 {
    position: absolute;
    width: 60px;
    top: 40%;
    left: 66%;
    z-index: 6;
}

.rx-rex-grip-2 {
    position: absolute;
    width: 70px;
    top: 40%;
    left: 66%;
    z-index: 7;
}

.rx-rex-grip-3 {
    position: absolute;
    width: 90px;
    top: 33%;
    left: 64%;
    z-index: 8;
}

.rx-exposed-text {
    opacity: 0;
    color: #fff;
    font-size: 15px;
    position: absolute;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.rx-white-dot {
    left: 33%;
    top: 1.5%;
}

.rx-one-slot {
    left: 5%;
    top: 55%;
}

.rx-front-serrations {
    left: 33%;
    top: 17%;
}

.rx-barrel {
    left: 45%;
    top: 27%;
}

.rx-trigger {
    left: 23%;
    top: 66%;
}

.rx-chamber {
    left: 50%;
    top: 2%;
    font-size: 13px;
}

.rx-rear-sight {
    left: 72%;
    top: 3%;
}

.rx-striker {
    left: 57%;
    top: 45%;
}

.rx-ambi-release {
    left: 41%;
    top: 53%;
    font-size: 13px;
    z-index: 10;
}

.rx-backstraps {
    left: 73%;
    top: 56%;
}

.rx-magazine {
    left: 55%;
    bottom: 7%;
}

.rx-delta-flexbox {
    display: flex;
    margin-top: 80px;
    font-family: 'Oswald', sans-serif;
}

.rx-delta-flexbox ul {
    list-style: none;
}

.rx-delta-specs {
    background: #888;
    padding: 15px;
    flex: 1;
    overflow: auto;
    padding-bottom: 40px;
}

.rx-delta-specs ul {
    font-size: 23px;
    padding: 0;
    margin: 0;
}

.rx-delta-specs h2 {
    text-align: center;
    font-size: 30px;
}

.rx-delta-info {
    flex: 1;
    color: #fff;
    font-size: 25px;
}

.rx-delta-left {
    float: left;
    text-align: right;
}

.rx-delta-right {
    float: right;
    text-align: left;
}

.rx-specs-list {
    max-width: 300px;
    margin: 0 auto;
}

.rx-yellow-text {
    color: #ffe400;
}

.rx-delta-specs h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
}

.rx-delta-gallery {
    display: flex;
    margin-bottom: 50px;
}

.rx-delta-gallery div {
    flex: 1;
    padding: 0px 20px;
    margin: 0 auto;
}

.rx-delta-gallery img {
    width: 180px;
    height: 120px;
    transition: .25s all ease-in-out;
    border: 1px solid #001;
}

.rx-delta-gallery img:hover {
    border: 1px solid #ccc;
}

h2.rx-gallery {
    margin-top: 50px;
    font-size: 30px;
}



@media screen and (max-width: 950px){
    .rx-zero, .rx-alpha {
        display: none;
    }
    .rx-delta {
        width: 100%;
    }
    .rx-delta-gallery img {
        max-width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 920px){
    .rx-exposed-pistol-container {
        display: none;
    }
    .rx-exposed-pistol {
        background:url('/wp-content/themes/fime/assets/img/rexDeltaExposed.png') no-repeat center;
        background-size: contain;
    }
}

@media screen and (max-width: 700px){
    .rx-delta-flexbox {
        display: block;
    }
    .rx-delta-info {
        text-align: center;
    }
    .rx-delta-info ul {
        margin: 20px 0;
        padding: 0;
    }
    .rx-exposed-pistol {
        height: 350px;    
    }
    .rx-delta-gallery div {
        padding: 0px 5px;
    }
}

@media screen and (max-width: 500px){
    .rx-pistol-wrapper {
        height: 300px;
    }
    .rx-delta-left li, .rx-delta-right li {
        font-size: 19px;
    }
}

@media screen and (max-width: 450px){
    .rx-exposed-pistol {
        height: 200px;
    }
}

.fimegroup-popup {
    background: #333;
    position: fixed;
    right: 0%;
    bottom: 0%;
    z-index: 100;
    width: 300px;
    display: none;
    border: 2px solid #fff;
}
.fimegroup-popup h3 {
    text-align: center;
    font-size: 21px;
    font-family: 'Oswald', sans-serif;
}
.fimegroup-popup img {
    width: 100%;
}
.fimegroup-popup span {
    position: absolute;
    background: #fff;
    right: 0;
    top: 0;
    color: #001;
    padding-top: 7px;
    width: 33px;
    cursor: pointer;
    height: 26px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.fimegroup-popup p {
    text-align: center;
    padding: 0px 15px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.fimegroup-signup {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}
.fimegroup-signup input {
    font-size: 14px;
    padding: 3px 10px;
    font-family: 'Open Sans', sans-serif;
}
.fimegroup-signup button {
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    padding: 4px 10px;
    background: #001;
}
footer#fim-footer .copyright {
    text-align:center;
    padding-bottom:25px;
    color:#fff;
    font-size:14px;
}
section#fim-subscribe label {
  display:inline-block;
  margin:10px 0;
}

body.page-template-page-basic-page-dark section#fim-nav,
body.page-template-page-basic-page-light section#fim-nav,
body.page-template-page-basic-post section#fim-nav {
  padding-bottom:15px;
}

body.page-template-page-basic-page-light,
body.page-template-page-basic-page-dark,
div.basic-page.light {
  text-align:left;
}
section.mil-law {
  clear:both;
  overflow:hidden;
  border-bottom: 1px solid #c3c3c3;
  padding-bottom: 10px;
}
section.mil-law .images {
  width:100%;
  display:block;
  clear:both;
  overflow:hidden;
}

div.basic-page.light h1,
div.basic-page.dark h1,
section.mil-law h2 {
  text-align:center;
}

div.basic-page,
div.basic-post {
  padding-top:5px;
  margin-top:100px;
}
.text-center {
  text-align:center;
}

section#prop65 div.prop65 {
  color:#000000;
  border: 1px solid #ffdf00;
  padding:10px 5%;
  width:80%;
  max-width: 920px;
  margin:10px  auto;
  display:block;
  overflow:hidden;
  font-size:18px;
  line-height:22px;
  font-family: sans-serif;
}
section#prop65.dark div.prop65 {
  color:#ffffff;
}

div.mil-le p {
  font-size:18px;
}
section#prop65 div.prop65 img,
body.page-template-page-basic-page-light img,
body.page-template-page-basic-page-dark img,
div.mil-le img {
  width:auto;
  max-width:100%;
}

.row.range-program {
  overflow:hidden;
  border-bottom: 1px solid #47aeba;
  margin-bottom:20px;
}
.row.range-program h3 {
  text-align:center;
  font-weight:800;
}
.row.range-program p.sku {
  font-weight:600;
}

.row {
  width:100%;
}

.col2 {
  width:100%;
}
.border {border:1px solid}
@media screen and (min-width:760px) {    
    .col2 {
      width:48%;
      float:left;
      padding:1%;
    }
}
/* Header hack for our custom pages - since original was built using background images, 
we are faking a bacground element to get a black background but still have all the menu colors work right */
div#mil-law-bkgnd {display:none;}
@media screen and (min-width:1000px) {
    div#mil-law-bkgnd {
      display:block;
      width:100%;
      height: 100px;
      background-color:black;
      position:absolute;
      top:0;
      left:0
    }
}
.goback {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding:0 15px;
}

section#video {
  width:90%;
  max-width: 920px;
  margin:0 auto;
  text-align:center;
  display:block;
  overflow:hidden;
  display:none;
}

section#video p {
  font-size:18px;
  line-height:22px;
}

/* MOLOT LANDING PAGE STYLES */


.vepr-shotgun , .vepr-rifle-landing , .vepr-fm-ak , .description{    
    width: 100%;
    background-color: #000;
    box-sizing: border-box;
    border-bottom: 1px solid #2e313a;
    height: 600px;
    padding: 130px 0 0 0;
    text-align: center;        
}

.description{
	color:white;
	font-size: 2rem;
   	font-weight: 300;
	font-family: 'Open Sans', helvetica, sans-serif;
}
/* MOBILE STYLES */

@media screen and (max-width: 550px) {
    .vepr-shotgun , .vepr-rifle-landing , .vepr-fm-ak , .description {
        height: 350px;
    }
}


@media screen and (min-width: 551px) and (max-width: 650px) {
    .vepr-shotgun , .vepr-rifle-landing , .vepr-fm-ak, .description {
        height: 400px;
    }
}

@media screen and (min-width:651px) and (max-width: 900px) {
    .vepr-shotgun , .vepr-rifle-landing , .vepr-fm-ak, .description {
        height: 450px;
    }
}


@media screen and (min-width:901px) and (max-width: 1250px) {
    .vepr-shotgun , .vepr-rifle-landing , .vepr-fm-ak, .description {
        height: 550px;
    }
}

.shotgun-container , .rifle-container-landing , .fm-ak-container , .description-container{    
    width: 100%;
    margin: 0 auto;        
}

.vepr-shotgun img, .vepr-rifle-landing img, .vepr-fm-ak img {
    width: auto!important;
    max-width: 100%;
}

.shotgun-logo , .rifle-logo-landing , .fm-ak-logo , .description-logo {
   	width: 300px;
    max-width: 100%;
    margin: -250px auto;
}

.shotgun-button , .rifle-button-landing , .fm-ak-button {
    padding: 15px 50px;
  	background-color: #47aeba;
   	color: #fff;
   	border: none;
   	margin: 35px 0 0 0;
   	font-family: 'Open Sans', helvetica, sans-serif;
   	font-size: 1.3rem;
   	letter-spacing: 0.1rem;
   	cursor: pointer;
   	-webkit-appearance: none;
}

.shotgun-copy h3, .rifle-copy-landing h3, .fm-ak-copy h3 {
 	font-size: 1.75rem;
   	font-weight: 300;
   	color: #ddd;
	margin: 0;
   	margin-top: 20px;
   	font-family: 'Open Sans', helvetica, sans-serif;
}

.vepr-fmar {
  width:100%;
  min-height:350px;
  background-color:#000;
  border-bottom:1px solid #3c3b3b;
}

.molot-logo {
  max-width:300px;
  margin:0 auto;
  z-index:99;
}

.fmar-container {
  text-align:center;
  padding-top:100px;
  position:relative;
}

img#rpk {
  position:relative;
  display:block;;
  width:1200px;
  margin:0 auto;
  max-width:100%;
  z-index:0;
}

img#fmar {
  position:relative;
  display:block;;
  width:1200px;
  margin:0 auto;
  max-width:100%;
  z-index:0;
}

.vepr-fmar button.pistol-button {
  margin-top:-25px;
  margin-bottom:35px;
}

div#fmar-showcase {
    padding-top:120px;
}
body.page-template-page-fmar img#fmar {
  padding-bottom:25px;
}
body.page-template-page-fmar .fim-scroll-container {
    display:none;
}
body.page-template-page-fmar .fim-features-container {
  width: 100%;
  height: auto;
  padding: 2px 0 80px 0;
  background-color: #000;
}

@media(min-width: 1000px) {
  body.page-template-page-fmar .fim-features-container {
    padding: 10px 0 150px 0;
  }
}

@media screen and (min-width:1100px) {
    section#fim-fcg-page .flex-item {
       max-width:25%;
   }
    section#fim-fcg-page .fcg-comparison .flex-item img {
       max-width: 240px;
       margin: 0 auto;
   }
}

table.stats {
    font-size:16px;
    line-height:18px;
}
