/* Absolutely center element
 * usage: @include centerer();
 */
/* Gradients
 * usage: @include linearGradient(#cccccc, #666666);
 */
/* Triangles
 * Use it inside :before or :after
 * usage: @include triangle-right(100px, #000000);
 */
/* Rotate
 * usage: @include rotate(7deg);
 */
/* Flip
 * usage @include flip-horizontal();
 */
/* Transition
 * usage @include transition(all 0.5s ease-in-out );
 */
/*
 * Circular bottom Box Shadow
 * To be used inside a :before or :after tag
 * usage: box-shadow-round(0, auto, 1140px, #000, 50%);
 */
/*
 * Column count
 */
/*
 * Transforms
 */
/* ==========================================================================
   Normalize & accessibility
   ========================================================================== */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 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; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * 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/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * 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/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  outline: none;
  overflow: visible; }

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
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; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 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 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 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 and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }
  .screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #404041;
    display: block;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Responsive video embeds */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  height: auto; }

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.clearfix {
  *zoom: 1; }

.align_center {
  text-align: center; }

/* ==========================================================================
   Site styles
   ========================================================================== */
.visible__sm {
  display: none; }

.site {
  overflow: hidden; }

.site-main {
  margin: 0 auto;
  overflow: hidden; }

.site-content {
  padding: 0 1rem; }

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center; }


.site-toolbox {
    flex: 1; 
      margin-top: 20px;

}

.header-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center; }

@media all and (min-width: 768px) {
  .site-main {
    max-width: 1400px; }

  .visible__sm {
    display: block;
    display: initial; }

  .marquee {
    flex: 1; }

  .copyright {
    width: 100%; } }
@media all and (min-width: 768px) {
  .md-3,
  .md-4,
  .md-5 {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    margin: .5rem 0; }

  .md-4 .entry-small,
  .md-5 .entry-small {
    width: calc(50% - 1rem); }

  .sm-2 {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between; }
    .sm-2 .entry-small {
      margin: 0 0 2rem 0;
      width: calc(50% - 1rem); }

  .site-footer {
    display: flex;
    flex-flow: wrap; }

  .footer-col {
    width: calc(50% - 1rem); } }
@media all and (min-width: 1024px) {
  .md-4 .entry-small {
    width: calc(25% - 0.5rem); }

  .md-5 .entry-small {
    width: calc(20% - 1rem); }

  .with-sidebar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin-bottom: -2em;
  }
  section{
      position:relative;
  }
  .section-main {
    width: calc(75% - .5rem); }

  .multicol {
    display: flex;
    justify-content: space-between; }
    .multicol.col-3 .section-main {
      width: calc(50% - 1.5rem); }
    .multicol.col-3 .section-side {
      width: calc(25% - 1rem); }

  .section-side {
    width: calc(25% - 1rem); }

  .footer-col {
    width: calc(25% - 1rem); } }
body {
  font-family: "Open Sans", serif; }

.bg-light {
  background: #e3e3e3; }

.bg-lighter {
  background: #f1f1f2; }

.bg-dark {
  background: #141414;
  color: #ffffff; }

.site-content {
  overflow: hidden;
}

.header-main {
  position: relative;
  color: #ffffff;
  padding: .5rem 1rem; }

.gradient-blue-center {
  background: #29346b;
  background: -moz-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: -webkit-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: linear-gradient(to right, #29346b 1%, #3f5da6 48%, #29346b 99%); }

.gradient-blue-vertical {
  background: #29346b;
  background: -moz-radial-gradient(center, ellipse cover, #3f5da6 0%, #29346b 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #3f5da6 0%, #29346b 100%);
  background: radial-gradient(ellipse at center, #3f5da6 0%, #29346b 100%); }

.handwritten {
  font-family: "Pacifico", cursive;
  font-weight: normal; 
  font-size: 2.7rem !important;
}

.entry-title {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: .5em;
  line-height: 1.2em; }

.footer-title {
  font-weight: lighter;
  font-size: 25px;
  font-size: 1.5625rem;
  margin-top: 0; }

img {
  max-width: 100%;
  height: auto; }

a.button {
  padding: .5rem 1rem;
  text-decoration: none;
  display: inline-block;
  font-weight: bold; }
  a.button.light {
    background: #ffffff;
    color: #404041; }

.multicol {
  margin: 0.2rem 0;
  padding: 1rem 0; }

.border-top {
  border-top: 2px solid #f1f1f2; }

.action-close {
  cursor: pointer; }

@media all and (min-width: 1164px) {
  .site-content {
    padding: 0; } }
.svg-icon {
  display: inline-block;
  pointer-events: none;
  width: 30px;
  height: 30px; }

.svg-play {
    width: 100px;
    height: 95px;
}
a .svg-icon {
  display: block; }

.ad {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem; }

.banner {
  display: flex;
  height: 150px;
  overflow: hidden;
  margin-bottom: 1px; }
  .banner .content {
    position: relative;
    background: #bf0101;
    color: #ffffff;
    padding: 1rem 0 1rem 1rem;
    width: 280px;
    max-width: 40%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start; }
    .banner .content::after {
      content: '';
      display: block;
      width: 120px;
      height: 210px;
      -moz-transform: rotate(28deg);
      -o-transform: rotate(28deg);
      -ms-transform: rotate(28deg);
      -webkit-transform: rotate(28deg);
      transform: rotate(28deg);
      background: #bf0101;
      position: absolute;
      right: -56px;
      top: -72px;
      z-index: 8; }
    .banner .content .teaser,
    .banner .content .title {
      width: calc(100% + 60px);
      position: relative;
      z-index: 9;
      margin: 0;
      font-size: 16px;
      font-size: 1rem; }
    .banner .content .button {
      margin-top: .5rem;
      position: relative;
      z-index: 9;
      font-size: 14px;
      font-size: 0.875rem; }
  .banner .image {
    position: relative;
    flex: 1;
    overflow: hidden; }
    .banner .image img {
      max-width: none;
      max-height: none;
      min-width: 100%;
      min-height: 100%;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .banner .toolbox {
    position: relative;
    background: #bf0101;
    color: #ffffff;
    width: 110px;
    height: 150px; }
    .banner .toolbox::before {
      content: '';
      display: block;
      width: 120px;
      height: 210px;
      -moz-transform: rotate(28deg);
      -o-transform: rotate(28deg);
      -ms-transform: rotate(28deg);
      -webkit-transform: rotate(28deg);
      transform: rotate(28deg);
      background: #bf0101;
      position: absolute;
      left: -56px;
      bottom: -72px; }
    .banner .toolbox .close {
      position: relative;
      z-index: 9;
      background: transparent;
      border: none;
      font-size: 15px;
      font-size: 0.9375rem;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-top: 1rem; }
      .banner .toolbox .close .icon {
        font-size: 22px;
        font-size: 1.375rem; }

@media all and (min-width: 768px) {
  .banner .content .teaser,
  .banner .content .title {
    font-size: 26px;
    font-size: 1.625rem; }
  .banner .content .button {
    font-size: 16px;
    font-size: 1rem; } }
.site-toolbox ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .site-toolbox ul li {
    position: relative; }
    .site-toolbox ul li::before {
      content: '';
      width: 1px;
      height: 30px;
      margin-right: .5rem;
      margin-left: .5rem;
      border-left: 1px solid #ffffff;
      display: inline-block;
      position: relative; }
    .site-toolbox ul li:first-child::before {
      display: none; }


.carousel-nav {
    display:none;
}

@media all and (min-width: 768px) {
    .carousel-nav {
    display:block;
}
    .site-toolbox ul li:last-child {
        padding-left:15px;
    }
    li.search {
    padding: 0px 15px;
    border-right: 2px solid #ccc;
}
    .site-toolbox ul li::before {
    display:none;
    }
  /*.site-toolbox ul li::before {
    margin-right: 0rem;
    margin-left: 0rem; }*/ }
.menu-toggle > .menu-icon {
    display: inline-block;
    width: 50px;
    height: 45px;
    padding: 5px 7px;
    border-radius: 3px;
}

.site-header.toggled .menu-toggle > .menu-icon > span {
  background: #999999; }

.menu-toggle > .menu-icon > span {
    display: block;
    height: 4px;
    width: 100%;
    margin: 8px 0;
    background: #999999;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.site-header.toggled .menu-icon > .first {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 0;
  margin-top: 14px;}

.site-header.toggled .menu-icon > .second {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-left: 0;
  margin-top: -12px; }

.site-header.toggled .menu-icon > .third {
  display: none; }

.menu-toggle {
    background: transparent;
    -webkit-tap-highlight-color: transparent;
    padding: 0;
    border: 0;
    outline: none;
    color: #404041;
    position: absolute;
    left: 20px;
    bottom: 30px;
}


.logo .svg-logo {
width: 100px;
    height: 85px;
    margin: 0 auto; }
.site-toolbox ul li::before {
display:none;
}
@media all and (min-width: 768px) {
  .logo .svg-logo {
  width: 150px;
    height: 125px;
    margin: 0 auto;
    margin-bottom:1.5rem;
    
  } }
.header-secondary {
  background: #09013c;
    height: 54px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 2rem; }
  .header-secondary .section-title {
    margin: 0;
    padding: 0 1rem;
    font-size: 20px;
    font-size: 1.25rem;
    color:#FFF;
  }
    .header-secondary .section-title::after {
      margin: 0; }
  .header-secondary .follow li a {
    color: #29346b; }
.main-navigation, .main-navigation-mobile {

}
  .main-navigation ul, .main-navigation-mobile ul {
    width: auto;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left; }

  .main-navigation li, .main-navigation-mobile li {
    width: auto;
    margin: 0px;
    padding: 0px 15px 0px 0px;
    display: inline;
}
  .main-navigation a, .main-navigation-mobile a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    line-height: 2em;
    display: inline;
    text-align:center;
  }

.toggled .main-navigation, .toggled .main-navigation-mobile {
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }

  .main-navigation ul, .main-navigation-mobile ul {
    width: auto;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: left; }
  .main-navigation a,  .main-navigation-mobile a{
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    line-height: 2em;
    display: block; }

.toggled .main-navigation, .toggled .main-navigation-mobile {
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0); }


@media all and (min-width: 768px) {
  .main-navigation {
    top: 140px; } }
.search.active .searchform {
  opacity: 1;
  visibility: visible; }

.action-search {
  position: relative;
  z-index: 999;
  display: block;
  cursor: pointer; }

.searchform {
  position: absolute;
  top: -12px;
  width: 100vw;
  max-width: 1419px;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
  opacity: 0;
  visibility: hidden;
  height: 60px; }
  .searchform::after {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    right: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999; }
  .searchform input {
    font-size: 22px;
    font-size: 1.375rem;
    text-align: center;
    font-weight: 100;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    outline: none; }
  .searchform::after {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    right: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    max-width: 1400px;
    top: 84px;
}
@media all and (min-width: 768px) {
  .searchform {
       max-width: calc(1164px + 630px);
    right: -11%;
    top: -1.5rem;
    height: 84px;} }
.searchform {
    max-width: 1400px;
    right: -47px;
}
.marquee {
    position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap; 
    background: -moz-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: -webkit-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: linear-gradient(to right, #29346b 1%, #3f5da6 48%, #29346b 99%); 
  background-color: #25316a;}
  .marquee ul {
    margin: 0;
    padding: 1rem;
    list-style: none;
    display: flex;
    animation: marquee 35s linear infinite; 
  }
  .marquee ul:hover {
    animation-play-state: paused;
}
.marquee:after {
    content: '';
background: rgb(2,0,36);
background: linear-gradient(280deg, rgba(2,0,36,1) 0%, rgba(37,49,106,0) 100%);
    position: absolute;
    right: 0;
    width: 10%;
    height: 54px;
    top: 0;
}
  .bullet_color {
        color: #fff;
}
    .marquee ul li {
      margin-right: 2rem; }
      .marquee ul li a {
        color:#fff;
        text-decoration: none; }

@keyframes marquee {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(-100%, 0); } }
.entry-small .thumb-container {
    position: relative;
    height: 215px;
    margin-bottom: 0.2em;
    overflow: hidden;
}

.entry-small .thumb-container img {
    max-width: 150%;
    height: auto;
    position: absolute;
    margin-left: -25%;
}
.thumb-container {
    position: relative;
}
  .thumb-container img {
    margin-bottom: -4px;
    min-height: 100%; 
  }

.badge {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    opacity: 0.9;
}

.tag {
  background: #bf0101;
  color: #ffffff;
  padding: .5rem 1rem;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem; 
  margin-right:5px;
  text-transform: uppercase;
  display: inline-block;
    margin-bottom: 5px;
}

.date {
  font-size: 14px;
  font-size: 0.875rem; }
  .date .separator {
    display: inline-block;
    height: 1em;
    width: 1px;
    border-left: 1px solid #bf0101;
    margin-left: .5rem;
    margin-right: .5rem;
    margin-bottom: -0.2rem; }

.entry-cover {
  position: relative; }
  .entry-cover img {
    width: 100%; }
  .entry-cover a {
    color: #404041;
    text-decoration: none; }
    .entry-cover a.tag {
      color: #ffffff; }
  .entry-cover .entry-excerpt {
    font-weight: bold;
    font-size: 19px;
    font-size: 1.1875rem;
    color: #404041;
    margin-top: 0; }
  .entry-cover .content-container {
    width: 100%;
    padding: 1rem 0; }
  .main-navigation, .main-navigation-mobile {
      background: #29346b;
  background: -moz-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: -webkit-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: linear-gradient(to right, #29346b 1%, #3f5da6 48%, #29346b 99%); 
  position: absolute;
  z-index: 999;
  top: 223px;
  left: 0;
  width: 35%;
  min-width:300px;
  padding: 1rem;
  -moz-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: transform 600ms cubic-bezier(0.68, -0.1, 0.265, 1.1);
  -moz-transition: transform 600ms cubic-bezier(0.68, -0.1, 0.265, 1.1);
  -o-transition: transform 600ms cubic-bezier(0.68, -0.1, 0.265, 1.1);
  transition: transform 600ms cubic-bezier(0.68, -0.1, 0.265, 1.1);
  border-bottom: 2px solid #bf0101; }
  .main-navigation::before, .main-navigation-mobile::before {
    content: '';
    background: #24316B;
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%; }
  .site-menu {
    flex: 1;
    margin-left: 25px;
}
@media all and (min-width: 768px) {

  .entry-cover .entry-title {
    font-size: 28px;
    font-size: 1.75rem; }
  .entry-cover a {
    color: #ffffff; }
  .entry-cover .entry-excerpt {
    color: #ffffff; }
  .entry-cover .date {
    color: #ffffff; }
.entry-cover .content-container:hover {
    bottom: 0px;
    }
    .carousel_subtitle {
        height:35px;
        display:block;
    }
    .menu-toggle {
        display:none;
    }
    .main-navigation {
    background: transparent !important;
    position: relative !important;
    display: inline;
    padding: 0px !important;
    height: auto !important;
    top: 0px !important;
}
  .main-navigation::before {
    content: '';
    background: transparent !important;
    display: block;
    position: relative !important;
    }
    .main-navigation li {
        float:left;
    }
    .site-menu {
    flex: 1;
    margin-left: 60px;
}


    .main-navigation ul, .main-navigation-mobile ul {
        width: 100%;
    }

  .entry-cover .content-container {
    padding: 1rem;
    bottom: 0px;
    position: absolute;
    transition:0.5s ease-in-out all;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0); } 

      .entry-cover  .maincarousel {
    bottom: -70px;
    }
}
.entry-small {
  margin: .5rem 0; }
  .entry-small a {
    text-decoration: none; }
    .entry-small a .entry-title {
      color: #404041;
      margin: 0;
      font-size: 17px;
      font-size: 1.0625rem; }
  .entry-small.horizontal {
    display: flex; }
    .entry-small.horizontal .thumb-container {
      min-width: 150px;
      margin-right: 1rem; }
    .entry-small.horizontal .date {
      color: #bf0101; float: left;
    padding: 0px 5px 0px 0px;}
  .entry-small.vertical img {
    margin-bottom: 0.2rem; }
  .entry-small.vertical .entry-title {
    margin-top: 0.2rem; }
   /*.entries-row h3.entry-title {
    margin-top: 2rem !important; }*/
  .entry-small.vertical .date {
    color: #989898; }
  .entry-small.vertical-alt {
    margin-bottom: 2rem; }
    .entry-small.vertical-alt .entry-title {
      margin-top: .5rem; }
    .entry-small.vertical-alt .thumb-container .date {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      color: #ffffff;
      z-index: 9; }
    .entry-small.vertical-alt .thumb-container::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
      background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
      pointer-events: none; }

.stream {
  padding: 1rem;
    height: 375px;
    overflow: auto;}
  .stream .section-title {
    margin-top: 0; }
  .stream .entry-small.horizontal .thumb-container img {
    min-height: 100%;
    max-width: none;
    width: auto; }

@media all and (min-width: 1024px) and (max-width: 1400px) {
  .stream .entry-small.horizontal .thumb-container {
    display: none; } }
.stream-carousel {
  position: relative;
  overflow: hidden; padding-top: 25px;}
  .stream-carousel .entry-small {
    margin: 0;
    padding-bottom: 1rem; }

.article .section-main {
  font-size: 17px;
  font-size: 1.0625rem; }
.article h1.section-title {
  text-align: left; 
  text-transform: uppercase;

}
  .article h1.section-title::after {
    margin: 0; }
.article .excerpt {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  margin-top: 0; 
  width:100%;
margin-bottom: 0em;
}
.article .subtitle {
  font-weight: 600; }
.article .meta-toolbox {
  width: 100%;
  float: left;
  margin: 0rem 0;
  padding: 1rem 0;
  color: #989898; }
  .article .meta-toolbox .actions {
    margin-top: 1rem;
    float: right; }

@media all and (min-width: 768px) {
  .article .meta-toolbox {
    display: flex;
    justify-content: space-between; }
    .article .meta-toolbox .actions {
      margin-top: 0; } }
.actions {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex; }
  .actions a {
    display: block;
    padding: 0 .5rem; }
    .actions a:hover .svg-icon {
      opacity: .8; }
  .actions .svg-icon {
    width: 20px; }

.single-share {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start; }
  .single-share a {
    padding: .7rem 1rem .7rem .5rem;
    display: block;
    text-decoration: none;
    color: #ffffff; }
  .single-share li {
    margin-right: .5rem; }
  .single-share .text {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: .5rem; }
  .single-share .facebook {
    background: #3e5997; }
  .single-share .twitter {
    background: #56aaed; }
  article .section-title {
    font-size: 0.7375rem;
}
.section-title {
    font-size: 39px;
    font-size: 2.4375rem;
    text-align: left;
    position: relative;
    margin: 0.5rem 0;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    border-bottom: 3px solid #c00000;
        padding: 0.6rem 0rem;
}
  /*.section-title::after {
    display: block;
    margin: 1rem auto;
    content: '';
    width: 50px;
    height: 3px;
    background: #bf0101; }*/

.social {
  width: 100%;
  overflow: hidden; }
  .social .gradient-blue-vertical {
    padding: 1rem 0;
    height: 89%; }

.entry-social {
  display: flex;
  padding: 1rem; }
  .entry-social .thumb-container {
    position: relative;
    width: 60px; }
.socialwall {
    max-height: 763px;
    overflow-y: scroll;
    overflow-x: hidden;
}
    .entry-social .thumb-container img {
      min-height: auto;
      max-width: none;
      width: 60px;
      height: 60px; 
      border-radius: 40px;
    }
  .entry-social .icon {
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-size: 0.625rem;
    display: block;
    text-align: center;
    line-height: 20px;
    position: absolute;
    top: 25px;
    right: -10px; }
    .entry-social .icon.icon-facebook {
      background: #3e5997; }
    .entry-social .icon.icon-twitter {
      background: #56aaed; }
  .entry-social .content-container {
    padding-left: 2rem; }
  .entry-social a {
    text-decoration: none;
    color: #56abed; }
  .entry-social .entry-title {
    font-size: 17px;
    font-size: 1.0625rem;
    margin: 0; }
  .entry-social .excerpt {
    font-size: 17px;
    font-size: 1.0625rem;
    color: #ffffff;
    margin: 0; }

@media all and (min-width: 768px) {
  .social {
    width: auto; } }
.multicover {
  padding: 1px 1rem 2rem 1rem; }
  .multicover.bg-lighter {
    border-bottom: 1px solid rgba(230, 230, 230, 0.8); }
  .multicover .entries {
    max-width: 380px;
    margin: 0 auto; }
  .multicover .entry-cover {
    overflow: hidden;
    margin: 0 0 1rem 0; }
    .multicover .entry-cover .thumb-container {
      height: 100%; }
      .multicover .entry-cover .thumb-container > a {
        height: 100%;
        display: block;
        padding-bottom: 100%; }
    .multicover .entry-cover img {
      max-width: none;
      width: auto;
      min-width: 100%;
      min-height: 100%;
      position: absolute;
      left: 50%;
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%); }

@media all and (min-width: 1024px) {
  .multicover .entries {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    max-width: none; }
  .multicover .entry-cover {
    /*width: calc(25% - 1rem);*/
    min-height:670px;
    width: calc(33.8% - 1rem);
  }
    /*.multicover .entry-cover:first-child {
      width: calc(50% - 1rem); }*/ 

}
.nav-links {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-size: 0.75rem; }
  .nav-links .label {
    display: none; }
  .nav-links li {
    padding: .2rem; }
    .nav-links li.prev a, .nav-links li.next a {
      background: transparent;
      color: #878787;
      font-weight: normal; }
      .nav-links li.prev a:hover, .nav-links li.next a:hover {
        color: #bf0101; }
    .nav-links li.active a {
      background: #bf0101; }
  .nav-links .dots,
  .nav-links a {
    font-weight: bold;
    color: #ffffff;
    display: block;
    min-width: 28px;
    padding: .3rem;
    text-align: center;
    text-decoration: none;
    background: #878787; }
  .nav-links a:hover {
    background: #bf0101; }

.pagination.light .dots,
.pagination.light a {
  background: #E6E6E6; }

@media all and (min-width: 768px) {
  .nav-links {
    font-size: 16px;
    font-size: 1rem; }
    .nav-links .dots,
    .nav-links a {
      min-width: 38px;
      padding: .5rem; } }
@media all and (min-width: 1024px) {
  .nav-links .label {
    display: inline-block; } }
.cover-full {
  overflow: hidden;
  margin-bottom: 2rem; }
  .cover-full img {
    min-height: 100%;
    min-width: 100%;
    width: auto;
    height: auto;
    max-height: none;
    max-width: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .cover-full .entry-cover {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    min-height: 500px; }
  .cover-full .date {
    background: #bf0101;
    color: #ffffff;
    padding: 2rem 1rem;
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold; }
  .cover-full .content-container {
    margin-top: 4rem;
    position: relative;
    text-align: center;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-flow: column;
    justify-content: flex-end; }
  .cover-full .entry-title {
    margin: 0;
    font-size: 34px;
    font-size: 2.125rem;
    color: #ffffff;
    line-height: 1.2em; }
  .cover-full .subtitle {
    margin: 0;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.2em; }
  .cover-full .excerpt {
    margin: 0;
    font-weight: bold;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.2em; }

@media all and (min-width: 768px) {
  .cover-full .entry-title {
    font-size: 50px;
    font-size: 3.125rem; }
  .cover-full .subtitle {
    font-size: 30px;
    font-size: 1.875rem; }
  .cover-full .excerpt {
    font-size: 17px;
    font-size: 1.0625rem; } }
.share {
  padding: 1rem; }
  .share .label {
    margin: 0;
    font-size: 14px;
    font-size: 0.875rem; }
  .share ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center; }
    .share ul li {
      padding: .2rem; }
      .share ul li a {
        font-size: 20px;
        font-size: 1.25rem;
        background: #878787;
        color: #ffffff;
        display: block;
        width: 42px;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-radius: 50%; }

.entries-row {
  padding: 1px 0 2rem 0; }
  .entries-row.bg-lighter {
    padding: 1px 1rem 2rem 1rem; }
  .entries-row .pagination {
    margin-top: 2rem; }

.entries-authors .thumb-container img {
  margin-bottom: 0; }
.entries-authors .entry-small .entry-title {
  margin-top: .5rem; }
.entries-authors .author {
  font-size: 14px;
  font-size: 0.875rem; }
  .entries-authors .author a {
    color: #bf0101; }

.videos .entries .play-container {
  background: #bf0101;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative; }
  .videos .entries .play-container .svg-play {
    width: 25px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.videos .entries .entry-video-side {
  display: flex;
  justify-content: space-between; }
  .videos .entries .entry-video-side .entry-cover {
    width: calc(50% - .5rem); }
.videos .entries .entry-title {
  margin: 0;
  font-size: 17px;
  font-size: 1.0625rem; }
.videos .entries a {
  color: #ffffff; }
.videos .entries .entry-excerpt {
  font-size: 17px;
  font-size: 1.0625rem; }
.videos .entries .entry-cover {
  overflow: hidden;
  margin-bottom: 1rem; }
  .videos .entries .entry-cover img {
    float: left;
    width: 100%; }
.videos .entries .content-container {
  position: absolute;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 1rem; }
  .videos .entries .content-container .row {
    width: 100%; }

@media all and (min-width: 1024px) {
  .videos .entries {
    display: flex;
    justify-content: space-between; }
    .videos .entries .entry-video-main {
      order: 1;
      width: calc(66.666% - 1rem); }
      .videos .entries .entry-video-main .entry-title {
        font-size: 28px;
        font-size: 1.75rem; }
      .videos .entries .entry-video-main .play-container {
        width: 80px;
        height: 80px; }
        .videos .entries .entry-video-main .play-container .svg-play {
          width: 40px;
          height: 45px; }
    .videos .entries .entry-video-side {
      flex-flow: column; }
      .videos .entries .entry-video-side .entry-cover {
        width: 100%; }
    .videos .entries .entry-video-side {
      width: calc(33.333% - 1rem); }
      .videos .entries .entry-video-side .entry-cover {
        height: calc(50% - 1rem); }
    .videos .entries .entry-cover {
      margin-bottom: 0; } }
.ant1you {
  margin: 2rem 0;
  padding: 2rem 1rem; }
  .ant1you .svg-ant1you {
    margin: 0 auto;
    display: block;
    width: 207px;
    height: 70px; }
  .ant1you .subtitle {
    text-align: center;
    font-size: 17px;
    font-size: 1.0625rem; }
  .ant1you .entry-small .content-container a .entry-title {
    color: #ffffff;
    margin-top: 0; }
.logos {
    padding-bottom: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
  .logos ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: wrap;
    justify-content: center; }

.site-footer {
  background: #325bc2;
  background: -moz-linear-gradient(top, #325bc2 0%, #022b70 100%);
  background: -webkit-linear-gradient(top, #325bc2 0%, #022b70 100%);
  background: linear-gradient(to bottom, #325bc2 0%, #022b70 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#325bc2', endColorstr='#022b70', GradientType=0);
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem; }
  .site-footer a {
    text-decoration: none;
    color: #ffffff; }
  .site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .site-footer ul li {
      line-height: 1.8em; }
  .site-footer .svg-logo {
    width: 114px;
    height: 96px; }
  .site-footer .footer-col {
    padding: 2rem; }
    .site-footer .footer-col:first-child {
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      align-items: center; }
    .site-footer .footer-col form {
      margin-top: 3rem; }
    .site-footer .footer-col input {
      text-align: center;
      width: 100%;
      border: none;
      padding: .5rem; }
      .site-footer .footer-col input[type="submit"] {
        background: #bf0101;
        margin-top: .5rem;
        width: auto;
        padding: .5rem 1.5rem; }
  .site-footer .follow {
    margin-top: 2rem; }
  .site-footer .copyright {
    padding: 2rem 1rem 0 1rem;
    font-size: 14px;
    font-size: 0.875rem; }
    .site-footer .copyright p {
      margin: 0;
      padding: 0; }

@media all and (min-width: 768px) {
  .site-footer {
    padding: 2rem; }
    .site-footer .footer-col {
      padding: 0 2rem 2rem 2rem; }
      .site-footer .footer-col:nth-child(even) {
        border-left: 1px solid #ffffff; } }
@media all and (min-width: 1024px) {
  .site-footer .footer-col {
    padding-bottom: 0;
    border-left: 1px solid #ffffff; }
    .site-footer .footer-col:first-child {
      border-left: none; } }
.follow {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  font-size: 22px;
  font-size: 1.375rem; }
  .follow.light a {
    color: #ffffff;
    padding: .5rem; }

.category-main {
  margin-bottom: 2rem; }
  .category-main .entry-cover {
    margin-bottom: 1rem; }
  .category-main .entry-small {
    margin-top: 0;
    margin-bottom: 1rem; }
  .category-main .pagination {
    margin: 2rem auto;     float: unset;
    clear: both;    display: block;
    width: 100%;
}
  .category-main .entries-row {
    margin-top: 2rem; }

@media all and (min-width: 768px) {
  .category-main {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start; }
    .category-main .entry-cover {
      width: calc(66.666% - .5rem); }
    .category-main .entry-small {
      width: calc(33.333% - .5rem); } }
.category-side {
  margin-bottom: 2rem; }
  .category-side .entries-row {
    padding-bottom: 0; }
  .category-side .entry-cover {
    margin-bottom: 1rem; }

.carousel-nav.vertical {
  padding: 1rem;
  text-align: center; }
  .carousel-nav.vertical button {
    background: #e3e3e3;
    border: 0;
    padding: 1rem;
    color: #989898; }
    .carousel-nav.vertical button:disabled {
      opacity: .6; }

/* ==========================================================================
   Print styles
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }

/*# sourceMappingURL=main.css.map */
.entry-small.horizontal .thumb-container {
    max-width: 150px !important;
    overflow: hidden;
}
.handwritten {
    text-transform: none;
}
.fourofour {
padding: 65px;
    width: auto;
    text-align: center;
    display: block;
    margin: 0 auto;
    max-width: 465px;
}
.center {
}
.cList {
    display: block;
    clear: both;
    width: 100%;
    min-width: 80%;
    float: unset;
    list-style: none;
    margin-left: 0px;
    padding-left: 0px;
}
.cList li a {
    color: #000000;
    margin-right: 10px;
    display: block;
}
.cList li a:hover {
    opacity:0.8;
}
.cList li {
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.cList li .dtcn {
    font-size: 0.8em;
    opacity: 0.6;
}

.container {
  margin: 0 auto;
}

.carousel-main img {
  display: block;
      width: 100%;
  margin: 0 auto; 
}
.carousel-nav .carousel-cell {
  width: calc(20.19% - 0.48rem);
  margin-right:0.4rem;
}
.carousel-cell {
  width: 100%;
   min-height:285px;
}
.carousel {

}

.carousel-main {

}
.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
          tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button:hover { background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }


.searchsuggestions {
    width: calc(100%);
    position: absolute;
    z-index: 9999;
    top: 130px;
}
    .searchsuggestions .teaser:hover {
            cursor: pointer;
    }
.caption {
    display: block;
    font-weight: bold;
}
.teaser {
    padding: 10px;
    margin: 10px;
    background-color: #dcdcdc;
    opacity: 1;
}
    .teaser:hover {
        opacity: 0.6;
    }

.simg {
    display: inline-block;
}
.details {
    display: inline-block;
    width: 80%;
    color: #000;
    margin-left: 20px;
    vertical-align: top;
}

.hiddenid {
    visibility: hidden;
    display: none;
}

.tabs ul {

}
.tabs li {
    list-style: none;
    display: inline;
    font-size: 0.8em !important;
    padding: 0.2rem 0rem;
    margin: 0rem 0.669rem 0 0;
    font-weight: bold;
    border-bottom: 2px solid #ccc;
}
.tabs {
    position: -webkit-sticky;
    position: sticky !important;
    top: -16px;
    background: #e3e3e3;
    width: calc(100% + 15px) !important;
    margin-left: -15px;
    padding: 15px;
}
.tabs .active {
    border-bottom: 2px solid #bf0101;
}
.tabs li a {
    text-decoration: none;
    color: #000;
}
.stream {
    position:relative;
}
.tabs, .tabs:hover, .tabs ul:hover , .tabs ul li:hover, .tabs ul li a:hover{
    margin: 0 !important;
    padding: 0 !important;
}
.light500 {
    font-weight:500;
}
.lowercase {
        text-transform: inherit;
}

    .weatherimage {
        width: 40px;
        position: absolute;
        left: -25px;
    }
    .more-nav:hover > .sub-nav{
        display:block;
    }
.sub-nav {
    display:none;
    transition: 0.3s all linear;
    position: absolute;
    top: 197px;
    background-color: #e3e3e3;
    right: 0px;
    text-align: right;
    z-index: 9;
    list-style: none;
    min-width:25%;
    margin-top:0px;
    border-top:10px solid #fff;
}
.sub-nav a {
    color: #2d2d2d;
    padding: 17px 10px;
    display: block;
    border-bottom:2px solid #ebebeb;
    position:relative;
    cursor:pointer;
        text-decoration: none;
}
.sub-nav a:before{
    position: absolute;
    width: 0px;
    height: 100%;
    right: -60px;
    top: 0px;
    content: '';
    background: #fff;
    opacity: 1;
    transition: all 0.3s;
    z-index: -1;
    
}
    .sub-nav a:hover:before {
       width: 110%;
       border-left:1px solid #bf0101;
    }
    i {
  border: solid #58595b;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  transition:0.3s all linear;
}
    .more-nav:hover .down {
      transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);    
    }
    .down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.more-nav {
    color: #57585a;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 7px 0px;
}
    .pullLeft a
{
    color: #2d2d2d;
    text-decoration: none;
    font: 20px;
    margin: 0px 55px;
    padding: 10px 10px;
    position: relative;
    z-index: 0;
    cursor: pointer;
}
/* Pull left  */
nav.pullLeft a:before {
    position: absolute;
    width: 2px;
    height: 60%;
    right: -60px;
    top: 9px;
    content: '';
    background: #999999;
    opacity: 0.3;
    transition: all 0.3s;
}
    nav {
        position:relative;
    }
nav.pullLeft a:hover:before
{
    width: calc(100% + 105px);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width:100%;
    max-width:1400px;
    margin: 0 auto;
        padding: 10px 0px;
}
.logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.site-menu {
    display: flex;
    margin-left: 0px;
    width: 100%;
    align-items: center;
    justify-content: center;
}
    .site-menu-sep {
        background-color: #ebebeb;
        width: 100%;
        height: 1px;
        content: '';
        display: block;
        max-width: 1400px;
        margin-bottom: 0.5rem;
    }
        .fist-row {
        display: flex;
        align-content: center;
        margin-bottom: 0.4rem;
    }
.site-date, .weather {
    color: #999999;
    margin-left: 1rem;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    font-weight:bold;
    margin-bottom: 0.7rem;
}
    .svg-live, .svg-video {
        width:90px;
        height:37px;
    }
.more-btn-title {
    font-size: 1rem;
    text-transform: none;
    text-decoration: none;
    color: #2e2e2e;
    float: right;
    transition:0.3s linear all;
    opacity:0.6;
}
    .more-btn-title:hover {
        opacity:1;
    }
.section-title:after{
    content:'';
    clear:both;
}
.ticker-title {
    border:0px;
}
.r-show, .r-show-more {
    display:none;
}
.main-navigation-mobile {
    display:none;
}
@media screen and (max-width: 1350px) {

    .pullLeft a:last-child {
        display:none;
    }
    .r-show {
        display:block;
    }
}

@media screen and (max-width: 1188px) {

    .pullLeft a:nth-child(5) {
        display:none;
    }
    .r-show-more {
        display:block;
    }
}

@media screen and (max-width: 1020px) {
    .menu-toggle {
        display:block;
    }
    .main-navigation-mobile {
    display:block;
    }
    .site-menu, .site-menu-sep, object.svg-icon.svg-live, .second-row{
        display:none;
    }
    .site-toolbox {
        display: block;
        width:100%;
    }

    .site-toolbox ul {
    justify-content: flex-end;
    margin: 0px 20px;
}
.fist-row {
    flex-direction: unset;
    text-align: center;
}
    .searchform {
    right: -67px;
    z-index: 9999;
}

}

        .m-first-row {
        display:none !important;
    }
@media screen and (max-width: 765px) {
    .showbiz {
    position: relative;
    color: #fff;
    padding:1rem !important;
}

.blogm {
    font-size: 0.65rem;
}
.showbiz a{
    color: #fff;
}
    .site-toolbox:first-child {
    position: absolute;
    z-index: 9999;
    max-width:60px;
    left:1rem;
}
.site-toolbox:last-child {
    position: absolute;
    z-index: 9999;
    max-width:60px;
    right:0rem;
}
.logo a {
    cursor: pointer;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    z-index: 9999;
}
.entries-row .mobile-small:nth-child(2) {
    margin-top: 2rem;
}
    .mobile-small {
    /*height: 75px;*/
    overflow: hidden;
    margin-bottom: 1rem;
}
.mobile-small .thumb-container {
float: left;
width: 130px;
height: 75px;
}
.mobile-small .svg-play {
    width: 40px;
}
.mobile-small .content-container {
    float: left;
    width: 54%;
}
.mobile-small .content-container .tag {
    margin-left:1rem;
}
    .mobile-small:after {
        content:'';
        clear:both;
    }
    .mobile-small .content-container .date {
            display: none;
    }

    .mobile-small .content-container .entry-title {
        margin-left:1rem;
        font-size:0.8rem;
    }
    .fist-row, .weather {
        display:none;
    }
    .section-title {
    font-size: 1.5rem;
}
    .searchform {
    right: 0px;
    z-index: 9999;
}
    .searchform::after {
    content: '';
    display: block;
    width: 100vw;
    height: 100vh;
    right: 0;
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    z-index: 999;
    max-width: 1400px;
    top: 60px;
}
    .site-toolbox ul {
    justify-content: flex-end;
    margin: 0px 0px;
}
    .site-toolbox ul {
        justify-content: flex-end;
    }
        .logo {
            flex-direction: row;
            position: relative;
            min-height: 85px;
    }
    .header-secondary {
        height: 0px;
    }
    .flickity-button {
    top: 20%;
    display:block !important;
    }
    .main-navigation-mobile {
        top: 105px;
    overflow: auto;
    height: 514px;
    }
    .more-btn-title {
        font-size: 0.8rem;
    }
    .site-toolbox ul li:last-child {
        display:none;
    }
    .svg-search {
    width: 90px;
    height: 40px;
}
        .m-first-row {
        display:block !important;
    }

.lastv{
    margin-bottom: 20px
}
.padding-d {
            margin-bottom: 20px !important;
    }
}
.show {
    display:block !important;
}

.sticky {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    border-top: 0;
    background: #fff;
    max-width: 100%;
    height: 100px;
}
    .flickity-button {
    display:none;
    }
    .video-category .video-list .entry-small .video-link {
    text-decoration: none;
    position: relative;
    height: 190px;
    display: block;
    overflow:hidden;
}
  .video-list  article.entry-small.vertical {
    height: 290px;
}
  


#searchform #searchLoading, #searchform #searchLoading:after {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
#searchform #searchLoading {
box-sizing: border-box;
    position: absolute;
    width: 10rem;
    display: none;
    height: 11rem;
    margin: 0px;
    border: 10px solid #bf0101;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #bf0101 transparent transparent transparent;
    position: absolute;
    top: 150px;
    left: calc(50% - 7rem);
    z-index: 9999;
}
#searchform #searchLoading div:nth-child(1) {
  animation-delay: -0.45s;
}
#searchform #searchLoading div:nth-child(2) {
  animation-delay: -0.3s;
}
#searchform #searchLoading div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.searchclose {
    position: absolute;
    width: 20px;
    height: 20px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 15px;
    left: 15px;
}
.searchclose span {
  display: block;
  position: absolute;
  left: 0;
  top: 23px;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  transform: rotate(0deg);
  transition: .2s ease-in-out;
}
.searchclose span:nth-child(1),
.searchclose span:nth-child(3) {
  width: 50%;
  transform: rotate(45deg);
}

.searchclose span:nth-child(1) {
    left: 0px;
    top: 20px;
}

.searchclose span:nth-child(2) {
  transform: rotate(-45deg);
}

.searchclose span:nth-child(3) {
    left: 9px;
    top: 27px;
}
        /* progress bar */
        .slider-wrapper {
            position:relative;
        }
.slider-progress {
    height: 3px;
    background: #fff;
    /*position: absolute;*/
    bottom: 285px;
    width: calc(75% - .5rem);
}
.slider-progress .progress {
  width: 0%;
  height: 3px;
  background: #bf0101;
}

        .carousel-nav article img {
            filter: grayscale(100%);
            -webkit-transition: all 0.5s ease;
            transition: all 0.5s ease;
        }

        .carousel-nav .is-selected article img {
           filter: grayscale(0%);
        }

        /*#loadMore-latests {
    padding: 10px;
    text-align: center;
    background-color: #33739E;
    color: #fff;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: #fff;
    box-shadow: 0 1px 1px #ccc;
    transition: all 600ms ease-in-out;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -o-transition: all 600ms ease-in-out;
}
#loadMore-latests:hover {
    background-color: #fff;
    color: #33739E;
}
#featuredContentContainer article{display:none;}*/

.red-color {
 color:#bf0101;
}

    .m-first-row > div {
    color: #fff;
    padding: 0px;
    margin: 5px;
}
    m-first-row > a:first-child {
        margin-top:10px;
    }
.m-first-row > a {
    float: left;
    width: 126px;
    cursor: pointer;
}
.m-first-row > a > .svg-icon {
    margin: 0 auto;
    padding: 0;
}
.m-first-row {
    text-align:center;
}

.carousel-cell .badge {
        z-index:0 !important;
}

.stickylogo {
    position: absolute;
    height: 74px;
    width: 150px;
    left: 50%;
    margin-left: -75px;
}
.entries-authors .thumb-container img {
    margin-left: 0px;
}

p {
    display: block;
    width: 100%;
}
.ticker-title a {
    color: #fff;
    text-decoration: none;
}
a.btn-title {
    color: #404041;
    text-decoration: none;
}

.container:first-child {
    display:none;
}
.blog_user {
    height: 60px;
    width: 197px !important;
    min-width: 100px;
   margin-left: -35%;
}
.blog_img {
    position: absolute;
    width: 60px;
    overflow: hidden;
    height: 60px;
    border-radius: 90px;
    left: -70px;
    top: -5px;
}
.blog_home_img {
    width: 105%;
    height: auto
}

label.field {
    border-radius: 2px;
    color: #666;
    display: block;
    margin: 16px;
    max-width: 300px;
    padding: 8px;
    opacity: 1;
    position: absolute;
    transition-property: opacity;
    z-index: 1;
    left: 244px;
    top: -17px;
}
label.field span {
  color: inherit;
  display: block;
  font-size: 16px;
  height: 20px;
  line-height: 20px;
  left: 9px;
  pointer-events: none;
  position: absolute;
  top: 32px;
  transform: scale(1) translateY(0);
  transition-property: color, font-size, top;
  z-index: 1;
}
label.field span.required::after {
  color: inherit;
  content: "*";
  display: block;
  height: 20px;
  left: -20px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}
.error label.field span {
  color: #f02318;
}
label.field .psuedo_select {
  background: rgba(255, 255, 255, 0);
  position: relative;
  border-color: #666;
  border-style: solid;
  border-width: 0 0 2px 0;
  color: #666;
  cursor: pointer;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  margin: 24px 32px 0 0;
  min-width: 250px;
  padding-top: 24px;
  outline: 0;
  z-index: 1;
}
label.field .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#666' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
  content: "";
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  right: 0;
  transition-property: background;
}
label.field .psuedo_select .selected {
  height: 24px;
  left: 1px;
  line-height: 24px;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: translateY(24px);
  transition-property: opacity, transform;
  will-change: transform;
}
label.field .psuedo_select ul {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  display: block;
  height: 0;
  list-style: none;
  margin-top: 2px;
  opacity: 0;
  overflow: hidden;
  padding: 0 1px;
  pointer-events: none;
  transition-property: height, opacity;
  width: 100%;
  z-index: 2;
}
label.field .psuedo_select ul li {
    height: 30px;
    padding: 8px 4px;
    font-size: 15px;
}
label.field .deselect {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: -1;
}
label.field.focused {
  color: #007bed;
}
label.field.focused .psuedo_select {
  border-color: #007bed;
}
label.field.focused .psuedo_select::after {
  background: url("data:image/svg+xml;utf8,<svg fill='#007BED' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'> <path d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/> <path d='M0-.75h24v24H0z' fill='none'/> </svg>"), no-repeat;
}
label.field.focused .psuedo_select ul {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1022px) {
    .flashn {
        padding-top:45px !important;
        font-size: 1.3rem !important;
    }
    .entries-row {
        position:relative;
    }
}
@media screen and (max-width: 762px) {
.no-mobile {
    display:none;
}
label.field {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-left: 0px;
    left: 9px;
    top: 40px;
}
.section-title.localtitle {
    margin-bottom: 70px;
}
.flashn {
    padding: 25px 5px 0px 67px !important;
    font-size: 0.9rem !important;
}
}

.map-img {
    position: absolute;
    top: 33px;
    left: 230px;
}
.flashn {
    height: 150px;
    display: block;
    color: #fff;
    padding: 58px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
    background: -moz-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: -webkit-linear-gradient(left, #29346b 1%, #3f5da6 48%, #29346b 99%);
  background: linear-gradient(to right, #29346b 1%, #3f5da6 48%, #29346b 99%); 
  background-color: #25316a;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  float:left;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.cookie_opt {
    float: left;
    margin-top: 6px;
    margin-left: 10px;
}

.site-main .tabs {
    padding-top: 20px;
    z-index: 2;
    position: relative;
}

.el-notification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 330px;
    padding: 14px 26px 14px 13px;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ebeef5;
    position: fixed;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    -webkit-transition: opacity .3s, left .3s, right .3s, top .4s, bottom .3s, -webkit-transform .3s;
    transition: opacity .3s, left .3s, right .3s, top .4s, bottom .3s, -webkit-transform .3s;
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s, -webkit-transform .3s;
    overflow: hidden
}

.el-notification.right {
    right: 16px
}

.el-notification.left {
    left: 16px
}

.el-notification-group {
    margin-left: 13px
}

.el-notification-title {
    font-weight: 700;
    font-size: 16px;
    color: #303133;
    margin: 0;
    cursor:pointer;
}

.el-notification-content {
    font-size: 14px;
    line-height: 21px;
    margin: 6px 0 0;
    color: #606266;
    text-align: justify;
    cursor:pointer;
}
.el-notification-title:hover, .el-notification-content:hover{
    color:#428bca;
}

.el-notification-content p {
    margin: 0
}

.el-notification-icon {
    height: 24px;
    width: 24px;
    font-size: 24px
}

.el-notification-close-btn {
    position: absolute;
    top: 18px;
    right: 15px;
    cursor: pointer;
    color: #909399;
    font-size: 16px
}

.el-notification-close-btn:hover {
    color: #606266
}

.el-notification .el-icon-success {
    color: #67c23a
}

.el-notification .el-icon-error {
    color: #f56c6c
}

.el-notification .el-icon-info {
    color: #909399
}

.el-notification .el-icon-warning {
    color: #e6a23c
}

.el-notification-fade-enter.right {
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.el-notification-fade-enter.left {
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.el-notification-fade-leave-active {
    opacity: 0
}

.el-default-close-btn {
    display: inline-block;
    width: 10px;
    height: 10px;
    overflow: hidden;
}
.el-default-close-btn:hover::before, .el-default-close-btn:hover::after {
    background: #428bca;
}
.el-default-close-btn::before, .el-default-close-btn::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #000;
}
.el-default-close-btn::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.el-default-close-btn::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#newsletterEmail {
    color: #666;
}
.iframevideo {
    margin-bottom: 0px;
    padding-bottom: 0px;
    max-height: 620px;
}
.custom-title {
    max-width: 820px;
    margin: 0 auto !important;
    margin-bottom: 2rem !important;
}

.audioplayer {
    width: 135px;
    position: absolute;
    height: 25px;
    right: 10px;
    top: 7px;
}
.tts_article {
    background: url(/img/Voice_tts.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 334px;
    height: 40px;
    background-repeat: no-repeat;
}
.tts_article span {
    color: #fff;
    padding: 0px 50px;
    font-weight: bold;
    display: block;
    margin-top: 7px;
}
@media screen and (max-width: 762px) {
.tts_article {
    position: relative;
    width: 340px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
}
.tts_article span {
    padding-top: 7px;
}
}


.scrollbar-wrapper
{
	text-align: center;
	width: 500px;
	margin: auto;
}

.scrollbar
{
	overflow-y: scroll;
	margin-bottom: 25px;
}


.style-7::-webkit-scrollbar-track
{
	background-color: transparent;
}

.style-7::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

.style-7::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(122,153,217)), color-stop(0.72, #3f5da6), color-stop(0.86, #29346b));
}

.sprt_social {
    background-image: url(https://ant1media.azureedge.net/images/social_icons_final.png);
}
.smb {
    float: left;
}
.smb a {
    width: 42px;
    height: 43px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: ease-out 2s;
}
.watch_social {
    float: left;
    margin-right: 3px;
}
.em {
    background-position: -197px -9px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.popup-login {
  padding: 20px; }
  .popup-login p {
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 300; }
    .popup-login p.excerpt {
      text-align: center;
      max-width: 320px;
      margin: 20px auto 40px auto;
      width: 100%;
      text-decoration:underline;
    }
  .popup-login label,
  .popup-login legend {
    font-weight: 100;
    clear: both;
    display: block;
    padding-bottom: 6.66667px; }
  .popup-login form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto; }
  .popup-login .social-connect {
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
    padding: 13.33333px 20px;
    font-size: 20px;
    font-size: 1.25rem;
    text-decoration: none;
    text-align: center;
    position: relative;
    display: block; }
    .popup-login .social-connect .icon {
      position: absolute;
      left: 20px;
      font-size: 20.8px;
      font-size: 1.3rem; }
    .popup-login .social-connect.facebook {
      background: #4C7BD9;
      margin-top: 46px; }
    .popup-login .social-connect.gplus {
      background: #A998A4;
      margin-top: 24px; }
  .popup-login fieldset {
    border: none;
    padding: 0; }
    .popup-login fieldset legend {
      padding: 10px 0; }
    .popup-login fieldset.three-col label {
      display: inline-block;
      width: calc(33.333% - 3px);
      float: left;
      margin-right: 4px;
      clear: none;
      position: relative; }
      .popup-login fieldset.three-col label:last-child {
        margin-right: 0; }
  .popup-login select {
    width: 100%;
    padding: 10px;
    color: #6D6E71; }
  .popup-login textarea {
    padding: 10px 20px;
    background: #fff;
    width: 100%;
    color: #000; }
  .popup-login input {
    border: none;
    padding: 10px 20px; }
    .popup-login input[type="text"], .popup-login input[type="email"], .popup-login input[type="password"] {
      background: #fff;
      width: 100%;
      color: #000; }
    .popup-login input[type="radio"], .popup-login input[type="radio"] + label, .popup-login input[type="checkbox"], .popup-login input[type="checkbox"] + label {
      display: inline-block;
      float: left;
      clear: none;
      line-height: 1em; }
    .popup-login input[type="radio"], .popup-login input[type="checkbox"] {
      margin-right: 10px; }
      .popup-login input[type="radio"] + label, .popup-login input[type="checkbox"] + label {
        max-width: calc(100% - 30px);
        padding-right: 20px; }
    .popup-login input[type="submit"] {
      background: #CC0000;
      margin: 30px auto 10px auto;
      display: block;
      width: 100%;
      max-width: 250px;
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 300; }
  .popup-login .login-container {
    background: rgba(0,0,0,.8);
    max-width: 1150px;
    margin: 0 auto; }
    .popup-login .login-container > div {
      padding: 40px 20px; }
  .popup-login .mfp-close {
    background: #CC0000;
    color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-size: 35.2px;
    font-size: 2.2rem;
    position: absolute;
    right: -21px;
    top: -21px;
    letter-spacing: 0; }
  .popup-login .smalltext {
    float: left;
    display: inline-block;
    padding-bottom: 40px;
    font-size: 13px;
    font-size: 0.8125rem;
    width: 100%; }
    .popup-login .smalltext label {
      display: inline-block;
      clear: none; }
    .popup-login .smalltext.forgot-password {
      text-align: right;
      padding-left: 10px; }
      .popup-login .smalltext.forgot-password a {
        text-decoration: none; }
    .popup-login .smalltext.half {
      width: 50%; }
  .popup-login .account-remove {
    display: block;
    clear: both;
    border-top: 1px solid #999999;
    float: left;
    width: 100%;
    padding-top: 20px;
    opacity: .4; }


*/
.mfp-move-horizontal {
  /* start state */
  /* animate in */
  /* animate out */ }
  .mfp-move-horizontal .mfp-with-anim {
    opacity: 0;
    transition: all 0.3s;
    transform: translateX(-50px);
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
    -ms-animation-duration: .3s;
    -o-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden; }
  .mfp-move-horizontal.mfp-bg {
    opacity: 0;
    transition: all 0.3s; }
  .mfp-move-horizontal.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: translateX(0); }
  .mfp-move-horizontal.mfp-ready.mfp-bg {
    opacity: 0.8; }
  .mfp-move-horizontal.mfp-removing .mfp-with-anim {
    transform: translateX(50px);
    opacity: 0; }
  .mfp-move-horizontal.mfp-removing.mfp-bg {
    opacity: 0; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-o-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.popup-forgot-password {
  padding: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative; }
  .popup-forgot-password .login-container {
    background: #323435;
    padding: 40px;
    position: relative; }
  .popup-forgot-password h1 {
    font-weight: 100;
    font-size: 30px;
    font-size: 1.875rem;
    margin: 0; }
  .popup-forgot-password .excerpt {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 100; }
    .popup-forgot-password .excerpt.center {
      text-align: center; }
  .popup-forgot-password label {
    clear: both;
    display: block;
    padding-bottom: 6.66667px;
    font-size: 17px;
    font-size: 1.0625rem;
    font-weight: 300; }
  .popup-forgot-password form {
    box-sizing: border-box; }
  .popup-forgot-password input {
    border: none;
    padding: 10px 20px;
    box-sizing: border-box; }
    .popup-forgot-password input[type="email"] {
      background: #fff;
      width: 100%;
      color: #000;
      max-width: 320px; }
    .popup-forgot-password input[type="submit"] {
      background: #CC0000;
      display: block;
      font-size: 20px;
      font-size: 1.25rem;
      font-weight: 300; }
  .popup-forgot-password a.popup-login-link {
    text-decoration: none;
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 48px;
    font-size: 3rem;
    color: #fff; }

.mfp-content .mfp-close {
  color: #fff;
  right: -20px;
  top: -20px;
  opacity: 1;
  font-size: 48px;
  font-size: 3rem;
  font-family: "Open Sans", serif;
  font-weight: 100; }

.popup {
  position: relative;
  padding: 20px;
  width: 96%;
  max-width: 600px;
  margin: 0 auto; }
  .popup .popup-content-container {
    background: #323435;
    padding: 40px;
    position: relative; }
  .popup .label {
    font-weight: lighter; }
    .popup .label.center {
      text-align: center; }
    .popup .label.large {
      font-size: 25px;
      font-size: 1.5625rem; }
  .popup .btn a {
    min-width: 140px; }

.mfp-gallery .mfp-close {
  right: 0;
  top: 0; }
.mfp-gallery .mfp-content {
  position: relative; }
.mfp-gallery .arrows {
  width: 44px;
  height: 44px;
  position: absolute;
  top: calc(50% - 20px);
  font-size: 32px;
  font-size: 2rem;
  background: #323435;
  text-decoration: none;
  color: #fff;
  cursor: pointer; }
  .mfp-gallery .arrows.arrow-left {
    left: 0; }
  .mfp-gallery .arrows.arrow-right {
    right: 0; }

.popup-character {
  position: relative;
  max-width: 1000px;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding: 20px;
  background: rgba(50, 52, 53, 0.9); }
  .popup-character .content {
    max-height: 70vh;
    overflow-x: hidden;
    overflow-y: auto; }
  .popup-character img {
    border: 1px solid #fff;
    width: 100%; }
  .popup-character h1 {
    font-size: 19.2px;
    font-size: 1.2rem;
    font-weight: lighter;
    margin-bottom: 0; }
  .popup-character p {
    font-size: 16px;
    font-size: 1rem;
    font-weight: lighter; }
  .popup-character .ajax-popup {
    position: absolute;
    top: calc(50% - 40px);
    font-size: 24px;
    font-size: 1.5rem;
    background: #323435;
    text-decoration: none; }
    .popup-character .ajax-popup.prev {
      left: -40px; }
    .popup-character .ajax-popup.next {
      right: -40px; }
.copylink {
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    padding: 10px 25px;
    margin: 20px 0px 0px;
    display: inline-block;
}
.copylink:hover {
    color: #323435;
    background-color:#fff;
}

/**
 * Mobile Home page
 */

.mobile_thumb {
    width: 50%;
    overflow: hidden;
    display: block;
    float: left;
    margin-right: 10px;
    height: 120px;
}
.mobile_thumb img {
height: 100%;
    width: auto;
        max-width: unset;
        margin-left: -22%;
}
.mobile-right {
max-width: 45%;
    float: left;
    width: 65.5%;
}
.mobile-right .entry-title {
    font-size: 0.9rem !important;
    padding-top: 15px;
}
.mobile-h-a {
    display: block;
    height: 135px;
}
.mobile-h-a .tag {
    background: transparent;
    color: #bf0101;
    padding: 0;
    float: left;
    font-size: 0.6rem;
    font-weight: bold;
    border-left: 2px solid #bf0101;
    padding-left: 5px;
}
.mobile-hour {
    display: block;
    float: left;
    font-size: 0.6rem;
    color: #bf0101;
    font-weight: bold;
    padding-right: 5px;
}
.mobile-right .entry-excerpt {
    color: #666;
    font-size: 0.8rem;
    padding: 0px;
    margin-top: 5px;
}


@media all and (max-width: 1200px) {
        .mobile-h-a {
            width: calc(50% - 20px) !important;
        }
        .mobile-no-asset {
            width:100% !important;
        }
        .mobile-no-asset .clearfix {
            display: inline-block;
            height: 145px;
        }
}

@media all and (max-width: 758px) {
        .mobile-h-a {
            width: 100% !important;
        }
        .mobile-no-asset .clearfix {
            display:unset;
            height: 0px;
        }
}

#scroll-mobile {
    position:fixed;
    right:10px;
    bottom:65px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#3f5da6;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll-mobile span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll-mobile:hover {
    background-color:#bf0101;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

.Go_back {
    width: 80px;
    position: fixed;
    top: 8px;
    z-index: 999;
    right: 12%;
    opacity: 0.5;
}

.stickylogogrowth {
    position: absolute;
    top: 0px;
    margin-left: 65px;
}

article iframe {
    width: 100%;
    min-height: 589px;
}
.notification_bell {
    background-image: url(/images/bell.png);
    background-repeat: no-repeat;
    width: 37px;
    height: 47px;
    position: absolute !important;
    top: -25px;
    display: block;
    margin-left: -45px !important;
    padding-right: 47px;
    border-right: 1px solid #999999;
}
.notification_count {
    background-color: #bf0101;
    color: #fff;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 0.9rem;
    position: absolute;
    top: -5px;
    right: 10px;
    font-weight: bold;
}

article i {
    border: 0px;
    display: initial;
    padding: 0px;
    margin: 0px;
    transition: none;
}