@charset "UTF-8";
/* Home scss utilizing BEM */
/**
 * Computes a CSS calc function that betweens a value from
 * A to B over viewport-width A to viewport-width B.
 * Requires 2 media queries to cap the upper (B) and lower (A) values.
 */
/* normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  cursor: help;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

@media (min-width: 75em) {
  .nav-wrap {
    padding-top: 2rem;
  }
}

.enhanced .nav-wrap {
  position: fixed;
  z-index: 101;
  width: 100%;
}

.fixed .nav-wrap {
  padding-top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  transition: ease-in all 0.5s;
  transition: ease-out all 0.5s;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 110rem;
  height: 65px;
  margin: 0 0.825rem;
}
@media (min-width: 62.375em) {
  .nav {
    margin: 0 auto;
    padding: 0 2rem;
    height: 85px;
  }
}

.nav__collapse {
  display: none;
  margin-left: auto;
}
@media (min-width: 48em) {
  .nav__collapse {
    display: block;
  }
}

/* begin - bmg logo */
.bmg-logo {
  display: flex;
  align-items: center;
}

.bmg-logo svg {
  width: 125px;
  height: 45px;
}
@media (min-width: 48em) {
  .bmg-logo svg {
    width: 175px;
    height: 65px;
  }
}
@media (min-width: 62.375em) {
  .bmg-logo svg {
    width: 225px;
    height: 65px;
  }
}
@media (min-width: 75em) {
  .bmg-logo svg {
    width: 335px;
  }
}

.bmg-logo svg g,
.footer__logo svg > * {
  fill: #FFF;
}

@media (min-width: 62.375em) {
  .bmg-logo .logo--shrink {
    width: 225px;
  }
}
.bmg-logo:hover {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
/* end - bmg logo */
/* begin - header nav links */
.menu {
  display: flex;
  align-items: center;
  flex: 1;
  margin: 0;
  padding: 0;
  align-self: center;
  list-style: none;
}

.menu > li {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
}

.menu li a {
  color: #FFF;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

/** begin -- underline effect **/
.menu__item--underline {
  margin: 0 1rem;
  align-self: center;
}

.menu__item--underline a {
  position: relative;
  padding: 0.25rem 0;
}

.menu__item--underline:last-of-type {
  margin-right: 0;
}

.menu__item--underline a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.menu__item--underline a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

/** end - underline effect **/
/** begin - drop down **/
.menu__item--drop-down {
  width: 125px;
  align-self: center;
  transition: width 0.5s;
  transition-timing-function: ease-in;
  overflow: hidden;
}

.menu__item--drop-down > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu__item--drop-down:hover {
  width: 11em;
  padding-left: 1rem;
  border: 1px solid #FFF;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.5s;
  transition-timing-function: ease-out;
  overflow: visible;
}

.menu__item--drop-down:hover a {
  justify-content: flex-start;
}

.menu__item--drop-down a:hover {
  border-bottom: none;
}

@keyframes fadeDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu__item--drop-down ul {
  position: absolute;
  left: 0;
  opacity: 0;
  min-width: 11em;
  max-height: 0;
  animation: fadeDown 1s ease-in;
  background-color: #ffffff;
  transition: opacity 0.35s ease;
}

.menu__item--drop-down:hover ul {
  display: flex;
  opacity: 1;
  flex-direction: column;
  width: 11em;
  max-height: 100em;
  margin-top: 9px;
  margin-left: -1px;
  padding: 0.5rem 1rem;
  background-color: #FFF;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  transition-delay: 0.5s;
}

.menu__item--drop-down ul li {
  overflow: hidden;
  padding: 0.5rem 0 0 0;
}

.fixed .menu__item--drop-down ul li {
  margin-left: 1em;
  padding-left: 0;
}

.menu__item--drop-down ul li a {
  color: #18445F;
  font-weight: 500;
  font-size: 0.9em;
}

.menu__item--drop-down ul li a:hover {
  color: #f57c00;
}

.fixed .menu__item--drop-down ul {
  background-color: rgb(255, 255, 255);
  border-bottom: 2px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  width: 11em;
}

/** end - drop down **/
/** begin - mobile menu **/
.nav__mobile-icon {
  margin-left: auto;
  height: 35px;
  color: white;
}
@media (min-width: 48em) {
  .nav__mobile-icon {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #082436;
  overflow-x: hidden;
  text-align: center;
  transition: 0.5s;
}
@media (min-width: 48em) {
  .mobile-menu {
    display: none;
  }
}
@media (max-width: 47.99em) and (orientation: landscape) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

.mobile-menu ul li {
  position: relative;
  display: inline-block;
  margin: 0.25rem 0;
  padding: 0.5rem 0;
}

.mobile-menu ul li a {
  padding: 0.5rem;
  color: #FFF;
  font-size: 2rem;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}

.mobile-menu ul li a:hover {
  color: #f57c00;
}

.mobile-menu__close-btn {
  z-index: 102;
  position: absolute;
  top: 0;
  right: 10px;
  margin-left: 50px;
  color: #FFF;
  font-size: 3rem;
}

/** end - mobile menu **/
/* end - header nav links */
.footer {
  height: auto;
  padding: 2rem 0.825rem 6rem;
  background-color: #18445F;
}

.footer__logo {
  display: flex;
  align-items: center;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0;
}

.footer__logo svg {
  margin: 0 1rem;
}
@media (max-width: 39.99em) {
  .footer__logo svg {
    width: 125px;
    height: 50px;
    margin: 0 0.5rem;
  }
}

.footer__copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 2em;
  color: #FFF;
  text-align: center;
  line-height: 1;
}

.footer__copy a[href] {
  padding: 1px 4px;
  color: #FFF;
  outline: none;
}

.footer__copy a:hover {
  color: #f57c00;
}

.footer__social {
  display: flex;
  justify-content: center;
  column-gap: 1.7rem;
  margin: 0 auto;
  margin-block-start: 2rem;
}

.footer__social a {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  background: #fff;
  border-radius: 7px;
  transition: 0.5s ease-in-out;
}

.footer__social a::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer__social a:hover {
  transform: scale(1.2);
  background: #f57c00;
}

.footer__social a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
}

.footer__social a svg.Facebook {
  transform: scale(1.3) translate(-30%, -25%);
}

.footer__social a svg path {
  fill: #18445f;
}

.btn--lg {
  width: 100%;
  max-width: 300px;
  height: 50px;
  margin: 0 auto 2rem;
  padding: 10px 30px;
  border: 1px solid #f57c00;
  color: #18445F;
  cursor: pointer;
  font-size: 1.25em;
  font-weight: 600;
}
@media (min-width: 40em) {
  .btn--lg {
    max-width: 450px;
    height: 80px;
    font-size: 2.25rem;
  }
}
@media (min-width: 48em) {
  .btn--lg {
    max-width: 650px;
    font-size: 3.5rem;
  }
}

.enhanced .btn--lg {
  font-weight: 900;
}

.btn--trans-lg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
}
.btn--trans-lg:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #f57c00;
  transform: translateX(-100%);
  box-sizing: border-box;
  transition: 0.5s ease-in-out;
}
.btn--trans-lg:hover {
  color: #FFF;
}
.btn--trans-lg:hover:before {
  transform: translateX(0);
}

.btn--sm {
  z-index: 1;
  width: 100%;
  max-width: 18rem;
  height: 40px;
  margin: 0;
  padding: 10px;
  background-color: #18445F;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
}

.btn--trans-sm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
}
.btn--trans-sm:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: -50px;
  bottom: 0;
  left: 0;
  border-right: 50px solid transparent;
  border-bottom: 40px solid #f57c00;
  transform: translateX(-100%);
  box-sizing: border-box;
  transition: 0.5s ease-in-out;
}
.btn--trans-sm:hover {
  color: #FFF;
}
.btn--trans-sm:hover:before {
  transform: translateX(0);
}

.btn-read-more {
  z-index: 1;
  width: 100%;
  max-width: 10rem;
  height: 40px;
  margin: 0 auto;
  padding: 10px;
  background-color: #0067AC;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
}

.view-all-btn {
  z-index: 1;
  width: 100%;
  max-width: 15rem;
  height: 40px;
  margin: 0;
  padding: 0.8em 2rem 0.8em;
  background-color: #082436;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
}

.view-all-btn.btn--trans-sm:before {
  border-bottom: 40px solid #f57c00;
}

/* begin - articles pervious and next btns */
.btn-pager-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: stretch;
}
@media (min-width: 40em) {
  .btn-pager-wrap {
    margin: 3rem 0;
  }
}

.btn-pager {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row;
  justify-content: space-around;
  max-width: 15rem;
  margin: 0;
  padding: 1rem 1rem;
  background: #BDC0C4;
  border-radius: 50px;
  color: #FFF;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 40em) {
  .btn-pager {
    padding: 1rem 2rem;
    justify-content: space-between;
  }
}

.btn-pager svg {
  fill: #FFF;
  width: 20px;
  height: 20px;
}
@media (min-width: 40em) {
  .btn-pager svg {
    width: 30px;
    height: 30px;
  }
}

.btn-pager:hover {
  background: #18445F;
}

.btn-pager:hover > * {
  color: #FFF;
}

.btn-pager + .btn-pager {
  margin-left: 1rem;
}
@media (min-width: 40em) {
  .btn-pager + .btn-pager {
    margin-left: 2rem;
  }
}

.btn-pager > br {
  display: none;
}

.btn-pager > span {
  font-size: 0.875rem;
}
@media (min-width: 40em) {
  .btn-pager > span {
    font-size: 1.15rem;
  }
}

.btn-pager__prev {
  margin-right: 0.5em;
}

.btn-pager__next {
  margin-left: 0.5em;
}

/* end - articles pervious and next btns */
/* begin - contact page btn */
.btn-contact-wrap {
  margin: 2em auto;
  text-align: center;
}

.btn-contact {
  width: 12em;
  height: 40px;
  border: none;
  color: white;
  background-color: #0067AC;
  text-transform: uppercase;
}

.btn-contact:hover {
  background-color: #f57c00;
}

/* end - contact page btn */
.attn {
  color: #f57c00;
}

.DateLine {
  color: #082436;
  font-style: normal;
}

:target:before {
  content: "";
  display: block;
  height: 3rem;
  margin: -3rem 0 0;
}

/* begin - scroll to top */
.scroll-top {
  position: fixed;
  z-index: 3;
  bottom: 1rem;
  right: 1rem;
  display: none;
  transition: 0.5s;
}

.scroll-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 44px;
  margin: 0;
  padding-bottom: 0.3em;
  background-color: #BDC0C4;
  border-radius: 4px;
  color: #fff;
  font-size: 1.3125rem;
  line-height: 1;
  text-decoration: none;
}

.scroll-top a svg {
  margin-top: 0.25rem;
  fill: #082436;
}

.scroll-top a:hover svg {
  fill: #f57c00;
}

/* end - scroll to top */
/* begin - column widths */
.col-sm {
  width: 50%;
}
@media (min-width: 48em) {
  .col-sm {
    width: 33.33333%;
  }
}
@media (min-width: 75em) {
  .col-sm {
    width: 24%;
  }
}

.col-md {
  width: 100%;
}
@media (min-width: 48em) {
  .col-md {
    width: 50%;
  }
}
@media (min-width: 75em) {
  .col-md {
    width: 33.3333%;
  }
}

.col-md--gap {
  width: 100%;
}
@media (min-width: 48em) {
  .col-md--gap {
    width: 49.5%;
  }
}
@media (min-width: 75em) {
  .col-md--gap {
    width: 33%;
  }
}

.col-lg {
  width: 100%;
}
@media (min-width: 62.375em) {
  .col-lg {
    width: 47%;
  }
}

.col-full {
  width: 100%;
}

/* end - column widths */
.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading h6,
.wf-loading p,
.wf-loading a,
.wf-loading label,
.wf-loading span {
  visibility: hidden;
}

.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active h4,
.wf-active h5,
.wf-active h6,
.wf-active p,
.wf-active a,
.wf-active label,
.wf-active span {
  visibility: visible;
}

html {
  box-sizing: border-box;
  font-family: "proxima-nova", Arial, Helvetica, sans-serif;
  font-size: 100%;
  overflow-y: no-display;
  color: #082436;
}

html.wf-active {
  font-family: "proxima-nova", sans-serif;
}

html.wf-active .font-secondary {
  font-family: "proxima-nova" sans-serif;
}

html.wf-active .font-alternate {
  font-family: "proxima-nova", sans-serif;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.main-wrap,
p {
  color: #18445F;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 2.25rem;
  line-height: 1;
  text-align: center;
}
@media (min-width: 62.375em) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2.25rem;
  font-weight: 300;
}
@media (min-width: 40em) {
  h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 62.375em) {
  h2 {
    font-size: 3.5rem;
  }
}

h3 {
  margin: 1em 0 0.5em;
  font-size: 1.25rem;
}
@media (min-width: 62.375em) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 40em) {
  h4 {
    font-size: 1.5rem;
  }
}

h2 + p,
h2 + ul,
h2 + ol {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
  /* height: auto; doesn't work in IE */
}

.wrap {
  background-color: #fff;
}

.wrap > hr,
.main-wrap > div > hr {
  display: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  display: none;
}

label {
  font-weight: bold;
}

input[type=text],
input[type=email],
input[type=password],
input[type=date],
input[type=number],
input[type=tel],
select,
textarea {
  width: 100%;
  padding: 0.5em;
  border-radius: 4px;
}

.main-wrap ul {
  padding: 0 0 0 2em;
  list-style: none;
}
.main-wrap ul > li {
  margin-bottom: 0.5em;
}
.main-wrap ul > li:before {
  content: "";
  display: block;
  float: left;
  width: 1em;
  height: 1em;
  margin-top: 0.1em;
  margin-left: -1.5em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%205%2014%27%3E%3Cpath%20fill%3D%27rgba(127%2C127%2C127%2C.999)%27%20d%3D%27M4.648%207.5q0%200.102-0.078%200.18l-3.641%203.641q-0.078%200.078-0.18%200.078t-0.18-0.078l-0.391-0.391q-0.078-0.078-0.078-0.18t0.078-0.18l3.070-3.070-3.070-3.070q-0.078-0.078-0.078-0.18t0.078-0.18l0.391-0.391q0.078-0.078%200.18-0.078t0.18%200.078l3.641%203.641q0.078%200.078%200.078%200.18z%27%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

blockquote {
  font-style: italic;
}

th, td {
  padding: 0.3rem 0.7rem;
}

thead th, tfoot th {
  text-align: left;
}

.Link1:link {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.2625em 0.6125rem;
  line-height: 1.2;
  text-decoration: none;
}

.bmg-articles {
  overflow-x: hidden;
}

.articles {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  margin: 0 0 -2rem -2rem;
}

.article {
  flex: 1 1 30rem;
  display: flex;
  flex-flow: column nowrap;
  margin: 0 0 2rem 2rem;
  border-right: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  border-left: 1px solid #ddd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: box-shadow 0.3s ease-in-out;
}

@supports (display: grid) and (not (display: -ms-grid)) {
  .articles {
    display: grid;
    grid-gap: 2rem;
    margin: 0;
  }
  .article {
    margin: 0;
  }
  @media screen and (min-width: 27em) {
    .articles {
      grid-template-columns: repeat(auto-fit, minmax(24em, 1fr));
    }
  }
}
.article:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.article:hover .article__header {
  border-top: 8px solid #f57c00;
}

.article__summary {
  flex-grow: 1;
}

.article__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: #FFF;
  border-top: 8px solid #082436;
  text-align: center;
}

@media (min-width: 40em) {
  .article__header h4 {
    text-align: left;
  }
}
.article__header h4 {
  margin: 0;
  color: #082436;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
}

.article__header h4 a {
  color: #082436;
}

.article__header h4 a:hover {
  color: #f57c00;
}

.article__title {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1em;
  text-align: left;
}
@media (min-width: 62.375em) {
  .article__title {
    padding: 1.5em;
  }
}

.article__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1em;
  background-color: #F1F2F2;
}
@media (min-width: 62.375em) {
  .article__body {
    padding: 1.5em;
  }
}

.article__body p {
  color: #18445F;
  line-height: 1.5em;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 0;
}

.article__body p a {
  color: #f57c00;
}

.article__body p a:hover {
  text-decoration: underline;
}

.article__travel {
  display: flex;
  align-items: center;
  flex-basis: 30%;
  flex-direction: column;
  justify-content: center;
  padding: 1em;
  background-color: #f57c00;
  text-align: center;
}
@media (min-width: 62.375em) {
  .article__travel {
    padding: 1.5em 1em;
  }
}

.article__travel svg {
  fill: #FFF;
}

.article__location {
  padding-top: 0.5rem;
  color: #FFF;
  font-size: 1rem;
}

.article__date {
  color: #082436;
  font-style: normal;
}

/* end - all articles */
/* begin - single article (s-article) */
.container.s-article {
  max-width: 70rem;
  min-height: 25rem;
  margin: 2rem auto 0;
}
@media (min-width: 48em) {
  .container.s-article {
    margin: 6rem auto 0;
  }
}

.s-article h1 {
  margin: 0;
  color: #f57c00;
  font-size: 1.5rem;
  font-weight: 300;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}

.s-article .banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.5em;
  text-align: center;
}
@media (min-width: 40em) {
  .s-article .banner {
    padding: 20px;
    flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 48em) {
  .s-article .banner {
    padding: 25px;
  }
}

.s-article__title {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.s-article__title em {
  color: #18445F;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 40em) {
  .s-article__title em {
    text-align: left;
  }
}

.s-article__travel {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 1em 0 0;
  background-color: #FFF;
  text-align: center;
}
@media (min-width: 40em) {
  .s-article__travel {
    padding: 1em;
  }
}

.s-article__travel svg {
  fill: #f57c00;
}

.s-article__location {
  color: #f57c00;
  font-size: 1rem;
}

.s-article__body {
  padding: 20px 10px;
  background-color: #FFF;
}

.s-article__body p {
  padding: 0;
}

.s-article__body p a {
  color: #f57c00;
}

.s-article__body p a:hover {
  text-decoration: underline;
}

@media (min-width: 40em) {
  .s-article h1 {
    font-size: 2rem;
    text-align: left;
  }
  .s-article__body {
    padding: 20px;
  }
}
@media (min-width: 48em) {
  .s-article h1 {
    font-size: 2.5rem;
  }
  .s-article__body {
    padding: 0 50px 20px;
  }
}
/* end - single article */
.home-wrap {
  padding-top: 95px;
}

.container {
  max-width: 100rem;
  margin: 0 auto 1.75em;
  padding: 0;
}
@media (min-width: 48em) {
  .container {
    margin: 0 auto 3em;
  }
}

section:last-of-type .container {
  margin-bottom: -3em;
}

.container h2 {
  padding: 1.5rem 0 0.75rem;
  margin: 0;
}
@media (min-width: 62.375em) {
  .container h2 {
    padding: 3rem 0 2rem;
  }
}

/* begin - video */
.video {
  position: relative;
  top: -95px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 95vh;
  background: url(https://cdn.bmgfiles.com/bmg/img/mobile/BMG_Home_Hero.jpg) top center no-repeat;
  background-attachment: fixed;
  border-bottom: 1px solid #CCC;
  overflow: hidden;
}
@media (min-width: 40em) {
  .video {
    background: url(https://cdn.bmgfiles.com/bmg/img/hero/BMG_Hp_Hero.jpg) top center no-repeat;
    background-attachment: fixed;
    background-size: 105%;
  }
}

.video {
  height: 308px;
}
@media (min-width: 320px) {
  .video {
    height: calc(160px + 46.25vw);
  }
}
@media (min-width: 1600px) {
  .video {
    height: 900px;
  }
}

.video__bmg-office {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
}

.video__overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 45, 74, 0.75) 40%, rgba(105, 57, 15, 0.6) 85%, rgba(105, 57, 15, 0.65) 100%);
}

.headline {
  z-index: 50;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 0.825rem;
}

.headline h1 {
  width: 100%;
  margin: 3rem 0 0.75em;
  color: #FFF;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}

.headline h1 {
  font-size: 20px;
}
@media (min-width: 320px) {
  .headline h1 {
    font-size: calc(-1.8181818182px + 6.8181818182vw);
  }
}
@media (min-width: 1200px) {
  .headline h1 {
    font-size: 80px;
  }
}

.headline h1 span {
  font-weight: 900;
}

.headline__info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  background-color: rgba(0, 0, 0, 0.25);
  transform: skewX(-30deg);
}

.headline__info > * {
  margin: 0;
  padding: 0.35em 1.25em 0.25em;
  color: #FFF;
  font-weight: 300;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  transform: skewX(30deg);
}

.headline__info > * {
  font-size: 10px;
}
@media (min-width: 320px) {
  .headline__info > * {
    font-size: calc(2.7272727273px + 2.2727272727vw);
  }
}
@media (min-width: 1200px) {
  .headline__info > * {
    font-size: 30px;
  }
}

.headline__info > i {
  display: block;
  padding: 0;
  color: #f57c00;
}

.video__carret-icon {
  display: none;
}
@media (min-width: 48em) {
  .video__carret-icon {
    position: absolute;
    bottom: 0.5em;
    display: block;
    z-index: 51;
    width: 100%;
    text-align: center;
  }
}

.carret-icon svg {
  animation: pulsate 2s ease-out;
  animation-iteration-count: infinite;
  color: white;
  outline: none;
  opacity: 0;
}

.carret-icon a {
  outline: none;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/* end - video */
.main {
  position: relative;
  top: -95px;
}

h2 {
  color: #082436;
  font-weight: 900;
  text-align: center;
}

.pixel-img {
  padding: 1em 0 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, white 100%), url("https://cdn.bmgfiles.com/bmg/img/pixel.png");
}

/* begin - Who We Are */
.bmg-team-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 62.375em) {
  .bmg-team-wrap {
    flex-direction: row;
  }
}

.bmg-images {
  order: 1;
  position: relative;
  margin-top: 26px;
}

.carousel {
  position: relative;
  width: 100%;
}
@media (min-width: 62.375em) {
  .carousel {
    left: -3em;
    transform: skewX(-10deg);
  }
}

.carousel__open:checked + .carousel__item,
.bmg-company__open:checked + .bmg-company__info {
  position: static;
  opacity: 1;
  z-index: 1;
  display: block;
}

.carousel__item,
.bmg-company__info {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.carousel__item p a {
  color: #082436;
  font-weight: 700;
}

.carousel__item {
  display: none;
  overflow: hidden;
}

.carousel__item img {
  position: relative;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media (min-width: 40em) {
  .carousel__item img {
    height: 375px;
  }
}
@media (min-width: 48em) {
  .carousel__item img {
    height: 450px;
  }
}
@media (min-width: 62.375em) {
  .carousel__item img {
    right: -2.85em;
    height: 500px;
    transform: skewX(10deg);
  }
}

.carousel__nav {
  z-index: 10;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media (min-width: 62.375em) {
  .carousel__nav {
    position: absolute;
    bottom: -2em;
    right: 0;
    margin: 0;
    transform: skewX(10deg);
  }
}

.carousel__nav li {
  display: inline-block;
  margin: 0 15px;
}
@media (min-width: 62.375em) {
  .carousel__nav li {
    margin: 0 5px;
  }
}

.carousel__nav-icon {
  display: flex;
  width: 15px;
  height: 15px;
  background-color: #ddd;
  cursor: pointer;
}
@media (min-width: 62.375em) {
  .carousel__nav-icon {
    width: 12px;
    height: 12px;
  }
}

.carousel__nav-icon:hover,
.carousel__nav-icon.active {
  background-color: #082436;
}

.carousel__item h4 {
  position: absolute;
  bottom: 2em;
  right: 0;
  display: flex;
  padding: 0.75em 2em 0.75em 1em;
  background: rgba(0, 0, 0, 0.4);
  color: #FFF;
}
@media (min-width: 62.375em) {
  .carousel__item h4 {
    bottom: 0;
  }
}

.bmg-company {
  order: 0;
  padding: 0 0.825em;
}
@media (min-width: 62.375em) {
  .bmg-company {
    order: 1;
    padding: 0;
  }
}

.bmg-company h2 {
  margin-left: 0;
  text-align: left;
}
@media (min-width: 62.375em) {
  .bmg-company h2 {
    margin-top: 1em;
  }
}

.bmg-company label {
  position: relative;
  margin-right: 1em;
  padding-top: 0.25em;
  font-size: 1.15em;
}

.bmg-company label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f57c00;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.bmg-company label:hover {
  cursor: pointer;
}

.bmg-company label:hover:before,
.bmg-company label.active:before {
  visibility: visible;
  transform: scaleX(1);
}

@media (min-width: 62.375em) {
  .bmg-company__info {
    height: 20em;
    margin-right: 3em;
  }
}

.bmg-company__info p a {
  color: #082436;
  font-weight: 700;
}

.bmg-company__info p a:hover {
  color: #f57c00;
  font-weight: 700;
}

/* end - Who We Are */
/* begin - Our Services */
.services {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  text-align: center;
}
@media (min-width: 48em) {
  .services {
    padding: 0 0.825rem 2rem;
  }
}

.services h4 {
  margin: 1rem 0 0;
  padding: 5px 0 5px 0;
  color: #18445F;
  font-size: 1.75rem;
  font-weight: 400;
}

.services p {
  width: 100%;
  margin: 0;
  color: #FFF;
}
@media (min-width: 40em) {
  .services p {
    color: #18445F;
  }
}

.services a {
  position: relative;
  margin: 1em 0 0;
  padding: 0.25rem 0;
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 40em) {
  .services a {
    color: #18445F;
  }
}

.services a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 40em) {
  .services a:before {
    background-color: #18445F;
  }
}

.services a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.service {
  position: relative;
  height: 16em;
  margin: 0.25em 0;
}
@media (min-width: 25em) {
  .service {
    height: 14em;
  }
}
@media (min-width: 40em) {
  .service {
    height: auto;
    background-color: #f8f8f8;
  }
}

@media (min-width: 40em) {
  .service:nth-child(2n) {
    background-color: #fcfcfc;
  }
}

.service svg {
  width: 65px;
  height: 65px;
  margin: 0 2em;
  background-color: transparent;
}
@media (min-width: 40em) {
  .service svg {
    margin: 0 1em 0 0;
  }
}

.service__head {
  opacity: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2em 1em;
  background-color: #f8f8f8;
  transition: opacity 0.35s ease-in;
}
@media (min-width: 40em) {
  .service__head {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    padding: 1em 1.5em 0;
  }
}

.service:hover > .service__head {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.35s ease-out;
}
@media (min-width: 40em) {
  .service:hover > .service__head {
    opacity: 1;
  }
}

.service:nth-child(2n) .service__head {
  background-color: #fcfcfc;
}

.service__head-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: left;
}

.service__head-title span {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #f57c00;
  cursor: pointer;
}
@media (min-width: 40em) {
  .service__head-title span {
    display: none;
  }
}

.service__head-title span:after {
  content: "";
  display: block;
  width: 1.25em;
  height: 1em;
  margin-right: -0.25em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20id%3D%22icon-angle-right%22%20viewBox%3D%220%200%2012%2035%22%20width%3D%2210%22%20height%3D%2210%22%3E%0A%09%3Cpath%20fill%3D%22082436%22%20d%3D%22M11.621%2018.75c0%200.156-0.078%200.332-0.195%200.449l-9.102%209.102c-0.117%200.117-0.293%200.195-0.449%200.195s-0.332-0.078-0.449-0.195l-0.977-0.977c-0.117-0.117-0.195-0.273-0.195-0.449%200-0.156%200.078-0.332%200.195-0.449l7.676-7.676-7.676-7.676c-0.117-0.117-0.195-0.293-0.195-0.449s0.078-0.332%200.195-0.449l0.977-0.977c0.117-0.117%200.293-0.195%200.449-0.195s0.332%200.078%200.449%200.195l9.102%209.102c0.117%200.117%200.195%200.293%200.195%200.449z%22%3E%3C/path%3E%0A%3C/svg%3E");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}

.service:hover > .service__body {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.35s ease-in;
}

.service__body {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 0.825em;
  background-color: #f57c00;
  overflow: hidden;
  text-align: left;
  transition: opacity 0.35s ease-out;
}
@media (min-width: 40em) {
  .service__body {
    position: relative;
    opacity: 1;
    z-index: 1;
    height: auto;
    padding: 1em 1.5em;
    background-color: transparent;
  }
}

/* end - Our Services */
/* begin - split image */
.bmg-split-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(30vh + 1px);
  max-height: calc(30vh + 1px);
  background: url("https://cdn.bmgfiles.com/bmg/img/hero/BMG_Publishers_Hero1.jpg") 100% top no-repeat;
  background-size: cover;
}
@media (min-width: 48em) {
  .bmg-split-image {
    height: calc(50vh + 1px);
    max-height: calc(50vh + 1px);
    background-attachment: fixed;
  }
}

.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(1, 45, 74, 0.75) 40%, rgba(105, 57, 15, 0.6) 85%, rgba(105, 57, 15, 0.65) 100%);
}

.bmg-offers {
  position: relative;
  z-index: 50;
  margin: 0 1rem;
  padding: 15px;
  text-align: center;
}
@media (min-width: 40em) {
  .bmg-offers {
    max-width: 70%;
    padding: 30px;
    border: 1px solid #fff;
    transform: skewX(-30deg);
  }
}
@media (min-width: 75em) {
  .bmg-offers {
    max-width: 60rem;
  }
}

.bmg-offers h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 1.25rem;
  text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.4);
}
@media (min-width: 40em) {
  .bmg-offers h3 {
    transform: skewX(30deg);
  }
}
@media (min-width: 48em) {
  .bmg-offers h3 {
    font-size: 2.25rem;
  }
}

/* end - split image */
/* begin - What's Happening */
.h-articles {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 0;
  padding: 0 0.825em;
  text-align: center;
}
@media (min-width: 48em) {
  .h-articles {
    padding: 0;
  }
}

.h-articles .article {
  flex: auto;
  margin: 1rem 0;
}
@media (min-width: 40em) {
  .h-articles .article {
    margin: 1rem;
  }
}

.view-all {
  margin: 3rem auto 0;
}

/* end - What's Happening */
/* begin - Clients We Work With */
.clients h2 {
  margin-bottom: 1em;
  padding-top: 2em;
  font-size: 1.75rem;
  font-weight: 300;
}
@media (min-width: 48em) {
  .clients h2 {
    font-size: 2.5rem;
  }
}

.clients-wrap {
  display: flex;
  align-items: center;
  flex-flow: wrap;
  justify-content: space-around;
}
@media (min-width: 40em) {
  .clients-wrap {
    flex-flow: nowrap;
    justify-content: center;
    margin: 0 0.825rem;
  }
}
@media (min-width: 48em) {
  .clients-wrap {
    max-width: 65rem;
    margin: 0 auto;
  }
}

.clients-wrap div {
  width: 40%;
  text-align: center;
}
@media (min-width: 40em) {
  .clients-wrap div {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    padding: 20px;
  }
}

.clients-wrap:last-of-type {
  max-width: 60rem;
}

.clients-wrap img {
  max-width: 125px;
  margin: 1rem;
}
@media (min-width: 40em) {
  .clients-wrap img {
    margin: 0 1.5rem;
  }
}
@media (min-width: 62.375em) {
  .clients-wrap img {
    max-width: 150px;
  }
}

@supports (object-fit: contain) {
  .clients-wrap img {
    object-fit: contain;
    max-width: 100%;
    height: 100px;
    margin: 0;
  }
}
/* end - Clients We Work With */