/******************************************************************
Site Name: CINIVA WEB AGENCY
Author:    MINH NGUYEN

Stylesheet: Main Stylesheet


******************************************************************//*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************//* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css *//* ==========================================================================
   HTML5 display definitions
   ========================================================================== *//**
 * Correct `block` display not defined in IE 8/9.
 *//******************************************************************
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/
*********************//*add on colors*//*social color*//*path to images*//*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*//******************************************************************
Site Name: CWA
Author: MINH NGUYEN

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!



******************************************************************/@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300|Montserrat:700);/******************************************************************
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);
*//******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************//*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************//*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************//******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*//******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************//******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************//*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************//*ANIMATION*//******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************//*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************//*
 *SITE NAME: CINIVA WEB AGENCY
 *AUTHOR: MINH NGUYEN
 *FILE NAME: ANIMATION 
 
 * ALL ANIMATIONS SHOULD GO HERE
 *//*generate animation from mixin*//*custom stylesheet goes here*//******************************************************************
Site Name: CINIVA WEB AGENCY
Author:  MINH NGUYEN

Stylesheet: Base Mobile Stylesheet



******************************************************************//*********************
GENERAL STYLES
*********************/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{/* 1 */font-family:sans-serif;/* 2 */-ms-text-size-adjust:100%;/* 2 */-webkit-text-size-adjust:100%;/**
 * 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:thin dotted;/**
 * 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,.strong{font-weight:bold;/**
 * Address styling not present in Safari 5 and Chrome.
 */}dfn,em,.em{font-style:italic;/**
 * Address differences between Firefox and other browsers.
 */}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/}p{-webkit-hyphens:auto;-epub-hyphens:auto;-moz-hyphens:auto;hyphens:auto;/*
 * Addresses margins set differently in IE6/7.
 */}pre{margin:0;/**
 * 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.
 */}q:before,q:after{content:'';content:none;}small,.small{font-size:75%;/**
 * 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;/* ==========================================================================
  Lists
========================================================================== *//*
 * Addresses margins set differently in IE6/7.
 */}dl,menu,ol,ul{margin:1em 0;}dd{margin:0;/*
 * Addresses paddings set differently in IE6/7.
 */}menu{padding:0 0 0 40px;}ol,ul{padding:0;list-style-type:none;/*
 * Corrects list images handled incorrectly in IE7.
 */}nav ul,nav ol{list-style:none;list-style-image:none;/* ==========================================================================
  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{/* 1 */border:0;/* 2 */padding:0;/**
 * 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{/* 1 */font-family:inherit;/* 2 */font-size:100%;/* 3 */margin:0;/**
 * 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"]{/* 2 */-webkit-appearance:button;/* 3 */cursor:pointer;/**
 * 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"]{/* 1 */box-sizing:border-box;/* 2 */padding:0;/**
 * 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"]{/* 1 */-webkit-appearance:textfield;-moz-box-sizing:content-box;/* 2 */-webkit-box-sizing:content-box;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{/* 1 */overflow:auto;/* 2 */vertical-align:top;/* ==========================================================================
   Tables
   ========================================================================== *//**
 * Remove most spacing between table cells.
 */}table{border-collapse:collapse;border-spacing:0;}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}.image-replacement,.ir{text-indent:100%;white-space:nowrap;overflow:hidden;}.clearfix,.cf,.comment-respond{zoom:1;/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/}.clearfix:before,.cf:before,.comment-respond:before,.clearfix:after,.cf:after,.comment-respond:after{content:"";display:table;}.clearfix:after,.cf:after,.comment-respond:after{clear:both;}span.amp{font-family:Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif !important;font-style:italic;}.start-animation .mark:nth-child(1){transform:rotate(6deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(1){-webkit-animation:rotate-1 0.6s ease 0.01s 1 forwards alternate;animation:rotate-1 0.6s ease 0.01s 1 forwards alternate;}}.start-animation .mark:nth-child(2){transform:rotate(12deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(2){-webkit-animation:rotate-2 0.6s ease 0.02s 1 forwards alternate;animation:rotate-2 0.6s ease 0.02s 1 forwards alternate;}}.start-animation .mark:nth-child(3){transform:rotate(18deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(3){-webkit-animation:rotate-3 0.6s ease 0.03s 1 forwards alternate;animation:rotate-3 0.6s ease 0.03s 1 forwards alternate;}}.start-animation .mark:nth-child(4){transform:rotate(24deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(4){-webkit-animation:rotate-4 0.6s ease 0.04s 1 forwards alternate;animation:rotate-4 0.6s ease 0.04s 1 forwards alternate;}}.start-animation .mark:nth-child(5){transform:rotate(30deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(5){-webkit-animation:rotate-5 0.6s ease 0.05s 1 forwards alternate;animation:rotate-5 0.6s ease 0.05s 1 forwards alternate;}}.start-animation .mark:nth-child(6){transform:rotate(36deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(6){-webkit-animation:rotate-6 0.6s ease 0.06s 1 forwards alternate;animation:rotate-6 0.6s ease 0.06s 1 forwards alternate;}}.start-animation .mark:nth-child(7){transform:rotate(42deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(7){-webkit-animation:rotate-7 0.6s ease 0.07s 1 forwards alternate;animation:rotate-7 0.6s ease 0.07s 1 forwards alternate;}}.start-animation .mark:nth-child(8){transform:rotate(48deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(8){-webkit-animation:rotate-8 0.6s ease 0.08s 1 forwards alternate;animation:rotate-8 0.6s ease 0.08s 1 forwards alternate;}}.start-animation .mark:nth-child(9){transform:rotate(54deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(9){-webkit-animation:rotate-9 0.6s ease 0.09s 1 forwards alternate;animation:rotate-9 0.6s ease 0.09s 1 forwards alternate;}}.start-animation .mark:nth-child(10){transform:rotate(60deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(10){-webkit-animation:rotate-10 0.6s ease 0.1s 1 forwards alternate;animation:rotate-10 0.6s ease 0.1s 1 forwards alternate;}}.start-animation .mark:nth-child(11){transform:rotate(66deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(11){-webkit-animation:rotate-11 0.6s ease 0.11s 1 forwards alternate;animation:rotate-11 0.6s ease 0.11s 1 forwards alternate;}}.start-animation .mark:nth-child(12){transform:rotate(72deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(12){-webkit-animation:rotate-12 0.6s ease 0.12s 1 forwards alternate;animation:rotate-12 0.6s ease 0.12s 1 forwards alternate;}}.start-animation .mark:nth-child(13){transform:rotate(78deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(13){-webkit-animation:rotate-13 0.6s ease 0.13s 1 forwards alternate;animation:rotate-13 0.6s ease 0.13s 1 forwards alternate;}}.start-animation .mark:nth-child(14){transform:rotate(84deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(14){-webkit-animation:rotate-14 0.6s ease 0.14s 1 forwards alternate;animation:rotate-14 0.6s ease 0.14s 1 forwards alternate;}}.start-animation .mark:nth-child(15){transform:rotate(90deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(15){-webkit-animation:rotate-15 0.6s ease 0.15s 1 forwards alternate;animation:rotate-15 0.6s ease 0.15s 1 forwards alternate;}}.start-animation .mark:nth-child(16){transform:rotate(96deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(16){-webkit-animation:rotate-16 0.6s ease 0.16s 1 forwards alternate;animation:rotate-16 0.6s ease 0.16s 1 forwards alternate;}}.start-animation .mark:nth-child(17){transform:rotate(102deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(17){-webkit-animation:rotate-17 0.6s ease 0.17s 1 forwards alternate;animation:rotate-17 0.6s ease 0.17s 1 forwards alternate;}}.start-animation .mark:nth-child(18){transform:rotate(108deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(18){-webkit-animation:rotate-18 0.6s ease 0.18s 1 forwards alternate;animation:rotate-18 0.6s ease 0.18s 1 forwards alternate;}}.start-animation .mark:nth-child(19){transform:rotate(114deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(19){-webkit-animation:rotate-19 0.6s ease 0.19s 1 forwards alternate;animation:rotate-19 0.6s ease 0.19s 1 forwards alternate;}}.start-animation .mark:nth-child(20){transform:rotate(120deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(20){-webkit-animation:rotate-20 0.6s ease 0.2s 1 forwards alternate;animation:rotate-20 0.6s ease 0.2s 1 forwards alternate;}}.start-animation .mark:nth-child(21){transform:rotate(126deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(21){-webkit-animation:rotate-21 0.6s ease 0.21s 1 forwards alternate;animation:rotate-21 0.6s ease 0.21s 1 forwards alternate;}}.start-animation .mark:nth-child(22){transform:rotate(132deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(22){-webkit-animation:rotate-22 0.6s ease 0.22s 1 forwards alternate;animation:rotate-22 0.6s ease 0.22s 1 forwards alternate;}}.start-animation .mark:nth-child(23){transform:rotate(138deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(23){-webkit-animation:rotate-23 0.6s ease 0.23s 1 forwards alternate;animation:rotate-23 0.6s ease 0.23s 1 forwards alternate;}}.start-animation .mark:nth-child(24){transform:rotate(144deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(24){-webkit-animation:rotate-24 0.6s ease 0.24s 1 forwards alternate;animation:rotate-24 0.6s ease 0.24s 1 forwards alternate;}}.start-animation .mark:nth-child(25){transform:rotate(150deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(25){-webkit-animation:rotate-25 0.6s ease 0.25s 1 forwards alternate;animation:rotate-25 0.6s ease 0.25s 1 forwards alternate;}}.start-animation .mark:nth-child(26){transform:rotate(156deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(26){-webkit-animation:rotate-26 0.6s ease 0.26s 1 forwards alternate;animation:rotate-26 0.6s ease 0.26s 1 forwards alternate;}}.start-animation .mark:nth-child(27){transform:rotate(162deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(27){-webkit-animation:rotate-27 0.6s ease 0.27s 1 forwards alternate;animation:rotate-27 0.6s ease 0.27s 1 forwards alternate;}}.start-animation .mark:nth-child(28){transform:rotate(168deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(28){-webkit-animation:rotate-28 0.6s ease 0.28s 1 forwards alternate;animation:rotate-28 0.6s ease 0.28s 1 forwards alternate;}}.start-animation .mark:nth-child(29){transform:rotate(174deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(29){-webkit-animation:rotate-29 0.6s ease 0.29s 1 forwards alternate;animation:rotate-29 0.6s ease 0.29s 1 forwards alternate;}}.start-animation .mark:nth-child(30){transform:rotate(180deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(30){-webkit-animation:rotate-30 0.6s ease 0.3s 1 forwards alternate;animation:rotate-30 0.6s ease 0.3s 1 forwards alternate;}}.start-animation .mark:nth-child(31){transform:rotate(186deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(31){-webkit-animation:rotate-31 0.6s ease 0.31s 1 forwards alternate;animation:rotate-31 0.6s ease 0.31s 1 forwards alternate;}}.start-animation .mark:nth-child(32){transform:rotate(192deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(32){-webkit-animation:rotate-32 0.6s ease 0.32s 1 forwards alternate;animation:rotate-32 0.6s ease 0.32s 1 forwards alternate;}}.start-animation .mark:nth-child(33){transform:rotate(198deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(33){-webkit-animation:rotate-33 0.6s ease 0.33s 1 forwards alternate;animation:rotate-33 0.6s ease 0.33s 1 forwards alternate;}}.start-animation .mark:nth-child(34){transform:rotate(204deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(34){-webkit-animation:rotate-34 0.6s ease 0.34s 1 forwards alternate;animation:rotate-34 0.6s ease 0.34s 1 forwards alternate;}}.start-animation .mark:nth-child(35){transform:rotate(210deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(35){-webkit-animation:rotate-35 0.6s ease 0.35s 1 forwards alternate;animation:rotate-35 0.6s ease 0.35s 1 forwards alternate;}}.start-animation .mark:nth-child(36){transform:rotate(216deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(36){-webkit-animation:rotate-36 0.6s ease 0.36s 1 forwards alternate;animation:rotate-36 0.6s ease 0.36s 1 forwards alternate;}}.start-animation .mark:nth-child(37){transform:rotate(222deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(37){-webkit-animation:rotate-37 0.6s ease 0.37s 1 forwards alternate;animation:rotate-37 0.6s ease 0.37s 1 forwards alternate;}}.start-animation .mark:nth-child(38){transform:rotate(228deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(38){-webkit-animation:rotate-38 0.6s ease 0.38s 1 forwards alternate;animation:rotate-38 0.6s ease 0.38s 1 forwards alternate;}}.start-animation .mark:nth-child(39){transform:rotate(234deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(39){-webkit-animation:rotate-39 0.6s ease 0.39s 1 forwards alternate;animation:rotate-39 0.6s ease 0.39s 1 forwards alternate;}}.start-animation .mark:nth-child(40){transform:rotate(240deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(40){-webkit-animation:rotate-40 0.6s ease 0.4s 1 forwards alternate;animation:rotate-40 0.6s ease 0.4s 1 forwards alternate;}}.start-animation .mark:nth-child(41){transform:rotate(246deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(41){-webkit-animation:rotate-41 0.6s ease 0.41s 1 forwards alternate;animation:rotate-41 0.6s ease 0.41s 1 forwards alternate;}}.start-animation .mark:nth-child(42){transform:rotate(252deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(42){-webkit-animation:rotate-42 0.6s ease 0.42s 1 forwards alternate;animation:rotate-42 0.6s ease 0.42s 1 forwards alternate;}}.start-animation .mark:nth-child(43){transform:rotate(258deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(43){-webkit-animation:rotate-43 0.6s ease 0.43s 1 forwards alternate;animation:rotate-43 0.6s ease 0.43s 1 forwards alternate;}}.start-animation .mark:nth-child(44){transform:rotate(264deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(44){-webkit-animation:rotate-44 0.6s ease 0.44s 1 forwards alternate;animation:rotate-44 0.6s ease 0.44s 1 forwards alternate;}}.start-animation .mark:nth-child(45){transform:rotate(270deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(45){-webkit-animation:rotate-45 0.6s ease 0.45s 1 forwards alternate;animation:rotate-45 0.6s ease 0.45s 1 forwards alternate;}}.start-animation .mark:nth-child(46){transform:rotate(276deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(46){-webkit-animation:rotate-46 0.6s ease 0.46s 1 forwards alternate;animation:rotate-46 0.6s ease 0.46s 1 forwards alternate;}}.start-animation .mark:nth-child(47){transform:rotate(282deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(47){-webkit-animation:rotate-47 0.6s ease 0.47s 1 forwards alternate;animation:rotate-47 0.6s ease 0.47s 1 forwards alternate;}}.start-animation .mark:nth-child(48){transform:rotate(288deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(48){-webkit-animation:rotate-48 0.6s ease 0.48s 1 forwards alternate;animation:rotate-48 0.6s ease 0.48s 1 forwards alternate;}}.start-animation .mark:nth-child(49){transform:rotate(294deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(49){-webkit-animation:rotate-49 0.6s ease 0.49s 1 forwards alternate;animation:rotate-49 0.6s ease 0.49s 1 forwards alternate;}}.start-animation .mark:nth-child(50){transform:rotate(300deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(50){-webkit-animation:rotate-50 0.6s ease 0.5s 1 forwards alternate;animation:rotate-50 0.6s ease 0.5s 1 forwards alternate;}}.start-animation .mark:nth-child(51){transform:rotate(306deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(51){-webkit-animation:rotate-51 0.6s ease 0.51s 1 forwards alternate;animation:rotate-51 0.6s ease 0.51s 1 forwards alternate;}}.start-animation .mark:nth-child(52){transform:rotate(312deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(52){-webkit-animation:rotate-52 0.6s ease 0.52s 1 forwards alternate;animation:rotate-52 0.6s ease 0.52s 1 forwards alternate;}}.start-animation .mark:nth-child(53){transform:rotate(318deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(53){-webkit-animation:rotate-53 0.6s ease 0.53s 1 forwards alternate;animation:rotate-53 0.6s ease 0.53s 1 forwards alternate;}}.start-animation .mark:nth-child(54){transform:rotate(324deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(54){-webkit-animation:rotate-54 0.6s ease 0.54s 1 forwards alternate;animation:rotate-54 0.6s ease 0.54s 1 forwards alternate;}}.start-animation .mark:nth-child(55){transform:rotate(330deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(55){-webkit-animation:rotate-55 0.6s ease 0.55s 1 forwards alternate;animation:rotate-55 0.6s ease 0.55s 1 forwards alternate;}}.start-animation .mark:nth-child(56){transform:rotate(336deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(56){-webkit-animation:rotate-56 0.6s ease 0.56s 1 forwards alternate;animation:rotate-56 0.6s ease 0.56s 1 forwards alternate;}}.start-animation .mark:nth-child(57){transform:rotate(342deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(57){-webkit-animation:rotate-57 0.6s ease 0.57s 1 forwards alternate;animation:rotate-57 0.6s ease 0.57s 1 forwards alternate;}}.start-animation .mark:nth-child(58){transform:rotate(348deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(58){-webkit-animation:rotate-58 0.6s ease 0.58s 1 forwards alternate;animation:rotate-58 0.6s ease 0.58s 1 forwards alternate;}}.start-animation .mark:nth-child(59){transform:rotate(354deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(59){-webkit-animation:rotate-59 0.6s ease 0.59s 1 forwards alternate;animation:rotate-59 0.6s ease 0.59s 1 forwards alternate;}}.start-animation .mark:nth-child(60){transform:rotate(360deg);}@media screen and (min-width:1030px){.start-animation .mark:nth-child(60){-webkit-animation:rotate-60 0.6s ease 0.6s 1 forwards alternate;animation:rotate-60 0.6s ease 0.6s 1 forwards alternate;}}.last-col{float:right;padding-right:0;}.col{float:left;padding:0 15px;min-height:1px;}.row{display:block;position:relative;width:auto;margin:0 -15px;}.cols-1{width:8.33333%;}@media screen and (max-width:767px){.cols-1{width:100%;}}.cols-2{width:16.66667%;}@media screen and (max-width:767px){.cols-2{width:100%;}}.cols-3{width:25%;}@media screen and (max-width:767px){.cols-3{width:100%;}}.cols-4{width:33.33333%;}@media screen and (max-width:767px){.cols-4{width:100%;}}.cols-5{width:41.66667%;}@media screen and (max-width:767px){.cols-5{width:100%;}}.cols-6{width:50%;}@media screen and (max-width:767px){.cols-6{width:100%;}}.cols-7{width:58.33333%;}@media screen and (max-width:767px){.cols-7{width:100%;}}.cols-8{width:66.66667%;}@media screen and (max-width:767px){.cols-8{width:100%;}}.cols-9{width:75%;}@media screen and (max-width:767px){.cols-9{width:100%;}}.cols-10{width:83.33333%;}@media screen and (max-width:767px){.cols-10{width:100%;}}.cols-11{width:91.66667%;}@media screen and (max-width:767px){.cols-11{width:100%;}}.cols-12{width:100%;}@media screen and (max-width:767px){.cols-12{width:100%;}}@media (max-width:767px){/* Portrait tablet to landscape */.m-all{width:100%;}.m-1of2{float:left;padding:0 15px;min-height:1px;width:50%;}.m-1of3{float:left;padding:0 15px;min-height:1px;width:33.33%;}.m-2of3{float:left;padding:0 15px;min-height:1px;width:66.66%;}.m-1of4{float:left;padding:0 15px;min-height:1px;width:25%;}.m-3of4{float:left;padding:0 15px;min-height:1px;width:75%;}}@media (min-width:768px) and (max-width:1029px){/* Landscape to small desktop */.t-all{float:left;padding:0 15px;min-height:1px;width:100%;padding-right:0;}.t-1of2{float:left;padding:0 15px;min-height:1px;width:50%;}.t-1of3{float:left;padding:0 15px;min-height:1px;width:33.33%;}.t-2of3{float:left;padding:0 15px;min-height:1px;width:66.66%;}.t-1of4{float:left;padding:0 15px;min-height:1px;width:25%;}.t-3of4{float:left;padding:0 15px;min-height:1px;width:75%;}.t-1of5{float:left;padding:0 15px;min-height:1px;width:20%;}.t-2of5{float:left;padding:0 15px;min-height:1px;width:40%;}.t-3of5{float:left;padding:0 15px;min-height:1px;width:60%;}.t-4of5{float:left;padding:0 15px;min-height:1px;width:80%;}}@media (min-width:1030px){.d-all{float:left;padding:0 15px;min-height:1px;width:100%;padding-right:0;}.d-1of2{float:left;padding:0 15px;min-height:1px;width:50%;}.d-1of3{float:left;padding:0 15px;min-height:1px;width:33.33%;}.d-2of3{float:left;padding:0 15px;min-height:1px;width:66.66%;}.d-1of4{float:left;padding:0 15px;min-height:1px;width:25%;}.d-3of4{float:left;padding:0 15px;min-height:1px;width:75%;}.d-1of5{float:left;padding:0 15px;min-height:1px;width:20%;}.d-2of5{float:left;padding:0 15px;min-height:1px;width:40%;}.d-3of5{float:left;padding:0 15px;min-height:1px;width:60%;}.d-4of5{float:left;padding:0 15px;min-height:1px;width:80%;}.d-1of6{float:left;padding:0 15px;min-height:1px;width:16.66667%;}.d-1of7{float:left;padding:0 15px;min-height:1px;width:14.28571%;}.d-2of7{float:left;padding:0 15px;min-height:1px;width:28.57143%;}.d-3of7{float:left;padding:0 15px;min-height:1px;width:42.85714%;}.d-4of7{float:left;padding:0 15px;min-height:1px;width:57.14286%;}.d-5of7{float:left;padding:0 15px;min-height:1px;width:71.42857%;}.d-6of7{float:left;padding:0 15px;min-height:1px;width:85.71429%;}.d-1of8{float:left;padding:0 15px;min-height:1px;width:12.5%;}.d-1of9{float:left;padding:0 15px;min-height:1px;width:11.11111%;}.d-1of10{float:left;padding:0 15px;min-height:1px;width:10%;}.d-1of11{float:left;padding:0 15px;min-height:1px;width:9.09091%;}.d-1of12{float:left;padding:0 15px;min-height:1px;width:8.33%;}}.alert-help,.alert-info,.alert-error,.alert-success{margin:10px;padding:5px 18px;border:1px solid;}.alert-help{border-color:#e8dc59;background:#ebe16f;}.alert-info{border-color:#bfe4f4;background:#d5edf8;}.alert-error{border-color:#f8cdce;background:#fbe3e4;}.alert-success{border-color:#deeaae;background:#e6efc2;}.blue-btn,.comment-reply-link,#submit,.ghost-btn,.ghost-btn-white{display:inline-block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;text-decoration:none;color:#fff;font-size:0.9em;font-size:34px;line-height:34px;font-weight:normal;padding:0 24px;border-radius:4px;border:0;cursor:pointer;-webkit-transition:background-color 0.14s ease-in-out;-moz-transition:background-color 0.14s ease-in-out;-ms-transition:background-color 0.14s ease-in-out;transition:background-color 0.14s 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); *//*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/}.blue-btn:hover,.comment-reply-link:hover,#submit:hover,.ghost-btn:hover,.ghost-btn-white:hover,.blue-btn:focus,.comment-reply-link:focus,#submit:focus,.ghost-btn:focus,.ghost-btn-white:focus{color:#fff;text-decoration:none;}.blue-btn:active,.comment-reply-link:active,#submit:active,.ghost-btn:active,.ghost-btn-white:active{top:1px;}.blue-btn,.comment-reply-link,#submit{background-color:#2980b9;}.blue-btn:hover,.comment-reply-link:hover,#submit:hover,.blue-btn:focus,.comment-reply-link:focus,#submit:focus{background-color:#2574a8;}.blue-btn:active,.comment-reply-link:active,#submit:active{background-color:#2472a4;}.ghost-btn,.ghost-btn-white{border:2px solid #1b1b1b;margin:5px 0;padding:15px 20px;text-align:center;font-size:16px;border-radius:0;line-height:1.2;font-weight:700;text-transform:uppercase;color:#1b1b1b;text-decoration:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.ghost-btn:visited,.ghost-btn-white:visited{color:#1b1b1b;}.ghost-btn:hover,.ghost-btn-white:hover{color:#fff !important;background-color:#1b1b1b;}.ghost-btn-white{border:1px solid #fff;color:#fff;}.ghost-btn-white:visited{color:#fff;}.ghost-btn-white:hover{color:#1b1b1b !important;background-color:#fff;}form{display:block;position:relative;width:100%;height:auto;max-width:600px;/*********************
INPUTS
*********************/}form p{font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:400;text-transform:capitalize;margin:10px 0;}input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.field{display:block;height:40px;line-height:40px;padding:0 12px;margin-bottom:14px;font-size:1em;color:#1b1b1b;vertical-align:middle;box-shadow:none;border:0;width:100%;font-family:'Lato', "Helvetica Neue", Helvetica, Arial, sans-serif;background-color:#eaedf2;-webkit-transition:background-color 0.24s ease-in-out;-moz-transition:background-color 0.24s ease-in-out;-ms-transition:background-color 0.24s ease-in-out;transition:background-color 0.24s 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); */}input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,select:focus,textarea:focus,.field:focus,input[type="text"]:active,input[type="password"]:active,input[type="datetime"]:active,input[type="datetime-local"]:active,input[type="date"]:active,input[type="month"]:active,input[type="time"]:active,input[type="week"]:active,input[type="number"]:active,input[type="email"]:active,input[type="url"]:active,input[type="search"]:active,input[type="tel"]:active,input[type="color"]:active,select:active,textarea:active,.field:active{background-color:#f7f8fa;}input[type="text"].error,input[type="password"].error,input[type="datetime"].error,input[type="datetime-local"].error,input[type="date"].error,input[type="month"].error,input[type="time"].error,input[type="week"].error,input[type="number"].error,input[type="email"].error,input[type="url"].error,input[type="search"].error,input[type="tel"].error,input[type="color"].error,select.error,textarea.error,.field.error,input[type="text"].is-invalid,input[type="password"].is-invalid,input[type="datetime"].is-invalid,input[type="datetime-local"].is-invalid,input[type="date"].is-invalid,input[type="month"].is-invalid,input[type="time"].is-invalid,input[type="week"].is-invalid,input[type="number"].is-invalid,input[type="email"].is-invalid,input[type="url"].is-invalid,input[type="search"].is-invalid,input[type="tel"].is-invalid,input[type="color"].is-invalid,select.is-invalid,textarea.is-invalid,.field.is-invalid{color:#fbe3e4;border-color:#fbe3e4;background-color:#fff;background-position:99% center;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);outline-color:#fbe3e4;}input[type="text"].success,input[type="password"].success,input[type="datetime"].success,input[type="datetime-local"].success,input[type="date"].success,input[type="month"].success,input[type="time"].success,input[type="week"].success,input[type="number"].success,input[type="email"].success,input[type="url"].success,input[type="search"].success,input[type="tel"].success,input[type="color"].success,select.success,textarea.success,.field.success,input[type="text"].is-valid,input[type="password"].is-valid,input[type="datetime"].is-valid,input[type="datetime-local"].is-valid,input[type="date"].is-valid,input[type="month"].is-valid,input[type="time"].is-valid,input[type="week"].is-valid,input[type="number"].is-valid,input[type="email"].is-valid,input[type="url"].is-valid,input[type="search"].is-valid,input[type="tel"].is-valid,input[type="color"].is-valid,select.is-valid,textarea.is-valid,.field.is-valid{color:#e6efc2;border-color:#e6efc2;background-color:#fff;background-position:99% center;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);outline-color:#e6efc2;}input[type="text"][disabled],input[type="password"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled],select[disabled],textarea[disabled],.field[disabled],input[type="text"].is-disabled,input[type="password"].is-disabled,input[type="datetime"].is-disabled,input[type="datetime-local"].is-disabled,input[type="date"].is-disabled,input[type="month"].is-disabled,input[type="time"].is-disabled,input[type="week"].is-disabled,input[type="number"].is-disabled,input[type="email"].is-disabled,input[type="url"].is-disabled,input[type="search"].is-disabled,input[type="tel"].is-disabled,input[type="color"].is-disabled,select.is-disabled,textarea.is-disabled,.field.is-disabled{cursor:not-allowed;border-color:#cfcfcf;opacity:0.6;}input[type="text"][disabled]:focus,input[type="password"][disabled]:focus,input[type="datetime"][disabled]:focus,input[type="datetime-local"][disabled]:focus,input[type="date"][disabled]:focus,input[type="month"][disabled]:focus,input[type="time"][disabled]:focus,input[type="week"][disabled]:focus,input[type="number"][disabled]:focus,input[type="email"][disabled]:focus,input[type="url"][disabled]:focus,input[type="search"][disabled]:focus,input[type="tel"][disabled]:focus,input[type="color"][disabled]:focus,select[disabled]:focus,textarea[disabled]:focus,.field[disabled]:focus,input[type="text"].is-disabled:focus,input[type="password"].is-disabled:focus,input[type="datetime"].is-disabled:focus,input[type="datetime-local"].is-disabled:focus,input[type="date"].is-disabled:focus,input[type="month"].is-disabled:focus,input[type="time"].is-disabled:focus,input[type="week"].is-disabled:focus,input[type="number"].is-disabled:focus,input[type="email"].is-disabled:focus,input[type="url"].is-disabled:focus,input[type="search"].is-disabled:focus,input[type="tel"].is-disabled:focus,input[type="color"].is-disabled:focus,select.is-disabled:focus,textarea.is-disabled:focus,.field.is-disabled:focus,input[type="text"][disabled]:active,input[type="password"][disabled]:active,input[type="datetime"][disabled]:active,input[type="datetime-local"][disabled]:active,input[type="date"][disabled]:active,input[type="month"][disabled]:active,input[type="time"][disabled]:active,input[type="week"][disabled]:active,input[type="number"][disabled]:active,input[type="email"][disabled]:active,input[type="url"][disabled]:active,input[type="search"][disabled]:active,input[type="tel"][disabled]:active,input[type="color"][disabled]:active,select[disabled]:active,textarea[disabled]:active,.field[disabled]:active,input[type="text"].is-disabled:active,input[type="password"].is-disabled:active,input[type="datetime"].is-disabled:active,input[type="datetime-local"].is-disabled:active,input[type="date"].is-disabled:active,input[type="month"].is-disabled:active,input[type="time"].is-disabled:active,input[type="week"].is-disabled:active,input[type="number"].is-disabled:active,input[type="email"].is-disabled:active,input[type="url"].is-disabled:active,input[type="search"].is-disabled:active,input[type="tel"].is-disabled:active,input[type="color"].is-disabled:active,select.is-disabled:active,textarea.is-disabled:active,.field.is-disabled:active{background-color:#d5edf8;}textarea{max-width:100%;min-height:120px;line-height:1.5em;}select{/* 1 */-webkit-appearance:none;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:97.5% center;}@-webkit-keyframes scale{from{-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);}to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}}@-moz-keyframes scale{from{-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);}to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}}@-ms-keyframes scale{from{-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);}to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}}@keyframes scale{from{-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);}to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}}@-webkit-keyframes slideUpAnimation{/*general animation*/0%{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);opacity:0;}100%{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);opacity:1;}}@-moz-keyframes slideUpAnimation{/*general animation*/0%{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);opacity:0;}100%{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);opacity:1;}}@-ms-keyframes slideUpAnimation{/*general animation*/0%{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);opacity:0;}100%{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);opacity:1;}}@keyframes slideUpAnimation{/*general animation*/0%{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);opacity:0;}100%{-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);opacity:1;}}@-webkit-keyframes drawLine{from{width:0;}to{width:600px;}}@-moz-keyframes drawLine{from{width:0;}to{width:600px;}}@-ms-keyframes drawLine{from{width:0;}to{width:600px;}}@keyframes drawLine{from{width:0;}to{width:600px;}}@-webkit-keyframes border{from{-webkit-transform:translateY(100%) scale(0.1, 0.1);-moz-transform:translateY(100%) scale(0.1, 0.1);-ms-transform:translateY(100%) scale(0.1, 0.1);transform:translateY(100%) scale(0.1, 0.1);}to{-webkit-transform:translateY(100%) scale(1, 1);-moz-transform:translateY(100%) scale(1, 1);-ms-transform:translateY(100%) scale(1, 1);transform:translateY(100%) scale(1, 1);}}@-moz-keyframes border{from{-webkit-transform:translateY(100%) scale(0.1, 0.1);-moz-transform:translateY(100%) scale(0.1, 0.1);-ms-transform:translateY(100%) scale(0.1, 0.1);transform:translateY(100%) scale(0.1, 0.1);}to{-webkit-transform:translateY(100%) scale(1, 1);-moz-transform:translateY(100%) scale(1, 1);-ms-transform:translateY(100%) scale(1, 1);transform:translateY(100%) scale(1, 1);}}@-ms-keyframes border{from{-webkit-transform:translateY(100%) scale(0.1, 0.1);-moz-transform:translateY(100%) scale(0.1, 0.1);-ms-transform:translateY(100%) scale(0.1, 0.1);transform:translateY(100%) scale(0.1, 0.1);}to{-webkit-transform:translateY(100%) scale(1, 1);-moz-transform:translateY(100%) scale(1, 1);-ms-transform:translateY(100%) scale(1, 1);transform:translateY(100%) scale(1, 1);}}@keyframes border{from{-webkit-transform:translateY(100%) scale(0.1, 0.1);-moz-transform:translateY(100%) scale(0.1, 0.1);-ms-transform:translateY(100%) scale(0.1, 0.1);transform:translateY(100%) scale(0.1, 0.1);}to{-webkit-transform:translateY(100%) scale(1, 1);-moz-transform:translateY(100%) scale(1, 1);-ms-transform:translateY(100%) scale(1, 1);transform:translateY(100%) scale(1, 1);}}@-webkit-keyframes slideUp{from{opacity:0;}to{opacity:1;-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}@-moz-keyframes slideUp{from{opacity:0;}to{opacity:1;-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}@-ms-keyframes slideUp{from{opacity:0;}to{opacity:1;-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}@keyframes slideUp{from{opacity:0;}to{opacity:1;-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}@-webkit-keyframes skyStars{from{-webkit-transform:scale(1.5, 1.5) rotate(45deg);-moz-transform:scale(1.5, 1.5) rotate(45deg);-ms-transform:scale(1.5, 1.5) rotate(45deg);transform:scale(1.5, 1.5) rotate(45deg);}to{-webkit-transform:scale(1.8, 1.8) rotate(0deg);-moz-transform:scale(1.8, 1.8) rotate(0deg);-ms-transform:scale(1.8, 1.8) rotate(0deg);transform:scale(1.8, 1.8) rotate(0deg);}}@-moz-keyframes skyStars{from{-webkit-transform:scale(1.5, 1.5) rotate(45deg);-moz-transform:scale(1.5, 1.5) rotate(45deg);-ms-transform:scale(1.5, 1.5) rotate(45deg);transform:scale(1.5, 1.5) rotate(45deg);}to{-webkit-transform:scale(1.8, 1.8) rotate(0deg);-moz-transform:scale(1.8, 1.8) rotate(0deg);-ms-transform:scale(1.8, 1.8) rotate(0deg);transform:scale(1.8, 1.8) rotate(0deg);}}@-ms-keyframes skyStars{from{-webkit-transform:scale(1.5, 1.5) rotate(45deg);-moz-transform:scale(1.5, 1.5) rotate(45deg);-ms-transform:scale(1.5, 1.5) rotate(45deg);transform:scale(1.5, 1.5) rotate(45deg);}to{-webkit-transform:scale(1.8, 1.8) rotate(0deg);-moz-transform:scale(1.8, 1.8) rotate(0deg);-ms-transform:scale(1.8, 1.8) rotate(0deg);transform:scale(1.8, 1.8) rotate(0deg);}}@keyframes skyStars{from{-webkit-transform:scale(1.5, 1.5) rotate(45deg);-moz-transform:scale(1.5, 1.5) rotate(45deg);-ms-transform:scale(1.5, 1.5) rotate(45deg);transform:scale(1.5, 1.5) rotate(45deg);}to{-webkit-transform:scale(1.8, 1.8) rotate(0deg);-moz-transform:scale(1.8, 1.8) rotate(0deg);-ms-transform:scale(1.8, 1.8) rotate(0deg);transform:scale(1.8, 1.8) rotate(0deg);}}@-webkit-keyframes seoCir{to{width:50px;height:50px;}}@-moz-keyframes seoCir{to{width:50px;height:50px;}}@-ms-keyframes seoCir{to{width:50px;height:50px;}}@keyframes seoCir{to{width:50px;height:50px;}}@-webkit-keyframes lineThrough{to{width:150px;}}@-moz-keyframes lineThrough{to{width:150px;}}@-ms-keyframes lineThrough{to{width:150px;}}@keyframes lineThrough{to{width:150px;}}@-webkit-keyframes flipUp{to{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-moz-keyframes flipUp{to{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-ms-keyframes flipUp{to{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@keyframes flipUp{to{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-webkit-keyframes cir-bor{to{border-width:7px;}}@-moz-keyframes cir-bor{to{border-width:7px;}}@-ms-keyframes cir-bor{to{border-width:7px;}}@keyframes cir-bor{to{border-width:7px;}}@-webkit-keyframes rotate-1{100%{-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-ms-transform:rotate(6deg);transform:rotate(6deg);}}@-moz-keyframes rotate-1{100%{-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-ms-transform:rotate(6deg);transform:rotate(6deg);}}@-ms-keyframes rotate-1{100%{-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-ms-transform:rotate(6deg);transform:rotate(6deg);}}@keyframes rotate-1{100%{-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-ms-transform:rotate(6deg);transform:rotate(6deg);}}@-webkit-keyframes rotate-2{100%{-webkit-transform:rotate(12deg);-moz-transform:rotate(12deg);-ms-transform:rotate(12deg);transform:rotate(12deg);}}@-moz-keyframes rotate-2{100%{-webkit-transform:rotate(12deg);-moz-transform:rotate(12deg);-ms-transform:rotate(12deg);transform:rotate(12deg);}}@-ms-keyframes rotate-2{100%{-webkit-transform:rotate(12deg);-moz-transform:rotate(12deg);-ms-transform:rotate(12deg);transform:rotate(12deg);}}@keyframes rotate-2{100%{-webkit-transform:rotate(12deg);-moz-transform:rotate(12deg);-ms-transform:rotate(12deg);transform:rotate(12deg);}}@-webkit-keyframes rotate-3{100%{-webkit-transform:rotate(18deg);-moz-transform:rotate(18deg);-ms-transform:rotate(18deg);transform:rotate(18deg);}}@-moz-keyframes rotate-3{100%{-webkit-transform:rotate(18deg);-moz-transform:rotate(18deg);-ms-transform:rotate(18deg);transform:rotate(18deg);}}@-ms-keyframes rotate-3{100%{-webkit-transform:rotate(18deg);-moz-transform:rotate(18deg);-ms-transform:rotate(18deg);transform:rotate(18deg);}}@keyframes rotate-3{100%{-webkit-transform:rotate(18deg);-moz-transform:rotate(18deg);-ms-transform:rotate(18deg);transform:rotate(18deg);}}@-webkit-keyframes rotate-4{100%{-webkit-transform:rotate(24deg);-moz-transform:rotate(24deg);-ms-transform:rotate(24deg);transform:rotate(24deg);}}@-moz-keyframes rotate-4{100%{-webkit-transform:rotate(24deg);-moz-transform:rotate(24deg);-ms-transform:rotate(24deg);transform:rotate(24deg);}}@-ms-keyframes rotate-4{100%{-webkit-transform:rotate(24deg);-moz-transform:rotate(24deg);-ms-transform:rotate(24deg);transform:rotate(24deg);}}@keyframes rotate-4{100%{-webkit-transform:rotate(24deg);-moz-transform:rotate(24deg);-ms-transform:rotate(24deg);transform:rotate(24deg);}}@-webkit-keyframes rotate-5{100%{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);}}@-moz-keyframes rotate-5{100%{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);}}@-ms-keyframes rotate-5{100%{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);}}@keyframes rotate-5{100%{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);transform:rotate(30deg);}}@-webkit-keyframes rotate-6{100%{-webkit-transform:rotate(36deg);-moz-transform:rotate(36deg);-ms-transform:rotate(36deg);transform:rotate(36deg);}}@-moz-keyframes rotate-6{100%{-webkit-transform:rotate(36deg);-moz-transform:rotate(36deg);-ms-transform:rotate(36deg);transform:rotate(36deg);}}@-ms-keyframes rotate-6{100%{-webkit-transform:rotate(36deg);-moz-transform:rotate(36deg);-ms-transform:rotate(36deg);transform:rotate(36deg);}}@keyframes rotate-6{100%{-webkit-transform:rotate(36deg);-moz-transform:rotate(36deg);-ms-transform:rotate(36deg);transform:rotate(36deg);}}@-webkit-keyframes rotate-7{100%{-webkit-transform:rotate(42deg);-moz-transform:rotate(42deg);-ms-transform:rotate(42deg);transform:rotate(42deg);}}@-moz-keyframes rotate-7{100%{-webkit-transform:rotate(42deg);-moz-transform:rotate(42deg);-ms-transform:rotate(42deg);transform:rotate(42deg);}}@-ms-keyframes rotate-7{100%{-webkit-transform:rotate(42deg);-moz-transform:rotate(42deg);-ms-transform:rotate(42deg);transform:rotate(42deg);}}@keyframes rotate-7{100%{-webkit-transform:rotate(42deg);-moz-transform:rotate(42deg);-ms-transform:rotate(42deg);transform:rotate(42deg);}}@-webkit-keyframes rotate-8{100%{-webkit-transform:rotate(48deg);-moz-transform:rotate(48deg);-ms-transform:rotate(48deg);transform:rotate(48deg);}}@-moz-keyframes rotate-8{100%{-webkit-transform:rotate(48deg);-moz-transform:rotate(48deg);-ms-transform:rotate(48deg);transform:rotate(48deg);}}@-ms-keyframes rotate-8{100%{-webkit-transform:rotate(48deg);-moz-transform:rotate(48deg);-ms-transform:rotate(48deg);transform:rotate(48deg);}}@keyframes rotate-8{100%{-webkit-transform:rotate(48deg);-moz-transform:rotate(48deg);-ms-transform:rotate(48deg);transform:rotate(48deg);}}@-webkit-keyframes rotate-9{100%{-webkit-transform:rotate(54deg);-moz-transform:rotate(54deg);-ms-transform:rotate(54deg);transform:rotate(54deg);}}@-moz-keyframes rotate-9{100%{-webkit-transform:rotate(54deg);-moz-transform:rotate(54deg);-ms-transform:rotate(54deg);transform:rotate(54deg);}}@-ms-keyframes rotate-9{100%{-webkit-transform:rotate(54deg);-moz-transform:rotate(54deg);-ms-transform:rotate(54deg);transform:rotate(54deg);}}@keyframes rotate-9{100%{-webkit-transform:rotate(54deg);-moz-transform:rotate(54deg);-ms-transform:rotate(54deg);transform:rotate(54deg);}}@-webkit-keyframes rotate-10{100%{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);}}@-moz-keyframes rotate-10{100%{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);}}@-ms-keyframes rotate-10{100%{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);}}@keyframes rotate-10{100%{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);}}@-webkit-keyframes rotate-11{100%{-webkit-transform:rotate(66deg);-moz-transform:rotate(66deg);-ms-transform:rotate(66deg);transform:rotate(66deg);}}@-moz-keyframes rotate-11{100%{-webkit-transform:rotate(66deg);-moz-transform:rotate(66deg);-ms-transform:rotate(66deg);transform:rotate(66deg);}}@-ms-keyframes rotate-11{100%{-webkit-transform:rotate(66deg);-moz-transform:rotate(66deg);-ms-transform:rotate(66deg);transform:rotate(66deg);}}@keyframes rotate-11{100%{-webkit-transform:rotate(66deg);-moz-transform:rotate(66deg);-ms-transform:rotate(66deg);transform:rotate(66deg);}}@-webkit-keyframes rotate-12{100%{-webkit-transform:rotate(72deg);-moz-transform:rotate(72deg);-ms-transform:rotate(72deg);transform:rotate(72deg);}}@-moz-keyframes rotate-12{100%{-webkit-transform:rotate(72deg);-moz-transform:rotate(72deg);-ms-transform:rotate(72deg);transform:rotate(72deg);}}@-ms-keyframes rotate-12{100%{-webkit-transform:rotate(72deg);-moz-transform:rotate(72deg);-ms-transform:rotate(72deg);transform:rotate(72deg);}}@keyframes rotate-12{100%{-webkit-transform:rotate(72deg);-moz-transform:rotate(72deg);-ms-transform:rotate(72deg);transform:rotate(72deg);}}@-webkit-keyframes rotate-13{100%{-webkit-transform:rotate(78deg);-moz-transform:rotate(78deg);-ms-transform:rotate(78deg);transform:rotate(78deg);}}@-moz-keyframes rotate-13{100%{-webkit-transform:rotate(78deg);-moz-transform:rotate(78deg);-ms-transform:rotate(78deg);transform:rotate(78deg);}}@-ms-keyframes rotate-13{100%{-webkit-transform:rotate(78deg);-moz-transform:rotate(78deg);-ms-transform:rotate(78deg);transform:rotate(78deg);}}@keyframes rotate-13{100%{-webkit-transform:rotate(78deg);-moz-transform:rotate(78deg);-ms-transform:rotate(78deg);transform:rotate(78deg);}}@-webkit-keyframes rotate-14{100%{-webkit-transform:rotate(84deg);-moz-transform:rotate(84deg);-ms-transform:rotate(84deg);transform:rotate(84deg);}}@-moz-keyframes rotate-14{100%{-webkit-transform:rotate(84deg);-moz-transform:rotate(84deg);-ms-transform:rotate(84deg);transform:rotate(84deg);}}@-ms-keyframes rotate-14{100%{-webkit-transform:rotate(84deg);-moz-transform:rotate(84deg);-ms-transform:rotate(84deg);transform:rotate(84deg);}}@keyframes rotate-14{100%{-webkit-transform:rotate(84deg);-moz-transform:rotate(84deg);-ms-transform:rotate(84deg);transform:rotate(84deg);}}@-webkit-keyframes rotate-15{100%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}}@-moz-keyframes rotate-15{100%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}}@-ms-keyframes rotate-15{100%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}}@keyframes rotate-15{100%{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}}@-webkit-keyframes rotate-16{100%{-webkit-transform:rotate(96deg);-moz-transform:rotate(96deg);-ms-transform:rotate(96deg);transform:rotate(96deg);}}@-moz-keyframes rotate-16{100%{-webkit-transform:rotate(96deg);-moz-transform:rotate(96deg);-ms-transform:rotate(96deg);transform:rotate(96deg);}}@-ms-keyframes rotate-16{100%{-webkit-transform:rotate(96deg);-moz-transform:rotate(96deg);-ms-transform:rotate(96deg);transform:rotate(96deg);}}@keyframes rotate-16{100%{-webkit-transform:rotate(96deg);-moz-transform:rotate(96deg);-ms-transform:rotate(96deg);transform:rotate(96deg);}}@-webkit-keyframes rotate-17{100%{-webkit-transform:rotate(102deg);-moz-transform:rotate(102deg);-ms-transform:rotate(102deg);transform:rotate(102deg);}}@-moz-keyframes rotate-17{100%{-webkit-transform:rotate(102deg);-moz-transform:rotate(102deg);-ms-transform:rotate(102deg);transform:rotate(102deg);}}@-ms-keyframes rotate-17{100%{-webkit-transform:rotate(102deg);-moz-transform:rotate(102deg);-ms-transform:rotate(102deg);transform:rotate(102deg);}}@keyframes rotate-17{100%{-webkit-transform:rotate(102deg);-moz-transform:rotate(102deg);-ms-transform:rotate(102deg);transform:rotate(102deg);}}@-webkit-keyframes rotate-18{100%{-webkit-transform:rotate(108deg);-moz-transform:rotate(108deg);-ms-transform:rotate(108deg);transform:rotate(108deg);}}@-moz-keyframes rotate-18{100%{-webkit-transform:rotate(108deg);-moz-transform:rotate(108deg);-ms-transform:rotate(108deg);transform:rotate(108deg);}}@-ms-keyframes rotate-18{100%{-webkit-transform:rotate(108deg);-moz-transform:rotate(108deg);-ms-transform:rotate(108deg);transform:rotate(108deg);}}@keyframes rotate-18{100%{-webkit-transform:rotate(108deg);-moz-transform:rotate(108deg);-ms-transform:rotate(108deg);transform:rotate(108deg);}}@-webkit-keyframes rotate-19{100%{-webkit-transform:rotate(114deg);-moz-transform:rotate(114deg);-ms-transform:rotate(114deg);transform:rotate(114deg);}}@-moz-keyframes rotate-19{100%{-webkit-transform:rotate(114deg);-moz-transform:rotate(114deg);-ms-transform:rotate(114deg);transform:rotate(114deg);}}@-ms-keyframes rotate-19{100%{-webkit-transform:rotate(114deg);-moz-transform:rotate(114deg);-ms-transform:rotate(114deg);transform:rotate(114deg);}}@keyframes rotate-19{100%{-webkit-transform:rotate(114deg);-moz-transform:rotate(114deg);-ms-transform:rotate(114deg);transform:rotate(114deg);}}@-webkit-keyframes rotate-20{100%{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg);}}@-moz-keyframes rotate-20{100%{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg);}}@-ms-keyframes rotate-20{100%{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg);}}@keyframes rotate-20{100%{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);transform:rotate(120deg);}}@-webkit-keyframes rotate-21{100%{-webkit-transform:rotate(126deg);-moz-transform:rotate(126deg);-ms-transform:rotate(126deg);transform:rotate(126deg);}}@-moz-keyframes rotate-21{100%{-webkit-transform:rotate(126deg);-moz-transform:rotate(126deg);-ms-transform:rotate(126deg);transform:rotate(126deg);}}@-ms-keyframes rotate-21{100%{-webkit-transform:rotate(126deg);-moz-transform:rotate(126deg);-ms-transform:rotate(126deg);transform:rotate(126deg);}}@keyframes rotate-21{100%{-webkit-transform:rotate(126deg);-moz-transform:rotate(126deg);-ms-transform:rotate(126deg);transform:rotate(126deg);}}@-webkit-keyframes rotate-22{100%{-webkit-transform:rotate(132deg);-moz-transform:rotate(132deg);-ms-transform:rotate(132deg);transform:rotate(132deg);}}@-moz-keyframes rotate-22{100%{-webkit-transform:rotate(132deg);-moz-transform:rotate(132deg);-ms-transform:rotate(132deg);transform:rotate(132deg);}}@-ms-keyframes rotate-22{100%{-webkit-transform:rotate(132deg);-moz-transform:rotate(132deg);-ms-transform:rotate(132deg);transform:rotate(132deg);}}@keyframes rotate-22{100%{-webkit-transform:rotate(132deg);-moz-transform:rotate(132deg);-ms-transform:rotate(132deg);transform:rotate(132deg);}}@-webkit-keyframes rotate-23{100%{-webkit-transform:rotate(138deg);-moz-transform:rotate(138deg);-ms-transform:rotate(138deg);transform:rotate(138deg);}}@-moz-keyframes rotate-23{100%{-webkit-transform:rotate(138deg);-moz-transform:rotate(138deg);-ms-transform:rotate(138deg);transform:rotate(138deg);}}@-ms-keyframes rotate-23{100%{-webkit-transform:rotate(138deg);-moz-transform:rotate(138deg);-ms-transform:rotate(138deg);transform:rotate(138deg);}}@keyframes rotate-23{100%{-webkit-transform:rotate(138deg);-moz-transform:rotate(138deg);-ms-transform:rotate(138deg);transform:rotate(138deg);}}@-webkit-keyframes rotate-24{100%{-webkit-transform:rotate(144deg);-moz-transform:rotate(144deg);-ms-transform:rotate(144deg);transform:rotate(144deg);}}@-moz-keyframes rotate-24{100%{-webkit-transform:rotate(144deg);-moz-transform:rotate(144deg);-ms-transform:rotate(144deg);transform:rotate(144deg);}}@-ms-keyframes rotate-24{100%{-webkit-transform:rotate(144deg);-moz-transform:rotate(144deg);-ms-transform:rotate(144deg);transform:rotate(144deg);}}@keyframes rotate-24{100%{-webkit-transform:rotate(144deg);-moz-transform:rotate(144deg);-ms-transform:rotate(144deg);transform:rotate(144deg);}}@-webkit-keyframes rotate-25{100%{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg);}}@-moz-keyframes rotate-25{100%{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg);}}@-ms-keyframes rotate-25{100%{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg);}}@keyframes rotate-25{100%{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);transform:rotate(150deg);}}@-webkit-keyframes rotate-26{100%{-webkit-transform:rotate(156deg);-moz-transform:rotate(156deg);-ms-transform:rotate(156deg);transform:rotate(156deg);}}@-moz-keyframes rotate-26{100%{-webkit-transform:rotate(156deg);-moz-transform:rotate(156deg);-ms-transform:rotate(156deg);transform:rotate(156deg);}}@-ms-keyframes rotate-26{100%{-webkit-transform:rotate(156deg);-moz-transform:rotate(156deg);-ms-transform:rotate(156deg);transform:rotate(156deg);}}@keyframes rotate-26{100%{-webkit-transform:rotate(156deg);-moz-transform:rotate(156deg);-ms-transform:rotate(156deg);transform:rotate(156deg);}}@-webkit-keyframes rotate-27{100%{-webkit-transform:rotate(162deg);-moz-transform:rotate(162deg);-ms-transform:rotate(162deg);transform:rotate(162deg);}}@-moz-keyframes rotate-27{100%{-webkit-transform:rotate(162deg);-moz-transform:rotate(162deg);-ms-transform:rotate(162deg);transform:rotate(162deg);}}@-ms-keyframes rotate-27{100%{-webkit-transform:rotate(162deg);-moz-transform:rotate(162deg);-ms-transform:rotate(162deg);transform:rotate(162deg);}}@keyframes rotate-27{100%{-webkit-transform:rotate(162deg);-moz-transform:rotate(162deg);-ms-transform:rotate(162deg);transform:rotate(162deg);}}@-webkit-keyframes rotate-28{100%{-webkit-transform:rotate(168deg);-moz-transform:rotate(168deg);-ms-transform:rotate(168deg);transform:rotate(168deg);}}@-moz-keyframes rotate-28{100%{-webkit-transform:rotate(168deg);-moz-transform:rotate(168deg);-ms-transform:rotate(168deg);transform:rotate(168deg);}}@-ms-keyframes rotate-28{100%{-webkit-transform:rotate(168deg);-moz-transform:rotate(168deg);-ms-transform:rotate(168deg);transform:rotate(168deg);}}@keyframes rotate-28{100%{-webkit-transform:rotate(168deg);-moz-transform:rotate(168deg);-ms-transform:rotate(168deg);transform:rotate(168deg);}}@-webkit-keyframes rotate-29{100%{-webkit-transform:rotate(174deg);-moz-transform:rotate(174deg);-ms-transform:rotate(174deg);transform:rotate(174deg);}}@-moz-keyframes rotate-29{100%{-webkit-transform:rotate(174deg);-moz-transform:rotate(174deg);-ms-transform:rotate(174deg);transform:rotate(174deg);}}@-ms-keyframes rotate-29{100%{-webkit-transform:rotate(174deg);-moz-transform:rotate(174deg);-ms-transform:rotate(174deg);transform:rotate(174deg);}}@keyframes rotate-29{100%{-webkit-transform:rotate(174deg);-moz-transform:rotate(174deg);-ms-transform:rotate(174deg);transform:rotate(174deg);}}@-webkit-keyframes rotate-30{100%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-moz-keyframes rotate-30{100%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-ms-keyframes rotate-30{100%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@keyframes rotate-30{100%{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}}@-webkit-keyframes rotate-31{100%{-webkit-transform:rotate(186deg);-moz-transform:rotate(186deg);-ms-transform:rotate(186deg);transform:rotate(186deg);}}@-moz-keyframes rotate-31{100%{-webkit-transform:rotate(186deg);-moz-transform:rotate(186deg);-ms-transform:rotate(186deg);transform:rotate(186deg);}}@-ms-keyframes rotate-31{100%{-webkit-transform:rotate(186deg);-moz-transform:rotate(186deg);-ms-transform:rotate(186deg);transform:rotate(186deg);}}@keyframes rotate-31{100%{-webkit-transform:rotate(186deg);-moz-transform:rotate(186deg);-ms-transform:rotate(186deg);transform:rotate(186deg);}}@-webkit-keyframes rotate-32{100%{-webkit-transform:rotate(192deg);-moz-transform:rotate(192deg);-ms-transform:rotate(192deg);transform:rotate(192deg);}}@-moz-keyframes rotate-32{100%{-webkit-transform:rotate(192deg);-moz-transform:rotate(192deg);-ms-transform:rotate(192deg);transform:rotate(192deg);}}@-ms-keyframes rotate-32{100%{-webkit-transform:rotate(192deg);-moz-transform:rotate(192deg);-ms-transform:rotate(192deg);transform:rotate(192deg);}}@keyframes rotate-32{100%{-webkit-transform:rotate(192deg);-moz-transform:rotate(192deg);-ms-transform:rotate(192deg);transform:rotate(192deg);}}@-webkit-keyframes rotate-33{100%{-webkit-transform:rotate(198deg);-moz-transform:rotate(198deg);-ms-transform:rotate(198deg);transform:rotate(198deg);}}@-moz-keyframes rotate-33{100%{-webkit-transform:rotate(198deg);-moz-transform:rotate(198deg);-ms-transform:rotate(198deg);transform:rotate(198deg);}}@-ms-keyframes rotate-33{100%{-webkit-transform:rotate(198deg);-moz-transform:rotate(198deg);-ms-transform:rotate(198deg);transform:rotate(198deg);}}@keyframes rotate-33{100%{-webkit-transform:rotate(198deg);-moz-transform:rotate(198deg);-ms-transform:rotate(198deg);transform:rotate(198deg);}}@-webkit-keyframes rotate-34{100%{-webkit-transform:rotate(204deg);-moz-transform:rotate(204deg);-ms-transform:rotate(204deg);transform:rotate(204deg);}}@-moz-keyframes rotate-34{100%{-webkit-transform:rotate(204deg);-moz-transform:rotate(204deg);-ms-transform:rotate(204deg);transform:rotate(204deg);}}@-ms-keyframes rotate-34{100%{-webkit-transform:rotate(204deg);-moz-transform:rotate(204deg);-ms-transform:rotate(204deg);transform:rotate(204deg);}}@keyframes rotate-34{100%{-webkit-transform:rotate(204deg);-moz-transform:rotate(204deg);-ms-transform:rotate(204deg);transform:rotate(204deg);}}@-webkit-keyframes rotate-35{100%{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg);}}@-moz-keyframes rotate-35{100%{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg);}}@-ms-keyframes rotate-35{100%{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg);}}@keyframes rotate-35{100%{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);transform:rotate(210deg);}}@-webkit-keyframes rotate-36{100%{-webkit-transform:rotate(216deg);-moz-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg);}}@-moz-keyframes rotate-36{100%{-webkit-transform:rotate(216deg);-moz-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg);}}@-ms-keyframes rotate-36{100%{-webkit-transform:rotate(216deg);-moz-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg);}}@keyframes rotate-36{100%{-webkit-transform:rotate(216deg);-moz-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg);}}@-webkit-keyframes rotate-37{100%{-webkit-transform:rotate(222deg);-moz-transform:rotate(222deg);-ms-transform:rotate(222deg);transform:rotate(222deg);}}@-moz-keyframes rotate-37{100%{-webkit-transform:rotate(222deg);-moz-transform:rotate(222deg);-ms-transform:rotate(222deg);transform:rotate(222deg);}}@-ms-keyframes rotate-37{100%{-webkit-transform:rotate(222deg);-moz-transform:rotate(222deg);-ms-transform:rotate(222deg);transform:rotate(222deg);}}@keyframes rotate-37{100%{-webkit-transform:rotate(222deg);-moz-transform:rotate(222deg);-ms-transform:rotate(222deg);transform:rotate(222deg);}}@-webkit-keyframes rotate-38{100%{-webkit-transform:rotate(228deg);-moz-transform:rotate(228deg);-ms-transform:rotate(228deg);transform:rotate(228deg);}}@-moz-keyframes rotate-38{100%{-webkit-transform:rotate(228deg);-moz-transform:rotate(228deg);-ms-transform:rotate(228deg);transform:rotate(228deg);}}@-ms-keyframes rotate-38{100%{-webkit-transform:rotate(228deg);-moz-transform:rotate(228deg);-ms-transform:rotate(228deg);transform:rotate(228deg);}}@keyframes rotate-38{100%{-webkit-transform:rotate(228deg);-moz-transform:rotate(228deg);-ms-transform:rotate(228deg);transform:rotate(228deg);}}@-webkit-keyframes rotate-39{100%{-webkit-transform:rotate(234deg);-moz-transform:rotate(234deg);-ms-transform:rotate(234deg);transform:rotate(234deg);}}@-moz-keyframes rotate-39{100%{-webkit-transform:rotate(234deg);-moz-transform:rotate(234deg);-ms-transform:rotate(234deg);transform:rotate(234deg);}}@-ms-keyframes rotate-39{100%{-webkit-transform:rotate(234deg);-moz-transform:rotate(234deg);-ms-transform:rotate(234deg);transform:rotate(234deg);}}@keyframes rotate-39{100%{-webkit-transform:rotate(234deg);-moz-transform:rotate(234deg);-ms-transform:rotate(234deg);transform:rotate(234deg);}}@-webkit-keyframes rotate-40{100%{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg);}}@-moz-keyframes rotate-40{100%{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg);}}@-ms-keyframes rotate-40{100%{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg);}}@keyframes rotate-40{100%{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);transform:rotate(240deg);}}@-webkit-keyframes rotate-41{100%{-webkit-transform:rotate(246deg);-moz-transform:rotate(246deg);-ms-transform:rotate(246deg);transform:rotate(246deg);}}@-moz-keyframes rotate-41{100%{-webkit-transform:rotate(246deg);-moz-transform:rotate(246deg);-ms-transform:rotate(246deg);transform:rotate(246deg);}}@-ms-keyframes rotate-41{100%{-webkit-transform:rotate(246deg);-moz-transform:rotate(246deg);-ms-transform:rotate(246deg);transform:rotate(246deg);}}@keyframes rotate-41{100%{-webkit-transform:rotate(246deg);-moz-transform:rotate(246deg);-ms-transform:rotate(246deg);transform:rotate(246deg);}}@-webkit-keyframes rotate-42{100%{-webkit-transform:rotate(252deg);-moz-transform:rotate(252deg);-ms-transform:rotate(252deg);transform:rotate(252deg);}}@-moz-keyframes rotate-42{100%{-webkit-transform:rotate(252deg);-moz-transform:rotate(252deg);-ms-transform:rotate(252deg);transform:rotate(252deg);}}@-ms-keyframes rotate-42{100%{-webkit-transform:rotate(252deg);-moz-transform:rotate(252deg);-ms-transform:rotate(252deg);transform:rotate(252deg);}}@keyframes rotate-42{100%{-webkit-transform:rotate(252deg);-moz-transform:rotate(252deg);-ms-transform:rotate(252deg);transform:rotate(252deg);}}@-webkit-keyframes rotate-43{100%{-webkit-transform:rotate(258deg);-moz-transform:rotate(258deg);-ms-transform:rotate(258deg);transform:rotate(258deg);}}@-moz-keyframes rotate-43{100%{-webkit-transform:rotate(258deg);-moz-transform:rotate(258deg);-ms-transform:rotate(258deg);transform:rotate(258deg);}}@-ms-keyframes rotate-43{100%{-webkit-transform:rotate(258deg);-moz-transform:rotate(258deg);-ms-transform:rotate(258deg);transform:rotate(258deg);}}@keyframes rotate-43{100%{-webkit-transform:rotate(258deg);-moz-transform:rotate(258deg);-ms-transform:rotate(258deg);transform:rotate(258deg);}}@-webkit-keyframes rotate-44{100%{-webkit-transform:rotate(264deg);-moz-transform:rotate(264deg);-ms-transform:rotate(264deg);transform:rotate(264deg);}}@-moz-keyframes rotate-44{100%{-webkit-transform:rotate(264deg);-moz-transform:rotate(264deg);-ms-transform:rotate(264deg);transform:rotate(264deg);}}@-ms-keyframes rotate-44{100%{-webkit-transform:rotate(264deg);-moz-transform:rotate(264deg);-ms-transform:rotate(264deg);transform:rotate(264deg);}}@keyframes rotate-44{100%{-webkit-transform:rotate(264deg);-moz-transform:rotate(264deg);-ms-transform:rotate(264deg);transform:rotate(264deg);}}@-webkit-keyframes rotate-45{100%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}}@-moz-keyframes rotate-45{100%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}}@-ms-keyframes rotate-45{100%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}}@keyframes rotate-45{100%{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg);}}@-webkit-keyframes rotate-46{100%{-webkit-transform:rotate(276deg);-moz-transform:rotate(276deg);-ms-transform:rotate(276deg);transform:rotate(276deg);}}@-moz-keyframes rotate-46{100%{-webkit-transform:rotate(276deg);-moz-transform:rotate(276deg);-ms-transform:rotate(276deg);transform:rotate(276deg);}}@-ms-keyframes rotate-46{100%{-webkit-transform:rotate(276deg);-moz-transform:rotate(276deg);-ms-transform:rotate(276deg);transform:rotate(276deg);}}@keyframes rotate-46{100%{-webkit-transform:rotate(276deg);-moz-transform:rotate(276deg);-ms-transform:rotate(276deg);transform:rotate(276deg);}}@-webkit-keyframes rotate-47{100%{-webkit-transform:rotate(282deg);-moz-transform:rotate(282deg);-ms-transform:rotate(282deg);transform:rotate(282deg);}}@-moz-keyframes rotate-47{100%{-webkit-transform:rotate(282deg);-moz-transform:rotate(282deg);-ms-transform:rotate(282deg);transform:rotate(282deg);}}@-ms-keyframes rotate-47{100%{-webkit-transform:rotate(282deg);-moz-transform:rotate(282deg);-ms-transform:rotate(282deg);transform:rotate(282deg);}}@keyframes rotate-47{100%{-webkit-transform:rotate(282deg);-moz-transform:rotate(282deg);-ms-transform:rotate(282deg);transform:rotate(282deg);}}@-webkit-keyframes rotate-48{100%{-webkit-transform:rotate(288deg);-moz-transform:rotate(288deg);-ms-transform:rotate(288deg);transform:rotate(288deg);}}@-moz-keyframes rotate-48{100%{-webkit-transform:rotate(288deg);-moz-transform:rotate(288deg);-ms-transform:rotate(288deg);transform:rotate(288deg);}}@-ms-keyframes rotate-48{100%{-webkit-transform:rotate(288deg);-moz-transform:rotate(288deg);-ms-transform:rotate(288deg);transform:rotate(288deg);}}@keyframes rotate-48{100%{-webkit-transform:rotate(288deg);-moz-transform:rotate(288deg);-ms-transform:rotate(288deg);transform:rotate(288deg);}}@-webkit-keyframes rotate-49{100%{-webkit-transform:rotate(294deg);-moz-transform:rotate(294deg);-ms-transform:rotate(294deg);transform:rotate(294deg);}}@-moz-keyframes rotate-49{100%{-webkit-transform:rotate(294deg);-moz-transform:rotate(294deg);-ms-transform:rotate(294deg);transform:rotate(294deg);}}@-ms-keyframes rotate-49{100%{-webkit-transform:rotate(294deg);-moz-transform:rotate(294deg);-ms-transform:rotate(294deg);transform:rotate(294deg);}}@keyframes rotate-49{100%{-webkit-transform:rotate(294deg);-moz-transform:rotate(294deg);-ms-transform:rotate(294deg);transform:rotate(294deg);}}@-webkit-keyframes rotate-50{100%{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}@-moz-keyframes rotate-50{100%{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}@-ms-keyframes rotate-50{100%{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}@keyframes rotate-50{100%{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);transform:rotate(300deg);}}@-webkit-keyframes rotate-51{100%{-webkit-transform:rotate(306deg);-moz-transform:rotate(306deg);-ms-transform:rotate(306deg);transform:rotate(306deg);}}@-moz-keyframes rotate-51{100%{-webkit-transform:rotate(306deg);-moz-transform:rotate(306deg);-ms-transform:rotate(306deg);transform:rotate(306deg);}}@-ms-keyframes rotate-51{100%{-webkit-transform:rotate(306deg);-moz-transform:rotate(306deg);-ms-transform:rotate(306deg);transform:rotate(306deg);}}@keyframes rotate-51{100%{-webkit-transform:rotate(306deg);-moz-transform:rotate(306deg);-ms-transform:rotate(306deg);transform:rotate(306deg);}}@-webkit-keyframes rotate-52{100%{-webkit-transform:rotate(312deg);-moz-transform:rotate(312deg);-ms-transform:rotate(312deg);transform:rotate(312deg);}}@-moz-keyframes rotate-52{100%{-webkit-transform:rotate(312deg);-moz-transform:rotate(312deg);-ms-transform:rotate(312deg);transform:rotate(312deg);}}@-ms-keyframes rotate-52{100%{-webkit-transform:rotate(312deg);-moz-transform:rotate(312deg);-ms-transform:rotate(312deg);transform:rotate(312deg);}}@keyframes rotate-52{100%{-webkit-transform:rotate(312deg);-moz-transform:rotate(312deg);-ms-transform:rotate(312deg);transform:rotate(312deg);}}@-webkit-keyframes rotate-53{100%{-webkit-transform:rotate(318deg);-moz-transform:rotate(318deg);-ms-transform:rotate(318deg);transform:rotate(318deg);}}@-moz-keyframes rotate-53{100%{-webkit-transform:rotate(318deg);-moz-transform:rotate(318deg);-ms-transform:rotate(318deg);transform:rotate(318deg);}}@-ms-keyframes rotate-53{100%{-webkit-transform:rotate(318deg);-moz-transform:rotate(318deg);-ms-transform:rotate(318deg);transform:rotate(318deg);}}@keyframes rotate-53{100%{-webkit-transform:rotate(318deg);-moz-transform:rotate(318deg);-ms-transform:rotate(318deg);transform:rotate(318deg);}}@-webkit-keyframes rotate-54{100%{-webkit-transform:rotate(324deg);-moz-transform:rotate(324deg);-ms-transform:rotate(324deg);transform:rotate(324deg);}}@-moz-keyframes rotate-54{100%{-webkit-transform:rotate(324deg);-moz-transform:rotate(324deg);-ms-transform:rotate(324deg);transform:rotate(324deg);}}@-ms-keyframes rotate-54{100%{-webkit-transform:rotate(324deg);-moz-transform:rotate(324deg);-ms-transform:rotate(324deg);transform:rotate(324deg);}}@keyframes rotate-54{100%{-webkit-transform:rotate(324deg);-moz-transform:rotate(324deg);-ms-transform:rotate(324deg);transform:rotate(324deg);}}@-webkit-keyframes rotate-55{100%{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg);}}@-moz-keyframes rotate-55{100%{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg);}}@-ms-keyframes rotate-55{100%{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg);}}@keyframes rotate-55{100%{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);transform:rotate(330deg);}}@-webkit-keyframes rotate-56{100%{-webkit-transform:rotate(336deg);-moz-transform:rotate(336deg);-ms-transform:rotate(336deg);transform:rotate(336deg);}}@-moz-keyframes rotate-56{100%{-webkit-transform:rotate(336deg);-moz-transform:rotate(336deg);-ms-transform:rotate(336deg);transform:rotate(336deg);}}@-ms-keyframes rotate-56{100%{-webkit-transform:rotate(336deg);-moz-transform:rotate(336deg);-ms-transform:rotate(336deg);transform:rotate(336deg);}}@keyframes rotate-56{100%{-webkit-transform:rotate(336deg);-moz-transform:rotate(336deg);-ms-transform:rotate(336deg);transform:rotate(336deg);}}@-webkit-keyframes rotate-57{100%{-webkit-transform:rotate(342deg);-moz-transform:rotate(342deg);-ms-transform:rotate(342deg);transform:rotate(342deg);}}@-moz-keyframes rotate-57{100%{-webkit-transform:rotate(342deg);-moz-transform:rotate(342deg);-ms-transform:rotate(342deg);transform:rotate(342deg);}}@-ms-keyframes rotate-57{100%{-webkit-transform:rotate(342deg);-moz-transform:rotate(342deg);-ms-transform:rotate(342deg);transform:rotate(342deg);}}@keyframes rotate-57{100%{-webkit-transform:rotate(342deg);-moz-transform:rotate(342deg);-ms-transform:rotate(342deg);transform:rotate(342deg);}}@-webkit-keyframes rotate-58{100%{-webkit-transform:rotate(348deg);-moz-transform:rotate(348deg);-ms-transform:rotate(348deg);transform:rotate(348deg);}}@-moz-keyframes rotate-58{100%{-webkit-transform:rotate(348deg);-moz-transform:rotate(348deg);-ms-transform:rotate(348deg);transform:rotate(348deg);}}@-ms-keyframes rotate-58{100%{-webkit-transform:rotate(348deg);-moz-transform:rotate(348deg);-ms-transform:rotate(348deg);transform:rotate(348deg);}}@keyframes rotate-58{100%{-webkit-transform:rotate(348deg);-moz-transform:rotate(348deg);-ms-transform:rotate(348deg);transform:rotate(348deg);}}@-webkit-keyframes rotate-59{100%{-webkit-transform:rotate(354deg);-moz-transform:rotate(354deg);-ms-transform:rotate(354deg);transform:rotate(354deg);}}@-moz-keyframes rotate-59{100%{-webkit-transform:rotate(354deg);-moz-transform:rotate(354deg);-ms-transform:rotate(354deg);transform:rotate(354deg);}}@-ms-keyframes rotate-59{100%{-webkit-transform:rotate(354deg);-moz-transform:rotate(354deg);-ms-transform:rotate(354deg);transform:rotate(354deg);}}@keyframes rotate-59{100%{-webkit-transform:rotate(354deg);-moz-transform:rotate(354deg);-ms-transform:rotate(354deg);transform:rotate(354deg);}}@-webkit-keyframes rotate-60{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@-moz-keyframes rotate-60{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@-ms-keyframes rotate-60{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@keyframes rotate-60{100%{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}@-webkit-keyframes numbUp{to{top:80px;opacity:1;}}@-moz-keyframes numbUp{to{top:80px;opacity:1;}}@-ms-keyframes numbUp{to{top:80px;opacity:1;}}@keyframes numbUp{to{top:80px;opacity:1;}}@-webkit-keyframes left-clock{to{top:45%;left:10%;opacity:1;}}@-moz-keyframes left-clock{to{top:45%;left:10%;opacity:1;}}@-ms-keyframes left-clock{to{top:45%;left:10%;opacity:1;}}@keyframes left-clock{to{top:45%;left:10%;opacity:1;}}@-webkit-keyframes right-clock{to{top:45%;left:62%;opacity:1;}}@-moz-keyframes right-clock{to{top:45%;left:62%;opacity:1;}}@-ms-keyframes right-clock{to{top:45%;left:62%;opacity:1;}}@keyframes right-clock{to{top:45%;left:62%;opacity:1;}}@-webkit-keyframes bottom-clock{to{top:60%;opacity:1;}}@-moz-keyframes bottom-clock{to{top:60%;opacity:1;}}@-ms-keyframes bottom-clock{to{top:60%;opacity:1;}}@keyframes bottom-clock{to{top:60%;opacity:1;}}@-webkit-keyframes letter-spacing{to{letter-spacing:3px;}}@-moz-keyframes letter-spacing{to{letter-spacing:3px;}}@-ms-keyframes letter-spacing{to{letter-spacing:3px;}}@keyframes letter-spacing{to{letter-spacing:3px;}}@-webkit-keyframes rotatez{to{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);-ms-transform:rotateZ(360deg);transform:rotateZ(360deg);}}@-moz-keyframes rotatez{to{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);-ms-transform:rotateZ(360deg);transform:rotateZ(360deg);}}@-ms-keyframes rotatez{to{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);-ms-transform:rotateZ(360deg);transform:rotateZ(360deg);}}@keyframes rotatez{to{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);-ms-transform:rotateZ(360deg);transform:rotateZ(360deg);}}@-webkit-keyframes scrollBalls{to{-webkit-transform:translateY(90px);-moz-transform:translateY(90px);-ms-transform:translateY(90px);transform:translateY(90px);opacity:0;}}@-moz-keyframes scrollBalls{to{-webkit-transform:translateY(90px);-moz-transform:translateY(90px);-ms-transform:translateY(90px);transform:translateY(90px);opacity:0;}}@-ms-keyframes scrollBalls{to{-webkit-transform:translateY(90px);-moz-transform:translateY(90px);-ms-transform:translateY(90px);transform:translateY(90px);opacity:0;}}@keyframes scrollBalls{to{-webkit-transform:translateY(90px);-moz-transform:translateY(90px);-ms-transform:translateY(90px);transform:translateY(90px);opacity:0;}}@-webkit-keyframes bloom{to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}}@-moz-keyframes bloom{to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}}@-ms-keyframes bloom{to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}}@keyframes bloom{to{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}}@-webkit-keyframes bloom2{0{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}50%{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}100%{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}}@-moz-keyframes bloom2{0{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}50%{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}100%{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}}@-ms-keyframes bloom2{0{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}50%{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}100%{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}}@keyframes bloom2{0{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}50%{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}100%{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);}}body,html{width:100%;height:auto;margin:0;padding:0;overflow-x:hidden;}body{font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:100%;line-height:1.3;color:#1b1b1b;background-color:#fff;-webkit-font-smoothing:antialiased;/********************
WORDPRESS BODY CLASSES
style a page via class
********************/}.rtl{/* for sites that are read right to left (i.e. hebrew) */}.home{/* home page */}.blog{/* blog template page */}.archive{/* archive page */}.date{/* date archive page */}.date-paged-1{/* replace the number to the corresponding page number */}.search{/* search page */}.search-results{/* search result page */}.search-no-results{/* no results search page */}.search-paged-1{/* individual paged search (i.e. body.search-paged-3) */}.error404{/* 404 page */}.single{/* single post page */}.postid-1{/* individual post page by id (i.e. body.postid-73) */}.single-paged-1{/* individual paged single (i.e. body.single-paged-3) */}.attachment{/* attatchment page */}.attachmentid-1{/* individual attatchment page (i.e. body.attachmentid-763) */}.attachment-mime-type{/* style mime type pages */}.author{/* author page */}.author-nicename{/* user nicename (i.e. body.author-samueladams) */}.author-paged-1{/* paged author archives (i.e. body.author-paged-4) for page 4 */}.category{/* category page */}.category-1{/* individual category page (i.e. body.category-6) */}.category-paged-1{/* replace the number to the corresponding page number */}.tag{/* tag page */}.tag-slug{/* individual tag page (i.e. body.tag-news) */}.tag-paged-1{/* replace the number to the corresponding page number */}.page-template{/* custom page template page */}.page-template-page-php{/* individual page template (i.e. body.page-template-contact-php */}.page-paged-1{/* replace the number to the corresponding page number */}.page-parent{/* parent page template */}.page-child{/* child page template */}.parent-pageid-1{/* replace the number to the corresponding page number */}.logged-in{/* if user is logged in */}.paged{/* paged items like search results or archives */}.paged-1{/* individual paged (i.e. body.paged-3) *//*********************
LAYOUT & GRID STYLES
*********************/}.wrap{width:90%;margin:0 auto;/*********************
LINK STYLES
*********************/}a,a:visited{color:#2c3e50;text-decoration:none;/* on hover */font-weight:700;/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/}a:hover,a:visited:hover,a:focus,a:visited:focus{color:#1c2732;/* on click */}a:active,a:visited:active{/* mobile tap color */}a:link,a:visited:link{-webkit-tap-highlight-color :rgba(0, 0, 0, 0.3);}h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5{text-rendering:optimizelegibility;/*
	if you're going to use webfonts, be sure to check your weights
	http://css-tricks.com/watch-your-font-weight/
	*//* removing text decoration from all headline links */font-weight:500;}h1 a,.h1 a,h2 a,.h2 a,h3 a,.h3 a,h4 a,.h4 a,h5 a,.h5 a{text-decoration:none;}h1,.h1{font-size:2.5em;line-height:1.333em;}h2,.h2{font-size:1.75em;line-height:1.4em;margin-bottom:0.375em;}h3,.h3{font-size:1.125em;}h4,.h4{font-size:1.1em;font-weight:700;}h5,.h5{font-size:0.846em;line-height:2.09em;text-transform:uppercase;letter-spacing:2px;/*********************
HEADER STYLES
*********************/}.header{background-color:transparent;}#logo{margin:0.75em 0;/*********************
NAVIGATION STYLES
*********************//*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/}#logo a{color:#fff;}.nav{border-bottom:0;margin:0;/* end .nav *//*********************
POSTS & CONTENT STYLES
*********************/}.nav li{/* end .menu li *//* highlight current page */}.nav li a{display:block;color:#fff;text-decoration:none;/*
			remember this is for mobile ONLY, so there's no need
			to even declare hover styles here, you can do it in
			the style.scss file where it's relevant. We want to
			keep this file as small as possible!
			*/padding:0.75em;}.nav li:last-child{/*
		so you really have to rethink your dropdowns for mobile.
		you don't want to have it expand too much because the
		screen is so small. How you manage your menu should
		depend on the project. Here's some great info on it:
		http://www.alistapart.com/articles/organizing-mobile/
		*/}.nav li ul.sub-menu li a,.nav li ul.children li a{padding-left:30px;}.nav li.current-menu-item,.nav li.current_page_item,.nav li.current-page-ancestor{/* end current highlighters */}#content{margin-top:0;}.hentry{background-color:#fff;border-radius:0;margin-bottom:0;border:0;/* end .hentry */}.hentry header{border-bottom:0;padding:0;}.hentry footer{padding:0;border-top:0;}.hentry footer p{margin:0;}.single-title,.page-title,.entry-title{margin:0;}.archive-title{/* want to style individual post classes? Booya! */}.post-id{/* post by id (i.e. post-3) */}.post{/* general post style */}.page{/* general article on a page style */}.attachment{/* general style on an attatchment */}.sticky{/* sticky post style */}.hentry{/* hentry class */}.category-slug{/* style by category (i.e. category-videos) */}.tag-slug{/* style by tag (i.e. tag-news) *//* post meta */}.byline{color:#9fa6b4;font-style:italic;margin:0;/* entry content */}.entry-content{padding:50px 0;/* end .entry-content */}.entry-content p{margin:0 0 1.5em;}.entry-content table{width:100%;border:1px solid #eaedf2;margin-bottom:1.5em;}.entry-content table caption{margin:0 0 7px;font-size:0.75em;color:#9fa6b4;text-transform:uppercase;letter-spacing:1px;}.entry-content tr{border-bottom:1px solid #eaedf2;}.entry-content tr:nth-child(even){background-color:#f8f9fa;}.entry-content td{padding:7px;border-right:1px solid #eaedf2;}.entry-content td:last-child{border-right:0;}.entry-content th{background-color:#f8f9fa;border-bottom:1px solid #eaedf2;border-right:1px solid #eaedf2;}.entry-content th:last-child{border-right:0;}.entry-content blockquote{margin:0 0 1.5em 0.75em;padding:0 0 0 0.75em;border-left:3px solid #2980b9;font-style:italic;color:#9fa6b4;}.entry-content dd{margin-left:0;font-size:0.9em;color:#787878;margin-bottom:1.5em;}.entry-content img{margin:0 0 1.5em 0;max-width:100%;height:auto;/*
			image alignment on a screen this size may be
			a bit difficult. It's set to start aligning
			and floating images at the next breakpoint,
			but it's up to you. Feel free to change it up.
			*/}.entry-content .size-auto,.entry-content .size-full,.entry-content .size-large,.entry-content .size-medium,.entry-content .size-thumbnail{max-width:100%;height:auto;}.entry-content pre{background:#000;color:#f8f9fa;font-size:0.9em;padding:1.5em;margin:0 0 1.5em;border-radius:3px;}.wp-caption{max-width:100%;background:#eee;/* images inside wp-caption */padding:5px;/* end .wp-caption *//* image gallery styles */}.wp-caption img{max-width:100%;margin-bottom:0;width:100%;}.wp-caption p.wp-caption-text{font-size:0.85em;margin:4px 0 7px;text-align:center;}.gallery{/* end .gallery *//* gallery caption styles */}.tags{margin:0;/******************************************************************
PAGE NAVI STYLES
******************************************************************/}.pagination,.wp-prev-next{margin:1.5em 0;}.pagination{text-align:center;/* end .bones_page_navi *//* fallback previous & next links */}.pagination ul{display:inline-block;background-color:#fff;white-space:nowrap;padding:0;clear:both;border-radius:3px;}.pagination li{padding:0;margin:0;float:left;display:inline;overflow:hidden;border-right:1px solid #eaedf2;}.pagination a,.pagination span{margin:0;text-decoration:none;padding:0;line-height:1em;font-size:1em;font-weight:normal;padding:0.75em;min-width:1em;display:block;color:#2980b9;}.pagination a:hover,.pagination span:hover,.pagination a:focus,.pagination span:focus{background-color:#2980b9;color:#fff;}.pagination .current{cursor:default;color:#1b1b1b;}.pagination .current:hover,.pagination .current:focus{background-color:#fff;color:#1b1b1b;}.wp-prev-next{/* end .wp-prev-next *//******************************************************************
COMMENT STYLES
******************************************************************//* h3 comment title */}.wp-prev-next .prev-link{float:left;}.wp-prev-next .next-link{float:right;}#comments-title{padding:0.75em;margin:0;/* number of comments span */border-top:1px solid #f8f9fa;}.commentlist{margin:0;list-style-type:none;}.comment{position:relative;clear:both;overflow:hidden;padding:1.5em;border-bottom:1px solid #f8f9fa;/* comment meta */}.comment .comment-author{padding:7px;border:0;/* vcard */}.comment .vcard{margin-left:50px;/* end .commentlist .vcard */}.comment .vcard cite.fn{font-weight:700;font-style:normal;}.comment .vcard time{display:block;font-size:0.9em;font-style:italic;}.comment .vcard time a{color:#9fa6b4;text-decoration:none;}.comment .vcard time a:hover{text-decoration:underline;}.comment .vcard .avatar{position:absolute;left:16px;border-radius:50%;}.comment:last-child{margin-bottom:0;}.comment .children{margin:0;/* end children */}.comment .children li{/* variations */}.comment .children .depth-1{/* change number for different depth */}.comment[class*=depth-]{margin-top:1.1em;}.comment.depth-1{margin-left:0;margin-top:0;}.comment:not(.depth-1){margin-top:0;margin-left:7px;padding:7px;}.comment.depth-5{/* general comment classes */}.comment.odd{background-color:#fff;}.comment.even{background:#f8f9fa;}.commentmetadata{/* comment content */}.comment_content{/* end .commentlist .comment_content *//* comment reply link */}.comment_content p{margin:0.7335em 0 1.5em;font-size:1em;line-height:1.5em;}.comment-reply-link{font-size:0.9em;float:right;/* end .commentlist .comment-reply-link *//* edit comment link */}.comment-edit-link{font-style:italic;margin:0 7px;text-decoration:none;font-size:0.9em;/******************************************************************
COMMENT FORM STYLES
******************************************************************/}.comment-respond{padding:1.5em;border-top:1px solid #f8f9fa;}#reply-title{margin:0;}.logged-in-as{color:#9fa6b4;font-style:italic;margin:0;}.logged-in-as a{color:#1b1b1b;}.comment-form-comment{margin:1.5em 0 0.75em;}.form-allowed-tags{padding:1.5em;background-color:#f8f9fa;font-size:0.9em;/* comment submit button */}#submit{float:right;font-size:1em;/* comment form title */}#comment-form-title{margin:0 0 1.1em;/* cancel comment reply link */}#cancel-comment-reply{/* logged in comments */}.comments-logged-in-as{/* allowed tags */}#allowed_tags{margin:1.5em 10px 0.7335em 0;/* no comments */}.nocomments{margin:0 20px 1.1em;/*********************
SIDEBARS & ASIDES
*********************/}.widget ul li a{/* deep nesting */}.no-widgets{background-color:#fff;padding:1.5em;text-align:center;border:1px solid #ccc;border-radius:2px;margin-bottom:1.5em;/*********************
FOOTER STYLES
*********************/}.footer{clear:both;background-color:#000;color:#f8f9fa;/*
	if you checked out the link above:
	http://www.alistapart.com/articles/organizing-mobile/
	you'll want to style the footer nav
	a bit more in-depth. Remember to keep
	it simple because you'll have to
	override these styles for the desktop
	view.
	*/}.footer-links{/* end .footer-links */}#top-left{display:block;position:fixed;top:0;left:0;width:244px;height:70px;z-index:999999;background-color:#1b1b1b;/*menu buttons*/}.bars{display:block;position:absolute;width:30px;height:3px;background-color:#1b1b1b;left:20px;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#menu-top{top:30px;}#menu-middle{top:36px;}#menu-bottom{top:42px;}#menu-toggle{display:block;position:relative;width:70px;height:70px;float:left;text-align:center;line-height:70px;color:#1b1b1b;font-size:24px;background-color:#dde4e6;cursor:pointer;}.close #menu-middle,#menu-toggle.close:hover #menu-middle{display:none;}.close #menu-top,#menu-toggle.close:hover #menu-top{top:35px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);}.close #menu-bottom,#menu-toggle.close:hover #menu-bottom{top:35px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}#logo{display:block;position:relative;width:auto;height:70px;float:right;background-color:#1b1b1b;margin:0;padding:15px;}#logo a{display:block;position:relative;}#logo img{display:block;position:relative;width:auto;height:50px;border:0;}#navigation{display:block;position:fixed;width:244px;height:100%;left:-244px;top:0;padding:70px 0 0 0;background-color:transparent;overflow:hidden;-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;transition:all 0.4s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */z-index:99999;background-color:#233140;}ul.nav{display:block;position:absolute;width:110%;height:100%;overflow-x:hidden;overflow-y:scroll;padding:0 10% 0 0;background-color:#233140;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;transition:all 0.4s 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); */left:0;}ul.nav li{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */min-width:244px;}ul.nav li a,ul.nav li a:visited{display:block;position:relative;width:100%;height:auto;margin:0;padding:20px 61px 20px 30px;font-size:16px;color:#fff;text-transform:capitalize;font-weight:600;border:0;border-bottom:1px solid #2c3e50;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}ul.nav li a i,ul.nav li a:visited i{display:block;position:absolute;width:61px;height:100%;right:0;top:0;text-align:center;line-height:61px;font-size:16px;}ul.nav li ul.sub-menu,ul.nav li ul.children{display:block;position:fixed;width:244px;height:100%;top:0;left:-244px;opacity:0;z-index:99;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;-ms-transition:all 0.4s ease-in-out;transition:all 0.4s 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); */background-color:#2c3e50;padding:70px 0 0 0;margin:0;overflow:hidden;overflow-y:auto;}ul.nav li ul.sub-menu li,ul.nav li ul.children li{display:block;position:relative;width:100%;height:auto;}ul.nav li ul.sub-menu li a,ul.nav li ul.children li a{display:block;position:relative;width:100%;height:auto;margin:0;padding:20px 15px;font-size:16px;color:#fff;text-transform:capitalize;font-weight:300;border:0;border-bottom:1px solid #354b60;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}ul.nav li ul.sub-menu li .back-link,ul.nav li ul.children li .back-link{background-color:#233140;font-weight:600;}ul.nav li ul.sub-menu li .back-link:after,ul.nav li ul.children li .back-link:after{display:block;position:absolute;right:0;top:0;width:61px;height:100%;text-align:center;line-height:61px;content:"\f105";font-family:'FontAwesome';font-size:24px;color:#3e5871;}ul.nav li ul.sub-menu.menu-slide,ul.nav li ul.children.menu-slide{left:0;opacity:1;}.link-toggle:before{display:block;position:absolute;width:30px;height:100%;text-align:center;line-height:61px;font-size:12px;font-family:'FontAwesome';content:"\f104";color:#354b60;left:0;top:0;}ul.nav.menu-push{left:100%;}.push{left:0 !important;}.banner{display:block;position:relative;width:100%;height:auto;}.background{background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;-ms-background-size:cover;background-size:cover;background-repeat:no-repeat;}.parallax{min-height:400px;}#container{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;overflow:hidden;-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;transition:all 0.4s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#container.darken{/*top right: socials and help button*/}#top-right{display:block;position:fixed;top:0;right:0;width:100%;height:70px;z-index:9999;cursor:pointer;overflow:hidden;background-color:#000;/*end top-right*/}.plus-bar{display:block;position:absolute;width:25px;height:2px;background-color:#fff;right:25px;top:30px;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#vertical{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);}#top-right.minus{/*home-banner */}#top-right.minus #vertical{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}#home-banner{background-position:0 100%;overflow:hidden;}#ciniva-text{display:block;position:absolute;width:100%;height:auto;margin:0;padding:25px;color:#fff;text-align:left;left:0;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#fff;z-index:2;}#ciniva-text .title-heading{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;line-height:1;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:10vw;text-transform:uppercase;font-weight:800;text-shadow:1px 1px 2px rgba(68, 68, 68, .3);opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-animation:slideUp 1s ease 0s 1 forwards alternate;animation:slideUp 1s ease 0s 1 forwards alternate;}#ciniva-text .under-line:after,#ciniva-text .under-line-thin:after{border-color:#fff;}#ciniva-text .normal{font-size:20px;max-width:480px;opacity:0;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);-webkit-animation:slideUp 1s ease 0.8s 1 forwards alternate;animation:slideUp 1s ease 0.8s 1 forwards alternate;}#sky-stars,#animated-circles{display:none;}#home-vid{display:block;position:absolute;width:auto;height:auto;min-width:100%;min-height:100%;top:0;left:0;display:none;/*************************END HOME PAGE BANNER + ANIIMATION**************************/}#side-social{display:block;position:fixed;width:100px;height:100%;right:0;top:0;-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;transition:all 0.4s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);overflow:hidden;background-color:#000;}#side-social ul{display:block;position:absolute;width:100%;height:100%;top:0;left:0;overflow-x:hidden;overflow-y:scroll;margin:0;padding:0;}#side-social ul li{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}#side-social ul li a{display:block;position:relative;width:100%;height:auto;margin:0;padding:30px 25px;color:#fff;text-align:center;font-size:24px;text-decoration:none;text-transform:uppercase;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */background-color:inherit;}#facebook{background-color:#3b5998;}#twitter{background-color:#4099ff;}#google-plus{background-color:#d34836;}#youtube{background-color:#444;}#pinterest{background-color:#c92228;}#linkedin{background-color:#1b1b1b;}#help{background-color:#f1c40f;font-weight:700;}.push-to-left{-webkit-transform:translateX(-100px);-moz-transform:translateX(-100px);-ms-transform:translateX(-100px);transform:translateX(-100px);}#side-social.open-right{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0);}.super-size{display:block;position:relative;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:11vw;line-height:1.1;margin:0;padding:0;text-transform:uppercase;}.post-title-small{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:3vw;font-weight:700;text-transform:capitalize;}.section{display:block;position:relative;padding:50px 0;margin:0;}.fullwidth{width:100%;height:auto;}.under-line:after,.under-line-thin:after{display:block;position:relative;width:70px;height:0;margin:10px 0;padding:0;border-bottom:5px solid #1b1b1b;content:"";}.under-line-thin:after{width:50px;border-bottom:1px solid #1b1b1b;}.underline-center:after{display:block;position:relative;width:50px;height:0;margin:10px auto;padding:0;border-bottom:1px solid #1b1b1b;content:"";}.normal{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:300;margin:10px 0;/*========================INTRODUCTION SECTION ON HOMEPAGE=======================================*/}#intro{background-color:#ecf0f1;display:block;position:relative;/*============================================
MEET THE TEAM SEECTION
============================================*/}#intro .intro-content{line-height:1.5;}#super-heroes{display:block;position:relative;width:100%;overflow:hidden;}#super-heroes .team-member{display:block;position:relative;width:230px;height:100%;float:left;background-repeat:no-repeat;background-position:0 95%;background-size:200% auto;tex-align:center;}#super-heroes .team-member .member-des{-webkit-transition:all 0.6s ease-in-out;-moz-transition:all 0.6s ease-in-out;-ms-transition:all 0.6s ease-in-out;transition:all 0.6s 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); */display:block;position:absolute;top:150px;left:0;width:100%;text-align:center;color:#1b1b1b;opacity:0;visibility:hidden;/*end member-des*/}#super-heroes .team-member .member-des span{display:block;position:relative;}.big-link,.big-link:visited{display:block;position:absolute;width:100%;height:100%;top:0;left:0;text-decoration:none;border:0;outline:none;}#heroes-title{display:block;position:absolute;width:100%;height:auto;margin:0;padding:50px 0 0 0;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#heroes-scroll{display:block;position:relative;width:100%;height:520px;margin:0;padding:0;overflow-x:scroll;overflow-y:hidden;}#heroes-wrap{display:block;position:relative;height:530px;min-width:100%;padding:0;/*****************************
TEAM MEMBER LANDING PAGE
*******************************/}#team-banner.team-banner{display:block;position:relative;width:100%;height:auto;margin:0;padding:200px 15px 100px 15px;min-height:480px;text-align:center;background-color:#44d5e0;background-image:url('../images//blur-background.jpg');border:0;outline:none;}#team-banner.team-banner .member-name{margin-top:20px;}.circle{-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;-ms-border-radius:50%;border-radius:50%;/**********************************************************

ALL MIXINS FOR ANIIMATION GO HERE

**************************************************************//*create content for flipping vertically animation */}.star{background-color:rgba(255, 255, 255, .4);}.inner-circle{display:block;position:absolute;background-color:#fff;width:90%;height:90%;top:5%;left:5%;}.segment{display:block;position:absolute;width:200px;height:50px;}.line-through{display:block;position:absolute;width:0;height:2px;left:50px;top:50%;background-color:#fff;}.avatar{width:150px;height:150px;}.outline{border:1px solid #1b1b1b;}#member-avatar{margin:0 auto;}#member-outline{display:block;position:relative;width:170px;height:170px;margin:10px auto;padding:10px;-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);display:none;}#tilt-line{display:none;/*team member name and job-title*/}.member-name{display:block;position:relative;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:20px;text-transform:uppercase;/*end member-name */}.job-title{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:14px;font-weight:300;text-transform:capitalize;/********************
DIRECTIONAL NAV
ON HEROES BANNER
*********************/}.hero-direct-nav{display:block;position:absolute;width:50px;height:50px;top:50%;left:0;background-color:#2980b9;color:#fff;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);line-height:50px;}#hero-right-arrow.hero-direct-nav{right:0;left:auto;}.hero-nav{display:block;position:absolute;width:100%;height:100%;left:0;top:0;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;font-weight:300;text-transform:capitalize;cursor:pointer;text-align:-999px;overflow:hidden;/***************************************************FEATURE PROJECT SECTION**********************/}.hero-nav i{display:block;position:absolute;width:100%;height:100%;text-align:center;line-height:50px;font-size:24px;background-color:#2472a4;margin:0;padding:0;text-indent:0;}.milk{background-color:#ecf0f1;}img{max-width:100%;}.big{display:block;position:relative;width:100%;height:auto;margin:5px 0;padding:0;line-height:1.1;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:30px;text-transform:capitalize;}.title-heading{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:20px;font-weight:700;text-transform:capitalize;line-height:1.1;}.title-heading a,.title-heading a:visited{color:inherit;text-decoration:none;}.title-heading a:hover,.title-heading a:visited:hover{color:inherit;text-decoration:none;}.medium{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:600;color:inherit;}#featured-des{padding-top:30px;/******************************************************************************************
INTERNAL PAGE
*********************************************************************************************/}#featured-des .normal{max-width:320px;}.internal-banner{display:block;position:relative;color:#fff;background-color:#444;overflow:hidden;background-image:url('../images//blue-dot.png');background-size:50px 50px;background-repeat:repeat;}.internal-page-header{display:block;position:absolute;width:100%;height:100%;margin:0;padding:0;top:0;left:0;background-color:rgba(0, 0, 0, .4);z-index:10;}.internal-page-header .page-title{display:block;position:absolute;top:40%;left:0;padding:0 15px;text-align:center;}.internal-page-header .page-title .post-title-small{margin:10px 0;}.internal-page-header .page-title .post-title-small:before{display:block;position:relative;width:50px;height:0;border-top:2px solid #fff;content:"";margin:10px auto;}.dotted-cricle{display:block;position:absolute;border:15px dotted #44d5e0;-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;-ms-border-radius:50%;border-radius:50%;/**********************************************************

ALL MIXINS FOR ANIIMATION GO HERE

**************************************************************//*create content for flipping vertically animation */width:50%;}#cir-1{bottom:-56%;right:-28%;}#animated-header-background{display:none;}.down-arrow{display:block;position:absolute;width:70px;height:70px;border:3px solid #fff;color:#fff;cursor:pointer;bottom:25px;left:25px;z-index:999;/*aniimation logo on internal pages*/}.down-arrow:before{display:block;position:absolute;width:100%;height:100%;margin:0;padding:0;font-family:'FontAwesome';font-size:20px;line-height:70px;text-align:center;content:"\f175";left:0;top:0;}.animation{-webkit-transition:all 0.6s ease;-moz-transition:all 0.6s ease;-ms-transition:all 0.6s ease;transition:all 0.6s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); *//*flip up animation*/}.flip-up{-webkit-transform:translateY(50%);-moz-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%);opacity:0;-webkit-animation:slideUp 0.6s ease 0s 1 forwards alternate;animation:slideUp 0.6s ease 0s 1 forwards alternate;}.flip-up .post-title-small{-webkit-transform:translateY(50%);-moz-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%);opacity:0;-webkit-animation:slideUp 0.6s ease 0.6s 1 forwards alternate;animation:slideUp 0.6s ease 0.6s 1 forwards alternate;}.start-animation{-webkit-transform:translateY(0%);transform:translateY(0%);opacity:1;/*testimonial*/}.start-animation .post-title-small{opacity:1;-webkit-transform:translateY(0%);transform:translateY(0%);}.hms-testimonial-container{display:block;position:relative;width:100%;height:auto;margin:15px 0;padding:15px;background-color:#e9eeef;/*************************************


WHAT'S HAPPEING AROUND CINIVA

*****************************************/}.hms-testimonial-container img.image{display:block;position:relative;margin:10px auto;border-radius:50%;padding:10px;border:1px solid #444;max-width:300px;width:100% !important;height:auto;}.hms-testimonial-container .testimonial{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;text-align:center;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:300;font-style:italic;}.hms-testimonial-container .author{display:block;position:relative;width:100%;height:auto;margin:10px 0 25px 0;padding:0;font-family:;font-size:20px;text-align:center;text-transform:uppercase;font-weight:700;}.hms-testimonial-container .author a,.hms-testimonial-container .author a:visited{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;text-decoration:none;font-weight:400;color:#1b1b1b;}.hms-testimonial-container .author a:hover,.hms-testimonial-container .author a:visited:hover{text-decoration:underline;}.hms-testimonial-container .author:after{display:block;position:relative;width:50px;height:0;margin:10px auto;border-bottom:2px solid #1b1b1b;content:"";}#home-parallax{display:none;}.vertical-align{display:block;position:absolute;width:100%;height:auto;top:50%;left:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}#what-happen{display:block;position:relative;padding-bottom:50px;}#what-happen .what-happen-around-ciniva{display:block;position:relative;margin:0;padding:0;height:auto;}#what-happen .what-happen-around-ciniva img{display:block;position:relative;height:auto;width:100%;height:auto;}#what-happen .with-img{overflow:hidden;color:#fff;text-shadow:1px 1px 1px #353535;}#what-happen .with-img img{z-index:1;}#what-happen .with-img figcaption{display:block;position:absolute;width:100%;height:auto;left:0;bottom:0;z-index:2;}#what-happen .with-img figcaption a,#what-happen .with-img figcaption .big-link{display:block;position:relative;width:100%;text-decoration:none;color:inherit;padding:15px;}#what-happen .with-img figcaption a .cap-title,#what-happen .with-img figcaption .big-link .cap-title{display:block;position:relative;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:20px;text-transform:capitalize;}#what-happen .with-img figcaption a .cap-title:after,#what-happen .with-img figcaption .big-link .cap-title:after{display:block;position:relative;margin:0;width:100%;height:auto;padding:0;content:"\f178";font-size:36px;font-family:'FontAwesome';color:inherit;line-height:1;}#what-happen .with-no-img{padding:15px;background-color:#fff;margin:15px 0;}#what-happen .with-no-img .title-heading{text-transform:capitalize;}#what-happen .with-no-img .under-line:after,#what-happen .with-no-img .under-line-thin:after{width:50px;border-bottom:1px solid #1b1b1b;}.space{letter-spacing:5px;/*****************************


POST AND SINGLE FILE TEMPLATE

***********************************/}.post-banner{background-image:url('/wp-content/uploads/2015/04/banner-desk.jpg');}.blog-banner{background-image:url('/wp-content/uploads/2015/01/blog-background.jpg');}#post-banner,#blog-banner,#single-post-banner{display:block;position:relative;color:#fff;color:#fff;text-shadow:1px 1px 1px rgba(27, 27, 27, .8);/********************************

BLOG IN GRID FORMAT

********************************/}#blog-grid{display:block;position:relative;width:100%;background-color:#ecf0f1;padding:15px;}#blog-grid .ms-item{margin:15px 0;}@media screen and (min-width:1400px){#blog-grid .ms-item{width:25%;}}.blog-post{display:block;position:relative;width:100%;height:auto;margin:0;padding:15px;background-color:#fff;}.blog-post img{display:block;position:relative;width:100%;height:auto;margin:0 0 10px 0;}.blog-post .excerpt-read-more{display:block;position:relative;text-decoration:none;color:#1b1b1b;text-decoration:none;margin:15px 0;padding:10px 15px;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:700;text-transform:capitalize;border:3px solid #1b1b1b;max-width:160px;text-align:center;-webkit-transition:background-color 0.3s ease;-moz-transition:background-color 0.3s ease;-ms-transition:background-color 0.3s ease;transition:background-color 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.blog-post .excerpt-read-more:hover{color:#fff;background-color:#1b1b1b;}.blog-post .blog-excerpt{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:16px;font-weight:400;}.center{text-align:center;}.attachment-full{display:block;position:relative;width:100%;height:auto;/**************************************PORTFOLIO************************************/}#portfolio{display:block;position:relative;width:100%;height:auto;margin:0;padding:15px;background-color:#ecf0f1;}.portfolio{display:block;position:relative;margin:15px 0;}.portfolio figcaption{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;background-color:#ecf0f1;}.project-title{display:block;position:relative;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:700;color:#1b1b1b;text-transform:uppercase;width:100%;height:auto;padding:15px 50px 15px 15px;}.project-title:after{display:inline-block;position:relative;color:inherit;font-family:'FontAwesome';font-size:20px;content:"\f178";margin:0 0 0 10px;}.project-image{display:block;width:auto;max-width:100%;margin:15px 0;}#project-overview{display:block;position:relative;}#project-overview .project-overview{display:block;position:relative;margin:0;padding:0;}#project-overview .project-overview p{margin-top:0;}.black{background-color:#282828;/*********************************IMAGE SLIDER********************************/}#pro-img-slide{display:block;position:relative;}#pro-img-slide .flexslider,#pro-img-slide .slides{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}#pro-img-slide .flex-direction-nav{display:block;position:absolute;width:100%;height:auto;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}#pro-img-slide .flex-direction-nav a{display:block;position:absolute;width:40px;height:40px;overflow:hidden;text-indent:-999px;left:0;}#pro-img-slide .flex-direction-nav a:before{display:block;position:absolute;width:100%;height:100%;font-family:'FontAwesome';font-size:20px;color:#fff;background-color:#2c3e50;content:"\f177";text-indent:0;text-align:center;line-height:40px;}#pro-img-slide .flex-direction-nav a.flex-next{right:0;left:auto;}#pro-img-slide .flex-direction-nav a.flex-next:before{content:"\f178";}#role-tech{display:block;position:relative;}#role-tech .title-heading{border-bottom:1px solid #353535;padding:7px 0;margin-bottom:7px;}#role-tech .role-and-tech p{margin:5px 0;padding:0 0 4px 0;border-bottom:1px dotted #dde4e6;}#bottom-img{display:block;position:relative;width:100%;height:auto;margin:0;padding:50px 0;background-color:#eaedf2;}#bottom-img img{display:block;position:relative;width:100%;height:auto;margin:15px 0;padding:0;}#port-nav{display:block;position:absolute;bottom:0;left:0;width:auto;height:auto;/************************************************CLOCK FACE ANIMATION*********************************************/}#port-nav .port-btn{display:block;position:relative;width:50px;height:50px;float:left;text-align:center;border-left:1px solid #ecf0f1;border-bottom:1px solid #ecf0f1;color:#1b1b1b;line-height:50px;background-color:#fff;color:#1b1b1b;text-shadow:none;}#port-nav .port-btn a,#port-nav .port-btn a:visited{display:block;position:relative;width:100%;height:100%;color:inherit;text-decoration:none;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#clock-face{display:block;position:relative;width:300px;height:300px;-ms-border-radius:50%;border-radius:50%;border:5px solid #fff;margin:0 auto;padding:10px;z-index:999;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);display:none;}#time-mark{display:block;position:relative;width:100%;height:100%;z-index:10;outline:none !important;}#time-mark .mark{display:block;position:absolute;width:50%;top:50%;right:50%;height:2px;-webkit-transform-origin:100% 0;transform-origin:100% 0;}#time-mark .mark:before{display:inline-block;position:relative;width:10px;height:100%;background-color:#fff;content:"";}#time-mark .mark:last-child,#time-mark .mark:nth-child(15),#time-mark .mark:nth-child(30),#time-mark .mark:nth-child(45),#time-mark .mark:nth-child(8),#time-mark .mark:nth-child(38),#time-mark .mark:nth-child(53){height:5px;}#time-mark .mark:last-child:before,#time-mark .mark:nth-child(15):before,#time-mark .mark:nth-child(30):before,#time-mark .mark:nth-child(45):before,#time-mark .mark:nth-child(8):before,#time-mark .mark:nth-child(38):before,#time-mark .mark:nth-child(53):before{width:20px;}#time-mark .mark .service{display:block;position:relative;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);display:none;}#number-pro{display:block;position:absolute;width:100%;height:auto;top:30%;text-align:center;color:#fff;z-index:0;}#number-pro span{display:block;position:relative;line-height:1.1;}.bold-num{font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:72px;font-weight:700;}.pro-text{font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;font-weight:400;text-transform:capitalize;/*****************************************HOME BANNER TAG LINE TO SHOW UP ON MOBILE ONLY*****************************************************/}#mobile-tag{color:#fff;z-index:100;}#mobile-tag .mobile-small-top:before,#mobile-tag .mobile-small-top:after{display:inline-block;position:relative;width:80px;height:5px;border-top:2px solid #fff;content:"";margin:0 5px;}.mobile-big{display:block;position:relative;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-size:30px;text-transform:uppercase;font-weight:700;letter-spacing:5px;line-height:1;}.mobile-small,.mobile-small-top{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;text-transform:uppercase;font-weight:400;letter-spacing:12px;line-height:1;}.mobile-small-top{letter-spacing:0;font-style:italic;text-transform:capitalize;font-weight:600;font-size:14px;}#cirlce-left,#circle-right,#circle-bottom{display:none;}.clock-circle{-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;-ms-border-radius:50%;border-radius:50%;/**********************************************************

ALL MIXINS FOR ANIIMATION GO HERE

**************************************************************//*create content for flipping vertically animation */border:3px solid #fff;width:200px;height:200px;color:#fff;text-align:center;padding:10px;}.clock-big{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:24px;font-weight:700;text-transform:uppercase;}.clock-small{display:block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;font-weight:400;text-transform:uppercase;}.hour-container,.minute-container,.second-container{display:block;position:absolute;bottom:0;right:0;top:0%;left:0%;}.hour-container{-webkit-animation:rotatez 43200s infinite steps(60);animation:rotatez 43200s infinite steps(60);}.minute-container{-webkit-animation:rotatez 3600s infinite steps(60);animation:rotatez 3600s infinite steps(60);}.second-container{-webkit-animation:rotatez 60s infinite steps(60);animation:rotatez 60s infinite steps(60);}.hours,.minutes,.seconds{display:block;position:absolute;width:3px;border-radius:50%;background-color:#fff;-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;transform-origin:50% 100%;left:50%;}.hours{top:30%;height:20%;width:5px;}.minutes{top:20%;height:30%;width:4px;}.seconds{top:12%;height:38%;width:2px;}.overlay{display:block;position:absolute;width:100%;height:100%;top:0;left:0;bottom:0;right:0;}.blur{-ms-filter:blur(5px);-o-filter:blur(5px);-moz-filter:blur(5px);-webkit-filter:blur(5px);filter:blur(5px);}.italic{font-style:italic;}.block-image{display:block;position:relative;margin:10px 0;padding:0;}.block-image img{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;outline:none;}.skill-list{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}.skill-list li{display:block;position:relative;margin:10px 0;padding:10px 0;border-bottom:1px solid #b4b4b4;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;font-weight:400;}.skill-list li:last-child{border:0;}#staff-skill{display:block;position:relative;padding:30px 0;}#staff-bio{padding-bottom:0;}.team-img{-ms-object-fit:cover;-webkit-object-fit:cover;-moz-object-fit:cover;-o-object-fit:cover;object-fit:cover;}.service-hover{display:none;}.small{display:block;position:relative;font-size:14px;}#project-images{/*****************************************************
FEATURED CLIENT SECTION
***********************************************************/}#project-images img{display:block;position:relative;width:100%;}#feat-clients{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}#feat-clients #feat-slide{display:block;position:relative;width:100%;margin:0;padding:0;}#feat-clients #feat-slide .flex-viewport{margin:0;padding:0;}#feat-clients #feat-slide .slides{margin:0;padding:0;}#feat-clients #feat-slide .slides li{display:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;}#feat-clients .flex-direction-nav{display:block;position:absolute;bottom:0;left:0;width:100%;z-index:999;margin:0;padding:0;}#feat-clients .flex-direction-nav a.flex-prev,#feat-clients .flex-direction-nav a.flex-next{display:block;position:absolute;width:50px;height:50px;text-indent:-999px;overflow:hidden;left:0;bottom:0;background-color:#2980b9;color:#fff;}#feat-clients .flex-direction-nav a.flex-prev:visited,#feat-clients .flex-direction-nav a.flex-next:visited{color:inherit;}#feat-clients .flex-direction-nav a.flex-prev:before,#feat-clients .flex-direction-nav a.flex-next:before{display:block;position:absolute;width:100%;height:100%;content:"\f104";text-indent:0;font-family:'FontAwesome';font-size:24px;color:inherit;left:0;bottom:0;text-align:center;line-height:50px;}#feat-clients .flex-direction-nav a.flex-next{left:auto;right:0;}#feat-clients .flex-direction-nav a.flex-next:before{content:"\f105";}.feat-client-slide{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}.feat-client-slide img{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.feat-client-slide figcaption{display:block;position:absolute;width:100%;height:100%;top:0;left:0;z-index:2;color:#fff;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */padding:15px;}.feat-client-slide figcaption .bottom-caption{display:block;position:absolute;top:40%;}.feat-client-slide figcaption .normal.short{display:none;}.feat-client-slide figcaption a,.feat-client-slide figcaption a:visted{color:inherit;text-decoration:none;}.feat-client-slide figcaption .client-link,.feat-client-slide figcaption .client-link:visited{display:block;position:absolute;width:100%;height:100%;color:inherit;}.client-name{display:block;position:relative;margin:0;padding:0;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:24px;text-transform:capitalize;font-weight:700;line-height:1.1;}.more-btn,.more-btn:visited{display:inline-block;position:relative;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:14px;font-weight:600;font-style:italic;text-transform:capitalize;color:inherit;}#sub-footer{display:block;position:relative;background-color:#333;color:#fff;}#sub-footer a,#sub-footer a:visited{color:inherit;}#sub-footer .title-heading{margin-bottom:15px;}.footer-social{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}.footer-social li{display:block;position:relative;width:auto;height:auto;float:left;}.footer-social li a,.footer-social li a:visited{display:block;position:relative;font-size:24px;color:#fff;text-decoration:none;margin:0 10px 0 0;}.footer-social li a:hover,.footer-social li a:visited:hover{color:#44d5e0;}footer.footer a,footer.footer a:visited{color:inherit;}#foot-form form input,#foot-form form textarea{background-color:#ecf0f1;}#foot-form form input:hover,#foot-form form textarea:hover,#foot-form form input:focus,#foot-form form textarea:focus{background-color:#cfd9db;border:0;outline:none;}#foot-form form input[type="submit"]{float:right;border:1px solid #fff;background-color:transparent;}#foot-form form input[type="submit"]:hover{background-color:#fff;}#contact-banner{height:320px;}@media screen and (max-width:767px){#contact-banner{min-height:320px;}}#map-header{display:block;position:relative;width:100%;height:100%;min-height:100%;}#ciniva-map{height:250px;min-height:200px;}.page-template-page-contact #ciniva-map{display:none;}#service-description{display:block;position:relative;padding:30px 0 15px 0;}#sub-service{display:block;position:relative;padding:0px 0 30px 0;}.block{display:block;position:relative;}.story-con{margin-bottom:20px;}.story-img{display:block;position:relative;width:100%;height:auto;max-width:320px;margin:5px auto 10px auto;}hr{display:block;position:relative;height:1px;background-color:#1b1b1b;border:0;outline:none;}.black-overlay{display:block;position:absolute;width:100%;height:100%;top:0;left:0;z-index:2;background-color:rgba(0, 0, 0, .4);/*social header*/}#social-banner{color:#fff;}#social-banner .internal-page-header{background-color:rgba(41, 128, 185, .4);}#social-banner .internal-page-header .super-size{margin:0;padding:0;line-height:1;}#social-banner .internal-page-header .post-title-small{text-transform:uppercase;font-weight:700;}.socialize-con{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;list-style:none;text-align:center;/***********************************************BREADCRUMBS****************************************************/}.socialize-con li{display:inline-block;position:relative;margin:0;padding:0;list-style:none;}.socialize-con li a{display:block;position:relative;width:40px;height:40px;background-color:#44d5e0;color:#fff;text-align:center;line-height:40px;margin:0;padding:0;font-size:24px;}.socialize-con li a:visited,.socialize-con li a:focus{color:#fff;}#breadcrumbs-header{display:block;position:relative;padding:15px 0;color:#1b1b1b;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:14px;font-weight:400;text-transform:capitalize;}#breadcrumbs-header a,#breadcrumbs-header a:visited{color:inherit;text-decoration:none;font-weight:400;}#breadcrumbs-header a:hover,#breadcrumbs-header a:visited:hover{text-decoration:underline;}#breadcrumbs-header .home-link-breadcrumbs{display:inline-block;position:relative;width:50px;height:50px;font-size:24px;text-align:center;line-height:50px;background-color:#ddd;color:#1b1b1b;border-radius:50%;}#breadcrumbs-header br{display:none;}.icon-header{font-size:36px;}#all-services{display:block;position:relative;padding-top:0;}#all-services .ms-item{margin-bottom:35px;}#all-services h5.medium{margin:10px 0 15px 0;}#meet-the-team{padding:15px;/***********************************CASE STUDY*****************************/}.padding{padding:50px 0 0px 0;}.cs-team img{display:block;position:relative;width:100%;height:auto;-webkit-object-fit:cover;-moz-object-fit:cover;-ms-object-fit:cover;-o-object-fit:cover;object-fit:cover;}.cs-team figcaption{display:block;position:relative;padding:10px 0;font-size:18px;}#cs-bottom-text{display:block;position:relative;margin-bottom:30px;}.gray{background-color:#eee;}.info-con{/***************FOOTER MENU**************/}.info-con img{display:block;position:relative;width:100%;height:auto;max-width:300px;margin:0 auto;}.info-con figcaption{margin:10px 0 0 0;}.info-con .medium{text-transform:uppercase;margin:0;padding:0;}#foot-nav{display:block;position:relative;}#foot-nav li a{display:block;position:relative;margin:5px;padding:2px 0;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:12px;font-weight:400;color:#fff;border-bottom:1px dotted #353535;line-height:1;}.google-partner-badge{padding:15px;/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/}@media only screen and (min-width:481px){/******************************************************************
Site Name: Ciniva 
Author:    Minh Nguyen

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
*********************//*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/.nav{/* .menu is clearfixed inside mixins.scss */}.menu{/* end .menu *//*top right: socials and help button*/}.menu ul{/* end .menu ul */}.menu ul li{/* end .menu ul li *//* highlight current page */}.menu ul li:last-child{/*
				plan your menus and drop-downs wisely.
				*/}.menu ul li.current-menu-item,.menu ul li.current_page_item,.menu ul li.current-page-ancestor{/* end current highlighters */}#top-right{display:block;position:absolute;top:0;right:0;width:70px;height:70px;z-index:999;cursor:pointer;overflow:hidden;background-color:transparent;/*end top-right*/}#top-right:before{display:block;position:absolute;width:200%;height:200%;top:-100%;left:50%;content:"";background-color:#000;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);}.plus-bar{display:block;position:absolute;width:15px;height:2px;background-color:#fff;right:15px;top:20px;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); *//*end plus sig*/}#logo{background-color:#000;/*testimonial*/}.hms-testimonial-group{/*********************
POSTS & CONTENT STYLES
*********************//* entry content */}.hms-testimonial-group .hms-testimonial-container{width:45%;margin:15px 2%;}.entry-content{/* end .entry-content *//*********************
FOOTER STYLES
*********************//*
check your menus here. do they look good?
do they need tweaking?
*/}.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;}.footer-links{/* end .footer-links */}#super-heroes{height:770px;}#heroes-scroll{height:790px;}#heroes-wrap{height:100%;}}@media only screen and (min-width:768px){/*
SITE NAME: CWA
AUTHOR: MINH NGUYEN
DESCIPTION: TABLET STYLESHEET
*//*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/.intro-content{-webkit-column-count:2;-moz-column-count:2;-o-column-count:2;-ms-column-count:2;column-count:2;}.hero-direct-nav{width:100px;height:50px;}.hero-nav{text-indent:0;}.hero-nav i{display:block;position:relative;width:50px;height:50px;float:left;margin:0;}.hero-nav .hero-nav-text{display:block;position:relative;width:50px;height:50px;float:right;text-align:center;font-size:18px;font-weight:300;text-transform:capitalize;}#what-happen .with-no-img{border:0;min-height:300px;}#what-happen .with-no-img .title-heading{font-size:48px;line-height:1.1;}.portfolio figcaption{display:block;position:absolute;width:100%;height:100%;top:0;left:0;background-color:rgba(0, 0, 0, .7);}.portfolio figcaption a,.portfolio figcaption a:visited,.portfolio figcaption .project-title{display:block;position:absolute;width:100%;height:100%;top:0;left:0;margin:0;padding:25px;color:#fff;}.portfolio figcaption a span,.portfolio figcaption a:visited span,.portfolio figcaption .project-title span{display:block;position:absolute;top:50%;left:0;width:100%;text-align:center;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}.portfolio figcaption a:after,.portfolio figcaption a:visited:after,.portfolio figcaption .project-title:after,.portfolio figcaption a:before,.portfolio figcaption a:visited:before,.portfolio figcaption .project-title:before{content:"";display:block;position:absolute;bottom:25px;right:25px;border-bottom:1px solid #fff;border-right:1px solid #fff;width:90%;width:calc(100% - 35px);height:90%;height:calc(100% - 35px);}.portfolio figcaption a:before,.portfolio figcaption a:visited:before,.portfolio figcaption .project-title:before{bottom:auto;right:auto;top:25px;left:25px;border-bottom:0;border-right:0;border-left:1px solid #fff;border-top:1px solid #fff;}#pro-img-slide .flex-direction-nav a{width:50px;height:50px;/*******************************CLOCK FACE**********************/}#pro-img-slide .flex-direction-nav a:before{line-height:50px;font-size:24px;}#clock-face{width:480px;height:480px;}.block-image{margin:0;/***************************************

FEATURE CLIENTS SECTION

******************************************/}.feat-client-slide{display:block;position:relative;width:100%;height:auto;margin:0;padding:0;}.feat-client-slide figcaption{background-position:100% 100%;background-size:cover;background-repeat:no-repeat;background-image:url('/wp-content/uploads/2015/03/squares-background1.png');color:#1b1b1b;}.feat-client-slide figcaption .bottom-caption{display:block;position:absolute;width:100%;height:auto;top:50%;padding:15px 0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}.feat-client-slide figcaption .bottom-caption .normal.short{display:block;position:relative;width:100%;font-size:16px;font-weight:400;max-width:400px;}.noBg{background-image:none !important;color:#fff !important;text-shadow:1px 1px 1px rgba(27, 27, 27, .5);}.noBg .more-btn{padding:7px 10px;}.noBg .more-btn:before,.noBg .more-btn:after{display:block;position:absolute;width:100%;height:2px;background-color:#fff;content:"";left:0;top:50%;opacity:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.noBg .more-btn:hover{color:#fff;}.noBg .more-btn:hover:before{opacity:1;top:0;}.noBg .more-btn:hover:after{opacity:1;top:100%;}.client-name{font-size:24px;/******HOME PARALLAX IMAGE*******************/}#home-parallax{display:block;position:relative;/***********************************************CIRCLE LIST********************************************/}.cir-list{display:block;position:relative;padding:10px 0;border-left:1px solid #1b1b1b;}.cir-list li{display:block;position:relative;margin:10px 0 25px 0;padding:0 0 0 20px;}.cir-list li:before{display:block;position:absolute;left:-8px;top:10px;content:"";width:15px;height:15px;border:1px solid #1b1b1b;border-radius:50%;background-color:#fff;}#ciniva-map{height:300px;}.socialize-con{display:block;position:relative;width:480px;height:auto;margin:15px auto;/* page pagination*/}.socialize-con li{display:block;position:relative;float:left;}.socialize-con li a{width:80px;height:80px;line-height:80px;border-left:1px solid #22c3cf;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.socialize-con li a:hover{background-color:rgba(68, 213, 224, .4);color:#fff;}.socialize-con li:first-child a{border:0;}nav.pagination ul{border-radius:0;}nav.pagination a,nav.pagination span{display:block;position:relative;border-radius:0;width:50px;height:50px;line-height:50px;text-align:center;margin:0;padding:0;color:#1b1b1b;font-family:'Open Sans', "Georgia", Cambria, Times New Roman, Times, serif;font-size:18px;}nav.pagination a:hover,nav.pagination span:hover,nav.pagination a.current,nav.pagination span.current{background-color:#1b1b1b;color:#fff;}.title-heading{font-size:24px;}#foot-nav li{display:block;position:relative;float:left;}#foot-nav li a{border-bottom:0;}#foot-nav li a:hover{text-decoration:underline;}}@media only screen and (min-width:1030px){/******************************************************************
Site Name: CINIVA WEB AGENCY
Author:    MINH NGUYEN

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//************************inner-circle********************************//*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/.wrap{width:1040px;}#menu-toggle:hover #menu-top{top:20px;}#menu-toggle:hover #menu-bottom{top:52px;}ul.nav li a:hover{/*border-left: 3px solid $ciniva-blue;*/background-color:#2c3e50;}ul.nav li ul.sub-menu li a:hover,ul.nav li ul.children li a:hover{background-color:#233140;}#home-banner{display:block;position:relative;min-height:1140px;background-image:none !important;}#home-vid{display:block;-webkit-object-fit:cover;-moz-object-fit:cover;-ms-object-fit:cover;object-fit:cover;}#ciniva-text .title-heading{font-size:4vw;}#ciniva-text h3{font-size:3vw;}#container,#side-social{-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;transition:all 0.5s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); *//* SCROLL DOWN CIRCLE STYLE*/}#scroll-down-cir{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#scroll-down-cir:before,#scroll-down-cir:after{-webkit-transform:scale(0, 0);-moz-transform:scale(0, 0);-ms-transform:scale(0, 0);transform:scale(0, 0);-webkit-animation:bloom2 2.5s ease 0.2s forwards infinite normal;animation:bloom2 2.5s ease 0.2s forwards infinite normal;}#scroll-down-cir:after{-webkit-animation-delay:2.7s;animation-delay:2.7s;}#scroll-down-cir:hover:before,#scroll-down-cir:hover:after{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);-webkit-animation:none;animation:none;}#side-social{width:200px;}#side-social ul li a{padding:50px 25px;}#facebook:hover{background-color:#344e86;}#twitter:hover{background-color:#278bff;}#google-plus:hover{background-color:#c43d2b;}#youtube:hover{background-color:#373737;}#pinterest:hover{background-color:#b31e24;}#linkedin:hover{background-color:#0e0e0e;}#help:hover{background-color:#dab10d;}.push-to-left{-webkit-transform:translateX(-200px);-moz-transform:translateX(-200px);-ms-transform:translateX(-200px);transform:translateX(-200px);}#top-right{width:100px;height:100px;}#top-right .plus-bar{top:30px;right:15px;width:25px;}#top-right:hover .plus-bar{-webkit-transform:rotate(360deg);-moz-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}#top-right:hover #vertical{-webkit-transform:rotate(450deg);-moz-transform:rotate(450deg);-ms-transform:rotate(450deg);transform:rotate(450deg);}.super-size{font-size:100px;}.post-title-small{font-size:30px;/*introduction 3 column text*/}.intro-content{-webkit-column-count:3;-moz-column-count:3;-o-column-count:3;-ms-column-count:3;column-count:3;-webkit-column-gap:25px;column-gap:25px;margin:25px 0;}.internal-page-header .page-title{width:100%;}#animated-header-background{display:block;position:absolute;}.down-arrow:hover{background-color:#fff;color:#000;}.hms-testimonial-group .hms-testimonial-container{width:29%;margin:15px 2%;}.section{padding:80px 0;}#mobile-tag{display:none;/**************************

HOME ANIMATED BANNER

************************/}#animated-circles{display:none;position:absolute;width:100%;height:100%;right:0;bottom:0;z-index:10;/************************************FEATURE PROJECT*********************************/}#featured-des{padding-top:300px;/*============================================
MEET THE TEAM SEECTION
============================================*/}#super-heroes{display:block;position:relative;height:1000px;overflow:hidden;}#super-heroes .team-member{width:400px;}#super-heroes .team-member:hover{background-position:100% 95%;}#super-heroes .team-member:hover .member-des{opacity:1;visibility:visible;top:120px;}#heroes-title{display:block;position:absolute;top:50%;left:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}#heroes-scroll{height:1010px;}#heroes-wrap{height:100%;}.super-size.x-large{font-size:15vw;/*****************************************
DIRECTIONAL NAV ON HEROES BANNER
*******************************************/}.hero-direct-nav{width:150px;height:100%;top:0;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);background-color:transparent;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:500px;-moz-perspective:500px;perspective:500px;-webkit-perspective-origin:0 0;-moz-perspective-origin:0 0;perspective-origin:0 0;}.hero-nav{width:150px;height:75px;top:50%;left:0;margin:-35px 0 0 0;background-color:transparent;line-height:75px;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-perspective:500px;-moz-perspective:500px;perspective:500px;-webkit-perspective-origin:0 0;-moz-perspective-origin:0 0;perspective-origin:0 0;}.hero-nav i{position:absolute;left:0;top:0;height:100%;line-height:75px;float:none;-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;transition:all 0.25s 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); */-webkit-transform-origin:0 0;-moz-transform-origin:0 0;transform-origin:0 0;}.hero-nav .hero-nav-text{/*
		position: absolute;
		right: 0;
		top: 0;
		float: none;
		width: 100px;
		height: 100%;
		opacity: 0;
		@include transition(all .25s ease-in-out);
		background-color: $flat-blue;
		text-indent: -999px;
		overflow: hidden;
		
		@include transform(rotateY(90deg));
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		transform-origin: 0 0;
		*/display:none !important;}.hero-nav .hero-nav-text:before{top:-100%;}.hero-nav:hover i{font-size:48px;}.hero-nav:hover .hero-nav-text{/*end .hero-nav-text*/}.hero-nav:hover .hero-nav-text:before{top:0;}.hero-nav:hover .hero-nav-text:after{top:100%;}#hero-right{right:0;left:auto;-webkit-perspective-origin:100% 0;-moz-perspective-origin:100% 0;perspective-origin:100% 0;/*hover affect on previous hero*/}#hero-right i{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;transform-origin:100% 0;left:auto;right:0;}#hero-right .hero-nav-text{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;transform-origin:100% 0;right:auto;left:0;}#hero-right .hero-nav-text:before,#hero-right .hero-nav-text:after{content:"Next";}#hero-left-arrow:hover #hero-left .hero-nav-text,.arrow-flip-from-left .hero-nav-text{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);opacity:1;}#hero-right-arrow:hover #hero-right{/******************************

HERO LANDING PAGE

********************************/}#hero-right-arrow:hover #hero-right .hero-nav-text{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);opacity:1;}#team-banner.team-banner{padding:20% 0;}.hero-bio{display:block;position:relative;width:100%;margin:0 auto;padding:0;-webkit-column-count:2;-moz-column-count:2;-o-column-count:2;-ms-column-count:2;column-count:2;/**************************************

PARALLAX SECTION ON HOMEPAGE


***************************************/}.parallax{min-height:480px;}#home-parallax .title-heading{font-size:48px;text-transform:uppercase;}.parallax-banner{background-position:50% 0;-webkit-transition:all 0.24s ease;-moz-transition:all 0.24s ease;-ms-transition:all 0.24s ease;transition:all 0.24s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); *//***************************

WHAT HAPPEN AROUND CINIVA SECTION


*******************************/}#what-happen .with-img img{-webkit-transition:all 0.8s ease;-moz-transition:all 0.8s ease;-ms-transition:all 0.8s ease;transition:all 0.8s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:scale(1.3, 1.3) translateX(-10%);-moz-transform:scale(1.3, 1.3) translateX(-10%);-ms-transform:scale(1.3, 1.3) translateX(-10%);transform:scale(1.3, 1.3) translateX(-10%);}#what-happen .with-img figcaption{-webkit-transition:all 0.6s ease;-moz-transition:all 0.6s ease;-ms-transition:all 0.6s ease;transition:all 0.6s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);}#what-happen .with-img:hover img{-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;transition:all 0.5s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:scale(1.3, 1.3) translateX(0%);-moz-transform:scale(1.3, 1.3) translateX(0%);-ms-transform:scale(1.3, 1.3) translateX(0%);transform:scale(1.3, 1.3) translateX(0%);}#what-happen .with-img:hover figcaption{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:translateY(0%);-moz-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}.blog-post{padding:25px;}#single-post-banner{/*********************************************PORTFOLIO********************************/}#single-post-banner .title-heading{font-size:48px;}.portfolio{overflow:hidden;}.portfolio img,.portfolio figcaption{-webkit-transition:all 0.4s ease;-moz-transition:all 0.4s ease;-ms-transition:all 0.4s ease;transition:all 0.4s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.portfolio figcaption{opacity:0;}.portfolio figcaption a:before,.portfolio figcaption a:visited:before,.portfolio figcaption .project-title:before,.portfolio figcaption a:after,.portfolio figcaption a:visited:after,.portfolio figcaption .project-title:after,.portfolio figcaption a span,.portfolio figcaption a:visited span,.portfolio figcaption .project-title span{-webkit-transition:all 0.6s ease;-moz-transition:all 0.6s ease;-ms-transition:all 0.6s ease;transition:all 0.6s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.portfolio figcaption a:before,.portfolio figcaption a:visited:before,.portfolio figcaption .project-title:before{-webkit-transform:scale(0, 1);-moz-transform:scale(0, 1);-ms-transform:scale(0, 1);transform:scale(0, 1);-webkit-transform-origin:0 0;transform-origin:0 0;}.portfolio figcaption a:after,.portfolio figcaption a:visited:after,.portfolio figcaption .project-title:after{-webkit-transform:scale(1, 0);-moz-transform:scale(1, 0);-ms-transform:scale(1, 0);transform:scale(1, 0);-webkit-transform-origin:100% 100%;transform-origin:100% 100%;}.portfolio figcaption a span,.portfolio figcaption a:visited span,.portfolio figcaption .project-title span{opacity:0;-webkit-transform:translateY(0);-moz-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);}.portfolio:hover figcaption{opacity:1;}.portfolio:hover figcaption a:before,.portfolio:hover figcaption a:visited:before,.portfolio:hover figcaption .project-title:before,.portfolio:hover figcaption a:after,.portfolio:hover figcaption a:visited:after,.portfolio:hover figcaption .project-title:after{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}.portfolio:hover figcaption a span,.portfolio:hover figcaption a:visited span,.portfolio:hover figcaption .project-title span{opacity:1;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}#port-nav{bottom:auto;top:100px;/*******************************CLOCK FACE**********************/}#port-nav .port-btn{border-left:0;float:none;}#port-nav .port-btn a:hover{background-color:#1b1b1b;color:#fff;}#clock-face{display:block;position:relative;width:600px;height:600px;}#time-mark .mark{height:15px;border:0;outline:none;}#time-mark .mark:visited,#time-mark .mark:focus{outline:none;}#time-mark .mark:before{height:2px;-webkit-transition:all 0.6s ease;-moz-transition:all 0.6s ease;-ms-transition:all 0.6s ease;transition:all 0.6s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#time-mark .mark:last-child:before,#time-mark .mark:nth-child(15):before,#time-mark .mark:nth-child(30):before,#time-mark .mark:nth-child(45):before,#time-mark .mark:nth-child(8):before,#time-mark .mark:nth-child(23):before,#time-mark .mark:nth-child(38):before,#time-mark .mark:nth-child(53):before{height:10px;width:25px;}#time-mark .mark:last-child .service-anchor.run-animation:after{-webkit-animation:bloom 1s ease 1s infinite normal;animation:bloom 1s ease 1s infinite normal;}#time-mark .mark:hover{/*******************************WATCH FACE ANIMATION**************************/}#time-mark .mark:hover:before{-webkit-transition:all 0.25s ease;-moz-transition:all 0.25s ease;-ms-transition:all 0.25s ease;transition:all 0.25s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#clock-face{width:700px;height:700px;padding:15px;/*
	-webkit-animation: cir-bor .8s ease 1.6s 1 forwards alternate;
	-moz-animation: cir-bor .8s ease 1.6s 1 forwards alternate;
		animation: cir-bor .8s ease 1.6s 1 forwards alternate;
		*/border-width:0;}#time-mark .mark{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}#time-mark .mark.with-hover:hover:before{width:50px;}#number-pro{opacity:0;-webkit-transform:none;-moz-transform:none;-ms-transform:none;transform:none;}.start-animation #number-pro{-webkit-animation:numbUp 1.5s ease 1.5s 1 forwards alternate;animation:numbUp 1.5s ease 1.5s 1 forwards alternate;}#circle-left,#circle-right,#circle-bottom{display:block;position:absolute;top:40%;left:40%;border-width:5px;opacity:0;}#circle-left .clock-big,#circle-right .clock-big,#circle-bottom .clock-big{font-size:48px;}#circle-left .clock-small,#circle-right .clock-small,#circle-bottom .clock-small{/*
		-webkit-animation: letter-spacing 1.5s ease 3s 1 forwards alternate;
		animation: letter-spacing 1.5s ease 3s 1 forwards alternate; 
		*/font-size:12px;}.roll-up{display:block;position:relative;width:100%;}.start-animation #circle-left{-webkit-animation:left-clock 1.5s ease 1.5s 1 forwards alternate;animation:left-clock 1.5s ease 1.5s 1 forwards alternate;}.start-animation #circle-right{-webkit-animation:right-clock 1.5s ease 1.5s 1 forwards alternate;animation:right-clock 1.5s ease 1.5s 1 forwards alternate;}#circle-bottom{border:0;background-image:url('/wp-content/uploads/2015/03/watch-face.png');background-size:100% 100%;background-position:center center;background-repeat:no-repeat;left:50%;-webkit-transform:translatex(-50%);-moz-transform:translatex(-50%);-ms-transform:translatex(-50%);transform:translatex(-50%);}.start-animation #circle-bottom{-webkit-animation:bottom-clock 1.5s ease 1.5s 1 forwards alternate;animation:bottom-clock 1.5s ease 1.5s 1 forwards alternate;}#time-mark .mark:nth-child(1) .service-hover{-webkit-transform:rotate(-6deg) scale(0.1, 0.1);-moz-transform:rotate(-6deg) scale(0.1, 0.1);-ms-transform:rotate(-6deg) scale(0.1, 0.1);transform:rotate(-6deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(1):hover .service-hover{-webkit-transform:rotate(-6deg) scale(1, 1);-moz-transform:rotate(-6deg) scale(1, 1);-ms-transform:rotate(-6deg) scale(1, 1);transform:rotate(-6deg) scale(1, 1);}#time-mark .mark:nth-child(2) .service-hover{-webkit-transform:rotate(-12deg) scale(0.1, 0.1);-moz-transform:rotate(-12deg) scale(0.1, 0.1);-ms-transform:rotate(-12deg) scale(0.1, 0.1);transform:rotate(-12deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(2):hover .service-hover{-webkit-transform:rotate(-12deg) scale(1, 1);-moz-transform:rotate(-12deg) scale(1, 1);-ms-transform:rotate(-12deg) scale(1, 1);transform:rotate(-12deg) scale(1, 1);}#time-mark .mark:nth-child(3) .service-hover{-webkit-transform:rotate(-18deg) scale(0.1, 0.1);-moz-transform:rotate(-18deg) scale(0.1, 0.1);-ms-transform:rotate(-18deg) scale(0.1, 0.1);transform:rotate(-18deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(3):hover .service-hover{-webkit-transform:rotate(-18deg) scale(1, 1);-moz-transform:rotate(-18deg) scale(1, 1);-ms-transform:rotate(-18deg) scale(1, 1);transform:rotate(-18deg) scale(1, 1);}#time-mark .mark:nth-child(4) .service-hover{-webkit-transform:rotate(-24deg) scale(0.1, 0.1);-moz-transform:rotate(-24deg) scale(0.1, 0.1);-ms-transform:rotate(-24deg) scale(0.1, 0.1);transform:rotate(-24deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(4):hover .service-hover{-webkit-transform:rotate(-24deg) scale(1, 1);-moz-transform:rotate(-24deg) scale(1, 1);-ms-transform:rotate(-24deg) scale(1, 1);transform:rotate(-24deg) scale(1, 1);}#time-mark .mark:nth-child(5) .service-hover{-webkit-transform:rotate(-30deg) scale(0.1, 0.1);-moz-transform:rotate(-30deg) scale(0.1, 0.1);-ms-transform:rotate(-30deg) scale(0.1, 0.1);transform:rotate(-30deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(5):hover .service-hover{-webkit-transform:rotate(-30deg) scale(1, 1);-moz-transform:rotate(-30deg) scale(1, 1);-ms-transform:rotate(-30deg) scale(1, 1);transform:rotate(-30deg) scale(1, 1);}#time-mark .mark:nth-child(6) .service-hover{-webkit-transform:rotate(-36deg) scale(0.1, 0.1);-moz-transform:rotate(-36deg) scale(0.1, 0.1);-ms-transform:rotate(-36deg) scale(0.1, 0.1);transform:rotate(-36deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(6):hover .service-hover{-webkit-transform:rotate(-36deg) scale(1, 1);-moz-transform:rotate(-36deg) scale(1, 1);-ms-transform:rotate(-36deg) scale(1, 1);transform:rotate(-36deg) scale(1, 1);}#time-mark .mark:nth-child(7) .service-hover{-webkit-transform:rotate(-42deg) scale(0.1, 0.1);-moz-transform:rotate(-42deg) scale(0.1, 0.1);-ms-transform:rotate(-42deg) scale(0.1, 0.1);transform:rotate(-42deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(7):hover .service-hover{-webkit-transform:rotate(-42deg) scale(1, 1);-moz-transform:rotate(-42deg) scale(1, 1);-ms-transform:rotate(-42deg) scale(1, 1);transform:rotate(-42deg) scale(1, 1);}#time-mark .mark:nth-child(8) .service-hover{-webkit-transform:rotate(-48deg) scale(0.1, 0.1);-moz-transform:rotate(-48deg) scale(0.1, 0.1);-ms-transform:rotate(-48deg) scale(0.1, 0.1);transform:rotate(-48deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(8):hover .service-hover{-webkit-transform:rotate(-48deg) scale(1, 1);-moz-transform:rotate(-48deg) scale(1, 1);-ms-transform:rotate(-48deg) scale(1, 1);transform:rotate(-48deg) scale(1, 1);}#time-mark .mark:nth-child(9) .service-hover{-webkit-transform:rotate(-54deg) scale(0.1, 0.1);-moz-transform:rotate(-54deg) scale(0.1, 0.1);-ms-transform:rotate(-54deg) scale(0.1, 0.1);transform:rotate(-54deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(9):hover .service-hover{-webkit-transform:rotate(-54deg) scale(1, 1);-moz-transform:rotate(-54deg) scale(1, 1);-ms-transform:rotate(-54deg) scale(1, 1);transform:rotate(-54deg) scale(1, 1);}#time-mark .mark:nth-child(10) .service-hover{-webkit-transform:rotate(-60deg) scale(0.1, 0.1);-moz-transform:rotate(-60deg) scale(0.1, 0.1);-ms-transform:rotate(-60deg) scale(0.1, 0.1);transform:rotate(-60deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(10):hover .service-hover{-webkit-transform:rotate(-60deg) scale(1, 1);-moz-transform:rotate(-60deg) scale(1, 1);-ms-transform:rotate(-60deg) scale(1, 1);transform:rotate(-60deg) scale(1, 1);}#time-mark .mark:nth-child(11) .service-hover{-webkit-transform:rotate(-66deg) scale(0.1, 0.1);-moz-transform:rotate(-66deg) scale(0.1, 0.1);-ms-transform:rotate(-66deg) scale(0.1, 0.1);transform:rotate(-66deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(11):hover .service-hover{-webkit-transform:rotate(-66deg) scale(1, 1);-moz-transform:rotate(-66deg) scale(1, 1);-ms-transform:rotate(-66deg) scale(1, 1);transform:rotate(-66deg) scale(1, 1);}#time-mark .mark:nth-child(12) .service-hover{-webkit-transform:rotate(-72deg) scale(0.1, 0.1);-moz-transform:rotate(-72deg) scale(0.1, 0.1);-ms-transform:rotate(-72deg) scale(0.1, 0.1);transform:rotate(-72deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(12):hover .service-hover{-webkit-transform:rotate(-72deg) scale(1, 1);-moz-transform:rotate(-72deg) scale(1, 1);-ms-transform:rotate(-72deg) scale(1, 1);transform:rotate(-72deg) scale(1, 1);}#time-mark .mark:nth-child(13) .service-hover{-webkit-transform:rotate(-78deg) scale(0.1, 0.1);-moz-transform:rotate(-78deg) scale(0.1, 0.1);-ms-transform:rotate(-78deg) scale(0.1, 0.1);transform:rotate(-78deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(13):hover .service-hover{-webkit-transform:rotate(-78deg) scale(1, 1);-moz-transform:rotate(-78deg) scale(1, 1);-ms-transform:rotate(-78deg) scale(1, 1);transform:rotate(-78deg) scale(1, 1);}#time-mark .mark:nth-child(14) .service-hover{-webkit-transform:rotate(-84deg) scale(0.1, 0.1);-moz-transform:rotate(-84deg) scale(0.1, 0.1);-ms-transform:rotate(-84deg) scale(0.1, 0.1);transform:rotate(-84deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(14):hover .service-hover{-webkit-transform:rotate(-84deg) scale(1, 1);-moz-transform:rotate(-84deg) scale(1, 1);-ms-transform:rotate(-84deg) scale(1, 1);transform:rotate(-84deg) scale(1, 1);}#time-mark .mark:nth-child(15) .service-hover{-webkit-transform:rotate(-90deg) scale(0.1, 0.1);-moz-transform:rotate(-90deg) scale(0.1, 0.1);-ms-transform:rotate(-90deg) scale(0.1, 0.1);transform:rotate(-90deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(15):hover .service-hover{-webkit-transform:rotate(-90deg) scale(1, 1);-moz-transform:rotate(-90deg) scale(1, 1);-ms-transform:rotate(-90deg) scale(1, 1);transform:rotate(-90deg) scale(1, 1);}#time-mark .mark:nth-child(16) .service-hover{-webkit-transform:rotate(-96deg) scale(0.1, 0.1);-moz-transform:rotate(-96deg) scale(0.1, 0.1);-ms-transform:rotate(-96deg) scale(0.1, 0.1);transform:rotate(-96deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(16):hover .service-hover{-webkit-transform:rotate(-96deg) scale(1, 1);-moz-transform:rotate(-96deg) scale(1, 1);-ms-transform:rotate(-96deg) scale(1, 1);transform:rotate(-96deg) scale(1, 1);}#time-mark .mark:nth-child(17) .service-hover{-webkit-transform:rotate(-102deg) scale(0.1, 0.1);-moz-transform:rotate(-102deg) scale(0.1, 0.1);-ms-transform:rotate(-102deg) scale(0.1, 0.1);transform:rotate(-102deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(17):hover .service-hover{-webkit-transform:rotate(-102deg) scale(1, 1);-moz-transform:rotate(-102deg) scale(1, 1);-ms-transform:rotate(-102deg) scale(1, 1);transform:rotate(-102deg) scale(1, 1);}#time-mark .mark:nth-child(18) .service-hover{-webkit-transform:rotate(-108deg) scale(0.1, 0.1);-moz-transform:rotate(-108deg) scale(0.1, 0.1);-ms-transform:rotate(-108deg) scale(0.1, 0.1);transform:rotate(-108deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(18):hover .service-hover{-webkit-transform:rotate(-108deg) scale(1, 1);-moz-transform:rotate(-108deg) scale(1, 1);-ms-transform:rotate(-108deg) scale(1, 1);transform:rotate(-108deg) scale(1, 1);}#time-mark .mark:nth-child(19) .service-hover{-webkit-transform:rotate(-114deg) scale(0.1, 0.1);-moz-transform:rotate(-114deg) scale(0.1, 0.1);-ms-transform:rotate(-114deg) scale(0.1, 0.1);transform:rotate(-114deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(19):hover .service-hover{-webkit-transform:rotate(-114deg) scale(1, 1);-moz-transform:rotate(-114deg) scale(1, 1);-ms-transform:rotate(-114deg) scale(1, 1);transform:rotate(-114deg) scale(1, 1);}#time-mark .mark:nth-child(20) .service-hover{-webkit-transform:rotate(-120deg) scale(0.1, 0.1);-moz-transform:rotate(-120deg) scale(0.1, 0.1);-ms-transform:rotate(-120deg) scale(0.1, 0.1);transform:rotate(-120deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(20):hover .service-hover{-webkit-transform:rotate(-120deg) scale(1, 1);-moz-transform:rotate(-120deg) scale(1, 1);-ms-transform:rotate(-120deg) scale(1, 1);transform:rotate(-120deg) scale(1, 1);}#time-mark .mark:nth-child(21) .service-hover{-webkit-transform:rotate(-126deg) scale(0.1, 0.1);-moz-transform:rotate(-126deg) scale(0.1, 0.1);-ms-transform:rotate(-126deg) scale(0.1, 0.1);transform:rotate(-126deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(21):hover .service-hover{-webkit-transform:rotate(-126deg) scale(1, 1);-moz-transform:rotate(-126deg) scale(1, 1);-ms-transform:rotate(-126deg) scale(1, 1);transform:rotate(-126deg) scale(1, 1);}#time-mark .mark:nth-child(22) .service-hover{-webkit-transform:rotate(-132deg) scale(0.1, 0.1);-moz-transform:rotate(-132deg) scale(0.1, 0.1);-ms-transform:rotate(-132deg) scale(0.1, 0.1);transform:rotate(-132deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(22):hover .service-hover{-webkit-transform:rotate(-132deg) scale(1, 1);-moz-transform:rotate(-132deg) scale(1, 1);-ms-transform:rotate(-132deg) scale(1, 1);transform:rotate(-132deg) scale(1, 1);}#time-mark .mark:nth-child(23) .service-hover{-webkit-transform:rotate(-138deg) scale(0.1, 0.1);-moz-transform:rotate(-138deg) scale(0.1, 0.1);-ms-transform:rotate(-138deg) scale(0.1, 0.1);transform:rotate(-138deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(23):hover .service-hover{-webkit-transform:rotate(-138deg) scale(1, 1);-moz-transform:rotate(-138deg) scale(1, 1);-ms-transform:rotate(-138deg) scale(1, 1);transform:rotate(-138deg) scale(1, 1);}#time-mark .mark:nth-child(24) .service-hover{-webkit-transform:rotate(-144deg) scale(0.1, 0.1);-moz-transform:rotate(-144deg) scale(0.1, 0.1);-ms-transform:rotate(-144deg) scale(0.1, 0.1);transform:rotate(-144deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(24):hover .service-hover{-webkit-transform:rotate(-144deg) scale(1, 1);-moz-transform:rotate(-144deg) scale(1, 1);-ms-transform:rotate(-144deg) scale(1, 1);transform:rotate(-144deg) scale(1, 1);}#time-mark .mark:nth-child(25) .service-hover{-webkit-transform:rotate(-150deg) scale(0.1, 0.1);-moz-transform:rotate(-150deg) scale(0.1, 0.1);-ms-transform:rotate(-150deg) scale(0.1, 0.1);transform:rotate(-150deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(25):hover .service-hover{-webkit-transform:rotate(-150deg) scale(1, 1);-moz-transform:rotate(-150deg) scale(1, 1);-ms-transform:rotate(-150deg) scale(1, 1);transform:rotate(-150deg) scale(1, 1);}#time-mark .mark:nth-child(26) .service-hover{-webkit-transform:rotate(-156deg) scale(0.1, 0.1);-moz-transform:rotate(-156deg) scale(0.1, 0.1);-ms-transform:rotate(-156deg) scale(0.1, 0.1);transform:rotate(-156deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(26):hover .service-hover{-webkit-transform:rotate(-156deg) scale(1, 1);-moz-transform:rotate(-156deg) scale(1, 1);-ms-transform:rotate(-156deg) scale(1, 1);transform:rotate(-156deg) scale(1, 1);}#time-mark .mark:nth-child(27) .service-hover{-webkit-transform:rotate(-162deg) scale(0.1, 0.1);-moz-transform:rotate(-162deg) scale(0.1, 0.1);-ms-transform:rotate(-162deg) scale(0.1, 0.1);transform:rotate(-162deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(27):hover .service-hover{-webkit-transform:rotate(-162deg) scale(1, 1);-moz-transform:rotate(-162deg) scale(1, 1);-ms-transform:rotate(-162deg) scale(1, 1);transform:rotate(-162deg) scale(1, 1);}#time-mark .mark:nth-child(28) .service-hover{-webkit-transform:rotate(-168deg) scale(0.1, 0.1);-moz-transform:rotate(-168deg) scale(0.1, 0.1);-ms-transform:rotate(-168deg) scale(0.1, 0.1);transform:rotate(-168deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(28):hover .service-hover{-webkit-transform:rotate(-168deg) scale(1, 1);-moz-transform:rotate(-168deg) scale(1, 1);-ms-transform:rotate(-168deg) scale(1, 1);transform:rotate(-168deg) scale(1, 1);}#time-mark .mark:nth-child(29) .service-hover{-webkit-transform:rotate(-174deg) scale(0.1, 0.1);-moz-transform:rotate(-174deg) scale(0.1, 0.1);-ms-transform:rotate(-174deg) scale(0.1, 0.1);transform:rotate(-174deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(29):hover .service-hover{-webkit-transform:rotate(-174deg) scale(1, 1);-moz-transform:rotate(-174deg) scale(1, 1);-ms-transform:rotate(-174deg) scale(1, 1);transform:rotate(-174deg) scale(1, 1);}#time-mark .mark:nth-child(30) .service-hover{-webkit-transform:rotate(-180deg) scale(0.1, 0.1);-moz-transform:rotate(-180deg) scale(0.1, 0.1);-ms-transform:rotate(-180deg) scale(0.1, 0.1);transform:rotate(-180deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(30):hover .service-hover{-webkit-transform:rotate(-180deg) scale(1, 1);-moz-transform:rotate(-180deg) scale(1, 1);-ms-transform:rotate(-180deg) scale(1, 1);transform:rotate(-180deg) scale(1, 1);}#time-mark .mark:nth-child(31) .service-hover{-webkit-transform:rotate(-186deg) scale(0.1, 0.1);-moz-transform:rotate(-186deg) scale(0.1, 0.1);-ms-transform:rotate(-186deg) scale(0.1, 0.1);transform:rotate(-186deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(31):hover .service-hover{-webkit-transform:rotate(-186deg) scale(1, 1);-moz-transform:rotate(-186deg) scale(1, 1);-ms-transform:rotate(-186deg) scale(1, 1);transform:rotate(-186deg) scale(1, 1);}#time-mark .mark:nth-child(32) .service-hover{-webkit-transform:rotate(-192deg) scale(0.1, 0.1);-moz-transform:rotate(-192deg) scale(0.1, 0.1);-ms-transform:rotate(-192deg) scale(0.1, 0.1);transform:rotate(-192deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(32):hover .service-hover{-webkit-transform:rotate(-192deg) scale(1, 1);-moz-transform:rotate(-192deg) scale(1, 1);-ms-transform:rotate(-192deg) scale(1, 1);transform:rotate(-192deg) scale(1, 1);}#time-mark .mark:nth-child(33) .service-hover{-webkit-transform:rotate(-198deg) scale(0.1, 0.1);-moz-transform:rotate(-198deg) scale(0.1, 0.1);-ms-transform:rotate(-198deg) scale(0.1, 0.1);transform:rotate(-198deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(33):hover .service-hover{-webkit-transform:rotate(-198deg) scale(1, 1);-moz-transform:rotate(-198deg) scale(1, 1);-ms-transform:rotate(-198deg) scale(1, 1);transform:rotate(-198deg) scale(1, 1);}#time-mark .mark:nth-child(34) .service-hover{-webkit-transform:rotate(-204deg) scale(0.1, 0.1);-moz-transform:rotate(-204deg) scale(0.1, 0.1);-ms-transform:rotate(-204deg) scale(0.1, 0.1);transform:rotate(-204deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(34):hover .service-hover{-webkit-transform:rotate(-204deg) scale(1, 1);-moz-transform:rotate(-204deg) scale(1, 1);-ms-transform:rotate(-204deg) scale(1, 1);transform:rotate(-204deg) scale(1, 1);}#time-mark .mark:nth-child(35) .service-hover{-webkit-transform:rotate(-210deg) scale(0.1, 0.1);-moz-transform:rotate(-210deg) scale(0.1, 0.1);-ms-transform:rotate(-210deg) scale(0.1, 0.1);transform:rotate(-210deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(35):hover .service-hover{-webkit-transform:rotate(-210deg) scale(1, 1);-moz-transform:rotate(-210deg) scale(1, 1);-ms-transform:rotate(-210deg) scale(1, 1);transform:rotate(-210deg) scale(1, 1);}#time-mark .mark:nth-child(36) .service-hover{-webkit-transform:rotate(-216deg) scale(0.1, 0.1);-moz-transform:rotate(-216deg) scale(0.1, 0.1);-ms-transform:rotate(-216deg) scale(0.1, 0.1);transform:rotate(-216deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(36):hover .service-hover{-webkit-transform:rotate(-216deg) scale(1, 1);-moz-transform:rotate(-216deg) scale(1, 1);-ms-transform:rotate(-216deg) scale(1, 1);transform:rotate(-216deg) scale(1, 1);}#time-mark .mark:nth-child(37) .service-hover{-webkit-transform:rotate(-222deg) scale(0.1, 0.1);-moz-transform:rotate(-222deg) scale(0.1, 0.1);-ms-transform:rotate(-222deg) scale(0.1, 0.1);transform:rotate(-222deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(37):hover .service-hover{-webkit-transform:rotate(-222deg) scale(1, 1);-moz-transform:rotate(-222deg) scale(1, 1);-ms-transform:rotate(-222deg) scale(1, 1);transform:rotate(-222deg) scale(1, 1);}#time-mark .mark:nth-child(38) .service-hover{-webkit-transform:rotate(-228deg) scale(0.1, 0.1);-moz-transform:rotate(-228deg) scale(0.1, 0.1);-ms-transform:rotate(-228deg) scale(0.1, 0.1);transform:rotate(-228deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(38):hover .service-hover{-webkit-transform:rotate(-228deg) scale(1, 1);-moz-transform:rotate(-228deg) scale(1, 1);-ms-transform:rotate(-228deg) scale(1, 1);transform:rotate(-228deg) scale(1, 1);}#time-mark .mark:nth-child(39) .service-hover{-webkit-transform:rotate(-234deg) scale(0.1, 0.1);-moz-transform:rotate(-234deg) scale(0.1, 0.1);-ms-transform:rotate(-234deg) scale(0.1, 0.1);transform:rotate(-234deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(39):hover .service-hover{-webkit-transform:rotate(-234deg) scale(1, 1);-moz-transform:rotate(-234deg) scale(1, 1);-ms-transform:rotate(-234deg) scale(1, 1);transform:rotate(-234deg) scale(1, 1);}#time-mark .mark:nth-child(40) .service-hover{-webkit-transform:rotate(-240deg) scale(0.1, 0.1);-moz-transform:rotate(-240deg) scale(0.1, 0.1);-ms-transform:rotate(-240deg) scale(0.1, 0.1);transform:rotate(-240deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(40):hover .service-hover{-webkit-transform:rotate(-240deg) scale(1, 1);-moz-transform:rotate(-240deg) scale(1, 1);-ms-transform:rotate(-240deg) scale(1, 1);transform:rotate(-240deg) scale(1, 1);}#time-mark .mark:nth-child(41) .service-hover{-webkit-transform:rotate(-246deg) scale(0.1, 0.1);-moz-transform:rotate(-246deg) scale(0.1, 0.1);-ms-transform:rotate(-246deg) scale(0.1, 0.1);transform:rotate(-246deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(41):hover .service-hover{-webkit-transform:rotate(-246deg) scale(1, 1);-moz-transform:rotate(-246deg) scale(1, 1);-ms-transform:rotate(-246deg) scale(1, 1);transform:rotate(-246deg) scale(1, 1);}#time-mark .mark:nth-child(42) .service-hover{-webkit-transform:rotate(-252deg) scale(0.1, 0.1);-moz-transform:rotate(-252deg) scale(0.1, 0.1);-ms-transform:rotate(-252deg) scale(0.1, 0.1);transform:rotate(-252deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(42):hover .service-hover{-webkit-transform:rotate(-252deg) scale(1, 1);-moz-transform:rotate(-252deg) scale(1, 1);-ms-transform:rotate(-252deg) scale(1, 1);transform:rotate(-252deg) scale(1, 1);}#time-mark .mark:nth-child(43) .service-hover{-webkit-transform:rotate(-258deg) scale(0.1, 0.1);-moz-transform:rotate(-258deg) scale(0.1, 0.1);-ms-transform:rotate(-258deg) scale(0.1, 0.1);transform:rotate(-258deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(43):hover .service-hover{-webkit-transform:rotate(-258deg) scale(1, 1);-moz-transform:rotate(-258deg) scale(1, 1);-ms-transform:rotate(-258deg) scale(1, 1);transform:rotate(-258deg) scale(1, 1);}#time-mark .mark:nth-child(44) .service-hover{-webkit-transform:rotate(-264deg) scale(0.1, 0.1);-moz-transform:rotate(-264deg) scale(0.1, 0.1);-ms-transform:rotate(-264deg) scale(0.1, 0.1);transform:rotate(-264deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(44):hover .service-hover{-webkit-transform:rotate(-264deg) scale(1, 1);-moz-transform:rotate(-264deg) scale(1, 1);-ms-transform:rotate(-264deg) scale(1, 1);transform:rotate(-264deg) scale(1, 1);}#time-mark .mark:nth-child(45) .service-hover{-webkit-transform:rotate(-270deg) scale(0.1, 0.1);-moz-transform:rotate(-270deg) scale(0.1, 0.1);-ms-transform:rotate(-270deg) scale(0.1, 0.1);transform:rotate(-270deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(45):hover .service-hover{-webkit-transform:rotate(-270deg) scale(1, 1);-moz-transform:rotate(-270deg) scale(1, 1);-ms-transform:rotate(-270deg) scale(1, 1);transform:rotate(-270deg) scale(1, 1);}#time-mark .mark:nth-child(46) .service-hover{-webkit-transform:rotate(-276deg) scale(0.1, 0.1);-moz-transform:rotate(-276deg) scale(0.1, 0.1);-ms-transform:rotate(-276deg) scale(0.1, 0.1);transform:rotate(-276deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(46):hover .service-hover{-webkit-transform:rotate(-276deg) scale(1, 1);-moz-transform:rotate(-276deg) scale(1, 1);-ms-transform:rotate(-276deg) scale(1, 1);transform:rotate(-276deg) scale(1, 1);}#time-mark .mark:nth-child(47) .service-hover{-webkit-transform:rotate(-282deg) scale(0.1, 0.1);-moz-transform:rotate(-282deg) scale(0.1, 0.1);-ms-transform:rotate(-282deg) scale(0.1, 0.1);transform:rotate(-282deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(47):hover .service-hover{-webkit-transform:rotate(-282deg) scale(1, 1);-moz-transform:rotate(-282deg) scale(1, 1);-ms-transform:rotate(-282deg) scale(1, 1);transform:rotate(-282deg) scale(1, 1);}#time-mark .mark:nth-child(48) .service-hover{-webkit-transform:rotate(-288deg) scale(0.1, 0.1);-moz-transform:rotate(-288deg) scale(0.1, 0.1);-ms-transform:rotate(-288deg) scale(0.1, 0.1);transform:rotate(-288deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(48):hover .service-hover{-webkit-transform:rotate(-288deg) scale(1, 1);-moz-transform:rotate(-288deg) scale(1, 1);-ms-transform:rotate(-288deg) scale(1, 1);transform:rotate(-288deg) scale(1, 1);}#time-mark .mark:nth-child(49) .service-hover{-webkit-transform:rotate(-294deg) scale(0.1, 0.1);-moz-transform:rotate(-294deg) scale(0.1, 0.1);-ms-transform:rotate(-294deg) scale(0.1, 0.1);transform:rotate(-294deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(49):hover .service-hover{-webkit-transform:rotate(-294deg) scale(1, 1);-moz-transform:rotate(-294deg) scale(1, 1);-ms-transform:rotate(-294deg) scale(1, 1);transform:rotate(-294deg) scale(1, 1);}#time-mark .mark:nth-child(50) .service-hover{-webkit-transform:rotate(-300deg) scale(0.1, 0.1);-moz-transform:rotate(-300deg) scale(0.1, 0.1);-ms-transform:rotate(-300deg) scale(0.1, 0.1);transform:rotate(-300deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(50):hover .service-hover{-webkit-transform:rotate(-300deg) scale(1, 1);-moz-transform:rotate(-300deg) scale(1, 1);-ms-transform:rotate(-300deg) scale(1, 1);transform:rotate(-300deg) scale(1, 1);}#time-mark .mark:nth-child(51) .service-hover{-webkit-transform:rotate(-306deg) scale(0.1, 0.1);-moz-transform:rotate(-306deg) scale(0.1, 0.1);-ms-transform:rotate(-306deg) scale(0.1, 0.1);transform:rotate(-306deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(51):hover .service-hover{-webkit-transform:rotate(-306deg) scale(1, 1);-moz-transform:rotate(-306deg) scale(1, 1);-ms-transform:rotate(-306deg) scale(1, 1);transform:rotate(-306deg) scale(1, 1);}#time-mark .mark:nth-child(52) .service-hover{-webkit-transform:rotate(-312deg) scale(0.1, 0.1);-moz-transform:rotate(-312deg) scale(0.1, 0.1);-ms-transform:rotate(-312deg) scale(0.1, 0.1);transform:rotate(-312deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(52):hover .service-hover{-webkit-transform:rotate(-312deg) scale(1, 1);-moz-transform:rotate(-312deg) scale(1, 1);-ms-transform:rotate(-312deg) scale(1, 1);transform:rotate(-312deg) scale(1, 1);}#time-mark .mark:nth-child(53) .service-hover{-webkit-transform:rotate(-318deg) scale(0.1, 0.1);-moz-transform:rotate(-318deg) scale(0.1, 0.1);-ms-transform:rotate(-318deg) scale(0.1, 0.1);transform:rotate(-318deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(53):hover .service-hover{-webkit-transform:rotate(-318deg) scale(1, 1);-moz-transform:rotate(-318deg) scale(1, 1);-ms-transform:rotate(-318deg) scale(1, 1);transform:rotate(-318deg) scale(1, 1);}#time-mark .mark:nth-child(54) .service-hover{-webkit-transform:rotate(-324deg) scale(0.1, 0.1);-moz-transform:rotate(-324deg) scale(0.1, 0.1);-ms-transform:rotate(-324deg) scale(0.1, 0.1);transform:rotate(-324deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(54):hover .service-hover{-webkit-transform:rotate(-324deg) scale(1, 1);-moz-transform:rotate(-324deg) scale(1, 1);-ms-transform:rotate(-324deg) scale(1, 1);transform:rotate(-324deg) scale(1, 1);}#time-mark .mark:nth-child(55) .service-hover{-webkit-transform:rotate(-330deg) scale(0.1, 0.1);-moz-transform:rotate(-330deg) scale(0.1, 0.1);-ms-transform:rotate(-330deg) scale(0.1, 0.1);transform:rotate(-330deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(55):hover .service-hover{-webkit-transform:rotate(-330deg) scale(1, 1);-moz-transform:rotate(-330deg) scale(1, 1);-ms-transform:rotate(-330deg) scale(1, 1);transform:rotate(-330deg) scale(1, 1);}#time-mark .mark:nth-child(56) .service-hover{-webkit-transform:rotate(-336deg) scale(0.1, 0.1);-moz-transform:rotate(-336deg) scale(0.1, 0.1);-ms-transform:rotate(-336deg) scale(0.1, 0.1);transform:rotate(-336deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(56):hover .service-hover{-webkit-transform:rotate(-336deg) scale(1, 1);-moz-transform:rotate(-336deg) scale(1, 1);-ms-transform:rotate(-336deg) scale(1, 1);transform:rotate(-336deg) scale(1, 1);}#time-mark .mark:nth-child(57) .service-hover{-webkit-transform:rotate(-342deg) scale(0.1, 0.1);-moz-transform:rotate(-342deg) scale(0.1, 0.1);-ms-transform:rotate(-342deg) scale(0.1, 0.1);transform:rotate(-342deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(57):hover .service-hover{-webkit-transform:rotate(-342deg) scale(1, 1);-moz-transform:rotate(-342deg) scale(1, 1);-ms-transform:rotate(-342deg) scale(1, 1);transform:rotate(-342deg) scale(1, 1);}#time-mark .mark:nth-child(58) .service-hover{-webkit-transform:rotate(-348deg) scale(0.1, 0.1);-moz-transform:rotate(-348deg) scale(0.1, 0.1);-ms-transform:rotate(-348deg) scale(0.1, 0.1);transform:rotate(-348deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(58):hover .service-hover{-webkit-transform:rotate(-348deg) scale(1, 1);-moz-transform:rotate(-348deg) scale(1, 1);-ms-transform:rotate(-348deg) scale(1, 1);transform:rotate(-348deg) scale(1, 1);}#time-mark .mark:nth-child(59) .service-hover{-webkit-transform:rotate(-354deg) scale(0.1, 0.1);-moz-transform:rotate(-354deg) scale(0.1, 0.1);-ms-transform:rotate(-354deg) scale(0.1, 0.1);transform:rotate(-354deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(59):hover .service-hover{-webkit-transform:rotate(-354deg) scale(1, 1);-moz-transform:rotate(-354deg) scale(1, 1);-ms-transform:rotate(-354deg) scale(1, 1);transform:rotate(-354deg) scale(1, 1);}#time-mark .mark:nth-child(60) .service-hover{-webkit-transform:rotate(-360deg) scale(0.1, 0.1);-moz-transform:rotate(-360deg) scale(0.1, 0.1);-ms-transform:rotate(-360deg) scale(0.1, 0.1);transform:rotate(-360deg) scale(0.1, 0.1);}#time-mark .mark:nth-child(60):hover .service-hover{-webkit-transform:rotate(-360deg) scale(1, 1);-moz-transform:rotate(-360deg) scale(1, 1);-ms-transform:rotate(-360deg) scale(1, 1);transform:rotate(-360deg) scale(1, 1);}#inner-circle{display:block;position:absolute;border-radius:50%;width:100%;height:100%;left:0;top:0;}#inner-circle:after{display:block;position:absolute;width:80%;height:80%;top:10%;left:10%;border-radius:50%;content:"";z-index:999;}.bold-num{font-size:144px;letter-spacing:10px;}.pro-text{font-size:16px;font-family:'Montserrat', "Georgia", Cambria, Times New Roman, Times, serif;font-weight:700;text-transform:uppercase;letter-spacing:5px;}.service-name i{font-size:36px;}.with-hover .service-anchor{display:block;position:absolute;width:100%;height:25px;top:0;border:0;outline:none;}.with-hover .service-anchor:after{display:block;position:absolute;width:30px;height:30px;top:-3px;border-radius:50%;background-color:#fff;content:"";opacity:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);left:-10px;}.with-hover .service-hover{display:block;position:absolute;top:-60px;left:-200px;opacity:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);width:150px;height:150px;background-color:rgba(255, 255, 255, .8);}.with-hover .service-hover .vertical-align{padding:0 5px;}.with-hover .service-hover:before,.with-hover .service-hover:after{display:block;position:absolute;width:180px;height:180px;border-radius:50%;background-color:rgba(255, 255, 255, .4);content:"";top:-15px;left:-15px;-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);opacity:0;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;transition:all 0.5s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.with-hover .service-hover:after{background-color:rgba(255, 255, 255, .2);width:200px;height:200px;left:-25px;top:-25px;-webkit-transition:all 0.6s ease;-moz-transition:all 0.6s ease;-ms-transition:all 0.6s ease;transition:all 0.6s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}.with-hover:hover .service-anchor:after{opacity:1;-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}.with-hover:hover .service-hover{-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}.with-hover:hover .service-hover:before,.with-hover:hover .service-hover:after{opacity:1;-webkit-transform:scale(1, 1);-moz-transform:scale(1, 1);-ms-transform:scale(1, 1);transform:scale(1, 1);}.black-overlay{background-color:rgba(0, 0, 0, .6);/**********************************************************************
FEATURED CLIENT SECTION

***********************************************************************/}#feat-clients .flex-direction-nav a.flex-next,#feat-clients .flex-direction-nav a.flex-prev{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */opacity:1;width:50px;height:75px;line-height:75px;}#feat-clients .flex-direction-nav a.flex-next:before,#feat-clients .flex-direction-nav a.flex-prev:before,#feat-clients .flex-direction-nav a.flex-next:after,#feat-clients .flex-direction-nav a.flex-prev:after{line-height:75px;text-align:center;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************//* @include css-gradient(#dfdfdf,#f8f8f8); */}#feat-clients .flex-direction-nav a.flex-next:before,#feat-clients .flex-direction-nav a.flex-prev:before{font-size:24px;}#feat-clients .flex-direction-nav a.flex-next:hover:before,#feat-clients .flex-direction-nav a.flex-prev:hover:before{font-size:48px;}#feat-clients .flex-direction-nav a.flex-next{right:0;}#feat-clients .flex-direction-nav a.flex-prev{left:0;}#all-services .ms-item{min-height:320px;}.icon-header{font-size:48px;}nav.pagination a,nav.pagination span{width:70px;height:70px;line-height:70px;font-size:20px;font-weight:400;}.title-heading{font-size:36px;}.cs-team{/*******************************************************************

ALL ANIMATIONS GO HERE

********************************************************************************/}.cs-team img{border-radius:50%;}.cs-team figcaption{text-align:center;}@keyframes flip-vertical{0%{opacity:0;-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);transform:rotateY(90deg);}100%{opacity:1;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);}}@-webkit-keyframes flip-vertical{0%{opacity:0;-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);transform:rotateY(90deg);}100%{opacity:1;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);}}@-moz-keyframes flip-vertical{0%{opacity:0;-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);-ms-transform:rotateY(90deg);transform:rotateY(90deg);}100%{opacity:1;-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);}}}@media only screen and (min-width:1240px){/******************************************************************
Site Name:  Ciniva Web Agency
Author: 	Minh Nguyen

Stylesheet: Super Large Monitor Stylesheet


******************************************************************//*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/.wrap{width:1140px;}#featured-project{padding:200px 0;}#team-banner.team-banner{padding:35px 0 10% 0;}#team-banner.team-banner #member-outline{display:block;width:220px;height:220px;-webkit-transform:translateY(100%) scale(0.1, 0.1);-moz-transform:translateY(100%) scale(0.1, 0.1);-ms-transform:translateY(100%) scale(0.1, 0.1);transform:translateY(100%) scale(0.1, 0.1);-webkit-animation:border 0.6s ease 0.6s 1 forwards alternate;animation:border 0.6s ease 0.6s 1 forwards alternate;z-index:0;}#team-banner.team-banner #member-avatar{width:200px;height:200px;-webkit-transform:scale(0.1, 0.1);-moz-transform:scale(0.1, 0.1);-ms-transform:scale(0.1, 0.1);transform:scale(0.1, 0.1);-webkit-animation:scale 0.6s ease 0s 1 forwards alternate;animation:scale 0.6s ease 0s 1 forwards alternate;z-index:1;overflow:visible;}#team-banner.team-banner .member-name,#team-banner.team-banner .job-title{-webkit-transform:translateY(100%);-moz-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);opacity:0;-webkit-animation:slideUpAnimation 0.6s ease 1.2s 1 forwards alternate;animation:slideUpAnimation 0.6s ease 1.2s 1 forwards alternate;}#team-banner.team-banner .member-name{font-size:24px;}#team-banner.team-banner .job-title{-webkit-animation-delay:1.6s;animation-delay:1.6s;}#staff-images{/**************************************

PARALLAX SECTION ON HOMEPAGE


***************************************/}#staff-images .ms-item:nth-child(2),#staff-images .ms-item:nth-child(4){width:66.666%;}.parallax{min-height:550px;/*******************porfolio *************************/}#portfolio,#meet-the-team{background-color:#ecf0f1;}#portfolio .ms-item,#meet-the-team .ms-item{width:25%;}.portfolio figcaption a,.portfolio figcaption a:visited,.portfolio figcaption .project-title{font-size:24px;}.client-name{font-size:48px;font-weight:800;}.client-name:after{display:block;position:relative;width:50px;height:2px;background-color:#1b1b1b;content:"";margin:5px 0;}.noBg .client-name:after{background-color:#fff;}#ciniva-map{height:480px;}}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){/******************************************************************
Site Name: 
Author: 

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************//* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*//*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/}@media print{/******************************************************************
Site Name:
Author:

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. If you want to
though, go for it.

******************************************************************/*{background:transparent !important;color:black !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important;}a,a:visited{color:#444 !important;text-decoration:underline;}a:after,a:visited:after{content:" (" attr(href) ")";}a abbr[title]:after,a:visited abbr[title]:after{content:" (" attr(title) ")";}.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;}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;}.sidebar,.page-navigation,.wp-prev-next,.respond-form,nav{display:none;}}html #wpadminbar{z-index:999999999 !important;}#scroll-down{display:block;position:absolute;width:40px;height:80px;overflow:hidden;border-radius:40px;border:1px solid #fff;bottom:15px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:9999;}.scroll-ball{display:block;position:absolute;width:20px;height:20px;background-color:transparent;top:0;left:50%;margin:0 0 0 -10px;}.scroll-ball:after{display:block;position:absolute;top:0;left:0;width:100%;height:100%;text-align:center;line-height:20px;font-family:'FontAwesome';font-size:16px;content:"\f078";color:#fff;}#ball-1{-webkit-animation:scrollBalls 1.3s ease 0s infinite normal;animation:scrollBalls 1.3s ease 0s infinite normal;}#ball-2{-webkit-animation:scrollBalls 1.3s ease 0.6s infinite normal;animation:scrollBalls 1.3s ease 0.6s infinite normal;}#ball-3{-webkit-animation:scrollBalls 1.3s ease 1s infinite normal;animation:scrollBalls 1.3s ease 1s infinite normal;}#ball-4{-webkit-animation:scrollBalls 1.3s ease 1.6s infinite normal;animation:scrollBalls 1.3s ease 1.6s infinite normal;/* SCROLL CIRCLE */}#scroll-down-cir{display:block;position:absolute;width:30px;height:30px;bottom:15px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:9999;background-color:#fff;text-align:center;line-height:30px;color:#1b1b1b;font-size:16px;border-radius:50%;/*********************************************************************

CUSTOM STYLE FOR  ANIMAION FROM 1024 TO 1600 BREAK POINT
****************************************************************************/}#scroll-down-cir:before,#scroll-down-cir:after{display:block;position:absolute;content:"";width:40px;height:40px;top:-5px;left:-5px;background-color:rgba(255, 255, 255, .6);border-radius:50%;z-index:-1;}#scroll-down-cir:after{width:50px;height:50px;background-color:rgba(255, 255, 255, .3);top:-10px;left:-10px;}@media screen and (min-width:1024px) and (max-width:1600px){#clock-face{width:550px;height:550px;}.clock-circle{width:150px;height:150px;}#circle-left .clock-big,#circle-right .clock-big,#circle-bottom .clock-big{font-size:30px;}.bold-num{font-size:100px;}#home-banner{min-height:800px;}.with-hover .service-hover{width:100px;height:100px;left:-150px;top:-30px;}.with-hover .service-hover:before{width:130px;height:130px;}.with-hover .service-hover:after{width:150px;height:150px;}.service-name i{font-size:24px;}.small{font-size:12px;}}