/******************************************************************
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; //non-standart css for webkit
  word-wrap: break-word;
  // cleaning up the ragged lines and breaks
  -webkit-hyphens: auto;
     -moz-hyphens: auto;
          hyphens: auto;
  // sets a minimum number of characters before and after the break
  -webkit-hyphenate-before: 2;
   -webkit-hyphenate-after: 3;
           hyphenate-lines: 3;
  // enabling fancy ligatures when available
  -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? */
/*********************
BOX SHADOW
*********************/
/*********************
BORDER RADIUS
*********************/
/******************************************************************
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 */
/* line 33, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}

/* line 34, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}

/* line 35, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.menu ul li {
  /*
				plan your menus and drop-downs wisely.
				*/
}

/* line 36, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.menu ul li a {
  /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/
}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
/* line 81, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}

/* line 85, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

/* line 90, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

/* line 95, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_481up.scss */
.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
*********************/
/* line 24, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.blog-flux .video-flux .social-buttons {
  float: right;
  margin-top: -1.4em;
}

/* line 27, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.blog-flux .video-flux .social-buttons li {
  margin: 0 10px;
}

/* line 34, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#breadcrumbs {
  display: block;
}

/* line 40, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.comments .comment-form #submit {
  width: auto;
}

/* line 47, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.blog-articles header.article-header, .archive-articles header.article-header, .recent-posts header.article-header, .search-results header.article-header {
  height: 115px;
  margin-bottom: 20px;
}

/* line 54, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.jobs-content .candidature_spontanee {
  margin: 50px 0;
  text-align: left;
}

/* line 60, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#categories {
  display: none;
  margin-top: 0;
  clear: both;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 69, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.wrap {
  width: 760px;
}

/*********************
SIDEBARS & ASIDES
*********************/
/* line 78, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#blog-sidebar, #contact-sidebar {
  display: block;
}

/* line 81, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#call-to-action-sidebar.blog-mobile {
  display: none;
}

/* line 85, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.sidebar {
  margin-top: 2.2em;
}

/* line 89, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.widgettitle {
  margin-bottom: 0.75em;
}

/* line 93, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.widget {
  padding: 0 10px;
  margin: 2.2em 0;
}

/* line 98, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.widget ul li {
  margin-bottom: 0.75em;
  /* deep nesting */
}

/* line 106, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}

/* links widget */
/* meta widget */
/* pages widget */
/* recent-posts widget */
/* archives widget */
/* tag-cloud widget */
/* calendar widget */
/* category widget */
/* recent-comments widget */
/* search widget */
/* text widget */
/******************************************************************
PAGE NAVI STYLES
******************************************************************/
/* line 207, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.pagination li {
  padding: 0 15px;
}

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/* line 222, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
.footer-links ul li {
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
}

/* end .footer-links */
/* line 237, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-1 > ul > li {
  float: left;
  width: 25%;
  margin: 0;
}

/* line 242, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-1 > ul > li:last-child {
  width: 50%;
}

/* line 248, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-1 > ul > li .socials .social-buttons li {
  margin: 0;
  width: 38px;
  height: 38px;
}

/* line 259, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-2 li {
  float: left;
  width: 33%;
}

/* line 263, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-2 li img {
  max-width: 100%;
  height: auto;
}

/* line 270, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-3 {
  text-align: left;
}

/* line 272, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-3 li {
  float: left;
}

/* line 274, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-3 li:last-child {
  float: right;
}

/* line 280, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_768up.scss */
#footer-3 li .menu li a {
  font-weight: 700;
}

/******************************************************************
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.

******************************************************************/
/* line 12, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.wrap {
  width: 1040px;
}

/* line 16, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
body {
  font-size: 16px;
  line-height: 24px;
}

/* line 21, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
h1, .h1 {
  font-size: 30px;
  line-height: 40px;
}

/* line 26, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
h2, .h2 {
  font-size: 26px;
  line-height: 36px;
}

/* line 31, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
h5, .h5 {
  font-size: 16px;
  line-height: 26px;
}

/* line 37, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
header.article-header h1 {
  font-size: 40px;
  line-height: 50px;
}

/* line 43, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#content {
  padding-top: 150px;
}

/* line 50, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.content-article header .article_informations h1 {
  font-size: 30px;
  line-height: 40px;
}

/* line 59, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.blog-flux .recent-posts {
  padding-right: 50px;
}

/* line 62, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.blog-flux .video-flux {
  padding-left: 50px;
}

/* line 66, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.intro_text {
  font-size: 18px;
  line-height: 28px;
}

/* line 71, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.entry-content blockquote {
  font-size: 20px;
  line-height: 30px;
}

/* line 75, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.wp-caption p.wp-caption-text {
  font-size: 14px;
  line-height: 24px;
}

/*********************
HEADER STYLES
*********************/
/* line 85, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

/* line 95, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#home-slider {
  max-height: 800px;
  min-height: 600px;
  height: 50vh;
}

/* line 100, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#home-slider .slider-control {
  margin-top: -40px;
}

/*********************
NAVIGATION STYLES
*********************/
/* line 110, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#top-menu {
  display: block;
  height: 50px;
}

/* line 114, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#top-menu #top-right-sidebar {
  float: right;
  width: auto;
  margin: 5px 0 0 0;
  padding: 0;
  border-top: none;
}

/* line 122, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#top-menu #top-right-sidebar .menu li {
  margin: 0 10px;
}

/* line 128, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#hamburger-button {
  display: none;
}

/* line 131, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#logo {
  width: 15%;
}

/* line 134, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#main-menu {
  display: block;
  margin-top: 0;
  float: right;
  width: 73%;
}

/* line 140, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#main-menu .nav {
  float: right;
}

/* line 145, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav {
  border: 0;
  width: auto;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}

/* line 149, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav ul {
  background: transparent;
  margin-top: 0;
}

/* line 153, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li {
  float: left;
  position: relative;
  /*
		plan your menus and drop-downs wisely.
		*/
  /* showing sub-menus */
}

/* line 157, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li a {
  border-bottom: 0;
  /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
}

/* line 164, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li a:hover, .nav li a:focus {
  color: #EA6B2D;
}

/* line 174, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu,
.nav li ul.children {
  margin-top: 0;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  background: #000000;
  display: block;
  width: 200px;
  /* highlight sub-menu current page */
}

/* line 185, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li,
.nav li ul.children li {
  width: 100%;
  /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
}

/* line 187, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  color: #CCCCCC;
  font-weight: 700;
  position: relative;
}

/* line 200, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li:hover > a, .nav li ul.sub-menu li:focus > a,
.nav li ul.children li:hover > a,
.nav li ul.children li:focus > a {
  color: #fff;
  font-weight: 700;
}

/* line 207, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li.menu-item-has-children > a:after,
.nav li ul.children li.menu-item-has-children > a:after {
  font-family: "FontAwesome";
  content: '\f054';
  position: absolute;
  right: -15px;
  top: 0;
  bottom: 0;
  width: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 225, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li:last-child a,
.nav li ul.children li:last-child a {
  border-bottom: 0;
}

/* line 235, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li ul,
.nav li ul.children li ul {
  top: 0;
  left: 100%;
}

/* line 245, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li.current-menu-item a,
.nav li ul.sub-menu li.current_page_item a,
.nav li ul.sub-menu li.current_page_ancestor a,
.nav li ul.children li.current-menu-item a,
.nav li ul.children li.current_page_item a,
.nav li ul.children li.current_page_ancestor a {
  color: #EA6B2D;
}

/* line 250, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li.current-menu-item ul li a,
.nav li ul.sub-menu li.current_page_item ul li a,
.nav li ul.sub-menu li.current_page_ancestor ul li a,
.nav li ul.children li.current-menu-item ul li a,
.nav li ul.children li.current_page_item ul li a,
.nav li ul.children li.current_page_ancestor ul li a {
  color: #CCCCCC;
}

/* line 255, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li ul.sub-menu li.current-menu-item ul li:hover > a, .nav li ul.sub-menu li.current-menu-item ul li:focus > a,
.nav li ul.sub-menu li.current_page_item ul li:hover > a,
.nav li ul.sub-menu li.current_page_item ul li:focus > a,
.nav li ul.sub-menu li.current_page_ancestor ul li:hover > a,
.nav li ul.sub-menu li.current_page_ancestor ul li:focus > a,
.nav li ul.children li.current-menu-item ul li:hover > a,
.nav li ul.children li.current-menu-item ul li:focus > a,
.nav li ul.children li.current_page_item ul li:hover > a,
.nav li ul.children li.current_page_item ul li:focus > a,
.nav li ul.children li.current_page_ancestor ul li:hover > a,
.nav li ul.children li.current_page_ancestor ul li:focus > a {
  color: #fff;
  font-weight: 700;
}

/* line 266, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}

/* line 275, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav > li.menu-item-has-children > a:after {
  content: '';
}

/* line 283, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav > li:last-child ul.sub-menu li,
.nav > li:last-child ul.children li {
  text-align: right;
}

/* line 287, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav > li:last-child ul.sub-menu li.menu-item-has-children > a:after,
.nav > li:last-child ul.children li.menu-item-has-children > a:after {
  content: '';
}

/* line 290, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav > li:last-child ul.sub-menu li.menu-item-has-children > a:before,
.nav > li:last-child ul.children li.menu-item-has-children > a:before {
  font-family: "FontAwesome";
  content: '\f053';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 303, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav > li:last-child ul.sub-menu ul,
.nav > li:last-child ul.children ul {
  right: 100%;
  left: auto;
}

/* line 315, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.nav li.current-menu-item a,
.nav li.current_page_item a,
.nav li.current_page_ancestor a {
  color: #EA6B2D;
}

/* end .nav */
/* line 322, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#display-categories {
  display: none;
}

/* line 325, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#categories {
  display: block;
  clear: none;
}

/* line 328, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#categories li {
  float: right;
}

/* line 333, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
.blog-header #categories {
  margin-top: 85px;
}

/* line 342, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#footer-1 > ul > li .socials .social-buttons li {
  width: 45px;
  height: 45px;
}

/* line 351, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#footer-1 .gform_widget .gform_footer {
  right: 70px;
}

/* line 357, /Users/mat/Sites/oceanet/wp-content/themes/oceanet/library/scss/breakpoints/_1030up.scss */
#footer-3 {
  font-size: 14px;
  line-height: 24px;
}

/*
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 { ... }

*/

/*# sourceMappingURL=../css/ie.map */