/*
Theme Name: Aeris
Theme URI: http://themeforest.net/user/everislabs
Author: EverisLabs
Author URI: http://everislabs.com
Description: Flexible Multipurpose WordPress Theme
Version: 1.0
Tags: responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: aeris
License:
License URI:
*/

/* Table of Contents
-------------------------------------------------------------- 

    01 Basic Style
    02 Typography & Ultility
        - Button
        - Display
        - Icon
        - Meta
        - Form
        - Progress Bar
        - Alert
        - Colors
        - Background Image
        - Background Video
        - Background Gradient
        - Background Overlays
    03 Preloader
    04 Main Container
    05 Navigation
        - Navigation Style
        - White Navigation
    06 Hero
    07 About
    08 Team
        - Team Bio
    09 Skills
    10 Service
    11 Statistic
    12 Works
    13 Clients
    14 Pricing Table
    15 Twitter Feed
    16 Contact
    17 Layout
    18 Page
    19 Comment
    20 Sidebar
        - Widget List Format
        - Calendar Widget
    21 Project Page
    22 Footer
        - Pagination
    23 Visual Composer Elements
    24 WordPress
        - Thumbnail
        - 404
        - WPML
        - ETC

/* ==========================================================================
   BASIC STYLE
   ========================================================================== */
   
html,
body{
    width: 100%;
    height: 100% !important;
    min-height: 100% !important;
}
body{
    font-family: "Vollkorn", "Palatino", "Georgia", "Times New Roman", "Baskerville", serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
body.overflow-hidden{
    overflow: hidden;
}

::-moz-selection{ color: #fff; background:#dc4437; }
::selection{ color: #fff;   background:#dc4437; }
::-webkit-selection{ color: #fff;   background:#dc4437; }

header,section,footer {
    position: relative;
}

a{
    color: #dc4437;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover, a:focus {
    color: #bb2d21;
}
*:focus {
    outline: none;
}
    
h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}
h1,h2,h3{
    font-weight: 700;
}


/* ==========================================================================
   TYPOGRAPHY & UTILITY
   ========================================================================== */
   
h1.text-dark,
h2.text-dark,
h3.text-dark,
h4.text-dark,
h5.text-dark,
h6.text-dark,
p.text-dark,
.text-dark{
    color: #222222;
}
h1.text-white,
h2.text-white,
h3.text-white,
h4.text-white,
h5.text-white,
h6.text-white,
p.text-white,
.text-white{
    color: #ffffff;
}
h1.text-brand,
h2.text-brand,
h3.text-brand,
h4.text-brand,
h5.text-brand,
h6.text-brand,
p.text-brand,
.text-brand{
    color: #dc4437;
}
.text-uppercase{
    text-transform: none;
}
.text-lowercase{
    text-transform: lowercase;
}
.text-normal{
    font-weight: normal;
}
.text-serif{
    font-family: "Vollkorn", "Palatino", "Georgia", "Times New Roman", "Baskerville", serif;
}
.text-sans-serif{
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}
@media only screen and (min-width: 40.063em){
    .text-spacer{
        display: inline-block;
        text-align: center;
        width: 1.25rem;
        width: 20px;
    }
}

/* Buttons */
button, .button,
button.brand, .button.brand{
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    -webkit-transition: background 0.3s ease-out;
    transition: background 0.3s ease-out;
    background-color: #dc4437;
    border-color: #bb2d21;
}
button:hover, button:focus, .button:hover, .button:focus ,
button.brand:hover, button.brand:focus, .button.brand:hover, .button.brand:focus {
    background-color: #bb2d21;
    outline:0;
}

button.ghost, .button.ghost {
    border-style: solid;
    border-width: 2px;
    cursor: pointer;
    background-color: transparent;
    border-color: #333;
    color: #333;
}
button.ghost:hover, button.ghost:focus, .button.ghost:hover, .button.ghost:focus {
    background-color: #333;
    color: white;
}
button.ghost.white, .button.ghost.white {
    border-color: #fff;
    color: #fff;
}
button.ghost.white:hover, button.ghost.white:focus, .button.ghost.white:hover, .button.ghost.white:focus {
    background-color: #1d1d1d;
    color: #333;
}
button.ghost.brand, .button.ghost.brand {
    border-color: #dc4437;
    color: #dc4437;
    background-color: transparent;
}
button.ghost.brand:hover, button.ghost.brand:focus, .button.ghost.brand:hover, .button.ghost.brand:focus {
    background-color: #dc4437;
    color: #fff;
}
button.clear, .button.clear {
    color: #333;
    background-color: transparent;
    border-color: transparent;
}
button.clear:hover, .button.clear:hover {
    background-color: #efefef;
}
.button.action{
    position: relative;
}
.button.action:after{
    position: absolute;
    width: 1px;
    height: 500px;
    bottom: -520px;
    left: 50%;
    content: '';
    background-color: #222222;
}
.button.white.action:after{
    background-color: #1d1d1d;
}

/* Displays */
.display-table{
    display: table;
    width: 100%;
    height: 100%;
}
.display-table-cell{
    display: table-cell;
    vertical-align: middle;
}
.padding-small{
    padding: 20px;
}
.padding-medium{
    padding: 60px;
}
.padding-large{
    padding: 100px;
}
.padding-t-small{
    padding: 20px 0 0;
}
.padding-t-medium{
    padding: 60px 0 0;
}
.padding-t-large{
    padding: 100px 0 0;
}
.padding-v-small{
    padding: 20px 0;
}
.padding-v-medium{
    padding: 60px 0;
}
.padding-v-large{
    padding: 100px 0;
}
.row.row-wide,
.row-wide{
    max-width: 73.125rem;
}
.row-full-width{
    max-width: 100%;
}

/* Icons */
.icon.block{
    display: block;
    width: 100%;
    text-align: center;
}
.icon.large{
    font-size: 36px;
    font-size: 2.250rem;
}
.icon.xlarge{
    font-size: 48px;
    font-size: 3rem;
}
.icon.brand{
    color: #dc4437;
}
.action-buttons{
    margin-top: 40px;
    margin-top: 2.5rem;
}

/* Meta */
.meta{
    color: #999999;
    color: rgba(0,0,0,.75);
}

/* Form */
.form-ghost{}
.form-ghost input[type=text],
.form-ghost input[type=email],
.form-ghost textarea{
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: 1px solid #222222;
}
.form-ghost .error input[type=text],
.form-ghost .error input[type=email],
.form-ghost .error textarea{
    margin-bottom: 16px;
    margin-bottom: 1rem;
    border: 1px solid #f04124;
    box-shadow: inset 0 0 0 1px #f04124;
}
.form-ghost input[type=text]:focus,
.form-ghost input[type=email]:focus,
.form-ghost textarea:focus{
    outline: none;
}
@media only screen and (min-width: 40.063em){
    .form-ghost input[type=text],
    .form-ghost input[type=email],
    .form-ghost textarea,
    .form-ghost .error input[type=text],
    .form-ghost .error input[type=email],
    .form-ghost .error textarea{
        margin-bottom: 24px;
        margin-bottom: 1.5rem;
    }
}

/* Progress Bar*/
.progress{
    height: 8px;
    margin-bottom: 1rem;
    padding: 0;
    border: none;
}
.progress .meter{
    background: #333333;
}

/* Alert */
.alert-box{
	font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}

@media only screen and (min-width: 40.063em){
	.tabs:not(.vertical) .tab-title a span{
		display: inline !important;
	}
	.tabs.vertical dd a{
		border-right: 1px solid #dfdfdf;
	}
	.tabs.vertical dd.active a, .tabs.vertical .tab-title.active a {
		border-right-color: #ffffff;
	}
	.tabs-content.vertical>.content {
		padding: 0 0.9375rem;
	}
}

/* Colors */
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark p,
.dark blockquote,
.dark blockquote cite,
.dark{
    color: #fff;
}
header,
.section{
    width: 100%;
    background: #CCC;
    overflow: hidden;
    background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/blog-bg.jpg);
}
header.dark,
.section.dark{
    background: #1d1d1d;
}
.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark h5,
.section.dark h6,
.section.dark p,
.section.dark a:not(.button),
.section.dark{
    color: #fff;
    font-weight: bold;
}
.row.section-title,
.section-title{
    margin-bottom: 80px;
    margin-bottom: 5rem;
}
.section-title h2{
    position: relative;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
}
.section-title h2:after{
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 6px;
    width: 40px;
    background: #dc4437;
    content: "";
}
.section-title.text-center h2:after{
    left: 50%;
    width: 40px;
    margin-left: -20px;
}
.section-title p{
    color: #999;
}
.section.dark .section-title h2{
    color: #fff;
}
.section.dark .section-title p{
    color: #dfdfdf;
}

.subsection{
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
}
.subsection.dark{
    background: #1d1d1d;
}
.subsection.brand{
    background: #dc4437;
}
.subsection.dark h1,
.subsection.dark h2,
.subsection.dark h3,
.subsection.dark h4,
.subsection.dark h5,
.subsection.dark h6,
.subsection.dark p,
.subsection.dark,
.subsection.brand h1,
.subsection.brand h2,
.subsection.brand h3,
.subsection.brand h4,
.subsection.brand h5,
.subsection.brand h6,
.subsection.brand p,
.subsection.brand a:not(.button),
.subsection.brand{
    color: #fff;
}
.subsection h4.subsection-title{
    font-weight: 700;
    text-transform: uppercase;
}
.subsection p.subsection-desc{
    color: #999;
}
.subsection.dark p.subsection-desc,
.subsection.brand p.subsection-desc{
    color: #eaeaea;
}
.subsection .button.subsection-button{
    margin: 8px 0 0;
    margin: .5rem 0 0;
}
@media only screen and (min-width: 40.063em){
    .section-title h2{
        margin-bottom: 20px;
        margin-bottom: 1.25rem;
    }
    .section-title h2:after{
        bottom: -10px;
    }
	.section-title.text-center h2{
		margin-bottom: 40px;
		margin-bottom: 2.5rem;
	}
	.section-title.text-center h2:after{
		left: 50%;
		bottom: -20px;
		margin-left: -20px;
	}
    .subsection p.subsection-desc{
        margin-bottom: 0;
    }
}

/* Background Image */
.background-image {
    position:absolute;
    left:-10%;
    top:-10%;
    width:120%;
    height:120%;
    background-repeat:no-repeat;
    background-position:center;
    background-size: cover;
}

/* Background Video */
.background-video {
    position:absolute;
    left:-5%;
    top:-5%;
    width:110%;
    height:110%;
}

/* Background Gradient */
.background-gradient{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    opacity: .95;
	background: -webkit-linear-gradient(90deg, #bb2d21 10%, #dc4437 90%); /* Chrome 10+, Saf5.1+ */
	background:    -moz-linear-gradient(90deg, #bb2d21 10%, #dc4437 90%); /* FF3.6+ */
	background:     -ms-linear-gradient(90deg, #bb2d21 10%, #dc4437 90%); /* IE10 */
	background:      -o-linear-gradient(90deg, #bb2d21 10%, #dc4437 90%); /* Opera 11.10+ */
	background:         linear-gradient(90deg, #bb2d21 10%, #dc4437 90%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bb2d21', endColorstr='#dc4437',GradientType=0 ); /* IE6-9 */
}

/* Background Overlays */
.background-overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.25);
}
.background-overlay.shade-50{
    background:rgba(0, 0, 0, 0.50);
}
.background-overlay.shade-75{
    background:rgba(0, 0, 0, 0.75);
}
.background-overlay.shade-95{
    background:rgba(0, 0, 0, 0.95);
}
.background-overlay.shade-0 {
    background: transparent;
}



/* ==========================================================================
   PRELOADER
   ========================================================================== */

/* Animate CSS after page load */
.preload *{
    overflow: hidden;
    -webkit-transition: none !important;
    transition: none !important;
}
#preloader{
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:99999; /* makes sure it stays on top */
    background: #0c4b61;
    background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/tone-background.jpg); /* change if the mask should have another color then white */ 
}

.spinner {
  position:absolute;
  top:50%; /* centers the loading animation vertically one the screen */
  left:50%; /* centers the loading animation horizontally one the screen */
  margin:-100px 0 0 -100px; /* is width and height divided by two */
  width: 200px;
  height: 2000px;
  background: none !important;
}

.cube1 {
  background-color: #0f415f;
  /* background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/icon.png); */ 
  background-image: url(//subaeria.com/wp-content/uploads/2018/04/appIcon_subaeria_50.png);
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
}

.cube2 {
  background-color: none;
  background-image: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cubemove 1.8s infinite ease-in-out;
  animation: cubemove 1.8s infinite ease-in-out;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes cubemove {
  25% { -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5) }
  50% { -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg) }
  75% { -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5) }
  100% { -webkit-transform: rotate(-360deg) }
}

@keyframes cubemove {
  25% { 
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  } 50% { 
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  } 50.1% { 
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  } 75% { 
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  } 100% { 
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}

.older-spinner{
    position:absolute;
    top:50%; /* centers the loading animation vertically one the screen */
    left:50%; /* centers the loading animation horizontally one the screen */
    margin:-32px 0 0 -32px; /* is width and height divided by two */
    width: 90px;
    height: 90px;
    background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/spinner.png) !important;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
    }

.old-spinner{
    position:absolute;
    top:50%; /* centers the loading animation vertically one the screen */
    left:50%; /* centers the loading animation horizontally one the screen */
    margin:-32px 0 0 -32px; /* is width and height divided by two */
    width: 50px;
    height: 50px;
    border-radius: 50%
    background-color: #ec7900;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
}
/* Hide element before animation */
.animate{
    visibility: hidden;
    -webkit-animation: none;
    -ms-animation: none;
    animation: none;
}
/* Show element after animation */
.animated{
    visibility: visible;
}

@-webkit-keyframes rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}



/* ==========================================================================
   MAIN CONTAINER
   ========================================================================== */

#main {
    position: relative;
    display: block;
    z-index: 2;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#main.slide-out {
    /* the #main element slides to the left when the team bio is visible */
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}
#main.slide-out .cd-overlay {
    /* the overlay layer gets visible when the team bio slides in */
    display: block;
    -webkit-animation: cd-fade-in 0.3s;
    animation: cd-fade-in 0.3s;
}
@media only screen and (min-width: 40.063em) {
    #main.slide-out {
        /* change in size of the team bio section */
		-webkit-transform: translateX(-600px);
		-ms-transform: translateX(-600px);
		transform: translateX(-600px);
    }
}
@media only screen and (min-width: 64.063em) {
    #main.slide-out {
		-webkit-transform: translateX(-800px);
		-ms-transform: translateX(-800px);
		transform: translateX(-800px);
    }
}



/* ==========================================================================
   NAVIGATION
   ========================================================================== */
   
/* Navigation Style */
#navigation-container{
    font-family: inherit;
    background: #1d1d1d;
}
#navigation-container.navigation-white{
    border-bottom: 0px solid #dfdfdf;
    background: #1d1d1d;
    background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
}
#navigation-container.fixed{
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
.top-bar{
    height: 60px;
    line-height: 60px;
    background: #1d1d1d;
}
#main.slide-out .top-bar{
    display: none;
}
.top-bar .name,
.top-bar .name h1{
    height: 60px;
    line-height: 60px;
    text-transform: none;
    font-size: 1.5em;
    font-weight:900;
    color: #ec7900;
}

.top-bar .name .logo{
    padding-left: 12px;
    max-height: 45px;
}
.top-bar-section {
    left: 0;
    position: relative;
    width: auto;
}
.top-bar.expanded .title-area {
    background: #1d1d1d;
}
.fixed.expanded:not(.top-bar) .top-bar-section {
    margin-top: 60px;
}
.top-bar-section ul li {
    background: #1d1d1d;
}
.top-bar .top-bar-section ul li > a{
    font-family: inherit;
    text-transform: none;
     font-size: 1.2em;
    font-weight:900;
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
}
.top-bar .top-bar-section ul li.active > a {
    background: #dc4437;
}
.top-bar-section ul li > a.button.brand {
    background-color: #dc4437;
    border-color: #bb2d21;
}
.top-bar-section ul li > a.button.brand:hover, .top-bar-section ul li > a.button.brand:focus {
    background-color: #bb2d21;
}
.top-bar-section .has-form {
    height: 60px;
}
@media only screen and (min-width: 40.063em){
    .top-bar .top-bar-section .dropdown {
        opacity: 0.3;
        -webkit-transition: opacity 0.2s, -webkit-transform 0.5s;
        transition: opacity 0.2s, transform 0.5s;
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .top-bar .top-bar-section .has-dropdown.hover>.dropdown,
    .top-bar .top-bar-section .has-dropdown.not-click:hover>.dropdown {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .top-bar .top-bar-section li:not(.has-form) a:not(.button) {
        line-height: 60px;
        background: #1d1d1d;
    }
    .top-bar .top-bar-section li:not(.has-form) a:not(.button):hover {
        background-color: #555555;
        background: #272727;
    }
    .top-bar .top-bar-section li.active:not(.has-form) a:not(.button) {
        background: #dc4437;
    }
    .top-bar .top-bar-section .has-form {
        background: #1d1d1d;
    }
    .top-bar .top-bar-section .has-dropdown > a:after {
        top: 30px
    }
    .top-bar input, .top-bar .button, .top-bar button {
        top: 16px;
    }
    .top-bar .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
        background: #1d1d1d;
    }
    .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
        background-color: #555555;
        background: #272727;
    }
}

/* White Navigation */
.navigation-white .top-bar{
    background: #1d1d1d;
    color: #222222;
    font-weight: bold !important;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
}
.navigation-white .top-bar .title-area {
    background: #1d1d1d;
    border-bottom: 0px solid #dfdfdf;
}
.navigation-white .top-bar .name h1 a{
    color: #222222;
}
.navigation-white .top-bar .top-bar-section ul li {
    background: #1d1d1d;
}
.navigation-white .top-bar .top-bar-section ul li > a:not(.button) {
    color: #ec7900;
}
.navigation-white .top-bar .toggle-topbar.menu-icon a {
    color: #ec7900 !important;
}
.navigation-white .top-bar .toggle-topbar.menu-icon a span:after {
    box-shadow: 0 0px 0 1px #222222, 0 7px 0 1px #222222, 0 14px 0 1px #222222;
}
.navigation-white .top-bar .top-bar-section .has-dropdown > a:after {
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.4);
}
.navigation-white .top-bar .top-bar-section .dropdown li.title h5 a,
.navigation-white .top-bar .top-bar-section .dropdown li.parent-link a {
    color: #222222;
}
.navigation-white .top-bar .top-bar-section ul li:hover:not(.has-form) > a {
    background-color: #efefef;
    background: #efefef;
    color: #222222;
}
.navigation-white .top-bar .top-bar-section li.active:not(.has-form) a:not(.button) {
    color: #dc4437;
    background: #1d1d1d;
}
.parent-link.js-generated{
    display: none !important;
}

@media only screen and (min-width: 40.063em){
     .navigation-white .top-bar{
        background: #1d1d1d;
        background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
        color: #222222;
        font-weight: bold !important;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
    }
    .navigation-white .top-bar .title-area {
        border-bottom: none;
        background: #1d1d1d;
        background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
    }
    .navigation-white .top-bar .top-bar-section li:not(.has-form) a:not(.button) {
        color: #ec7900;
        background: #1d1d1d;
        background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
    }
    .navigation-white .top-bar .top-bar-section li:not(.has-form) a:not(.button):hover {
        color: #3399cc;
        background-color: #1d1d1d;
        background: #1d1d1d;
    }
    .navigation-white .top-bar .top-bar-section .has-dropdown > a:after {
        border-color: rgba(0, 0, 0, 0.4) transparent transparent transparent
    }
    .navigation-white .top-bar .top-bar-section .dropdown {
        border: 0px solid #dfdfdf;
    }
    .navigation-white .top-bar .top-bar-section .dropdown li:not(.has-form):not(.active) > a:not(.button) {
        background: #1d1d1d;
        background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
    }
    .navigation-white .top-bar .top-bar-section .dropdown li:not(.has-form):not(.active):hover > a:not(.button) {
        color: #3399cc;
        background: #1d1d1d;
        background: #1d1d1d;
    }
}



/* ==========================================================================
   HERO
   ========================================================================== */

#hero-slider{
    position: relative;
    height: 100%;
    margin-left: 0;
}

/* Rotating Text */
.rotating-text{
    margin-left: 0;
}



/* ==========================================================================
   ABOUT
   ========================================================================== */

#about .featured-image{
    position: relative;
    text-align: center;
    border-bottom: 1px solid #fefefe;
    overflow: hidden;
}

#about .featured-image:after{
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    content: '';
    border-radius: 50%;
    box-shadow:0 0 75px rgba(0, 0, 0, 0.5);
}

/* Featured Carousel */
#featured-carousel{
    padding-top: 60px;
    padding-top: 3.75rem;
}



/* ==========================================================================
   TEAM
   ========================================================================== */

.team-person{
    position: relative;
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
    text-align: center;
    overflow:hidden;
}
.team-person a{
    display: block;
    width: 100%;
    height: 100%;
}
.team-person img{
    width: 100%;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.team-person a:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.team-person .team-person-info{
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgb(220, 68, 55);
    background: rgba(220, 68, 55, .95);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.team-person a:hover .team-person-info{
    opacity: 1;
}
.team-person .team-person-info .team-person-info-detail {
    opacity: 0;
    -webkit-transform: translateY(65%);
    -ms-transform: translateY(65%);
    transform: translateY(65%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;

}
.team-person a:hover .team-person-info .team-person-info-detail{
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.team-person .team-person-info .team-person-info-detail .name,
.team-person .team-person-info .team-person-info-detail .position{
    color: #fff;
}
.team-person .team-person-info .team-person-info-detail .position{
    font-family: "Vollkorn", "Palatino", "Georgia", "Times New Roman", "Baskerville", serif;
}

/* Team Bio */
.team-bio {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* smooth scrolling on mobile phones and tablets */
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    z-index: 1;
    /* this how we move the team bio section off the canvas */
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.team-bio.slide-in {
    /* the team bio section slides in when the user clicks on the team member picture */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.team-bio img {
    width: 100%;
    display: block;
}
.team-bio .team-bio-content {
    padding: 2em;
}
.team-bio .team-bio-content h1 {
    position: relative;
    text-transform: uppercase;
}
@media only screen and (min-width: 40.063em) {
    .team-bio {
    width: 600px;
    -webkit-transform: translateX(600px);
    -ms-transform: translateX(600px);
    transform: translateX(600px);
    }
    .team-bio .team-bio-content {
        padding: 2em 4em;
    }
}
@media only screen and (min-width: 64.063em) {
  .team-bio {
    width: 800px;
    -webkit-transform: translateX(800px);
    -ms-transform: translateX(800px);
    transform: translateX(800px);
  }
  .team-bio .team-bio-content {
    padding: 4em 8em;
  }
  .no-cssgradients .team-bio .team-bio-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.team-bio-close {
    width: 32px;
    height: 32px;
    overflow: hidden;
    position: fixed;
    top: 10px;
    right: 10px;
    background: url("assets/img/cd-icon-close.svg") no-repeat center center;
    text-indent: 100%;
    white-space: nowrap;
    z-index: 3;
    display: none;
}
.team-bio-close.is-visible {
	display: block;
	-webkit-animation: cd-move-in 0.8s;
	animation: cd-move-in 0.8s;
}
@media only screen and (min-width: 64.063em) {
  .team-bio-close {
    right: 20px;
    top: 20px;
  }
}

.cd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    cursor: pointer;
    display: none;
}

/* -------------------------------- 

xkeyframes 

-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}


/* ==========================================================================
   SKILLS
   ========================================================================== */

.skills-bar {
    margin: 0px;
}
.skills-bar li {
    list-style: none;
}
.skills-bar li:last-child span {
    margin-bottom: 0px;
}
.skills-bar li .bar-wrap {
    margin-bottom: 28px;
    background: rgba(0,0,0,.1);
}
.skills-bar li span {
    position: relative;
    height: 8px;
    width: 0px;
    display: block;
    overflow: visible !important;
}
.skills-bar li span strong {
    position: absolute;
    right: -21px;
    top: -28px;
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 12px;
    color: #666;
    background: #fff;
    display: block;
    padding: 4px 8px;
    opacity: 0;
    border-radius: 4px;
}
.skills-bar li span strong:after {
    position: absolute;
    left: 16px;
    bottom: -4px;
    display: block;
    width: 0;
    content: "";
    border-color: #fff transparent;
    border-style: solid;
    border-width: 5px 5px 0;
}
.skills-bar li span strong.full:after {
    left: 20px;
}
.skills-bar li span {
    background: #dc4437;
}



/* ==========================================================================
   SERVICE
   ========================================================================== */

.service-block .service-item{
    padding: 20px 16px;
    padding: 1.25rem 1rem;
    overflow: hidden;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}
.service-block .service-item .service-icon{
    color: #dc4437;
    margin-right: 12px;
    margin-right: .75rem;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.service-block .service-item:hover{
    background: #dc4437;
}
.service-block .service-item .service-desc{
    overflow: hidden;
}
.service-block .service-item .service-desc p{
    margin-bottom: 0;
}
.service-block .service-item:hover .service-icon,
.service-block .service-item:hover .service-desc,
.service-block .service-item:hover .service-desc h4{
    color: #fff;
}
@media only screen and (min-width: 40.063em) {
    .service-block .service-item .service-icon{
        float: left;
    }
}


/* ==========================================================================
   STATISTIC
   ========================================================================== */
   
.statistic-block .statistic-item{
    height: 160px;
    text-align: center;
}
.statistic-block .statistic-item .statistic-info{
    color: #999;
}



/* ==========================================================================
   WORKS
   ========================================================================== */

.filtering { text-align: center; display: none; margin-left: 0}
.filter {
    position: relative;
    display: inline-block;
    margin: 0 16px 24px 16px;
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    opacity: .35;
    filter: alpha(opacity=35);
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.filter.active,
.filter:hover {
    opacity: 1;
    filter: alpha(opacity=100);
}
.filter.active:after{
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    content: '';
    background: #dc4437;
}
.work-grid {
	margin: 0;
	text-align: center;
	font-size: 0;
}
.work-item {
	display: inline-block;
	margin: 0;
    overflow: hidden;
}
.work-item a {
	position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.work-item a:hover { 
    cursor: url('assets/img/cursors/cursor.png') 30 30, crosshair;
}
.work-item a img {
    width: 100%;
    -webkit-transition: all0.3s ease-out;
    transition: all 0.3s ease-out;
}
.work-item a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.work-item a .work-info {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(220, 68, 55);
    background: rgba(220, 68, 55, .95);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.work-item a:hover .work-info {
    opacity: 1;
}
.work-item a .work-info .work-info-detail  {
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(65%);
    -ms-transform: translateY(65%);
    transform: translateY(65%);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.work-item a:hover .work-info .work-info-detail  {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.work-item a .work-info .work-info-detail  h4,
.work-item a .work-info .work-info-detail  p{
    color: #fff;
}
.work-item a .work-info .work-info-detail  p{
    margin-bottom: 0;
}
.work-item a .work-info .work-info-detail h4:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: rgb(255, 255, 255);
    background: rgba(255, 255, 255, .75);
    margin: 10px auto;
}
.thumbnail {
    width: 100%;
}
.mix { opacity: 0; display: none; }
.gap{
	display: inline-block;
    width: 100%;
	height: 0;
	margin: 0;
}
@media only screen and (min-width: 40.063em) {
    .filtering { display: block; }
    .thumbnail,.gap { width: 50%; }
}
@media only screen and (min-width: 64.063em) {
    .thumbnail,.gap { width: 33.3333333%; }
}



/* ==========================================================================
   CLIENTS
   ========================================================================== */

#clients{}
#testimony-carousel .item{
    text-align: center;
}
#testimony-carousel img{
    margin-bottom: 10px;
    border: 0px solid #1d5466;
    border-radius: 50%;
    box-shadow:
    0 1px 0px #134a69,
    1px 0 0px #5dabcd,
    1px 2px 1px #134a69,
    2px 1px 1px #5dabcd,
    2px 3px 2px #134a69;
    /*box-shadow: 0 0 0px rgba(8,8,8, .3);*/
}
#testimony-carousel blockquote{
    font-size: 1.2rem;
    border-left: none;
    padding: 0 1.25rem;
}
#testimony-carousel blockquote span:before
{
    content: nothing;
}
#testimony-carousel blockquote span:after
{
    content: nothing;
}*/
#testimony-carousel blockquote cite{
    margin-top: 10px;
}
/*#testimony-carousel blockquote cite:after{
    content: "\0020 \2014";
}*/



/* ==========================================================================
   PRICING TABLE
   ========================================================================== */

.pricing-table{
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    border: 1px solid #cccccc;
    border-radius: 8px;
}
.dark .pricing-table{
    border: 1px solid #333;
}
.pricing-table li:first-child{
    -webkit-border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.pricing-table li:last-child{
    -webkit-border-bottom-right-radius: 8px;
    -webkit-border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.pricing-table .price,
.pricing-table .title{
    padding: 40px;
    padding: 2.5rem;
}
.pricing-table .price{
    background: #efefef;
    font-weight: 700;
}
.pricing-table .description,
.pricing-table .bullet-item{
    font-size: 16px;
    font-size: 1rem;
    font-weight: normal;
    border: 1px solid #efefef;
}
.pricing-table .bullet-item i{
    display: block;
}
.pricing-table .cta-button{
    background: #efefef;
}
.pricing-table.brand .title{
    background: #dc4437;
}
.pricing-table.brand .cta-button{
    background: #efefef;
}



/* ==========================================================================
   TWITTER FEED
   ========================================================================== */

#twitter-feed{
    min-height: 60px;
}
#twitter-feed .user span{
    display: none;
}
#twitter-feed .user span:last-child,
#twitter-feed .user span[data-scribe="element:screen_name"]{
    display: block;
	font-size: 24px;
	font-size: 1.5rem;
    margin-bottom: 0.83333rem;
}
#twitter-feed .user img{
    display: none;
}
#twitter-feed .timePosted{
    color: #dfdfdf;
    font-size: .75rem;
    font-size: 12px;
	margin-bottom: 0;
}
#twitter-feed .tweet{
    padding: 0 20px;
}
#twitter-feed .tweet a{
    color: #ec7900;
}
#twitter-feed .tweet a:hover{
    color: #999999;
}



/* ==========================================================================
   CONTACT
   ========================================================================== */

#contact{}

.contact-address{
    font-family: inherit;
}
.contact-address li{
    position: relative;
    padding: 8px;
    border-bottom: 0px solid #efefef;
}
.contact-address li .address-icon{
    position: absolute;
    top: 10px;
    left: 0;
    color: #ec7900;
}
.contact-address li .address-detail{
    margin-left: 24px;
}



/* ==========================================================================
   MAP
   ========================================================================== */
   
.map-block{
    position: relative;
    height: 100px;
    overflow: hidden;
}
#map{
    width: 100%;
    height: 300px;
    background: #eaeaea;
}
#map img{ max-width: none !important; }

#map .map-info{
    line-height: 1.35;
    overflow: hidden;
    white-space: nowrap;
}
#map .map-address,
#map .map-tel,
#map .map-mail{
    padding: 4px;
}

.map-block .map-open{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.75);
    -webkit-transition: background 0.2s ease-out;
    transition: background 0.2s ease-out;
}
.touch .map-block .map-open{ background: rgba(0,0,0,0.65); }
.map-block .map-open .icon{
    display: block;
    line-height: 115px;
}
.map-block .map-open:hover{
    background: rgba(0,0,0,0.65);
}
.map-block .map-close{
    font-family: "Montserrat", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    position: absolute;
    bottom: -24px;
    left: 50%;
    width: 100px;
    height: 32px;
    font-size: .75rem;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    margin-left: -50px;
    padding: 8px;
    color: #333333;
    background: rgba(255,255,255,.75);
    border: 1px solid #fefefe;
    -webkit-border-top-left-radius: 2px;
    -webkit-border-top-right-radius: 2px;
    -moz-border-radius-topleft: 2px;
    -moz-border-radius-topright: 2px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    box-shadow: 0 0 2px rgba(8,8,8, .3);
    display: none;
}
.map-block .map-close:hover{
    background: rgba(220,220,220,.75);
    border-color: #dfdfdf;
}
.map-block .map-close .icon-map{
    margin-right: 2px;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
#sidebar-content #content {
    float: right;
}

/* ==========================================================================
   PAGE
   ========================================================================== */
 
.page-head-meta{
    font-weight: normal;
}
.page-head-title a,
.page-head-meta a{
    color: #ffffff;
}
.page-head-title a:hover,
.page-head-meta a:hover{
    color: #999999;
}

.post .post-title{
    margin-bottom: 20px;
    margin-bottom: 1.25rem;
}
.post .post-title a{
    color: #333;
}
.post .post-title a:hover{
    color: #bb2d21;
}
.post .meta{
    color: #999;
    font-size: .75rem;
    font-size: 12px;
}
.post .post-meta{
    margin-bottom: 1.25rem;
    margin-bottom: 20px;
    padding-top: 20px;
}
.post .post-single{
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    border-bottom: 0px solid #eaeaea;
}

.post .post-single.post-detail{
    margin-bottom: 0;
    padding-bottom: 40px;
}
.post .post-detail .post-content p:first-child{
    font-size: 24px;
    font-size: 1.5rem;
}
.post.sticky {
    position: static;
}
.post .flex-video iframe {
    border: 0;
}

.post-meta a {
    color: #6f6f6f;
}
.post-meta a:hover {
    color: #DC4437;
}
.post-meta span {
    margin-right: 20px;
    display: inline-block;
}

/* Sticky Flag */
.sticky .sticky-flag {
    border-radius: 4px;
    color: #333;
    display: inline-block;
    padding: 0.325rem 1.15rem 0.225rem 1.25rem;
    text-transform: uppercase;
    font-size: 0.6875rem;
    background-color: #DC4437;
    color: #fff;
}


/* ==========================================================================
   COMMENT
   ========================================================================== */
   
.comment {
    padding-top: 20px;
}
.comment .comment-list {
    margin: 0 0 40px 0;
    padding: 0;
}
.comment .comment-list li {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    clear: both;
}
.comment .comment-list ul {
    margin: 0 0 0 11%; /* relative value */
    padding: 0;
}
.comment .comment-list .comment-block {
    overflow: hidden;
    margin-bottom: 1.25em;
    border-bottom: 1px solid #eaeaea;
}
.comment .comment-list  .comment-avatar img {
    float: left;
    margin: 0 20px 20px 0;
    border-radius: 50%;
}
.comment .comment-list .comment-reply-link{
    margin-bottom: 1em;
    font-size: 12px;
    font-size: .75rem;  
}
.comment .comment-list .comment-head .comment-date{
    color: #999999;
    font-size: 12px;
    font-size: .75rem;  
}
.comment .subheader,
.comment-form .subheader{
    margin-bottom: 2.5rem;
}
.no-comment-grap {
    margin-top: 20px;
}



/* ==========================================================================
   SIDEBAR
   ========================================================================== */
   
.sidebar{
    padding-top: 80px;
    padding-top: 5rem;
}
@media only screen and (min-width: 40.063em){
    .sidebar{
        padding-top: 0;
    }
}
.widget{
    margin-bottom: 2.5rem;
}

/* Widget List Format */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget ul ul {
    padding-left: 20px;
    border-top: 0px solid #eaeaea;
    margin-top: 0.5rem;
}
.widget ul li {
    padding: 0.5rem 0;
    border-bottom: 0px solid #eaeaea;
}
.widget ul li:first-child {
    padding-top: 0;
}
.widget ul li li:first-child {
    padding-top: 0.5rem;
}
.widget ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.widget:last-child{
    border-bottom: none;
}
.widget .widget-title{
    text-transform: uppercase;
}
.widget .widget-title h3{
    font-size: 1.125rem;
    letter-spacing: 2px;
}
.widget_categories li,
.widget_archive li {
    text-align: right;
    overflow: hidden;
}
.widget_categories li a,
.widget_archive li a {
    float: left;
}
.popular-meta-date{
    display: block;
}
.post-tags a,
.widget_tag_cloud a{
    display: inline-block;
    margin: 0 8px 8px 0;
    border: 2px solid #eaeaea;
    padding: 2px 8px;
    border-radius: 4px;
}
.widget table {
    width: 100%;
}

/* Calendar Widget */
.widget_calendar table,
.widget_calendar td {
    border: 0;
    border-collapse: separate;
    border-spacing: 1px;
}
.widget_calendar caption {
    font-size: 14px;
    margin: 0;
}
.widget_calendar th,
.widget_calendar td {
    padding: 5px 0;
    text-align: center;
}
.widget_calendar a {
    display: block;
}
.widget_calendar tbody td {
    background-color: rgba(255, 255, 255, 0.5);
}

#search-input{
    border: 1px solid #333;
    border-right: none;
}
#search-input:focus{
    box-shadow: none;
}
#search-button{
    color: #333;
    background: transparent;
    border: 1px solid #333;
    border-left: none;
}

.widget_rss .rss-date {
    font-size: 12px;
    display: block;
    color: #999;
}

.widget.portfolio ul {
    display: block;
    margin: 0 -0.625rem;
    padding: 0;
}
.widget.portfolio li {
    margin: 0;
    padding: 0 0.625rem 1.25rem;
    border: 0;
}

.widget.flickr .flickr-wrap {
    margin: 0 -0.625rem;
}
.widget.flickr .flickr-wrap .flickr_badge_image {
    padding: 0 0.625rem 1.25rem;
    float: left;
    width: 50%;
    height: auto;
}
.widget.flickr .flickr-wrap .flickr_badge_image img {
    width: 100%;
    height: auto;
}



/* ==========================================================================
   PROJECT PAGE
   ========================================================================== */
   
.project-stats{
    font-size: 13px;
    font-size: 0.8125rem;
    margin-left: 0;
}
.project-stats li{
    padding: 8px;
    padding: 0.5rem;
    border-bottom: 1px solid #efefef;
}
.project-image{
    margin-bottom: 20px;
    margin-bottom: 1.25rem; 
}



/* ==========================================================================
   FOOTER
   ========================================================================== */
   
.footer{
    position: relative;
    color: #FFF;
    font-weight: bold !important;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
    background: #336699;
    background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/flat-banner-6.jpg);
}
.footer.slide-out{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.footer a{
    color: #ec7900;
}
.footer a:active,
.footer a:hover{
    color: #bb2d21;
}
.footer .logo{
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
}
.footer .copyright-text{
    margin-bottom: 0;
    font-size: 0.75em;
}
.footer .inline-list li {
    display: inline-block;
    float: none;
}
@media only screen and (min-width: 40.063em){
	.footer .logo{
		margin-bottom: 0;
	}
    .footer .socials ul{
        float: right;
    }
}
.dummy-footer{
    position: relative;
    z-index: -2;
}
.overflow-hidden .dummy-footer{
    display: none;
}

/* Pagination */
.pagination-right{
    text-align: right;
}
.pagination-right ul.pagination li {
    float: none;
    display: inline-block;
}
ul.pagination li {
    height: 2.875rem;
    font-size: 1rem;
    margin-left: .5rem;
}
.page-links {
    margin-bottom: 30px;
}
.page-links > a,
.page-links > span,
.page-links span.page-links-title,
ul.pagination li a,
ul.pagination li span,
ul.pagination li button {
    color: #333;
    background: #efefef;
    padding: 0.625rem 1.15rem 0.425rem 1.25rem;
    border-radius: 4px;
    display: inline-block;
}
.page-links > span,
ul.pagination li.current a,
ul.pagination li.current button,
ul.pagination li span.expand {
    background: transparent;
    color: #333;
}
.page-links > span,
ul.pagination li span.current {
    background-color: #dc4437;
    color: #fff;
}
.page-links > a:hover,
ul.pagination li:hover a,
ul.pagination li a:focus,
ul.pagination li:hover button,
ul.pagination li button:focus {
    background: #dfdfdf;
}
ul.pagination li.current a:hover,
ul.pagination li.current a:focus,
ul.pagination li.current button:hover,
ul.pagination li.current button:focus {
    background: transparent;
}
.page-links > a:hover,
ul.pagination li.unavailable:hover a,
ul.pagination li.unavailable a:focus,
ul.pagination li.unavailable:hover button,
ul.pagination li.unavailable button:focus {
    color: #999;
    background: #efefef;
}
ul.pagination .fa{
    line-height: 1.6875rem;
}

/* ==========================================================================
   VISUAL COMPOSER ELEMENTS
   ========================================================================== */
.wpb_accordion .wpb_accordion_section h3 {
    margin-bottom: 0;
    margin-top: 0;
}
.wpb_accordion .wpb_accordion_section h3 a {
    font-size: 1rem;
    padding: 1rem;
    font-weight: normal;
    color: #222;
    background-color: #efefef;
    display: block;
}
.wpb_accordion .wpb_accordion_section h3 a:hover {
    background: #e3e3e3;
}
.wpb_accordion .wpb_accordion_section h3.ui-accordion-header-active a {
    background-color: #e8e8e8;
}
.wpb_accordion .wpb_accordion_section .wpb_accordion_content {
    padding: 0.9375rem;
}
.wpb_accordion .wpb_accordion_section .wpb_accordion_content p:last-child {
    margin: 0;
    padding: 0;
}

.wpb_tabs ul.tabNavigation {
    border-bottom: 1px solid #dfdfdf;
    list-style: none;
    padding: 0;
    margin: 0;
}
.wpb_tabs ul.tabNavigation li {
    float: left;
    margin-bottom: 0 !important;
    position: relative;
}
.wpb_tabs ul.tabNavigation li a {
    background-color: #efefef;
    color: #222;
    display: block;
    font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-size: 1rem;
    padding: 1rem 2rem;
}
.wpb_tabs ul.tabNavigation li.ui-tabs-active a {
    background-color: #1d1d1d;
    color: #222;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #dfdfdf #dfdfdf -moz-use-text-color;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 1px medium;
}
.wpb_tabs ul.tabNavigation li.ui-tabs-active {
    margin-bottom: -1px !important;
}
.wpb_tabs ul.tabNavigation li a {
    transition: none 0s ease 0s ;
}
.wpb_tabs .wpb_tab {
    padding: 0.9375rem 0;
}
.wpb_tabs .wpb_tab p:last-child {
    margin-bottom: 0;
}

.wpb_tour_next_prev_nav {
    display: none;
}

.wpb_tour .tabNavigation {
    float: left;
    margin: 0 0 1.25rem;
    max-width: 20%;
    width: 20%;
    list-style: none;
    padding: 0;
}
.wpb_tour .wpb_tab {
    float: left;
    margin-left: -1px;
    max-width: 80%;
    padding-left: 1rem;
    width: 80%;
    display: block;
    margin-bottom: 1.5rem;
}
.wpb_tour .tabNavigation li.ui-tabs-active a {
    border: 1px solid #dfdfdf;
    border-right-color: #ffffff;
}
.wpb_tour .tabNavigation li a {
    border-right: 1px solid #dfdfdf;
}
.wpb_tour .tabNavigation li.ui-tabs-active a {
    background-color: #1d1d1d;
    color: #222;
}
.wpb_tour .tabNavigation li a {
    background-color: #efefef;
    color: #222;
    display: block;
    font-family: "Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
    font-size: 1rem;
    padding: 1rem 2rem;
    transition: none 0s ease 0s ;
}

/* ==========================================================================
   WORDPRESS
   ========================================================================== */
.sticky{
}
.bypostauthor{
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}
.wp-caption {
  background: #f0f0f0;
  text-align: center;
  max-width: 100%;
}
.wp-caption:hover{
  border-color: #ccc
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img,
.entry-content .wp-caption img {
    width: 100%;
    height: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 12.3px;
  line-height: 17px;
  margin: 0;
  padding: 10px;
}
.wp-caption p.wp-caption-text img {
    max-width: 100%;
    height: auto;
    width: auto;
}
.gallery {
  margin-bottom: 20px;
  margin-left: -4px;
}
.gallery p{
  display: block;
  height: 4px
}
.gallery-item {
  float: left;
  margin: 0 4px 4px 0;
  overflow: hidden;
  position: relative;
}
.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
  display: table;
  margin: 0 auto 20px;
}
.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
  text-align: center;
}
.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 4px);
  max-width:         calc(25% - 4px);
}
.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 4px);
  max-width:         calc(20% - 4px);
}
.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 4px);
  max-width:         calc(16.7% - 4px);
}
.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 4px);
  max-width:         calc(14.28% - 4px);
}
.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 4px);
  max-width:         calc(12.5% - 4px);
}
.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 4px);
  max-width:         calc(11.1% - 4px);
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}
.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 2px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  -webkit-transition: opacity 400ms ease;
  transition:         opacity 400ms ease;
  width: 100%;
}
.gallery-caption:before {
  box-shadow: 0 -10px 15px #000 inset;
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
.entry-content img{
    max-width: 100%;
    height: auto;
    display: block;
    padding: 10px;
}

.fullrow .medium-12.columns {
    padding: 0 !important
}
.wpb_video_wrapper iframe {
    width: 100% !important;
    min-height: 264px;
    height: auto;
}

/* Thumbnail */
.th:hover,
.th:focus {
    box-shadow: 0 0 0 1px rgba(34,34,34,1);
}

/* 404 */
.fof{
    font-size: 140px;
    line-height: 140px;
    font-weight: 800;
    display: block;
    margin-bottom: 30px;
    color: #272727
}
.custom-notice {
    margin: 30px 0;
    display: block;
}

/* WPML */
#lang_sel {
    z-index: 6;
    float: right;
    padding: 17px 0;
}

/* Revolution Slider */
.rev_slider_wrapper .button,
.rev_slider_wrapper .button:hover {
    color: #fff;
}

/* ETC*/
.menu-notice.right {
    margin: 18px 0 0;
}
pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
  overflow: auto;
  page-break-inside: avoid;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
.admin-bar #navigation-container.sticky.fixed {
    top: 32px;
}

/* Additions from Your Game Rocks */

h3.shadow-title-text {
  font-size: 1.7em;
  color: #FFF;
  text-align:right;
  margin-top: 100px;
  font-weight:900;
  text-shadow:
    0 1px 0px #1d5466,
    1px 0 0px #114260,
    1px 2px 1px #1d5466,
    2px 1px 1px #114260,
    2px 3px 2px #1d5466;
    }

#testimony-carousel blockquote {
  color: #FFF;
  text-align:center;
  margin-top: 10px;
  font-weight:900;
  text-shadow:
    0 1px 0px #1d5466,
    1px 0 0px #114260,
    1px 2px 1px #1d5466,
    2px 1px 1px #114260,
    2px 3px 2px #1d5466;
    }


#testimony-carousel blockquote cite {
  color: #FFF;
  text-align:center;
  margin-top: 10px;
  font-weight:900;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
    }

    
#twitter-feed {
  color: #FFF;
  text-align:center;
  margin-top: 10px;
  font-weight:900;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
    }

#twitter-feed a:hover{
  color: #008cba !important;
    }
    
.subaeria-call-to-action-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
   min-height: 264px;
      }


.subaeria-call-to-action-row .wpb_video_wrapper iframe {
   min-height: 546px;
      }
      
.subaeria-about-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }
      
.subaeria-character-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }

.subaeria-illogika-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }

.subaeria-contact-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }
      
.subaeria-final-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }
      
.subaeria-screenshots-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }
      
.subaeria-video-row .wpb_video_wrapper iframe {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
   min-height: 546px;
      }
.subaeria-video-row {
   color: #FFF;
   font-weight: bold !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
      }
      
p {
	font-size: 1.2rem !important;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
    /*font-weight: bold !important;*/
    }
h2 {
	text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
	}
	
blockquote {
	border-left: none !important;
	}
	
.post .post-title a {
  color: #ec7900;
}

.post .post-title a:hover {
  color: #9e5100 !important; 
}

.post .meta {
  color: #FFF;
  font-size: .85rem;
  font-size: 14px;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
}

.post-meta a {
  color: #ec7900;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
}

.post-meta a:hover {
  color: #008cba !important;
  
}

.button.ghost {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  background: #1d1d1d;
  background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
  border-color: #333;
  color: #ec7900;
  font-weight: bold;
}

.button.ghost:hover {
  color: #008cba;
}

.widget .widget-title {
  text-transform: none;
  color: #FFF !Important;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
}

.button {
  border-style: solid;
  border-width: 0px;
  cursor: pointer;
  background: #1d1d1d;
  background-image: url(//subaeria.com/wp-content/themes/aeris/subimg/nav_bar.jpg);
  border-color: #333;
  color: #ec7900;
  font-weight: bold;
}

.button:hover {
  color: #008cba;
}

.subheader {
  line-height: 1.4;
  color: #ec7900;
  font-weight: normal;
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
}

.widget ul li {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  font-weight: 500;
}

.widget .widget-title h3 {
  color: #FFF;
}

label {
   color: #FFF !important;
   font-family: inherit;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
   font-size: 1rem !important;
   }
   
.mc4wp-success {
  color: #ec7900 !important;
  background-color: #072e3c !important;
  border-color: #072e3c !important;
}

.entry-content h3 {
   color: #FFF !important;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
   padding-top: 15px;
   }