@import url("https://fonts.googleapis.com/css?family=Martel:400,700|Source+Sans+Pro:300, 400,600,700");
/******************************************************************
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: 'TimesMed';
  src: url("../../library/fonts/32F481_0_0.eot");
  src: url("../../library/fonts/32F481_0_0.eot?#iefix") format("embedded-opentype"), url("../../library/fonts/32F481_0_0.woff") format("woff"), url("../../library/fonts/32F481_0_0.ttf") format("truetype"), url("../../library/fonts/32F481_0_0.svg#32F481_0_0") 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
*/
/* line 70, ../scss/partials/_typography.scss */
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 */
/* line 33, ../scss/breakpoints/_481up.scss */
.menu {
  /* end .menu ul */
}
/* line 34, ../scss/breakpoints/_481up.scss */
.menu ul {
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
/* line 35, ../scss/breakpoints/_481up.scss */
.menu ul li {
  /*
  plan your menus and drop-downs wisely.
  */
}
/* line 36, ../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.
  */
}
/* line 42, ../scss/breakpoints/_481up.scss */
.menu ul li a:hover, .menu ul li a:focus {
  color: black;
}

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
/* line 81, ../scss/breakpoints/_481up.scss */
.entry-content {
  /* at this larger size, we can start to align images */
}
/* line 85, ../scss/breakpoints/_481up.scss */
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
/* line 90, ../scss/breakpoints/_481up.scss */
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
/* line 95, ../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 22, ../scss/breakpoints/_768up.scss */
.no-mobile-sm {
  display: block;
}

/* line 26, ../scss/breakpoints/_768up.scss */
.no-dt-sm {
  display: none;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 36, ../scss/breakpoints/_768up.scss */
.page-header .page-title {
  font-size: 40px;
}

/* line 42, ../scss/breakpoints/_768up.scss */
.page-template-page-template-landing-pages #main {
  padding-top: 120px;
}

/* line 48, ../scss/breakpoints/_768up.scss */
.full-width.hero-wrap {
  height: 600px;
}
/* line 52, ../scss/breakpoints/_768up.scss */
.full-width.hero-wrap .wrap .type h1 {
  font-size: 46px;
}
/* line 60, ../scss/breakpoints/_768up.scss */
.full-width.about-wrap {
  padding: 9% 0 9% 0;
}
/* line 64, ../scss/breakpoints/_768up.scss */
.full-width.about-wrap p {
  font-size: 30px;
}
/* line 68, ../scss/breakpoints/_768up.scss */
.full-width.about-wrap .home-callouts {
  width: 102%;
  margin-left: -1%;
  margin-top: 15px;
}
/* line 76, ../scss/breakpoints/_768up.scss */
.full-width.about-wrap .home-callouts .callout {
  width: 94%;
  padding: 10px;
}
/* line 85, ../scss/breakpoints/_768up.scss */
.full-width.about-wrap .white {
  display: block;
  width: 100%;
  height: 48%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  z-index: 1;
}
/* line 97, ../scss/breakpoints/_768up.scss */
.full-width.home-blog-wrap {
  padding: 9% 0 9% 0;
}
/* line 100, ../scss/breakpoints/_768up.scss */
.full-width.home-blog-wrap .recent-posts {
  width: 102%;
  margin-left: -1%;
}
/* line 104, ../scss/breakpoints/_768up.scss */
.full-width.home-blog-wrap .recent-posts .post .detail {
  width: 94%;
  margin: 0 auto;
}
/* line 113, ../scss/breakpoints/_768up.scss */
.full-width.quote-wrap {
  padding: 9% 0 9% 0;
}
/* line 117, ../scss/breakpoints/_768up.scss */
.full-width.quote-wrap h1 {
  font-size: 30px;
}

/* line 126, ../scss/breakpoints/_768up.scss */
#content .entry-thumbnail {
  width: 26%;
  padding-bottom: 18%;
}
/* line 131, ../scss/breakpoints/_768up.scss */
#content .right-float {
  width: 70%;
}

/* line 138, ../scss/breakpoints/_768up.scss */
.swiper-container-posts {
  margin-bottom: 1%;
  margin-top: 6%;
}
/* line 144, ../scss/breakpoints/_768up.scss */
.swiper-container-posts .swiper-slide .blog-header-info h1 {
  font-size: 36px;
}

/* line 155, ../scss/breakpoints/_768up.scss */
.single .entry-title {
  font-size: 34px;
}

/* line 163, ../scss/breakpoints/_768up.scss */
.callout {
  padding-bottom: 120px;
}
/* line 165, ../scss/breakpoints/_768up.scss */
.callout .description p {
  padding-right: 8%;
}

/* line 175, ../scss/breakpoints/_768up.scss */
.callout-standard .image-wrap {
  background-size: auto;
  padding-bottom: 100%;
  margin-bottom: 0;
}

/* line 185, ../scss/breakpoints/_768up.scss */
#grid-layout .grid-sizer,
#grid-layout .grid-item {
  width: 49%;
}
/* line 189, ../scss/breakpoints/_768up.scss */
#grid-layout .grid-item {
  margin-bottom: 2%;
}
/* line 193, ../scss/breakpoints/_768up.scss */
#grid-layout .grid-spacer {
  width: 2%;
}

/*********************
PRODUCTS
*********************/
/* line 206, ../scss/breakpoints/_768up.scss */
.woocommerce .featured-product .product-image {
  position: relative;
  height: 100%;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 0;
}
/* line 217, ../scss/breakpoints/_768up.scss */
.woocommerce .featured-product .product-image img {
  float: left;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 226, ../scss/breakpoints/_768up.scss */
.woocommerce .featured-product .featured-text {
  height: 100%;
  margin-left: 50%;
}
/* line 235, ../scss/breakpoints/_768up.scss */
.woocommerce ul.products {
  width: 102%;
}
/* line 237, ../scss/breakpoints/_768up.scss */
.woocommerce ul.products li.product {
  padding: 0;
}
/* line 238, ../scss/breakpoints/_768up.scss */
.woocommerce ul.products li.product h3 {
  font-size: 18px;
}

/* line 250, ../scss/breakpoints/_768up.scss */
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
  width: 48%;
  margin: 0 2% 3% 0;
}

/* line 259, ../scss/breakpoints/_768up.scss */
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%;
}
/* line 263, ../scss/breakpoints/_768up.scss */
.woocommerce-account .woocommerce-MyAccount-content {
  width: 78%;
}

/*********************
EVENTS
*********************/
/* line 277, ../scss/breakpoints/_768up.scss */
.events-list .tribe-events-loop .type-tribe_events {
  padding-left: 50px;
}

/* line 285, ../scss/breakpoints/_768up.scss */
.type-tribe_events .tribe-mini-calendar-event {
  padding-left: 50px;
}

/* line 292, ../scss/breakpoints/_768up.scss */
.single-tribe_events .tribe-events-single-event-title {
  font-size: 52px;
}

/*********************
BLOG STYLES
*********************/
/* line 303, ../scss/breakpoints/_768up.scss */
.searchandfilter ul {
  height: 60px;
}
/* line 307, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li {
  width: auto;
}
/* line 311, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li.sf-field-category {
  margin-right: 12px;
}
/* line 315, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li.sf-field-author {
  float: left;
}
/* line 319, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li.sf-field-category {
  float: left;
}
/* line 323, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li.sf-field-search {
  display: inline-block;
}
/* line 326, ../scss/breakpoints/_768up.scss */
.searchandfilter ul li.sf-field-search input {
  min-width: 200px;
}

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

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

*/
