/******************************************************************
 Site Name:
 Author:
 Stylesheet: IE Stylesheet
 So instead of using the respond.js file to add media query support
 to IE, we're going to use SASS to create an easily readable css file.
 Here, we import all the styles the standard stylesheet gets, only
 without the media queries. No need to worry about editing anything!
 ******************************************************************/
/******************************************************************
 IMPORTS & DEPENDENCIES
 Remember, all the BASE styles are called already since IE can
 read those. Below, we need to import only the stuff IE can't
 understand (what's inside the media queries). We also need to
 import the mixins file so SASS can understand the variables.
 ******************************************************************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Variables
 Here is where we declare all our variables like colors, fonts,
 base values, and defaults. We want to make sure this file ONLY
 contains variables that way our files don't get all messy.
 No one likes a mess.
 ******************************************************************/
/*********************
 COLORS
 Need help w/ choosing your colors? Try this site out:
 http://0to255.com/
 *********************/
/*
 Here's a great tutorial on how to
 use color variables properly:
 http://sachagreif.com/sass-color-variables/
 */
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Typography
 Need to import a font or set of icons for your site? Drop them in
 here or just use this to establish your typographical grid. Or not.
 Do whatever you want to...GOSH!
 Helpful Articles:
 http://trentwalton.com/2012/06/19/fluid-type/
 http://ia.net/blog/responsive-typography-the-basics/
 http://alistapart.com/column/responsive-typography-is-a-physical-discipline
 ******************************************************************/
/*********************
 FONT FACE (IN YOUR FACE)
 *********************/
/*  To embed your own fonts, use this syntax
 and place your fonts inside the
 library/fonts folder. For more information
 on embedding fonts, go to:
 http://www.fontsquirrel.com/
 Be sure to remove the comment brackets.
 */
/*  @font-face {
 font-family: 'Font Name';
 src: url('library/fonts/font-name.eot');
 src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
 url('library/fonts/font-name.woff') format('woff'),
 url('library/fonts/font-name.ttf') format('truetype'),
 url('library/fonts/font-name.svg#font-name') format('svg');
 font-weight: normal;
 font-style: normal;
 }
 */
/*
 The following is based of Typebase:
 https://github.com/devinhunt/typebase.css
 I've edited it a bit, but it's a nice starting point.
 */
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
 */
/*
 some nice typographical defaults
 more here: http://www.newnet-soft.com/blog/csstypography
 */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Mixins Stylesheet
 This is where you can take advantage of Sass' great features: Mixins.
 I won't go in-depth on how they work exactly,
 there are a few articles below that will help do that. What I will
 tell you is that this will help speed up simple changes like
 changing a color or adding CSS3 techniques gradients.
 A WORD OF WARNING: It's very easy to overdo it here. Be careful and
 remember less is more.
 Helpful:
 http://sachagreif.com/useful-sass-mixins/
 http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
 http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/
 ******************************************************************/
/*********************
 TRANSITION
 *********************/
/*
 I totally rewrote this to be cleaner and easier to use.
 You'll need to be using Sass 3.2+ for these to work.
 Thanks to @anthonyshort for the inspiration on these.
 USAGE: @include transition(all 0.2s ease-in-out);
 */
/*********************
 CSS3 GRADIENTS
 Be careful with these since they can
 really slow down your CSS. Don't overdo it.
 *********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
 BOX SIZING
 *********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
 probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
 Site Name:
 Author:
 Stylesheet: IE Grid Styles
 Since the example grid is based on media queries, so rather than
 setup some js library that would make IE8 and below understand
 media queries, let's just add some styles that serves a fixed grid.
 Again, if you want to roll your own, just remove this junk and put
 whatever you use in here.
 ******************************************************************/
/******************************************************************
 Site Name:
 Author:
 Stylesheet: 481px and Up Stylesheet
 This stylesheet is loaded for larger devices. It's set to
 481px because at 480px it would load on a landscaped iPhone.
 This isn't ideal because then you would be loading all those
 extra styles on that same mobile connection.
 A word of warning. This size COULD be a larger mobile device,
 so you still want to keep it pretty light and simply expand
 upon your base.scss styles.
 ******************************************************************/
/*
 IMPORTANT NOTE ABOUT SASS 3.3 & UP
 You can't use @extend within media queries
 anymore, so just be aware that if you drop
 them in here, they won't work.
 */
/*********************
 NAVIGATION STYLES
 *********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */
}
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.menu ul li {
  /*
   you can use hover styles here even though this size
   has the possibility of being a mobile device.
   */
  /*
   plan your menus and drop-downs wisely.
   */
}
/* end .menu */
/*********************
 POSTS & CONTENT STYLES
 *********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
/* end .entry-content */
/*********************
 FOOTER STYLES
 *********************/
/*
 check your menus here. do they look good?
 do they need tweaking?
 */
/* end .footer-links */
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Tablet & Small Desktop Stylesheet
 Here's where you can start getting into the good stuff.
 This size will work on iPads, other tablets, and desktops.
 So you can start working with more styles, background images,
 and other resources. You'll also notice the grid starts to
 come into play. Have fun!
 ******************************************************************/
/*********************
 GENERAL STYLES
 *********************/
/*********************
 LAYOUT & GRID STYLES
 *********************/
.wrap {
  width: 760px;
}
/*********************
 HEADER STYLES
 *********************/
/*********************
 NAVIGATION STYLES
 *********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.nav ul {
  background: #323944;
  margin-top: 0;
}
.nav li {
  float: left;
  position: relative;
  /*
   plan your menus and drop-downs wisely.
   */
  /* showing sub-menus */
}
.nav li a {
  border-bottom: 0;
  /*
   you can use hover styles here even though this size
   has the possibility of being a mobile device.
   */
}
.nav li a:hover, .nav li a:focus {
  color: #fff;
  text-decoration: underline;
}
.nav li ul.sub-menu, .nav li ul.children {
  margin-top: 0;
  border: 1px solid #ccc;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li, .nav li ul.children li {
  /*
   if you need to go deeper, go nuts
   just remember deeper menus suck
   for usability. k, bai.
   */
}
.nav li ul.sub-menu li a, .nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
.nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li ul.sub-menu li ul, .nav li ul.children li ul {
  top: 0;
  left: 100%;
}
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}
/* end .nav */
#content {
  font-size: rem(14px);
}
#content h3 {
  margin: rem(10px) 0 rem(30px) 0;
}
#content .blc_row .blc_col_inner {
  padding: 0;
}
#content .homepage .categories {
  background-image: url(/wp-content/uploads/2017/04/ply-bg.jpg);
  padding-bottom: rem(10px);
  border-bottom: 0;
}
#content .homepage .categories .blc_col {
  width: 33.33%;
  background-position: top;
  padding: rem(50px);
}
#content .homepage .categories .blc_col:last-child {
  border-bottom: rem(16px) solid #232323;
}
#content .homepage .categories .blc_col .blc_col_inner {
  width: 55%;
  display: flex;
  height: 100%;
  flex-wrap: wrap;
}
#content .homepage .blc_col {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: rem(40px) rem(50px);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#content .homepage .blc_col.bgcover {
  background-size: cover;
}
#content .homepage .blc_col.zoom:hover {
  background-size: 105%;
}
#content .homepage .blc_col.flex .blc_col_inner {
  display: flex;
  flex-wrap: wrap;
}
#content .homepage .blc_col h2 {
  font-weight: 900;
  font-size: rem(18px);
  margin-bottom: rem(35px);
  width: 100%;
}
#content .homepage .blc_col.taking-action h2 {
  margin-bottom: rem(16px);
}
#content .homepage .blc_col.taking-action .blc_col_inner {
  width: 95%;
}
#content .homepage .blc_col.taking-action .blc_col_inner p:last-child {
  margin-bottom: 0;
}
#content .homepage .blc_col.predator-free-arrowtown {
  background-position-y: 70%;
}
#content .homepage .blc_col.predator-free-arrowtown .blc_col_inner {
  /* width: 79%; */
}
#content .homepage .blc_col.the-team {
  background-position: 60%;
}
#content .homepage .blc_col.the-team .blc_col_inner {
  width: 55%;
  padding-top: rem(70px);
}
#content .homepage .blc_col.the-team .blc_col_inner .small_logo {
  margin-bottom: rem(10px);
}
#content .homepage .blc_col.news h3 {
  width: 50%;
}
#content .homepage .blc_col.news .newsArticle {
  max-width: rem(200px);
  margin-bottom: 0;
}
#content .homepage .blc_col.news .newsImage img {
  width: 100%;
}
#content .homepage .blc_col.careers .blc_col_inner {
  width: 90%;
}
#content .template_content section.has_sidebar_image {
  width: 70%;
  order: 1;
}
#content .template_content .content_sidebar {
  display: block;
  background-repeat: no-repeat;
  background-color: #242424;
  width: 30%;
}
#content .template_content .content_image {
  display: none;
}
#content .template_news .newsArticles, #content .other_articles .newsArticles {
  justify-content: space-around;
}
#content .template_news .newsArticles .newsArticle, #content .other_articles .newsArticles .newsArticle {
  width: 30%;
}
#content .template_team .the_team .team_members .team_member {
  width: 33.33%;
}
#content .template_team .the_team .team_members .team_member .member_content {
  padding: rem(20px);
}
.contact_area {
  width: 100%;
}
.contact_area .contact {
  background-color: #242424;
  color: #f4f4f2;
  font-size: rem(14px);
  padding: rem(40px);
}
.contact_area .other_articles {
  border-top: none;
}
.contact_area .other_articles .other_articles_inner {
  padding: 50px;
  background-color: #fff;
}
.contact_area .other_articles .newsSelect {
  justify-content: flex-start;
}
.contact_area .map {
  padding: 0;
}
.contact_area .get-in-touch {
  background-size: 100%;
  background-position: center;
  padding: rem(40px) rem(50px);
  background-image: url(/wp-content/uploads/2017/04/ply-bg.jpg);
  background-repeat: repeat-y;
}
.contact_area .get-in-touch.careers .message {
  width: 70%;
}
.contact_area .get-in-touch.careers .message textarea {
  height: rem(240px);
  width: 100%;
}
.contact_area .get-in-touch .blc_col_inner {
  width: 100%;
  min-width: auto;
  margin: 0;
}
.contact_area .get-in-touch form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contact_area .get-in-touch form .nameemail {
  width: 30%;
  padding-right: 3%;
}
.contact_area .get-in-touch form .nameemail input[type="text"], .contact_area .get-in-touch form .nameemail input[type="email"] {
  width: 100%;
}
.contact_area .get-in-touch form .message {
  width: 70%;
  padding-top: 0;
}
.contact_area .get-in-touch form .message textarea {
  height: rem(200px);
  width: 100%;
}
.contact_area .get-in-touch form .submit {
  width: 100%;
  text-align: right;
  padding-top: rem(16px);
}
.contact_area .get-in-touch form .submit .ajax-loader {
  display: none;
}
.contact_area .get-in-touch form .submit input[type="submit"] {
  background-color: #242424;
  color: #f4f4f2;
  padding: rem(10px) rem(30px);
  font-size: rem(12px);
  border: 0;
}
.contact_area .get-in-touch form .submit input[type="submit"]:hover {
  background-color: #5bab8e;
}
.contact_area .get-in-touch form div.wpcf7-response-output.wpcf7-validation-errors {
  border-color: #f00;
  margin: 0.5em 0.5em 1em;
  padding: 0.5rem 1em;
}
/*********************
 FOOTER STYLES
 *********************/
.footer #inner-footer {
  margin: 0 auto;
  display: flex;
}
.footer #inner-footer .left {
  order: 1;
  align-items: center;
  display: flex;
  width: 90%;
  height: rem(110px);
}
.footer #inner-footer .left .facebook {
  padding-right: rem(10px);
}
.footer #inner-footer .left nav {
  width: 100%;
}
.footer #inner-footer .left nav ul {
  padding: rem(15px) 0 0 rem(18px);
}
.footer #inner-footer .left nav ul li a:hover {
  color: #5cad8c;
  text-decoration: none;
}
.footer #inner-footer .left .rs-link-ul {
  display: none;
}
.footer #inner-footer .right {
  order: 2;
  height: rem(110px);
  align-items: center;
  justify-content: flex-end;
  display: flex;
  width: 10%;
  text-align: right;
  padding: 0;
  flex-wrap: initial;
}
.footer #inner-footer .right .copyright {
  order: 1;
  display: none;
  margin-top: 0;
}
.footer #inner-footer .right .small_logo {
  order: 2;
  height: rem(65px);
  margin-left: rem(25px);
  width: rem(45px);
}
.footer #inner-footer .right .small_logo svg {
  height: rem(65px);
}
/******************************************************************
 Site Name:
 Author:
 Stylesheet: Desktop Stylsheet
 This is the desktop size. It's larger than an iPad so it will only
 be seen on the Desktop.
 ******************************************************************/
p {
  font-size: rem(14px);
  font-weight: 600;
  line-height: rem(19px);
}
#inner-header, #main, #inner-footer {
  max-width: rem(1203px);
  width: 100%;
}
nav ul li a:hover {
  color: #5cad8c;
}
h3 {
  font-size: rem(19px);
}
.header #inner-header .logotitle {
  order: 1;
}
.header #inner-header .logotitle #logo {
  margin: rem(60px) 0 rem(20px) 0;
}
.header #inner-header .logotitle #logo a svg {
  height: rem(190px);
}
.header #inner-header .left {
  order: 2;
  padding: 0;
}
.header #inner-header .right {
  order: 3;
  padding: 0;
}
.header #inner-header h1 {
  font-size: rem(50px);
  font-weight: 900;
  margin-bottom: 0;
}
.header #inner-header h2 {
  font-size: rem(46px);
  font-weight: 500;
  width: 50%;
  margin: 0 auto;
  line-height: rem(65px);
}
.small_logo {
  height: rem(30px);
  width: 100%;
}
.small_logo svg {
  height: rem(30px);
}
#content {
  font-size: rem(14px);
}
#content h3 {
  margin: rem(10px) 0 rem(30px) 0;
}
#content .blc_row .blc_col_inner {
  padding: 0;
}
#content .homepage .categories {
  background-image: url(/wp-content/uploads/2017/04/ply-bg.jpg);
  padding-bottom: rem(10px);
  border-bottom: 0;
}
#content .homepage .categories .blc_col {
  height: rem(495px);
  border-bottom: rem(16px) solid #232323;
  padding: rem(50px);
}
#content .homepage .categories .blc_col .blc_col_inner {
  width: 55%;
}
#content .homepage .blc_col {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  padding: rem(40px) rem(50px);
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#content .homepage .blc_col.bgcover {
  background-size: cover;
}
#content .homepage .blc_col.zoom:hover {
  background-size: 105%;
}
#content .homepage .blc_col.flex .blc_col_inner {
  display: flex;
  flex-wrap: wrap;
}
#content .homepage .blc_col h2 {
  font-weight: 900;
  font-size: rem(18px);
  margin-bottom: rem(35px);
  width: 100%;
}
#content .homepage .blc_col.taking-action h2 {
  margin-bottom: rem(16px);
}
#content .homepage .blc_col.taking-action .blc_col_inner {
  width: 95%;
}
#content .homepage .blc_col.taking-action .blc_col_inner p:last-child {
  margin-bottom: 0;
}
#content .homepage .blc_col.predator-free-arrowtown {
  /* width: 79%; */
}
#content .homepage .blc_col.the-team .blc_col_inner {
  width: 40%;
  padding-top: rem(70px);
}
#content .homepage .blc_col.the-team .blc_col_inner .small_logo {
  margin-bottom: rem(10px);
}
#content .homepage .blc_col.news h3 {
  width: 50%;
}
#content .homepage .blc_col.news .newsArticle {
  max-width: rem(200px);
}
#content .homepage .blc_col.news .newsImage img {
  width: 100%;
}
#content .homepage .blc_col.careers .blc_col_inner {
  width: 90%;
}
#content .template_content section.has_sidebar_image {
  width: 70%;
  order: 1;
}
#content .template_content .content_sidebar {
  display: block;
  background-repeat: no-repeat;
  background-color: #242424;
  width: 30%;
}
#content .template_content .content_image {
  display: none;
}
#content .template_news .newsArticles, #content .other_articles .newsArticles {
  justify-content: space-around;
}
#content .template_news .newsArticles .newsArticle, #content .other_articles .newsArticles .newsArticle {
  width: 30%;
}
#content .template_team .the_team .team_members .team_member {
  width: 33.33%;
}
.contact_area {
  width: 100%;
}
.contact_area .contact {
  background-color: #242424;
  color: #f4f4f2;
  font-size: rem(14px);
  padding: rem(40px) rem(50px);
}
.contact_area .other_articles {
  border-top: none;
}
.contact_area .other_articles .other_articles_inner {
  padding: 50px;
  background-color: #fff;
}
.contact_area .other_articles .newsSelect {
  justify-content: flex-start;
}
.contact_area .map {
  padding: 0;
}
.contact_area .get-in-touch {
  background-size: 100%;
  background-position: center;
  padding: rem(40px) rem(50px);
  background-image: url(/wp-content/uploads/2017/04/ply-bg.jpg);
  background-repeat: repeat-y;
}
.contact_area .get-in-touch.careers .message {
  width: 70%;
}
.contact_area .get-in-touch.careers .message textarea {
  height: rem(240px);
  width: 100%;
}
.contact_area .get-in-touch .blc_col_inner {
  width: 100%;
  min-width: auto;
  margin: 0;
}
.contact_area .get-in-touch form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.contact_area .get-in-touch form .nameemail {
  width: 30%;
  padding-right: 3%;
}
.contact_area .get-in-touch form .nameemail input[type="text"], .contact_area .get-in-touch form .nameemail input[type="email"] {
  width: 100%;
}
.contact_area .get-in-touch form .message {
  width: 70%;
  padding-top: 0;
}
.contact_area .get-in-touch form .message textarea {
  height: rem(200px);
  width: 100%;
}
.contact_area .get-in-touch form .submit {
  width: 100%;
  text-align: right;
  padding-top: rem(16px);
}
.contact_area .get-in-touch form .submit .ajax-loader {
  display: none;
}
.contact_area .get-in-touch form .submit input[type="submit"] {
  background-color: #242424;
  color: #f4f4f2;
  padding: rem(10px) rem(30px);
  font-size: rem(12px);
  border: 0;
}
.contact_area .get-in-touch form .submit input[type="submit"]:hover {
  background-color: #5bab8e;
}
.contact_area .get-in-touch form div.wpcf7-response-output.wpcf7-validation-errors {
  border-color: #f00;
  margin: 0.5em 0.5em 1em;
  padding: 0.5rem 1em;
}
.footer #inner-footer {
  margin: 0 auto;
  display: flex;
}
.footer #inner-footer .left {
  order: 1;
  align-items: center;
  display: flex;
  width: 70%;
  height: rem(110px);
}
.footer #inner-footer .left .facebook {
  padding-right: rem(10px);
}
.footer #inner-footer .left nav ul {
  padding: 0;
}
.footer #inner-footer .left nav ul li a:hover {
  color: #5cad8c;
  text-decoration: none;
}
.footer #inner-footer .left nav ul.rs-link-ul {
  /*  display:none; */
}
.footer #inner-footer .right {
  order: 2;
  height: rem(110px);
  align-items: center;
  justify-content: flex-end;
  display: flex;
  width: 29%;
  text-align: right;
  padding: 0;
  flex-wrap: initial;
}
.footer #inner-footer .right .copyright {
  order: 1;
  margin-top: 0;
}
.footer #inner-footer .right .small_logo {
  order: 2;
  height: rem(65px);
  margin-left: rem(25px);
  width: rem(45px);
}
.footer #inner-footer .right .small_logo svg {
  height: rem(65px);
}
/*
 you can call the larger styles if you want, but there's really no need
 */
/******************************************************************
 ADDITIONAL IE FIXES
 These fixes are now ONLY seen by IE, so you don't have to worry
 about using prefixes, although it's best practice. For more info
 on using Modernizr classes, check out this link:
 http://www.modernizr.com/docs/
 ******************************************************************/
/*
 For example, you can use something like:
 .no-textshadow .class { ... }
 You can also target specific versions by using the classes applied to
 the html element. These can sometimes change, so take a look inside the
 header.php file to see what they are:
 .lt-ie8 .class { ... }
 */
