/* -----------------------------------------------------------------------------

  FONTS
  
----------------------------------------------------------------------------- */
@font-face {
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 300;
  src: url("../_f/oxygen/oxygen-v5-latin-300.eot");
  src: local("Oxygen Light"), local("Oxygen-Light"), url("../_f/oxygen/oxygen-v5-latin-300.eot?#iefix") format("embedded-opentype"), url("../_f/oxygen/oxygen-v5-latin-300.woff2") format("woff2"), url("../_f/oxygen/oxygen-v5-latin-300.woff") format("woff"), url("../_f/oxygen/oxygen-v5-latin-300.ttf") format("truetype"), url("../_f/oxygen/oxygen-v5-latin-300.svg#Oxygen") format("svg");
}

@font-face {
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 400;
  src: url("../_f/oxygen/oxygen-v5-latin-regular.eot");
  src: local("Oxygen"), local("Oxygen-Regular"), url("../_f/oxygen/oxygen-v5-latin-regular.eot?#iefix") format("embedded-opentype"), url("../_f/oxygen/oxygen-v5-latin-regular.woff2") format("woff2"), url("../_f/oxygen/oxygen-v5-latin-regular.woff") format("woff"), url("../_f/oxygen/oxygen-v5-latin-regular.ttf") format("truetype"), url("../_f/oxygen/oxygen-v5-latin-regular.svg#Oxygen") format("svg");
}

@font-face {
  font-family: 'Oxygen';
  font-style: normal;
  font-weight: 700;
  src: url("../_f/oxygen/oxygen-v5-latin-700.eot");
  src: local("Oxygen Bold"), local("Oxygen-Bold"), url("../_f/oxygen/oxygen-v5-latin-700.eot?#iefix") format("embedded-opentype"), url("../_f/oxygen/oxygen-v5-latin-700.woff2") format("woff2"), url("../_f/oxygen/oxygen-v5-latin-700.woff") format("woff"), url("../_f/oxygen/oxygen-v5-latin-700.ttf") format("truetype"), url("../_f/oxygen/oxygen-v5-latin-700.svg#Oxygen") format("svg");
}

/* -----------------------------------------------------------------------------

  BOX SIZING RESET
  
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* -----------------------------------------------------------------------------

  ROOT ELEMENTS
  
----------------------------------------------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  color: #6d6d6d;
  background-color: #000;
  font-family: "Oxygen", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

/* -----------------------------------------------------------------------------

  HEADING ELEMENTS
  
----------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3b3b3b;
  font-weight: 700;
  line-height: 1.2;
}

/* -----------------------------------------------------------------------------

  TEXT ELEMENTS
  
----------------------------------------------------------------------------- */
a {
  color: rgba(180,180,180, 1.0);
  text-decoration: none;
}

a:hover {
  color: rgba(216,213,0, 0.85);
  -webkit-transition: all 0.4s ease-out;
          transition: all 0.4s ease-out;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}


/* -----------------------------------------------------------------------------

  MEDIA ELEMENTS
  
----------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}

/* -----------------------------------------------------------------------------

  CONTAINER OBJECTS
  
----------------------------------------------------------------------------- */
.o-container {
  margin: 0 auto;
  padding: 0 12px;
  max-width: 960px;
}

@media all and (min-width: 480px) {
  .o-container {
    padding: 0 24px;
  }
}

@media all and (min-width: 720px) {
  .o-container {
    padding: 0 48px;
  }
}

/* -----------------------------------------------------------------------------

  HEADER OBJECT
  
----------------------------------------------------------------------------- */
.o-header {
  margin: 0;
  padding: 0;
}

.o-header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #dc446e;
}

.o-header-nav__link {
  padding: 12px;
  color: #fff;
}

.o-header-nav__link:hover {
  color: #fff;
  background-color: #9d1d41;
}

.o-header__title {
  margin: 24px;
  padding: 0;
  color: #818181;
  font-size: 28px;
  font-weight: 300;
  text-align: center;
}

@media all and (min-width: 480px) {
  .o-header__title {
    margin: 36px;
    font-size: 32px;
  }

  h2 {
    font-size: 18px;
  }
}

@media all and (min-width: 720px) {
  .o-header__title {
    margin: 36px;
    font-size: 42px;
  }

  h2 {
    font-size: 22px;
  }
}

/* -----------------------------------------------------------------------------

  LOGO
  
----------------------------------------------------------------------------- */

.o-header__title__logo {
  background-image: url("../_i/logo_mw_small_sd.png");
    background-size: 100px 100px;
	-webkit-background-size: 100px 100px;
  width: 100px;
  height: 100px;
  border: 0px;
  padding: 0;
  margin: 0px auto;
  background-position: center;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	.o-header__title__logo {
	background-image: url("../_i/logo_mw_small_hd.png");
	}
}

@media all and (min-width: 720px) {
  .o-header__title__logo {
    background-image: url("../_i/logo_mw_big_sd.png");
    background-size: 140px 140px;
	-webkit-background-size: 140px 140px;
	width: 140px;
    height: 140px;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 720px) {
  .o-header__title__logo {
    background-image: url("../_i/logo_mw_big_hd.png");
  }
}

/* -----------------------------------------------------------------------------

  MAIN OBJECT
  
----------------------------------------------------------------------------- */
.o-main {
  /**/
}

/* -----------------------------------------------------------------------------

  SECTION OBJECT
  
----------------------------------------------------------------------------- */
.o-section {
  margin-bottom: 24px;
}

.o-section:last-child {
  margin-bottom: 0;
}

@media all and (min-width: 720px) {
  .o-section {
    margin-bottom: 48px;
  }
}

/* -----------------------------------------------------------------------------

  SUB-NAVIGATION OBJECT
  
----------------------------------------------------------------------------- */
.o-sub-nav {
  margin: 0;
  padding: 0;
}

.o-sub-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.o-sub-nav__item {
  margin: 0;
  padding: 4px;
}

.o-sub-nav__link {
  display: block;
  margin: 0;
  padding: 4px 24px;
  border: solid 2px #dc446e;
}

.o-sub-nav__link:hover,
.o-sub-nav__item.active .o-sub-nav__link {
  color: #fff;
  background-color: #dc446e;
}

/* -----------------------------------------------------------------------------

  FOOTER OBJECT
  
----------------------------------------------------------------------------- */
.o-footer {
  padding: 8px 0;
  text-align: right;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 240px;
  border: 0px solid #73AD21;
  display: block;
}

@media all and (min-width: 720px) {
  .o-footer {
    
  }
}

/* -----------------------------------------------------------------------------

  TABS COMPONENT
  
----------------------------------------------------------------------------- */
/**
 * Tabs component
 *
 * A responsive tabs component that falls back to a linear conent display when
 * JavaScript is disabled. The following is the default suggested markup to play
 * nicely with the JavaScript. If you change it up, just make sure you pass in
 * the correct parameters to the tabs instance.
 *
 * <div id="tabs" class="c-tabs no-js">
 *   <div class="c-tabs-nav">
 *     <a href="#" class="c-tabs-nav__link is-active"></a>
 *     <a href="#" class="c-tabs-nav__link"></a>
 *     ...
 *   </div>
 *   <div class="c-tab is-active">
 *     <div class="c-tab__content"></div>
 *   </div>
 *   <div class="c-tab">
 *     <div class="c-tab__content"></div>
 *   </div>
 *   ...
 * </div>
 */
.c-tabs {
  /**/
}

/**
 * Tabs navigation
 */
.c-tabs-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-tabs-nav__link {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 4px;
  padding: 12px;
  color: rgba(60,60,60, 1.0);
  background-color: rgba(0,0,0, 1.0);
  text-align: center;
  -webkit-transition: color 0.5s;
          transition: color 0.5s;
}

.c-tabs-nav__link:last-child {
  margin-right: 0;
}

.c-tabs-nav__link:hover {
  color: rgba(140,140,140, 1.0);
  background-color: rgba(0,0,0, 1.0);
}

.c-tabs-nav__link.is-active {
  color: rgba(216,213,0, 0.85);
  background-color: rgba(0,0,0, 1.0);
}

.c-tabs-nav__link i,
.c-tabs-nav__link span {
  margin: 0;
  padding: 0;
  line-height: 1.0;
}

.c-tabs-nav__link i {
  font-size: 32px;
  margin-top: 50px;
}

.c-tabs-nav__link span {
  display: none;
}

@media all and (min-width: 720px) {
  .c-tabs-nav__link i {
    font-size: 48px;
    margin-top: 20px;
  }
}

/**
 * Tab
 */
.c-tab {
  display: none;
  background-color: rgba(0,0,0, 1.0);
}

.c-tab.is-active {
  display: block;
}

.c-tab__content {
  padding: 0.0rem;
  margin-top: -15px;
  text-align: center;
}

.c-tab__content h2 {
  font-size: 32px;
  font-weight: 300;
  color: rgba(180,180,180, 1.0);
}

@media all and (min-width: 720px) {
  .c-tab__content {
  margin-top: -10px;
  }

  .c-tab__content h2 {
  font-size: 48px;
  }
}

/**
 * Tabs no-js fallback
 */
.c-tabs.no-js .c-tabs-nav {
  display: none;
}

.c-tabs.no-js .c-tab {
  display: block;
  margin-bottom: 1.5rem;
}

.c-tabs.no-js .c-tab:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

  TABS 2 COMPONENT
  
----------------------------------------------------------------------------- */
/**
 * Tabs component
 *
 * A responsive tabs component that falls back to a linear conent display when
 * JavaScript is disabled. The following is the default suggested markup to play
 * nicely with the JavaScript. If you change it up, just make sure you pass in
 * the correct parameters to the tabs instance.
 *
 * <div id="tabs" class="c-tabs no-js">
 *   <div class="c-tabs-nav">
 *     <a href="#" class="c-tabs-nav__link is-active"></a>
 *     <a href="#" class="c-tabs-nav__link"></a>
 *     ...
 *   </div>
 *   <div class="c-tab is-active">
 *     <div class="c-tab__content"></div>
 *   </div>
 *   <div class="c-tab">
 *     <div class="c-tab__content"></div>
 *   </div>
 *   ...
 * </div>
 */
.c-tabs2 {
  /**/
}

/**
 * Tabs navigation
 */
.c-tabs2-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-tabs2-nav__link {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 4px;
  padding: 12px;
  color: rgba(60,60,60, 1.0);
  background-color: rgba(0,0,0, 1.0);
  text-align: center;
  -webkit-transition: color 0.5s;
          transition: color 0.5s;
}

.c-tabs2-nav__link:last-child {
  margin-right: 0;
}

.c-tabs2-nav__link:hover {
  color: rgba(140,140,140, 1.0);
  background-color: rgba(0,0,0, 1.0);
}

.c-tabs-nav__link.is-active {
  color: rgba(216,213,0, 0.85);
  background-color: rgba(0,0,0, 1.0);
}

.c-tabs2-nav__link i,
.c-tabs2-nav__link span {
  margin: 0;
  padding: 0;
  line-height: 1.0;
}

.c-tabs2-nav__link i {
  font-size: 32px;
  margin-top: 50px;
}

.c-tabs2-nav__link span {
  display: none;
}

@media all and (min-width: 720px) {
  .c-tabs2-nav__link i {
    font-size: 48px;
    margin-top: 20px;
  }
}

/**
 * Tab
 */
.c-tab2 {
  display: none;
  background-color: rgba(0,0,0, 1.0);
}

.c-tab2.is-active {
  display: block;
}

.c-tab2__content {
  padding: 0.0rem;
  margin-top: -15px;
  text-align: center;
}

.c-tab2__content h2 {
  font-size: 32px;
  font-weight: 300;
  color: rgba(160,160,160, 1.0);
}

@media all and (min-width: 720px) {
  .c-tab2__content {
  margin-top: -10px;
  }

  .c-tab2__content h2 {
  font-size: 48px;
  font-weight: 300;  
  color: rgba(140,140,140, 1.0);
  }
}

/**
 * Tabs no-js fallback
 */
.c-tabs2.no-js .c-tabs2-nav {
  display: none;
}

.c-tabs2.no-js .c-tab2 {
  display: block;
  margin-bottom: 1.5rem;
}

.c-tabs2.no-js .c-tab2:last-child {
  margin-bottom: 0;
}
