@charset "UTF-8";
/*!
Theme Name: Project S.N.A.P.
*/
 /*
 * Mixin for easy media queries
 * @include bp(tablet) { SCSS here };
 * Default css is for big screen > 1300px width
*/
/*
* Mixing for Touch device 
* wrap element with html.touch
* @include touch {}
* Learned it after long way... just need to add '&'
*/
/*
 * Mixin for micro clearfix
 * @include microclearfix;
*/
/*
 * Mixin for CSS3 transition
 * @include background-size($size:cover);
*/
/*
 * Mixin for CSS3 transition
 * @include transition($property:all, $duration:0.2s, $function:ease);
*/
/*
 * Mixin for reset list property
 * @include resetlist;
*/
/*
 * Mixin for box-sizing
 * @include borderbox;
*/
/* rotate mixin
 * @include rotate(0deg){}
*/
/* rotate triangle
 * @include triangle(top,4px,$color-dark);
*/
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', 'assets/fonts/', 'myfontname');
 */
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
	Variable Grid System (Fluid Version).
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/ & 960 Fluid - http://www.designinfluences.com/

	Licensed under GPL and MIT.

	Custom Grid: base container[960px]; 
	No. of columns: 9
	Column width: 60px
	Gutter width: 10px 
*/
/* Containers
----------------------------------------------------------------------------------------------------*/
.row {
  clear: both;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .row {
    max-width: 96%;
  }
}

/* Grid >> 9 Columns
----------------------------------------------------------------------------------------------------*/
.grid_1 {
  width: 9.111%;
}

.grid_2 {
  width: 20.222%;
}

.grid_3 {
  width: 31.333%;
}

.grid_4 {
  width: 42.444%;
}

.grid_5 {
  width: 53.556%;
}

.grid_6 {
  width: 64.667%;
}

.grid_7 {
  width: 75.778%;
}

.grid_8 {
  width: 86.889%;
}

.grid_9 {
  width: 98.0%;
}

.grid_1half {
  width: 49%;
  margin-left: 0 !important;
  clear: both;
}

.grid_2half {
  width: 49%;
  margin-right: 0 !important;
}

.grid_half {
  width: 48%;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/
[class*='grid_'] {
  display: inline;
  float: left;
  position: relative;
  margin-left: 1%;
  margin-right: 1%;
  /* Mobile */
}
[class*='grid_'].alpha {
  margin-left: 0;
}
[class*='grid_'].omega {
  margin-right: 0;
}
@media (max-width: 767px) {
  [class*='grid_'] {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* Prefix Extra Space >> 9 Columns
----------------------------------------------------------------------------------------------------*/
.prefix_1 {
  padding-left: 11.111%;
}

.prefix_2 {
  padding-left: 22.222%;
}

.prefix_3 {
  padding-left: 33.333%;
}

.prefix_4 {
  padding-left: 44.444%;
}

.prefix_5 {
  padding-left: 55.556%;
}

.prefix_6 {
  padding-left: 66.667%;
}

.prefix_7 {
  padding-left: 77.778%;
}

.prefix_8 {
  padding-left: 88.889%;
}

/* Suffix Extra Space >> 9 Columns
----------------------------------------------------------------------------------------------------*/
.suffix_1 {
  padding-right: 11.111%;
}

.suffix_2 {
  padding-right: 22.222%;
}

.suffix_3 {
  padding-right: 33.333%;
}

.suffix_4 {
  padding-right: 44.444%;
}

.suffix_5 {
  padding-right: 55.556%;
}

.suffix_6 {
  padding-right: 66.667%;
}

.suffix_7 {
  padding-right: 77.778%;
}

.suffix_8 {
  padding-right: 88.889%;
}

/* Push Space >> 9 Columns
----------------------------------------------------------------------------------------------------*/
.push_1 {
  left: 11.111%;
}

.push_2 {
  left: 22.222%;
}

.push_3 {
  left: 33.333%;
}

.push_4 {
  left: 44.444%;
}

.push_5 {
  left: 55.556%;
}

.push_6 {
  left: 66.667%;
}

.push_7 {
  left: 77.778%;
}

.push_8 {
  left: 88.889%;
}

/* Pull Space >> 9 Columns
----------------------------------------------------------------------------------------------------*/
.pull_1 {
  left: -11.111%;
}

.pull_2 {
  left: -22.222%;
}

.pull_3 {
  left: -33.333%;
}

.pull_4 {
  left: -44.444%;
}

.pull_5 {
  left: -55.556%;
}

.pull_6 {
  left: -66.667%;
}

.pull_7 {
  left: -77.778%;
}

.pull_8 {
  left: -88.889%;
}

.pull_right {
  float: right;
}

@media (max-width: 767px) {
  [class*='prefix_'], [class*='suffix_'] {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */
.clearfix:after, .row:after {
  clear: both;
  content: ' ';
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*
 * Global Styles
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}

body {
  font-size: 14px;
  line-height: 1.4;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #757575;
  -webkit-font-smoothing: antialiased;
}

/*
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #06273a;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #06273a;
  color: #fff;
  text-shadow: none;
}

/*
 * Default Link
 */
a {
  color: #2a3a6b;
  text-decoration: none;
}
a:hover {
  color: #1a2e6b;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

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

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}

/* Text meant only for screen readers */
.assistive-text {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

/*=Headings
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: #2a3a6b;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  color: #2a3a6b;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #2a3a6b;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  color: #2a3a6b;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 12px;
}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }
}
blockquote {
  margin: 0;
}
blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a, blockquote cite a:visited {
  color: #555;
}

p {
  margin-top: 0;
}

/*=Basic WordPress Classes
---------------------------------------*/
/* Aligns, prev next links */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter, div.aligncenter {
  display: block;
  margin-left: auto !important;
  margin-right: auto !important;
  float: none;
}

.navigation, .comment-navigation {
  display: block;
  clear: both;
}

.attachment a {
  border: 0;
}

.navigation-image a {
  border: none;
}

/* images */
p img {
  padding: 0;
  max-width: 100%;
}

img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  margin: 0 0 10px 35px;
  display: inline;
}
img.alignleft {
  margin: 0 35px 10px 0;
  display: inline;
}

/* Captions */
.wp-caption {
  border: 1px solid #ddd;
  text-align: center;
  background-color: #fafafa;
  padding-top: 5px;
  margin: 5px 25px 25px 0px;
  border-radius: 3px;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.wp-caption p.wp-caption-text {
  font-size: 10px;
  line-height: 16px;
  padding: 4px 4px 5px 0;
  margin: 0;
  color: #666;
}

/* Various Tags & Classes */
acronym, abbr, span.caps {
  cursor: help;
}

acronym, abbr {
  border-bottom: 1px dashed #999;
}

.center {
  text-align: center;
}

.hidden {
  display: none;
}

.screen-reader-text {
  position: absolute;
  left: -1000em;
}

/*
 * Box Sizing
 *
 * Set that shit to border-box, yo. And fix those pesky pseudo elements
 */
/* ==========================================================================
   Border-box all the things!
   ========================================================================== */
:before,
:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   Custom Font Icons: Special for Ideahall only
   ========================================================================== */
/* Generating Font */
@font-face {
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/icomoon.eot");
  src: url("../fonts/icomoon.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.svg#icomoon") format("svg");
}
[class^="icon-"], [class*=" icon-"], .link-facebook a:before, .link-twitter a:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-file:before {
  content: "\e600";
}

.icon-zoom:before {
  content: "\e601";
}

.icon-next:before {
  content: "\e602";
}

.icon-prev:before {
  content: "\e603";
}

.icon-spinner:before {
  content: "\e604";
}

.icon-play:before {
  content: "\e605";
}

.icon-googleplus:before {
  content: "\e606";
}

.icon-facebook:before {
  content: "\e607";
}

.icon-instagram:before {
  content: "\e608";
}

.icon-twitter:before {
  content: "\e609";
}

.icon-flickr:before {
  content: "\e60a";
}

.icon-download:before {
  content: "\e60b";
}

.icon-youtube:before {
  content: "\f167";
}

.icon-submit:before {
  content: "\e60c";
}

.icon-signup:before {
  content: "\e60d";
}

.icon-guidelines:before {
  content: "\e60e";
}

.icon-additional:before {
  content: "\e60f";
}

.icon-register:before {
  content: "\e610";
}

.icon-new-file:before {
  content: "\e900";
}

.icon-people-2:before {
  content: "\e901";
}

.icon-upload:before {
  content: "\e902";
}

.icon-information:before {
  content: "\e903";
}

.icon-email:before {
  content: "\e904";
}

.icon-people:before {
  content: "\e905";
}

.icon-volume:before {
  content: "\e906";
}

.icon-volume1:before {
  content: "\e907";
}

/* 
* Common styles used in more than one pages 
* Like : Header, Footer & other common styles
*/
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  *zoom: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper:before, .wrapper:after {
  content: "";
  display: table;
}
.wrapper:after {
  clear: both;
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 10px;
  }
}

.inner-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

#main {
  display: flex;
  flex-direction: column;
  min-height: calc( 100vh - 63px );
  background: #fff;
  position: relative;
  left: 0;
  -webkit-transition: left 0.2s ease-in-out;
  -moz-transition: left 0.2s ease-in-out;
  -ms-transition: left 0.2s ease-in-out;
  transition: left 0.2s ease-in-out;
}
#main.navOpen {
  left: -220px;
}
#main.navOpen #header {
  left: -220px;
}

body {
  padding-top: 63px;
}

#header {
  background: white;
  height: 63px;
  border-bottom: 0 solid #2a3a6b;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
#header .wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
#header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .head {
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  #header .head {
    margin-bottom: 0;
  }
}
@media (max-width: 1150px) {
  #header {
    padding: 0px 10px;
  }
}

#logo {
  width: 107px;
  height: auto;
  position: relative;
  margin-top: 0;
}
#logo img {
  max-width: 100%;
}

.search form {
  line-height: 1;
}

.search .textfield {
  background: none;
  border: none;
  border: 1px solid rgba(95, 95, 95, 0.46);
  -webkit-box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.25) inset;
  box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.25) inset;
  font-size: 10px;
  color: #fff;
  padding: 5px 10px;
}

#content {
  background: #fff;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.group {
  *zoom: 1;
  padding: 30px 0;
}
.group:before, .group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
@media (max-width: 767px) {
  .group {
    padding: 20px 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.group-nogap {
  *zoom: 1;
}
.group-nogap:before, .group-nogap:after {
  content: "";
  display: table;
}
.group-nogap:after {
  clear: both;
}
@media (max-width: 767px) {
  .group-nogap {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .va-center {
    padding-top: 20px;
  }
}

.oddbg {
  background-color: #f8fcf7;
}

.entry-wrap {
  *zoom: 1;
  position: relative;
  padding: 10px 0 0;
}
.entry-wrap:before, .entry-wrap:after {
  content: "";
  display: table;
}
.entry-wrap:after {
  clear: both;
}
.entry-wrap h3 {
  margin-bottom: 10px;
  line-height: 1.1;
}
.entry-wrap h3 a {
  color: #2a3a6b;
}
.entry-wrap h3 a:hover {
  color: #161e38;
}
.entry-wrap .va-center {
  margin-top: 30px;
}
.entry-wrap p:last-child {
  margin-bottom: 0;
}

[class*='grid_'] img {
  max-width: 100%;
}

.no-pad-btm {
  padding-bottom: 0 !important;
}

.sub-group {
  padding: 40px 10px;
}
@media (max-width: 767px) {
  .sub-group {
    padding: 15px 10px 5px;
  }
}

.bdr-btm {
  border-bottom: 2px solid #000;
}

.overlay {
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#header,
#logo,
.video-play-icon,
.overlay,
.buttons {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
  line-height: 1.4;
  text-align: center;
}
.social-links .social-label {
  padding-bottom: 1px;
}
.social-links .social-label p {
  margin-bottom: 10px;
}
.social-links ul {
  padding: 0;
}
.social-links li {
  display: inline-block;
  padding: 0 5px;
}
@media (max-width: 767px) {
  .social-links li {
    padding: 0;
  }
}
.social-links li a {
  background-color: #a9abae;
  color: #fff;
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  padding: 8px 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .social-links li a {
    font-size: 25px;
    padding: 10px;
    width: 50px;
    height: 50px;
  }
}
.social-links li a.icon-youtube {
  padding-left: 10px;
}
.social-links li a:hover {
  background-color: #2a3a6b;
  text-decoration: none;
}

#footer {
  background-color: #2a3a6b;
  color: white;
  padding: 10px 0 0;
  font-size: 14px;
  flex: none;
}
#footer small {
  font-size: 13px;
}
@media (max-width: 767px) {
  #footer small {
    display: block;
    padding: 2px 0;
  }
}
#footer .copyright {
  padding-top: 0;
  text-align: center;
}
#footer .social-links ul {
  margin: 5px 0;
}
#footer .social-links li {
  padding: 0 1px;
}
#footer .social-links li a {
  font-size: 20px;
  padding: 10px;
  width: 40px;
  height: 40px;
  background: white;
  color: #2a3a6b;
}
#footer .social-links li a:hover, #footer .social-links li a:focus {
  color: #06273a;
}
#footer p {
  margin-bottom: 0;
}

.footer-nav {
  text-align: center;
  padding: 10px 0;
}
.footer-nav li {
  display: inline;
  padding: 0 18px;
}
@media (max-width: 767px) {
  .footer-nav li {
    padding: 0 15px;
  }
}
.footer-nav li a {
  color: white;
  font: bold 14px/1.2 "Poppins", Arial, Helvetica, sans-serif;
  text-transform: capitalize;
}
.footer-nav li a:hover {
  text-decoration: underline;
}

.footer-bar {
  max-width: 650px;
  margin: 0 auto;
  padding: 10px 0;
  *zoom: 1;
}
.footer-bar:before, .footer-bar:after {
  content: "";
  display: table;
}
.footer-bar:after {
  clear: both;
}
@media (max-width: 767px) {
  .footer-bar {
    text-align: center;
  }
}

.joinmail {
  float: right;
  font-size: 17px;
  width: 280px;
  padding: 5px 5px 5px 10px;
  border-radius: 5px;
  background-color: #2a3a6b;
  color: #fff;
}
@media (max-width: 767px) {
  .joinmail {
    float: none;
    margin: 0 auto;
    padding: 5px 12px;
    overflow: hidden;
  }
}
.joinmail label {
  float: left;
  padding-top: 9px;
}
.joinmail .buttons {
  float: right;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 9px 26rpx;
}

.joinmail-popup {
  display: none;
  border-top: 1px solid #fff;
  clear: both;
  padding: 20px 0;
  text-align: right;
}
.joinmail-popup .inputtext {
  padding: 7px 10px;
  font-size: 13px;
  display: inline-block !important;
  width: auto !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .joinmail-popup .inputtext {
    display: block;
    margin-bottom: 5px;
    width: 100% !important;
  }
}

.joinmail-popup form {
  max-width: 650px;
  margin: 0 auto !important;
}
@media (max-width: 767px) {
  .joinmail-popup form {
    max-width: 385px;
  }
}

.joinmail-popup .buttons {
  position: relative;
  top: 0;
}
@media (max-width: 767px) {
  .joinmail-popup .buttons {
    display: block !important;
    float: right;
  }
}

.highlighted {
  color: #2a3a6b;
}

.trans-bright-bg {
  background-color: rgba(255, 255, 255, 0.8);
}

.trans-dark-bg {
  background-color: rgba(0, 0, 0, 0.8);
}

.block-banner {
  height: 554px;
  margin-bottom: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .block-banner {
    height: 400px;
  }
}

.last-sec {
  margin-bottom: 40px;
}

body.page-template-tpl_blanket_2 h1, body.page-template-tpl_blanket_2 h2, body.page-template-tpl_blanket_2 h3, body.page-template-tpl_blanket_2 h4, body.page-template-tpl_blanket_2 h5, body.page-template-tpl_blanket_2 h6,
body.page-template-tpl_blanket_2 .buttons, body.page-template-tpl_blanket_2 .button, body.page-template-tpl_blanket_2 .wp-block-button__link,
body.page-template-tpl_blanket h1,
body.page-template-tpl_blanket h2,
body.page-template-tpl_blanket h3,
body.page-template-tpl_blanket h4,
body.page-template-tpl_blanket h5,
body.page-template-tpl_blanket h6,
body.page-template-tpl_blanket .buttons,
body.page-template-tpl_blanket .button,
body.page-template-tpl_blanket .wp-block-button__link {
  font-weight: 600;
}

/* 
 * Main Navigation 
 */
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  font-size: 14px;
  padding: 0 14px;
}
@media (max-width: 1300px) {
  nav li {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  nav li {
    font-size: 12px;
  }
}

#main-nav {
  line-height: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  #main-nav {
    padding-top: 0;
    height: 100%;
  }
}
@media (max-width: 767px) {
  #main-nav {
    width: auto;
  }
}
@media (max-width: 1024px) {
  #main-nav ul.menu {
    display: none;
  }
}
#main-nav ul {
  float: left;
}
#main-nav ul ul {
  float: none;
  background-color: white;
  display: none;
  position: absolute;
  padding: 15px 0;
  width: 233px;
  top: 58px;
  left: 0;
  text-align: center;
  z-index: 100;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 860px) {
  #main-nav ul ul {
    left: 10px;
  }
}
#main-nav ul ul ul {
  position: static;
  display: block;
  padding-top: 0;
  padding-bottom: 10px;
}
#main-nav li {
  float: left;
  position: relative;
}
#main-nav li a {
  color: #757575;
  display: block;
  padding: 24px 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#main-nav li a:hover, #main-nav li a:focus {
  color: #2a3a6b;
}
#main-nav li.highlighted > a {
  color: #258459 !important;
}
#main-nav li:hover > ul {
  display: block;
}
#main-nav li:hover > a, #main-nav li.current-menu-item > a, #main-nav li.current-menu-parent > a, #main-nav li.current_page_parent.menu-item-has-children > a {
  color: #2a3a6b;
}
#main-nav li.menu-item-has-children > a {
  margin-right: 18px;
  position: relative;
}
#main-nav li.menu-item-has-children > a:after {
  width: 0px;
  height: 0px;
  border: 4px solid transparent;
  border-top-color: #2a3a6b;
  content: '';
  margin-top: 7px;
  position: absolute;
  right: -12px;
}
#main-nav li:hover > a:after, #main-nav li.current-menu-item > a:after, #main-nav li.current-menu-parent > a:after, #main-nav li.current_page_parent.menu-item-has-children > a:after {
  border-top-color: #757575;
}
#main-nav li li {
  float: none;
  text-align: left;
  padding: 0;
}
#main-nav li li a {
  padding: 6px 14px;
  position: relative;
}
#main-nav li li a:after {
  content: "•";
  display: none;
  position: absolute;
  left: -13px;
  top: 5px;
  font-size: 15px;
  color: #757575;
}
#main-nav li li:last-child a:after {
  content: '';
}
#main-nav li li:hover > a, #main-nav li li.current-menu-item > a {
  color: #2a3a6b;
}
#main-nav li li li a {
  padding-left: 20px;
}
#main-nav > ul > li > a {
  position: relative;
}
#main-nav > ul > li > a:before {
  content: '';
  position: absolute;
  bottom: 19px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2a3a6b;
  opacity: 0;
}
#main-nav > ul > li:hover > a:before, #main-nav > ul > li:focus > a:before, #main-nav > ul > li.current-menu-item > a:before, #main-nav > ul > li.current-menu-ancestor > a:before {
  opacity: 1;
}
#main-nav > ul > li.highlighted.current-menu-item > a:before {
  background: #258459;
}
#main-nav > ul > li.highlighted:hover > a:before, #main-nav > ul > li.highlighted:focus > a:before {
  background: #258459;
}

#sidenav {
  position: fixed;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  overflow: auto;
  background: #2a3a6b;
  z-index: 0;
  padding: 20px 10px;
  display: none;
}
#sidenav ul {
  margin: 0;
}
#sidenav ul ul {
  display: none;
}
#sidenav li {
  border-bottom: 1px solid #1c2646;
  padding: 0;
}
#sidenav li a {
  color: #fff;
  display: block;
  font-weight: 500;
  line-height: 1;
  padding: 14px 0;
}
#sidenav li.haschild > a:after, #sidenav li.menu-item-has-children > a:after {
  width: 0px;
  height: 0px;
  border: 5px solid transparent;
  border-top-color: #fff;
  float: right;
  content: '';
  margin-top: 5px;
}
#sidenav li:hover ul, #sidenav li.active ul {
  display: block;
}
#sidenav li li:first-child {
  border-top: 1px solid #1c2646;
}
#sidenav li li:last-child {
  border-bottom: 0;
}
#sidenav li li a {
  font-weight: 300;
  padding: 7px 0;
}
#sidenav li li a:after {
  display: none;
}
#sidenav li li li a {
  padding-left: 10px;
}

#toggle-menu {
  display: none;
}
@media (max-width: 1024px) {
  #toggle-menu {
    position: absolute;
    display: block;
    margin: 2px 15px 0 25px;
    cursor: pointer;
    right: 0;
    top: 15px;
    width: 33px;
    z-index: 100;
  }
}
#toggle-menu .l {
  background: #757575;
  display: block;
  height: 4px;
  margin: 4px 0 0;
  border-radius: 5px;
}
#toggle-menu.active .l {
  background: #2a3a6b;
}

/* Front page styles */
/*---------------------*/
body#home {
  font: 22px/1.36 "Roboto", Arial, Helvetica, sans-serif;
}
@media (max-width: 767px) {
  body#home {
    font-size: 18px;
  }
}

.sec-1 h3 {
  color: #2a3a6b;
  font-size: 28px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .sec-1 h3 {
    font-size: 26px;
  }
}
.sec-1 .sub-group {
  padding-bottom: 35px;
}
.sec-1 .sub-group p:last-child {
  margin-bottom: 0;
}
.sec-1 .logo-wrap {
  height: 48px;
  margin-bottom: 25px;
}
.sec-1 .logo-wrap img {
  max-height: 48px;
}
@media (max-width: 767px) {
  .sec-1 .sub-group {
    padding-top: 25px;
  }
  .sec-1 .logo-wrap {
    height: 42px;
  }
  .sec-1 .logo-wrap img {
    max-height: 42px;
  }
}

#slider, .slider {
  clear: both;
  min-height: 450px;
}
@media (max-width: 1024px) {
  #slider, .slider {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  #slider, .slider {
    min-height: 300px;
  }
}
#slider .slides li, .slider .slides li {
  min-height: 450px;
  overflow: hidden;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
@media (max-width: 1024px) {
  #slider .slides li, .slider .slides li {
    min-height: 320px;
  }
}
@media (max-width: 767px) {
  #slider .slides li, .slider .slides li {
    height: auto !important;
  }
  #slider .slides li .half-content, .slider .slides li .half-content {
    padding-bottom: 10px;
  }
}
@media (max-width: 479px) {
  #slider .slides li, .slider .slides li {
    min-height: 300px;
  }
}
#slider .slider-content, .slider .slider-content {
  position: absolute;
  bottom: 30px;
  right: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
}
@media (max-width: 767px) {
  #slider .slider-content, .slider .slider-content {
    font-size: 20px;
    bottom: 10px;
    right: auto;
    left: 10px;
  }
}
#slider .green-box, .slider .green-box {
  background-color: rgba(108, 190, 69, 0.8);
}
@media (max-width: 767px) {
  #slider .green-box, .slider .green-box {
    font-size: 16px;
    padding: 10px 15px;
  }
}
@media (max-width: 479px) {
  #slider .green-box, .slider .green-box {
    margin-bottom: 120px;
  }
}
@media (max-width: 320px) and (max-height: 480px) {
  #slider .green-box, .slider .green-box {
    margin-bottom: 100px;
  }
}
#slider h2, .slider h2 {
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  font-size: 33px;
}
@media (max-width: 767px) {
  #slider h2, .slider h2 {
    font-size: 21px;
  }
}
#slider p, .slider p {
  margin-bottom: 0;
}

body.home #slider .slides li .slide-overlay-content {
  position: relative;
  height: 100%;
}
body.home #slider .slides li .slide-overlay-content h2 {
  background-color: rgba(195, 123, 128, 0.9);
  padding: 8px;
  font-size: 38px;
  position: absolute;
  top: 80px;
  left: 0;
  border-radius: 0 5px 5px 0;
}
body.home #slider .slides li .slide-overlay-content .button-wrapper {
  position: absolute;
  bottom: 0px;
  right: 3%;
}
body.home #slider .slides li .slide-overlay-content .button-wrapper .button {
  display: block;
  float: none;
  font-size: 32px;
  font-weight: 500;
  padding: 15px;
  margin-bottom: 30px;
}
body.home #slider .slides li .slide-overlay-content .button-wrapper .button:hover {
  background-color: #a64b52;
}
body.home #slider .slides li .slide-overlay-content .button-wrapper.singleButton .button {
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  body.home #slider .slides li .slide-overlay-content h2 {
    font-size: 32px;
    width: auto;
  }
  body.home #slider .slides li .slide-overlay-content .button-wrapper .button {
    font-size: 28px;
    margin-bottom: 15px;
  }
  body.home #slider .slides li .slide-overlay-content .button-wrapper.singleButton .button {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  body.home #slider .slides li .slide-overlay-content h2 {
    font-size: 26px;
    top: 60px;
  }
  body.home #slider .slides li .slide-overlay-content .button-wrapper {
    width: 100%;
    right: 0;
    bottom: 20px;
  }
  body.home #slider .slides li .slide-overlay-content .button-wrapper .button {
    font-size: 18px;
    width: 180px;
    margin: 0 auto 5px !important;
    padding: 10px;
  }
}
@media (max-width: 479px) {
  body.home #slider .slides li .slide-overlay-content h2 {
    font-size: 23px;
    width: 62%;
    min-width: 210px;
  }
}
body.home #slider .slides li:nth-child(even) h2 {
  left: auto;
  right: 0;
  text-align: right;
}
body.home #slider .slides li:nth-child(even) .button-wrapper {
  right: auto;
  left: 3%;
}
@media (max-width: 767px) {
  body.home #slider .slides li:nth-child(even) .button-wrapper {
    left: 0;
  }
}

.video-play-icon {
  position: absolute;
  background: url("../images/video-icon.png") no-repeat;
  background-size: 100% 100%;
  top: 50%;
  left: 50%;
  z-index: 15;
  margin: -77px 0 0 -77px;
  display: block;
  height: 154px;
  width: 154px;
  -webkit-transition: height 0.1s ease-out, width 0.1s ease-out, margin 0.1s ease-out, opacity 0.1s;
  -moz-transition: height 0.1s ease-out, width 0.1s ease-out, margin 0.1s ease-out, opacity 0.1s;
  -ms-transition: height 0.1s ease-out, width 0.1s ease-out, margin 0.1s ease-out, opacity 0.1s;
  transition: height 0.1s ease-out, width 0.1s ease-out, margin 0.1s ease-out, opacity 0.1s;
}
.video-play-icon:hover {
  height: 158px;
  width: 158px;
  margin: -79px 0 0 -79px;
}
@media (max-width: 767px) {
  .video-play-icon {
    width: 77px;
    height: 77px;
    margin: -38px 0 0 -38px;
  }
  .video-play-icon:hover {
    height: 84px;
    width: 84px;
    margin: -42px 0 0 -42px;
  }
}

#slider-withthumb {
  min-height: 400px;
}
@media (max-width: 767px) {
  #slider-withthumb {
    min-height: 200px;
    max-height: 400px;
  }
}
#slider-withthumb li {
  min-height: 300px;
  overflow: hidden;
  background-position: center top;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
@media (max-width: 767px) {
  #slider-withthumb li {
    min-height: 150px;
  }
}

.slider-button {
  position: absolute;
  top: 25px;
  right: 25px;
}
@media (max-width: 767px) {
  .slider-button {
    top: 10px;
    right: 10px;
  }
}
.slider-button a {
  display: block;
  background: #a9abae;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  width: 50px;
  height: 56px;
  margin-bottom: 20px;
  padding: 8px 10px;
  position: relative;
  font: 11px/1 "Roboto", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .slider-button a {
    width: 41px;
    height: 31px;
    margin-bottom: 5px;
    padding: 5px 0px;
  }
  .slider-button a span {
    display: none;
  }
}
.slider-button a span {
  position: absolute;
  top: 11px;
  left: 0;
  font-size: 9px;
  width: 100%;
}
.slider-button a i {
  color: #fff;
  font-size: 35px;
  display: block;
  margin: 0 auto 5px;
  padding: 12px 0;
  text-align: center;
  width: 50px;
  height: 36px;
}
.slider-button a i:before {
  margin-left: 3px;
}
@media (max-width: 767px) {
  .slider-button a i {
    font-size: 20px;
    width: 32px;
    height: 22px;
    padding: 4px 0;
  }
  .slider-button a i:before {
    margin-left: 0;
  }
}
.slider-button a:hover {
  background: #2a3a6b;
  color: white;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}

#carousel {
  padding: 30px 80px;
}
@media (max-width: 767px) {
  #carousel {
    padding: 20px 30px 30px;
  }
}
#carousel .slides li {
  padding: 0 10px;
  height: 68px;
  width: 140px;
  margin: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
#carousel .slides li:first-child {
  margin-left: 0;
}
#carousel .slides li:last-child {
  margin-right: 0;
}
#carousel .slides li img {
  position: relative;
  top: -20%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#carousel .slides li:hover img {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
#carousel .slides li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
#carousel .slides li.flex-active-slide .img-wrap {
  opacity: 1;
  border: 1px solid #444;
}
#carousel .slides .img-wrap {
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  height: 66px;
  border: 1px solid #fff;
}
#carousel .flex-direction-nav a {
  opacity: 1;
  color: #2a3a6b;
  top: 49%;
}
#carousel .flex-direction-nav a:before {
  font-family: 'icomoon';
  font-size: 35px;
}
#carousel .flex-direction-nav .flex-next {
  right: 20px;
}
#carousel .flex-direction-nav .flex-next:before {
  content: '\e602';
}
@media (max-width: 767px) {
  #carousel .flex-direction-nav .flex-next {
    right: 0;
  }
}
#carousel .flex-direction-nav .flex-prev {
  left: 20px;
}
#carousel .flex-direction-nav .flex-prev:before {
  content: '\e603';
}
@media (max-width: 767px) {
  #carousel .flex-direction-nav .flex-prev {
    left: 0;
  }
}

.sec-2 {
  padding-top: 15px;
}

.section-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

@media (max-width: 767px) {
  .sec-1 br, .sec-2 br, .sec-3 br {
    display: none;
  }
}
.gallery-list {
  padding: 10px 0;
}
.gallery-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.gallery-list .gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 260px;
  padding: 10px;
  margin: 0;
  flex-grow: 1;
}
.gallery-list .gallery-item figure {
  height: 100%;
}
.gallery-list .gallery-item .video-play-icon {
  width: 100%;
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.gallery-list .gallery-item .video-play-icon:after {
  content: '';
  background: url("../images/video-icon.png") no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  z-index: 1;
}
.gallery-list .gallery-item .thumb-bg {
  display: block;
  height: 28vw;
  max-height: 260px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 480px) {
  .gallery-list .gallery-item.grid_4 {
    max-width: calc(50% - 20px);
  }
  .gallery-list .gallery-item.grid_3 {
    max-width: calc(33.33% - 20px);
    max-height: 199px;
  }
  .gallery-list .gallery-item.grid_2 {
    max-width: calc(25% - 20px);
    max-height: 130px;
  }
  .gallery-list .gallery-item.grid_2 .video-play-icon:after {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }
}
@media (max-width: 767px) {
  .gallery-list .gallery-item {
    width: 46%;
  }
  .gallery-list .gallery-item:nth-child(odd) {
    clear: left;
  }
}
@media (max-width: 479px) {
  .gallery-list .gallery-item {
    margin: 0 0 10px;
    width: 100%;
  }
  .gallery-list .gallery-item .thumb-bg {
    height: 50vw;
  }
}
.gallery-list .gallery-item img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .gallery-list .gallery-item img {
    width: 100%;
  }
}
.gallery-list .gallery-item .figcaption {
  position: absolute;
  background-color: #2a3a6b;
  color: #fff;
  font-size: 12px;
  text-align: right;
  bottom: 25px;
  right: 0px;
  padding: 2px 5px;
  z-index: 5;
  display: inline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.gallery-list .green-overlay {
  background: rgba(108, 190, 69, 0.74);
}
.gallery-list.mural-grid .gallery-item {
  max-height: 100%;
}
.gallery-list.mural-grid .gallery-item a {
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out;
}
.gallery-list.mural-grid .gallery-item figure {
  position: relative;
  overflow: hidden;
}
.gallery-list.mural-grid .gallery-item .overlay {
  opacity: 1;
  background: rgba(255, 255, 255, 0.75);
  transition: all 0.5s ease-in-out;
  text-align: center;
  height: auto;
  bottom: 0;
  top: auto;
}
.gallery-list.mural-grid .gallery-item .overlay .mural-logo-wrap {
  text-align: center;
  margin: 0 auto;
  padding: 5px;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.gallery-list.mural-grid .gallery-item .overlay small {
  display: block;
  color: black;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 5px;
  width: 100%;
}
.gallery-list.mural-grid .gallery-item .overlay img {
  max-width: 80%;
  max-height: 35px;
  width: auto;
}
.gallery-list.mural-grid .gallery-item .slider-button {
  top: 10px;
  right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.gallery-list.mural-grid .gallery-item .slider-button a {
  height: 35px;
  width: 35px;
  margin-bottom: 0;
  padding: 8px;
}
.gallery-list.mural-grid .gallery-item .slider-button a span {
  font-size: 7px;
  font-weight: 500;
  top: 8px;
}
.gallery-list.mural-grid .gallery-item .slider-button a i {
  font-size: 25px;
  padding: 7px 0 0;
  width: 34px;
  height: 34px;
}
.gallery-list.mural-grid .gallery-item .slider-button a:hover span {
  color: white;
}
.gallery-list.mural-grid .gallery-item:hover a, .gallery-list.mural-grid .gallery-item:focus a {
  opacity: 1;
}
.gallery-list.mural-grid .gallery-item:hover .overlay, .gallery-list.mural-grid .gallery-item:focus .overlay {
  opacity: 0;
  bottom: -10px;
  z-index: -1;
}
.gallery-list.mural-grid .gallery-item:hover .slider-button, .gallery-list.mural-grid .gallery-item:focus .slider-button {
  opacity: 1;
}
.gallery-list.mural-grid .grid_2 .thumb-bg {
  height: 157px;
}
.gallery-list.mural-grid .grid_3 .thumb-bg {
  height: 200px;
}
.gallery-list.mural-grid .grid_4 .thumb-bg {
  height: 250px;
}
@media (max-width: 767px) {
  .gallery-list.mural-grid .grid_2, .gallery-list.mural-grid .grid_3 {
    max-width: calc(50% - 20px);
  }
  .gallery-list.mural-grid .grid_2 .thumb-bg, .gallery-list.mural-grid .grid_3 .thumb-bg {
    height: 240px;
  }
}
@media (max-width: 479px) {
  .gallery-list.mural-grid .grid_2, .gallery-list.mural-grid .grid_3 {
    max-width: 100%;
  }
}

/* Default page styles */
/*---------------------*/
.entry {
  padding: 25px 0;
}

.tpl-gallery {
  padding-top: 20px;
}
.tpl-gallery .wrapper {
  padding-bottom: 3%;
}

.gallery-viewport {
  max-height: 600px;
}
@media (max-width: 1024px) {
  .gallery-viewport {
    width: 100%;
    margin-bottom: 20px;
  }
}

#gallery-container {
  width: 96%;
  height: 100%;
  max-height: 580px;
  margin: auto;
  border: 1px solid #ddd;
}
#gallery-container img {
  max-width: 100%;
}

#sidebar {
  background-color: #E5EEF3;
  border-radius: 5px;
  font-size: 16px;
  padding: 15px 10px;
  width: 22%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  #sidebar {
    width: 100%;
    margin: 0;
    border-radius: 0px;
  }
}
#sidebar h2 {
  font-size: 20px;
  letter-spacing: 0;
  text-transform: capitalize;
  margin-bottom: 15px;
}
#sidebar .artwork-details {
  color: #4a4a4a;
}
#sidebar .artwork-details label {
  font-weight: bold;
}
#sidebar .artwork-details .meta-field {
  margin-bottom: 3px;
}
@media (max-width: 1024px) {
  #sidebar .artwork-details {
    float: left;
    width: 48%;
  }
}
@media (max-width: 767px) {
  #sidebar .artwork-details {
    float: none;
    width: 100%;
  }
}
#sidebar .footer-metadata {
  position: relative;
}
@media (max-width: 1024px) {
  #sidebar .footer-metadata {
    float: right;
    width: 48%;
  }
}
@media (max-width: 767px) {
  #sidebar .footer-metadata {
    position: static;
    float: none;
    width: 100%;
  }
}
#sidebar .social-links {
  padding-top: 15px;
}
#sidebar .social-links ul {
  margin: 8px 0;
}
#sidebar .social-links li {
  padding: 0 1%;
}
#sidebar .buttons {
  display: block;
  padding: 15px;
  font-size: 18px;
  text-align: center;
}
@media (max-width: 1024px) {
  #sidebar .buttons {
    padding: 10px;
  }
}
#sidebar .expandable {
  overflow: hidden;
}
#sidebar .expandable.fHt {
  height: auto !important;
}
#sidebar .expand {
  border: 5px solid transparent;
  border-top-color: #757575;
  width: 0;
  height: 0;
  float: right;
  cursor: pointer;
  margin-right: 2px;
}
#sidebar .expand:hover {
  border: 5px solid transparent;
  border-top-color: #2a3a6b;
  width: 0;
  height: 0;
}
#sidebar .expand.open {
  border: 5px solid transparent;
  border-bottom-color: #757575;
  width: 0;
  height: 0;
}

#artwork-slider {
  overflow: hidden;
  text-align: center;
}
#artwork-slider img {
  width: auto;
  height: auto;
  max-width: 100%;
}
#artwork-slider .flex-direction-nav a {
  opacity: 0.7;
}
#artwork-slider .flex-direction-nav a.flex-prev {
  left: 15px;
}
#artwork-slider .flex-direction-nav a.flex-next {
  right: 15px;
}
#artwork-slider .flex-direction-nav a:hover {
  opacity: 1;
}

.intro-para {
  font-size: 18px;
}
.intro-para [class*='grid_'] {
  float: none;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .intro-para br {
    display: none;
  }
}
.intro-para h1 {
  margin-bottom: 10px;
}
.intro-para.group-nogap {
  padding-top: 40px;
}
.intro-para p:last-child {
  margin-bottom: 0;
}
.intro-para.dark-bg {
  background-color: #2a3a6b;
  color: white;
  margin-bottom: 40px;
  padding: 45px 20px;
}
.intro-para.dark-bg h1, .intro-para.dark-bg h2, .intro-para.dark-bg h3 {
  color: white;
}
.intro-para.dark-bg.heading-only h1, .intro-para.dark-bg.heading-only h2, .intro-para.dark-bg.heading-only h3 {
  margin-bottom: 0;
}
.intro-para.only-heading h1 {
  margin-bottom: 0;
}

#team-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#team-container li {
  float: left;
  font-size: 16px;
  width: 30.3%;
  margin: 0px 1.5% 60px;
  position: relative;
}
#team-container li:nth-child(3n+1) {
  clear: both;
}
@media (max-width: 767px) {
  #team-container li {
    width: 47%;
  }
  #team-container li:nth-child(3n+1) {
    clear: none;
  }
  #team-container li:nth-child(2n+1) {
    clear: both;
  }
}
@media (max-width: 479px) {
  #team-container li {
    width: 100%;
    margin: 0 0 30px;
  }
}
#team-container figure {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -100px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  text-align: center;
}
#team-container figure img {
  max-height: 200px;
  max-width: 300px;
  min-width: 200px;
  width: auto;
}
#team-container .team-info {
  border: 1px solid #ccc;
  padding: 120px 10px 25px;
  margin-top: 100px;
  text-align: center;
}
#team-container h3 {
  color: #2a3a6b;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 0;
}
#team-container h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}
#team-container a {
  color: #2a3a6b;
}
#team-container a:hover {
  color: #0d1222;
}

#gallery-thumbnail-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#gallery-thumbnail-list li {
  float: left;
  width: 17%;
  margin: 0px 1.5% 20px;
}
#gallery-thumbnail-list li:nth-child(5n+1) {
  clear: both;
}
@media (max-width: 1024px) {
  #gallery-thumbnail-list li {
    width: 22%;
  }
  #gallery-thumbnail-list li:nth-child(5n+1) {
    clear: none;
  }
  #gallery-thumbnail-list li:nth-child(4n+1) {
    clear: both;
  }
}
@media (max-width: 767px) {
  #gallery-thumbnail-list li {
    width: 30.3%;
  }
  #gallery-thumbnail-list li:nth-child(4n+1) {
    clear: none;
  }
  #gallery-thumbnail-list li:nth-child(3n+1) {
    clear: both;
  }
}
@media (max-width: 479px) {
  #gallery-thumbnail-list li {
    width: 47%;
  }
  #gallery-thumbnail-list li:nth-child(3n+1) {
    clear: none;
  }
  #gallery-thumbnail-list li:nth-child(2n+1) {
    clear: both;
  }
}
#gallery-thumbnail-list li h5 {
  color: #2a3a6b;
  font-size: 14px;
  margin-bottom: 5px;
}
#gallery-thumbnail-list li:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
#gallery-thumbnail-list figure {
  display: block;
  overflow: hidden;
  max-height: 136px;
  margin-bottom: 10px;
  position: relative;
}
#gallery-thumbnail-list figure img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
#gallery-thumbnail-list figure .green-overlay {
  background: rgba(108, 190, 69, 0.74);
}

.spotlight-effect figure {
  position: relative;
}
.spotlight-effect .overlay {
  opacity: 0;
  z-index: 5;
}
.spotlight-effect .overlay.light {
  opacity: 0;
  z-index: -1;
}
.spotlight-effect .overlay.light.fancybox {
  z-index: 5;
}
.spotlight-effect .overlay.dim {
  opacity: 0.6;
}

#partner-list {
  margin-bottom: 50px;
}
#partner-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#partner-list li {
  float: left;
  display: table;
  border: 1px solid #ccc;
  border-left-width: 0;
  border-top-width: 0;
  width: 19.9%;
  text-align: center;
}
#partner-list li:nth-child(5n+1) {
  clear: both;
}
#partner-list li:nth-child(5n) {
  border-right-width: 0;
}
#partner-list li:nth-last-child(-n+5) {
  border-bottom-width: 0;
}
#partner-list li.lastRowsItems {
  border-bottom-width: 1px !important;
}
#partner-list li a {
  display: table-cell;
  vertical-align: middle;
  height: 200px;
  width: 100%;
  overflow: hidden;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  filter: grayscale(100%);
}
#partner-list li a:hover {
  background-color: #fefefe;
  filter: grayscale(0%);
}
#partner-list li img {
  max-width: 70%;
  max-height: 60%;
  height: auto;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media (max-width: 1024px) {
  #partner-list li a {
    height: 150px;
  }
}
@media (max-width: 860px) {
  #partner-list li {
    width: 24.87%;
  }
  #partner-list li:nth-child(5n+1) {
    clear: none;
  }
  #partner-list li:nth-child(4n+1) {
    clear: both;
  }
  #partner-list li:nth-child(5n) {
    border-right-width: 1px;
    border-left-width: 0;
  }
  #partner-list li:nth-child(4n) {
    border-right-width: 0;
  }
  #partner-list li:nth-last-child(5) {
    border-bottom-width: 1px;
  }
  #partner-list li:nth-last-child(-n+4) {
    border-bottom-width: 0;
  }
}
@media (max-width: 767px) {
  #partner-list li {
    width: 33.1%;
  }
  #partner-list li:nth-child(4n+1) {
    clear: none;
  }
  #partner-list li:nth-child(3n+1) {
    clear: both;
  }
  #partner-list li:nth-child(4n) {
    border-right-width: 1px;
    border-left-width: 0;
  }
  #partner-list li:nth-child(3n) {
    border-right-width: 0;
  }
  #partner-list li:nth-last-child(4) {
    border-bottom-width: 1px;
  }
  #partner-list li:nth-last-child(-n+3) {
    border-bottom-width: 0;
  }
}
@media (max-width: 479px) {
  #partner-list li {
    width: 49.8%;
  }
  #partner-list li:nth-child(3n+1) {
    clear: none;
  }
  #partner-list li:nth-child(2n+1) {
    clear: both;
    border-right-width: 1px;
  }
  #partner-list li:nth-child(2n) {
    border-right-width: 0;
  }
  #partner-list li:nth-last-child(3) {
    border-bottom-width: 1px;
  }
  #partner-list li:nth-last-child(-n+2) {
    border-bottom-width: 0;
  }
  #partner-list li a {
    height: 110px;
    padding: 10px;
  }
}

.three-col-list, .four-col-list {
  padding: 20px 0;
}
.three-col-list .list-item img, .four-col-list .list-item img {
  max-width: 80%;
  height: auto;
}
.three-col-list .list-item h3, .four-col-list .list-item h3 {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.three-col-list .list-item .item-desc, .four-col-list .list-item .item-desc {
  padding: 15px 10px 10px;
}

.four-col-list {
  padding-top: 0;
}
.four-col-list .list-item {
  width: 23%;
  float: left;
  margin: 10px 1%;
}
.four-col-list .list-item img {
  max-width: 60%;
}
@media (max-width: 767px) {
  .four-col-list .list-item {
    width: 100%;
    float: none;
    margin: 20px 0;
  }
  .four-col-list .list-item img {
    width: 170px;
    height: auto;
  }
}

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

.pad-btm {
  padding-bottom: 40px;
}

.simple-block-content {
  clear: both;
  padding: 10px 0;
}
.simple-block-content h4 {
  margin-bottom: 5px;
  font-size: 20px;
}

.post-content {
  padding-bottom: 30px;
}

.editor-content, .simple-block-content {
  font-size: 22px;
  line-height: 1.4;
}

.editor-content > * {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.editor-content > div {
  max-width: 100%;
  padding: 0;
}
.editor-content > div.envira-gallery-wrap {
  margin-top: 30px;
  margin-bottom: 0;
}
.editor-content > div.envira-gallery-wrap + noscript + div.envira-gallery-wrap {
  margin-top: 0;
}
.editor-content > div.envira-gallery-wrap + noscript + h2, .editor-content > div.envira-gallery-wrap + noscript + h3, .editor-content > div.envira-gallery-wrap + noscript + h4, .editor-content > div.envira-gallery-wrap + noscript + p {
  margin-top: 20px;
}

.simple-block-content strong {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 18px;
}
@media (max-width: 767px) {
  .simple-block-content br {
    display: none;
  }
}

.logo-grid {
  text-align: center;
  padding-bottom: 15px;
}
.logo-grid figure {
  display: inline-block;
  padding: 5px 8px;
  height: 60px;
  width: 110px;
  text-align: center;
}
.logo-grid img {
  width: auto;
  max-height: 60px;
  max-width: 110px;
  margin: 0 auto;
}

.logo-lx {
  padding-bottom: 30px;
}
.logo-lx.logo-len-1 figure {
  width: 280px;
}
.logo-lx.logo-len-1 figure img {
  max-width: 280px;
}
@media (max-width: 767px) {
  .logo-lx.logo-len-1 figure {
    width: 200px;
  }
  .logo-lx.logo-len-1 figure img {
    max-width: 200px;
  }
}
.logo-lx figure {
  height: auto;
  width: 220px;
}
@media (max-width: 767px) {
  .logo-lx figure {
    width: 180px;
  }
}
.logo-lx img {
  max-height: 100px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .logo-lx img {
    max-height: 80px;
    max-width: 180px;
  }
}

body.page-template-tpl-action-center .logo-grid {
  display: flex;
  justify-content: center;
}
body.page-template-tpl-action-center .logo-grid figure {
  flex-grow: 1;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-tpl-action-center .logo-grid figure img {
  max-width: 100%;
}

#sponsers-list {
  padding: 20px 0 10px;
}
#sponsers-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#sponsers-list ul li {
  margin-bottom: 20px;
}
#sponsers-list ul li .img-wrap {
  float: left;
  width: 120px;
  overflow: hidden;
  margin: 0 20px 5px 0;
}
#sponsers-list ul li .img-wrap img {
  max-width: 100%;
  height: auto;
}
#sponsers-list ul li .desc {
  overflow: hidden;
}
#sponsers-list ul li h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #2a3a6b;
  margin-bottom: 0;
}

#action-slideshow {
  min-height: 250px;
  max-height: 343px;
}
@media (max-width: 767px) {
  #action-slideshow {
    max-height: 480px;
  }
}

.info-icon {
  position: absolute;
  bottom: 5px;
  left: 5px;
  height: 20px;
  width: 20px;
  line-height: 1.6;
  color: #222;
  font: italic 14px/1.4 Georgia, "Times New Roman";
  text-align: center;
  background: #fff;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4) inset;
  -moz-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4) inset;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4) inset;
  z-index: 2;
  border-radius: 50%;
}
.info-icon:hover {
  background: #2a3a6b;
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.slide_info {
  display: block;
  position: absolute;
  bottom: 0;
  width: 88%;
  left: 0%;
  padding: 7px 3% 7px 9%;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  color: #fff;
  text-align: left;
}

.iconlinks {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 15px 10px;
}
.iconlinks li {
  float: left;
  margin: 5px 1%;
  width: 18%;
}
.iconlinks li a {
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.iconlinks li i {
  display: block;
  font-size: 70px;
  height: 70px;
  width: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #eee;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.iconlinks li span {
  display: block;
  line-height: 1.3;
  padding: 5px 0;
}
@media (max-width: 479px) {
  .iconlinks {
    padding: 15px 0;
  }
  .iconlinks li i {
    font-size: 50px;
    height: 50px;
    width: 50px;
  }
}

.color-green {
  color: #6CBD44;
}

.color-darkgreen {
  color: #009A4A;
}

.color-blue {
  color: #63B4E4;
}

.color-darkblue {
  color: #3973A4;
}

a:hover .color-green {
  color: #477e2c;
}

a:hover .color-darkgreen {
  color: #004320;
}

a:hover .color-blue {
  color: #238ecd;
}

a:hover .color-darkblue {
  color: #234664;
}

.tpl-program {
  padding-top: 60px;
}

body.single-mural #content {
  font-size: 16px;
  line-height: 1.4;
}

.zoom-box {
  position: relative;
  margin-bottom: 30px;
  min-height: 200px;
  background-color: #fafafa;
}
.zoom-box .slider-button {
  top: auto;
  bottom: 10px;
  right: 50px;
}
.zoom-box img {
  height: auto;
}
@media (max-width: 767px) {
  .zoom-box {
    min-height: 100px;
  }
}

.zoom-box1 {
  min-height: 200px;
  background-color: #fafafa;
}
@media (max-width: 767px) {
  .zoom-box1 {
    min-height: 100px;
  }
}

.box {
  padding: 0px 0;
}
.box .img-wrap {
  display: block;
  margin: 30px 0;
  position: relative;
}
.box .img-wrap img {
  width: 100%;
  height: auto;
}

blockquote {
  color: #2a3a6b;
  font: bold 30px/1.4 "Poppins", Arial, Helvetica, sans-serif;
  padding: 20px 30px;
}
blockquote:before, blockquote:after {
  font-size: 55px;
  line-height: 25px;
  font-weight: 700;
  display: inline;
  position: relative;
  top: 15px;
}
blockquote:before {
  content: "\201C";
  margin-left: -25px;
}
blockquote:after {
  content: "\201D";
}
blockquote p {
  display: inline;
}

#zoomifyContainer {
  display: none;
  max-width: 100%;
  width: 950px;
  height: 550px;
  margin: auto;
  overflow: hidden;
  line-height: 17px;
}

.err-404 {
  color: #2a3a6b;
  font: 600 110px/1.8 "Poppins", Arial, Helvetica, sans-serif;
}

/* Blanket page */
.section-header {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  padding-left: 15px;
  padding-right: 15px;
}

.half-content {
  margin-top: 70px;
  width: 60%;
  max-width: 605px;
}
.half-content.alignright .button {
  margin-right: 20px;
}
.half-content.alignleft .button {
  margin-left: 20px;
}
@media (max-width: 767px) {
  .half-content {
    width: 70%;
    margin-top: 30px;
  }
}
@media (max-width: 479px) {
  .half-content {
    width: 95%;
  }
}

.green-box {
  background-color: #6cbe45;
  border-radius: 5px 0 0 5px;
  color: #fff;
  padding: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.alignright .green-box {
  border-radius: 5px 0 0 5px;
}

.alignleft .green-box {
  border-radius: 0 5px 5px 0;
}

.white-bg {
  background-color: #fff !important;
}

.image-grid ul {
  margin: 0;
  padding: 0;
}
.image-grid figure {
  margin-bottom: 10px;
}
.image-grid h4 {
  margin-bottom: 1px;
}
.image-grid .grid_2 {
  padding: 10px 1.5%;
  margin: 0;
}
@media (max-width: 479px) {
  .image-grid h4, .image-grid p {
    padding: 0 10px;
  }
}

.full-width-row .grid_2 {
  width: 22%;
  margin: 10px 1.5%;
  padding: 0;
}
.full-width-row .grid_2:nth-child(4n+1) {
  clear: both;
}
@media (max-width: 767px) {
  .full-width-row .grid_2 {
    width: 47%;
  }
  .full-width-row .grid_2:nth-child(2n+1) {
    clear: both;
  }
  .full-width-row li:nth-child(odd) {
    clear: left;
  }
}
@media (max-width: 479px) {
  .full-width-row .grid_2 {
    width: 100%;
    margin: 10px 0;
    padding: 0;
  }
}

body.page-template .sec-2 .section-header {
  overflow: hidden;
  padding: 10px 15px;
}

body.page-template-tpl_blanket .spotlight-effect .overlay {
  background-color: #000;
  opacity: 0;
  z-index: 111;
}
body.page-template-tpl_blanket .spotlight-effect .unhovered .light {
  opacity: 0;
}
body.page-template-tpl_blanket .spotlight-effect .unhovered .dim {
  opacity: 0.5;
}

.boy-mural-block {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .boy-mural-block {
    padding-top: 20px;
  }
  .boy-mural-block .grid_7 {
    width: 80%;
  }
}

.boy-scout {
  position: absolute;
  left: -90px;
  top: 0;
  z-index: 1;
  width: 44%;
  max-width: 500px;
}
.boy-scout img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .boy-scout {
    left: -40px;
  }
}

.group.text-info {
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.text_center {
  position: relative;
}
.text_center .zoom-box1 img {
  width: 100%;
  height: auto;
}

.single-zoomify-block {
  position: relative;
  margin: 20px 0;
  padding-top: 0;
}

.envira-gallery-video .envira-video-play-icon {
  width: 100%;
  position: relative;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 1;
  background: none !important;
}
.envira-gallery-video .envira-video-play-icon:after {
  content: '';
  background: url("../images/video-icon.png") no-repeat;
  background-size: 100%;
  width: 100px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  z-index: 1;
}

.envira-gallery-wrap {
  margin-bottom: 0 !important;
}
.envira-gallery-wrap .envira-album-public, .envira-gallery-wrap .envira-gallery-public {
  margin-bottom: 0 !important;
}
.envira-gallery-wrap .envira-gallery-item:not(.enviratope-item) {
  padding-bottom: 0 !important;
}

.envira-gallery-wrap .envira-album-public .envira-gallery-item,
.envira-gallery-wrap .envira-gallery-public .envira-gallery-item {
  transition: all 0.3s ease-in-out !important;
}

.envira-lazy {
  transition: all 0.3s ease-in-out !important;
}

.envira-lazy[data-envira-changed="false"] {
  background: url(../images/ajax-loader.gif) no-repeat center;
}

.envira-lazy[data-envira-changed="true"] {
  opacity: 1;
}
.envira-lazy[data-envira-changed="true"] .envira-video-play-icon {
  opacity: 1;
}

.envirabox-theme-base_dark .envirabox-caption-wrap {
  background: none !important;
}
.envirabox-theme-base_dark .envirabox-toolbar .envira-close-button {
  width: 36px;
  height: 36px;
  margin-left: 0;
}
.envirabox-theme-base_dark .envirabox-toolbar .envira-close-button::before {
  display: none;
}
.envirabox-theme-base_dark .envirabox-toolbar .envira-close-button .envirabox-close {
  background-image: url(fancybox_sprite.png);
  background-position: -3px 0;
  position: absolute;
  top: -4px;
  right: 15px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation {
  opacity: 0;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-nav {
  transition: all 0.3s ease-in-out;
  opacity: 0.5;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-nav span:before {
  font-family: "flexslider-icon" !important;
  font-size: 54px;
  display: inline-block;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-nav:hover {
  opacity: 1;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-next {
  right: -15px;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-next span:before {
  content: '\f002';
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-prev {
  left: -15px;
}
.envirabox-theme-base_dark.envirabox-show-nav .envirabox-navigation .envirabox-prev span:before {
  content: '\f001';
}
.envirabox-theme-base_dark.envirabox-show-nav:hover .envirabox-navigation {
  opacity: 1;
}
.envirabox-theme-base_dark.envirabox-show-nav:hover .envirabox-navigation .envirabox-next {
  right: 15px;
}
.envirabox-theme-base_dark.envirabox-show-nav:hover .envirabox-navigation .envirabox-prev {
  left: 15px;
}

body.what-we-do .envirabox-show-nav .envirabox-navigation {
  display: none !important;
}

.fancybox-type-iframe .fancybox-skin {
  background: none;
  box-shadow: none !important;
}
.fancybox-type-iframe .fancybox-inner {
  padding-top: 56.36%;
  height: auto !important;
  background-color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-type-iframe .fancybox-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 1600px) {
  .fancybox-type-iframe .fancybox-inner {
    padding-top: 788px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

#zoomify-wrapper {
  opacity: 0;
  visibility: hidden;
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: calc(5% + 63px) 8% 5%;
  transition: opacity 0.4s ease-in-out;
}
#zoomify-wrapper .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
#zoomify-wrapper .close {
  background-image: url(fancybox_sprite.png);
  background-position: -3px 0;
  position: absolute;
  top: 75px;
  right: 15px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
#zoomify-wrapper.open {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
#zoomify-wrapper.open::before {
  content: '';
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#zoomify-wrapper.open #zoomifyContainer {
  display: block;
  width: 100%;
  height: 100%;
  background: white;
}

.flyout-wrapper {
  position: relative;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin: 0 5px 10px;
}
.flyout-wrapper img.mainFlyoutImg {
  max-width: 80%;
}
.flyout-wrapper img.pieceFlyoutImg {
  position: absolute;
  max-width: 45%;
  right: 70%;
  top: 60%;
  width: 20px;
  height: 20px;
  transition: all 1s ease-in-out;
}
@media (max-width: 767px) {
  .flyout-wrapper img.pieceFlyoutImg {
    max-width: 30%;
  }
}
.flyout-wrapper img.pieceFlyoutImg.animated {
  width: 280px;
  height: auto;
  right: 0;
  top: -20px;
}

/* page with Forms styles */
/*-------------------------*/
/* FORMS */
input[type="text"],
input[type="email"],
input[type="password"],
.customSelect .selectedValue,
textarea {
  border-radius: 5px;
  border: none;
  padding: 12px 15px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 300;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #8C8F94;
  opacity: 1;
  font: 14px/1.2 'Roboto', Arial;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #8C8F94;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #8C8F94;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #8C8F94;
}

.field-wrap {
  margin-bottom: 10px;
}
.field-wrap:after {
  content: '';
  clear: both;
  display: table;
}

select.custom {
  position: absolute;
  left: -999em;
  width: 100%;
}

.button-wrapper, .wp-block-buttons {
  clear: both;
  text-align: center;
  padding: 15px 0 0;
}
.button-wrapper .buttons, .wp-block-buttons .buttons {
  margin: 0 10px;
}

.buttons, .button, .wp-block-button__link {
  display: inline-block;
  background-color: #2a3a6b;
  border: none;
  color: #fff;
  font: 14px/1 "Poppins", Arial, Helvetica, sans-serif;
  padding: 8px 15px;
  border-radius: 5px;
}
.buttons:hover, .button:hover, .wp-block-button__link:hover {
  background-color: #233059;
  border-color: #263460;
  color: #fff;
}
.buttons:focus, .buttons:active, .button:focus, .button:active, .wp-block-button__link:focus, .wp-block-button__link:active {
  outline: none;
}

.xlg-btn, .wp-block-button__link {
  font-size: 22px;
  font-weight: bold;
  padding: 22px 55px;
}
@media (max-width: 767px) {
  .xlg-btn, .wp-block-button__link {
    font-size: 18px;
    padding: 15px 30px;
  }
}

.white-btn {
  background-color: #fff;
  color: #2a3a6b;
}

.brown-btn {
  background-color: #c37b80;
}

body.page-template-tpl_blanket .button {
  font-weight: 500;
}

.button-wrap {
  width: 104%;
}
.button-wrap .buttons {
  padding: 10px 3%;
  float: left;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 300;
  margin: 0px 4% 0px 0;
  width: 46%;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  white-space: pre-line;
}
@media (max-width: 767px) {
  .button-wrap {
    width: 100%;
  }
  .button-wrap .buttons {
    width: 100%;
    margin-right: 0;
  }
}

.three-col {
  margin: 0;
  padding: 0;
  list-style: none;
}
.three-col li {
  float: left;
  width: 25%;
  margin: 0 5%;
}
.three-col li:first-child {
  margin-left: 0;
}
.three-col li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .three-col li {
    width: 26.5%;
  }
}

.browse-button-wrap {
  background-color: #fff;
  border-radius: 10px;
  margin: 10px 0;
}

.page-bg-layout {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  flex: 1;
}
.page-bg-layout .wrapper {
  padding: 40px 0;
}
@media (max-width: 1024px) {
  .page-bg-layout .wrapper {
    width: 99%;
  }
}
@media (max-width: 767px) {
  .page-bg-layout .wrapper {
    width: 96%;
  }
}
.page-bg-layout .field-wrap input {
  width: 100%;
}
.page-bg-layout .btn-1, .page-bg-layout .xlg-btn {
  padding: 15px 6%;
}
.page-bg-layout .lg-btn {
  min-height: 82px;
  padding: 15px 23px;
}
@media (max-width: 767px) {
  .page-bg-layout .lg-btn {
    min-height: 40px;
  }
}

.lookup-form {
  width: 550px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lookup-form {
    max-width: 98%;
  }
  .lookup-form .buttons {
    margin-bottom: 5px;
  }
}

.btn-1 {
  background-color: #757575;
}
.btn-1:hover {
  background-color: #5c5c5c;
}

.btn-2 {
  background-color: #9b9b9b;
}
.btn-2:hover {
  background-color: #949494;
}

.progress-box {
  min-width: 500px;
  max-width: 550px;
  min-height: 500px;
  margin: 30px auto 0;
  display: block;
  float: none;
  font-size: 16px;
  background-color: white;
}
.progress-box .progress-status {
  height: 40px;
  background-color: #2a3a6b;
  margin: 0;
  padding: 0;
  list-style: none;
}
.progress-box .progress-status li {
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  float: left;
  width: 17%;
}
.progress-box .progress-status li a {
  color: #2a3a6b;
  display: block;
  height: 20px;
  padding: 10px 20px;
}
.progress-box .progress-status li.current {
  background-color: #2a3a6b;
  text-align: left;
  width: 83%;
}
.progress-box .progress-status li.current a {
  color: #fff;
  cursor: default;
}
.progress-box .progress-status li.current span {
  display: inline;
}
.progress-box .progress-status li span {
  display: none;
}
.progress-box .box-container {
  padding: 20px 20px 30px;
  overflow: hidden;
}
.progress-box .button-wrap {
  margin: 0;
  padding: 20px 0;
}
.progress-box .button-wrap .buttons {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  float: none;
  width: 100%;
  padding: 10px 10px;
}
.progress-box .button-wrap li.current .buttons {
  background-color: #2a3a6b;
  border: none;
}
.progress-box .image-preview {
  background: #cdcecd url("../images/img-placeholder.png") no-repeat center center;
  height: 280px;
  width: 280px;
  margin: 15px auto;
}
.progress-box .image-preview img {
  max-width: 100%;
  height: auto;
}
.progress-box .browse-button-wrap {
  width: 450px;
  margin: 20px auto;
}
.progress-box .input-text {
  outline: none;
  width: 330px;
  padding: 6px 10px;
}
@media (max-width: 767px) {
  .progress-box {
    min-width: 90%;
    height: auto;
    min-height: 500px;
  }
  .progress-box .progress-status li a {
    padding: 10px 5px;
  }
  .progress-box .button-wrap .buttons {
    font-size: 14px;
  }
  .progress-box .box-container {
    padding: 20px 10px;
  }
  .progress-box .browse-button-wrap {
    max-width: 100%;
  }
  .progress-box .input-text {
    width: auto;
    width: calc(100%-120px);
  }
}

.submit-btn {
  width: 210px;
  display: block;
  margin: 20px auto 10px;
  font: bold 15px/1.2 "Poppins", Arial, Helvetica, sans-serif;
  min-height: 56px;
  padding: 15px 6%;
  background-color: #bcbcbc;
  border-radius: 10px;
}
.submit-btn:hover, .submit-btn:focus {
  background-color: #2a3a6b;
  border-color: #2a3a6b;
}

.bdr-field_wrapper.gform_wrapper .gform_body {
  width: 100%;
  padding: 10px 40px 30px;
}
@media (max-width: 767px) {
  .bdr-field_wrapper.gform_wrapper .gform_body {
    padding: 10px 20px 30px;
  }
}

.gform_wrapper .bdr-field ul.gform_fields li.gfield {
  margin-right: 0;
  padding: 0;
  margin-top: 0;
  margin-bottom: 10px;
}
.gform_wrapper .bdr-field ul.gform_fields li.gfield.gfield_error.gfield_contains_required {
  border: none;
  margin-top: 0 !important;
}
.gform_wrapper .bdr-field ul.gform_fields li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  padding: 0;
  border: none;
  margin-top: 4px;
  margin-bottom: 0;
}
.gform_wrapper .bdr-field ul.gform_fields li.gfield.alignleft {
  width: 49%;
  clear: none;
}
.gform_wrapper .bdr-field ul.gform_fields li.gfield.alignleft:nth-child(odd) {
  margin-right: 2%;
}
.gform_wrapper .bdr-field ul.gform_fields div.ginput_container {
  margin-top: 0;
}
.gform_wrapper .bdr-field ul.gform_fields .gfield_label {
  display: none;
}
.gform_wrapper .bdr-field .gform_footer {
  border-top: 1px solid #f1f1f1;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 30px;
}
.gform_wrapper .bdr-field .gform_footer .gform_button {
  width: 210px;
  display: block;
  margin: 0 auto;
  font-size: 15px;
  font-weight: bold;
  min-height: 56px;
  padding: 15px 6%;
  background-color: #bcbcbc;
  border-radius: 10px;
}
.gform_wrapper .bdr-field .gform_footer .gform_button:hover, .gform_wrapper .bdr-field .gform_footer .gform_button:focus {
  background-color: #2a3a6b;
}
@media (max-width: 767px) {
  .gform_wrapper .bdr-field .gform_footer .gform_button {
    line-height: 1 !important;
  }
}
@media (max-width: 479px) {
  .gform_wrapper .bdr-field ul.gform_fields li.gfield.alignleft {
    float: none;
    width: 100%;
    display: block;
  }
  .gform_wrapper .bdr-field ul.gform_fields li.gfield.alignleft:nth-child(odd) {
    margin-right: 0;
  }
}

.frm-multi-col-field .field-wrap {
  margin-bottom: 20px;
  padding: 0 40px;
}
.frm-multi-col-field .field-wrap input, .frm-multi-col-field .field-wrap textarea {
  width: 100%;
}
@media (max-width: 767px) {
  .frm-multi-col-field .field-wrap {
    padding: 0 20px;
  }
}
.frm-multi-col-field .two-col input {
  float: left;
  width: 49%;
}
.frm-multi-col-field .two-col input:first-child {
  margin-right: 2%;
}
.frm-multi-col-field .two-col .col-field-wrap {
  float: left;
  width: 49%;
}
.frm-multi-col-field .two-col .col-field-wrap input {
  width: 100%;
  float: none;
}
.frm-multi-col-field .two-col .col-field-wrap:first-child {
  margin-right: 2%;
}
.frm-multi-col-field .two-col .combine-field {
  float: left;
  width: 49%;
}
@media (max-width: 479px) {
  .frm-multi-col-field .two-col .combine-field, .frm-multi-col-field .two-col input, .frm-multi-col-field .two-col .col-field-wrap {
    float: none;
    width: 100%;
    margin-bottom: 1px;
  }
}
.frm-multi-col-field .combine-field .xsm-field {
  width: 20%;
}
.frm-multi-col-field .combine-field .sm-field {
  width: 34%;
}
.frm-multi-col-field .combine-field .lg-field {
  width: 64%;
}
.frm-multi-col-field .combine-field .xlg-field {
  width: 78%;
}
@media (max-width: 479px) {
  .frm-multi-col-field .combine-field input {
    float: left;
  }
}

.form-footer {
  border-top: 1px solid #f1f1f1;
}

.bdr-field .field-wrap input, .bdr-field textarea, .bdr-field select, .bdr-field .selectedValue,
.bdr-field .gfield input {
  border: 1px solid #dcdcdc;
  color: #333;
  padding: 13px 20px !important;
  font: 14px/1 "Roboto", Arial !important;
}

.note {
  color: #252525;
  line-height: 1;
  padding-top: 5px;
}
.note a {
  color: #000;
}
.note a:hover {
  text-decoration: underline;
}

.form-bdr-btm {
  border-bottom: 1px solid #f1f1f1;
}

.form-box-wrap {
  min-width: 500px;
  width: 50%;
  max-width: 550px;
  border-radius: 0;
  background-color: white;
  padding: 20px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.form-box-wrap form {
  padding-top: 7px;
}
.form-box-wrap #artwork-login-form,
.form-box-wrap #artwork-registration-form {
  padding-top: 20px;
}
.form-box-wrap center {
  padding: 0 40px;
}
.form-box-wrap h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.form-box-wrap h2:last-child {
  margin-bottom: 0;
}
.form-box-wrap p:last-of-type {
  margin-bottom: 0;
}
.form-box-wrap .note {
  color: #8C8F94;
}
.form-box-wrap .form-bdr-btm {
  padding-bottom: 30px;
}
.form-box-wrap .button-wrapper {
  border-top: 1px solid #f1f1f1;
  padding: 25px 0 15px;
}
.form-box-wrap .button-wrapper .buttons {
  font: bold 15px/1.2 "Poppins", Arial, Helvetica, sans-serif !important;
  padding: 18px 8%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .form-box-wrap {
    min-width: 300px;
    width: 98%;
  }
  .form-box-wrap[class*='grid_'] {
    width: 98%;
  }
  .form-box-wrap center {
    padding: 0 20px;
  }
  .form-box-wrap h2 {
    font-size: 26px;
  }
}
@media (max-width: 479px) {
  .form-box-wrap .note br {
    display: none;
  }
}

.donate-frm {
  width: 82%;
  max-width: 400px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .donate-frm {
    width: 95%;
  }
}

.donation-form-wrap {
  width: 44%;
  min-width: 530px;
  margin: 0px auto;
}
@media (max-width: 767px) {
  .donation-form-wrap {
    width: 100%;
    min-width: 330px;
  }
}

.donate-amt {
  background-color: #2a3a6b;
  border-radius: 5px;
  padding: 20px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.thank-msg {
  color: #2a3a6b;
  font: 600 28px "Poppins", Arial, Helvetica, sans-serif;
  text-transform: capitalize;
  text-align: center;
  padding: 30px 0;
}
.thank-msg small {
  font-size: 50%;
  text-transform: none;
}
.thank-msg em {
  font-size: 63%;
  text-transform: none;
  color: #939393;
  font-style: normal;
}

.error-msg {
  color: red;
}

.donate-amt-wrap .amt {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #2a3a6b;
  border-radius: 5px;
  font-size: 18px;
  margin: 0 7px 0 6px;
  padding: 15px;
  width: 55px;
  text-align: center;
}
.donate-amt-wrap .amt:first-child {
  margin-left: 0;
}
.donate-amt-wrap .amt:last-child {
  margin-right: 0;
}
.donate-amt-wrap .amt.selected {
  background-color: #2a3a6b;
  color: #fff;
}
@media (max-width: 767px) {
  .donate-amt-wrap .amt {
    margin: 0 2.4%;
    padding: 15px 1%;
    width: 18%;
  }
  .donate-amt-wrap .amt:last-child {
    float: right;
  }
}

.artworkHt {
  height: 640px;
}
@media (max-width: 767px) {
  .artworkHt {
    height: auto;
  }
}

body#teacher-dashboard .form-box-wrap {
  width: 70%;
  max-width: 650px;
  color: #333;
  position: relative;
}
@media (max-width: 767px) {
  body#teacher-dashboard .form-box-wrap {
    width: 100%;
  }
}

.logout-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  padding: 6px 0;
  font-size: 10px;
}

.student-list {
  min-height: 300px;
  height: 400px;
  overflow: auto;
  padding: 30px 40px;
}
.student-list .list-item {
  overflow: hidden;
  margin-bottom: 10px;
}
.student-list .item-name {
  float: left;
  font-size: 18px;
  color: #777;
  line-height: 1.5;
  width: 80%;
}
.student-list .edit-btn {
  float: right;
  width: 8%;
  padding: 7px 20px;
  text-align: center;
}
.student-list .edit-section {
  clear: both;
  display: none;
  width: 75%;
  padding: 5px 0 10px;
}
.student-list input, .student-list textarea {
  font-size: 16px;
}
.student-list .button-wrapper {
  padding: 0;
}
.student-list .button-wrapper .buttons {
  width: 150px;
  margin-top: 10px;
  padding: 12px 10px;
}
@media (max-width: 767px) {
  .student-list {
    max-height: 200px;
  }
  .student-list .edit-section {
    width: 100%;
  }
  .student-list .button-wrapper .buttons {
    width: 130px;
  }
}

.widgetGuts h3 {
  display: none;
}

.ginput_container.ginput_recaptcha > div {
  margin: 0 auto;
}

/*--------------*/
/* Post styles */
/*--------------*/
.blog-content {
  padding: 15px 0;
}

.blog-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.post {
  margin-bottom: 30px;
  padding: 20px 20px;
  border: 1px solid #eee;
  clear: both;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.post:hover {
  background: rgba(255, 255, 255, 0.1);
}
.post:hover .box-overlay {
  display: block;
}
.post time {
  display: block;
  color: #5e5e5e;
}
.post .post-header {
  margin-bottom: 15px;
}
.post .post-title {
  text-transform: uppercase;
  margin-bottom: 0px;
}
.post .post-title span {
  font-size: 12px;
  text-transform: none;
}
.post iframe {
  width: 100%;
  height: 350px;
}
.post .addthis_toolbox span {
  border-radius: 50%;
  padding: 4px;
}

.pagination {
  clear: both;
  font-size: 12px;
  text-align: right;
}
.pagination li {
  display: inline-block;
  border-left: 1px solid #fff;
  line-height: 0.8;
}
.pagination li:first-child {
  display: none;
}
.pagination li:nth-child(2) {
  border-left: 0;
}
.pagination li span, .pagination li a {
  padding: 0 6px;
}
.pagination li .current {
  color: #757575;
}

body.single .pagination {
  text-align: left;
}
body.single p {
  margin-bottom: 20px;
}

.single-post-header {
  margin-bottom: 15px;
}
.single-post-header .top-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 7px;
  margin-bottom: 10px;
  overflow: hidden;
}
.single-post-header h1 {
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0;
  float: left;
  max-width: 75%;
}
@media (max-width: 767px) {
  .single-post-header h1 {
    max-width: 100%;
  }
}
.single-post-header .author {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.post-featuredimage {
  float: left;
  max-width: 100%;
  overflow: hidden;
  margin: 0 0px 20px 0;
}
.post-featuredimage img {
  max-width: 100%;
}

.share-buttons {
  float: right;
  font-size: 12px;
  padding-top: 10px;
}
.share-buttons label {
  padding-right: 10px;
}
.share-buttons a {
  font-size: 17px;
  padding-left: 6px;
}
@media (max-width: 767px) {
  .share-buttons {
    clear: left;
    float: none;
  }
}

.blog-post .share-buttons {
  display: none;
  float: none;
  position: absolute;
  bottom: 0px;
  right: 0;
}
@media (max-width: 479px) {
  .blog-post .post {
    padding: 20px 10px;
  }
}
.blog-post .post-entry {
  padding-right: 10px;
  overflow: hidden;
}

.post-inner-wrap {
  position: relative;
  overflow: hidden;
}

.video-pic {
  position: relative;
  float: left;
  width: 152px;
  margin-right: 37px;
}
.video-pic .box-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1;
  top: 0;
  cursor: pointer;
}
.video-pic .box-overlay i {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
}
.video-pic .box-overlay .icon-circle {
  padding: 0;
}
html.touch .video-pic .box-overlay {
  display: block;
}
.video-pic img {
  max-width: 100%;
}
@media (max-width: 479px) {
  .video-pic {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}

#video-listings p {
  margin-bottom: 10px;
}
#video-listings .post {
  position: relative;
}
#video-listings iframe {
  max-width: 100%;
}

.video-wrap {
  display: none;
  width: 545px;
  height: 310px;
  float: left;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .video-wrap {
    width: 100%;
    float: none;
    margin: 0 0 15px;
  }
}

.close-btn {
  display: none;
  background-color: #2655ab;
  position: absolute;
  top: -12px;
  right: 0;
  font-size: 23px;
  padding: 0;
}

.post.open .close-btn {
  display: block;
}
.post.open .share-buttons {
  display: block;
}

.post.open:hover {
  background: none;
}

.more-link-wrap {
  padding: 10px 10px 0 0;
  text-align: right;
  font-size: 11px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .more-link-wrap {
    text-align: left;
  }
}
.more-link-wrap a {
  margin-left: 16px;
}
.more-link-wrap a .sign {
  font-size: 15px;
  padding-left: 4px;
}
.more-link-wrap a.hl .sign {
  padding-left: 9px;
}
@media (max-width: 767px) {
  .more-link-wrap a {
    margin-left: 0;
    margin-right: 10px;
  }
}
.more-link-wrap .expand-txt {
  display: none;
}

#event_module {
  padding: 50px 0;
  border-top: 8px solid #ddd;
  border-bottom: 8px solid #ddd;
}
#event_module h2 {
  margin-bottom: 15px;
}
#event_module .section-header {
  margin-bottom: 30px;
}

#event-carousel {
  background: none;
  padding: 0 70px 30px;
  max-width: 1400px;
  margin: 20px auto 0;
}
#event-carousel .slides {
  display: flex;
}
#event-carousel .slides li {
  padding: 30px 50px;
  margin: 10px 10px;
}
#event-carousel .slides li h3 {
  min-height: 60px;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.2;
}
#event-carousel .slides li address {
  font-style: normal;
  min-height: 60px;
}
#event-carousel .flex-control-nav a {
  display: none;
  bottom: -5px;
}
#event-carousel .flex-direction-nav a {
  margin-top: -50px;
}
@media (max-width: 767px) {
  #event-carousel {
    padding: 0 15px 30px;
  }
  #event-carousel .slides li {
    padding: 20px 30px;
  }
  #event-carousel .flex-direction-nav a {
    display: none;
  }
  #event-carousel .flex-control-nav a {
    display: block;
  }
}
@media (max-width: 479px) {
  #event-carousel {
    padding: 0 0 30px;
  }
  #event-carousel .slides li {
    margin-left: 0;
    margin-right: 20px;
  }
}

#slider-vc {
  background-color: transparent;
  padding: 20px;
  overflow: visible;
}
#slider-vc .flex-direction-nav a {
  opacity: 0.8;
}
#slider-vc .flex-direction-nav a:hover {
  opacity: 1;
}
#slider-vc .flex-direction-nav .flex-prev {
  left: -60px;
}
#slider-vc .flex-direction-nav .flex-next {
  right: -60px;
}
@media (max-width: 860px) {
  #slider-vc .flex-direction-nav {
    display: none;
  }
}
#slider-vc .flex-control-nav {
  bottom: -40px;
  left: 0;
}

.slider-vc-wrapper {
  max-width: 800px;
  padding: 10px 0 50px;
  margin: 0 auto;
}
@media (max-width: 920px) {
  .slider-vc-wrapper {
    max-width: 700px;
  }
}

.audio-player {
  width: 30px;
  height: 30px;
  margin: 5px auto 0;
  cursor: pointer;
  position: relative;
}
.audio-player::after {
  height: 100%;
  width: 100%;
  font: 1.4rem/1 'icomoon';
  content: "\e907";
  opacity: 0.9;
}
.audio-player:hover::after {
  opacity: 1;
}
.audio-player.playing::after {
  content: "\e906";
}

.cv_bdrTop {
  border-bottom: 8px solid transparent;
}

#slider-vc .slide-title {
  margin-bottom: 15px;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    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) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  #footer, #header, .fullwidth-banner, iframe {
    display: none;
  }

  .wrapper {
    padding-top: 20px;
  }
}
